blob: e2e146a14f971f686b045ad7399680db39378555 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * sata_promise.c - Promise SATA
3 *
4 * Maintained by: Jeff Garzik <jgarzik@pobox.com>
5 * Please ALWAYS copy linux-ide@vger.kernel.org
6 * on emails.
7 *
8 * Copyright 2003-2004 Red Hat, Inc.
9 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070010 *
Jeff Garzikaf36d7f2005-08-28 20:18:39 -040011 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2, or (at your option)
14 * any later version.
15 *
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public License
22 * along with this program; see the file COPYING. If not, write to
23 * the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
24 *
25 *
26 * libata documentation is available via 'make {ps|pdf}docs',
27 * as Documentation/DocBook/libata.*
28 *
29 * Hardware information only available under NDA.
Linus Torvalds1da177e2005-04-16 15:20:36 -070030 *
31 */
32
33#include <linux/kernel.h>
34#include <linux/module.h>
35#include <linux/pci.h>
36#include <linux/init.h>
37#include <linux/blkdev.h>
38#include <linux/delay.h>
39#include <linux/interrupt.h>
40#include <linux/sched.h>
Jeff Garzika9524a72005-10-30 14:39:11 -050041#include <linux/device.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070042#include <scsi/scsi_host.h>
Jeff Garzik193515d2005-11-07 00:59:37 -050043#include <scsi/scsi_cmnd.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070044#include <linux/libata.h>
45#include <asm/io.h>
46#include "sata_promise.h"
47
48#define DRV_NAME "sata_promise"
Jeff Garzik7bdd7202005-11-16 11:06:59 -050049#define DRV_VERSION "1.03"
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
51
52enum {
53 PDC_PKT_SUBMIT = 0x40, /* Command packet pointer addr */
54 PDC_INT_SEQMASK = 0x40, /* Mask of asserted SEQ INTs */
55 PDC_TBG_MODE = 0x41, /* TBG mode */
56 PDC_FLASH_CTL = 0x44, /* Flash control register */
57 PDC_PCI_CTL = 0x48, /* PCI control and status register */
58 PDC_GLOBAL_CTL = 0x48, /* Global control/status (per port) */
59 PDC_CTLSTAT = 0x60, /* IDE control and status (per port) */
60 PDC_SATA_PLUG_CSR = 0x6C, /* SATA Plug control/status reg */
61 PDC_SLEW_CTL = 0x470, /* slew rate control reg */
62
63 PDC_ERR_MASK = (1<<19) | (1<<20) | (1<<21) | (1<<22) |
64 (1<<8) | (1<<9) | (1<<10),
65
66 board_2037x = 0, /* FastTrak S150 TX2plus */
67 board_20319 = 1, /* FastTrak S150 TX4 */
Tobias Lorenzf497ba72005-05-12 15:51:01 -040068 board_20619 = 2, /* FastTrak TX4000 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070069
70 PDC_HAS_PATA = (1 << 1), /* PDC20375 has PATA */
71
72 PDC_RESET = (1 << 11), /* HDMA reset */
73};
74
75
76struct pdc_port_priv {
77 u8 *pkt;
78 dma_addr_t pkt_dma;
79};
80
81static u32 pdc_sata_scr_read (struct ata_port *ap, unsigned int sc_reg);
82static void pdc_sata_scr_write (struct ata_port *ap, unsigned int sc_reg, u32 val);
83static int pdc_ata_init_one (struct pci_dev *pdev, const struct pci_device_id *ent);
84static irqreturn_t pdc_interrupt (int irq, void *dev_instance, struct pt_regs *regs);
85static void pdc_eng_timeout(struct ata_port *ap);
86static int pdc_port_start(struct ata_port *ap);
87static void pdc_port_stop(struct ata_port *ap);
Jeff Garzik2cba5822005-08-29 05:12:30 -040088static void pdc_pata_phy_reset(struct ata_port *ap);
89static void pdc_sata_phy_reset(struct ata_port *ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -070090static void pdc_qc_prep(struct ata_queued_cmd *qc);
Jeff Garzik057ace52005-10-22 14:27:05 -040091static void pdc_tf_load_mmio(struct ata_port *ap, const struct ata_taskfile *tf);
92static void pdc_exec_command_mmio(struct ata_port *ap, const struct ata_taskfile *tf);
Linus Torvalds1da177e2005-04-16 15:20:36 -070093static void pdc_irq_clear(struct ata_port *ap);
94static int pdc_qc_issue_prot(struct ata_queued_cmd *qc);
95
Jeff Garzik374b1872005-08-30 05:42:52 -040096
Jeff Garzik193515d2005-11-07 00:59:37 -050097static struct scsi_host_template pdc_ata_sht = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 .module = THIS_MODULE,
99 .name = DRV_NAME,
100 .ioctl = ata_scsi_ioctl,
101 .queuecommand = ata_scsi_queuecmd,
102 .eh_strategy_handler = ata_scsi_error,
103 .can_queue = ATA_DEF_QUEUE,
104 .this_id = ATA_SHT_THIS_ID,
105 .sg_tablesize = LIBATA_MAX_PRD,
106 .max_sectors = ATA_MAX_SECTORS,
107 .cmd_per_lun = ATA_SHT_CMD_PER_LUN,
108 .emulated = ATA_SHT_EMULATED,
109 .use_clustering = ATA_SHT_USE_CLUSTERING,
110 .proc_name = DRV_NAME,
111 .dma_boundary = ATA_DMA_BOUNDARY,
112 .slave_configure = ata_scsi_slave_config,
113 .bios_param = ata_std_bios_param,
114 .ordered_flush = 1,
115};
116
Jeff Garzik057ace52005-10-22 14:27:05 -0400117static const struct ata_port_operations pdc_sata_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 .port_disable = ata_port_disable,
119 .tf_load = pdc_tf_load_mmio,
120 .tf_read = ata_tf_read,
121 .check_status = ata_check_status,
122 .exec_command = pdc_exec_command_mmio,
123 .dev_select = ata_std_dev_select,
Jeff Garzik2cba5822005-08-29 05:12:30 -0400124
125 .phy_reset = pdc_sata_phy_reset,
126
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 .qc_prep = pdc_qc_prep,
128 .qc_issue = pdc_qc_issue_prot,
129 .eng_timeout = pdc_eng_timeout,
130 .irq_handler = pdc_interrupt,
131 .irq_clear = pdc_irq_clear,
Jeff Garzik2cba5822005-08-29 05:12:30 -0400132
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 .scr_read = pdc_sata_scr_read,
134 .scr_write = pdc_sata_scr_write,
135 .port_start = pdc_port_start,
136 .port_stop = pdc_port_stop,
Jeff Garzik374b1872005-08-30 05:42:52 -0400137 .host_stop = ata_pci_host_stop,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138};
139
Jeff Garzik057ace52005-10-22 14:27:05 -0400140static const struct ata_port_operations pdc_pata_ops = {
Jeff Garzik2cba5822005-08-29 05:12:30 -0400141 .port_disable = ata_port_disable,
142 .tf_load = pdc_tf_load_mmio,
143 .tf_read = ata_tf_read,
144 .check_status = ata_check_status,
145 .exec_command = pdc_exec_command_mmio,
146 .dev_select = ata_std_dev_select,
147
148 .phy_reset = pdc_pata_phy_reset,
149
150 .qc_prep = pdc_qc_prep,
151 .qc_issue = pdc_qc_issue_prot,
152 .eng_timeout = pdc_eng_timeout,
153 .irq_handler = pdc_interrupt,
154 .irq_clear = pdc_irq_clear,
155
156 .port_start = pdc_port_start,
157 .port_stop = pdc_port_stop,
Jeff Garzik374b1872005-08-30 05:42:52 -0400158 .host_stop = ata_pci_host_stop,
Jeff Garzik2cba5822005-08-29 05:12:30 -0400159};
160
Arjan van de Ven98ac62d2005-11-28 10:06:23 +0100161static const struct ata_port_info pdc_port_info[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 /* board_2037x */
163 {
164 .sht = &pdc_ata_sht,
165 .host_flags = ATA_FLAG_SATA | ATA_FLAG_NO_LEGACY |
166 ATA_FLAG_SRST | ATA_FLAG_MMIO,
167 .pio_mask = 0x1f, /* pio0-4 */
168 .mwdma_mask = 0x07, /* mwdma0-2 */
169 .udma_mask = 0x7f, /* udma0-6 ; FIXME */
Jeff Garzik2cba5822005-08-29 05:12:30 -0400170 .port_ops = &pdc_sata_ops,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 },
172
173 /* board_20319 */
174 {
175 .sht = &pdc_ata_sht,
176 .host_flags = ATA_FLAG_SATA | ATA_FLAG_NO_LEGACY |
177 ATA_FLAG_SRST | ATA_FLAG_MMIO,
178 .pio_mask = 0x1f, /* pio0-4 */
179 .mwdma_mask = 0x07, /* mwdma0-2 */
180 .udma_mask = 0x7f, /* udma0-6 ; FIXME */
Jeff Garzik2cba5822005-08-29 05:12:30 -0400181 .port_ops = &pdc_sata_ops,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 },
Tobias Lorenzf497ba72005-05-12 15:51:01 -0400183
184 /* board_20619 */
185 {
186 .sht = &pdc_ata_sht,
187 .host_flags = ATA_FLAG_NO_LEGACY | ATA_FLAG_SRST |
188 ATA_FLAG_MMIO | ATA_FLAG_SLAVE_POSS,
189 .pio_mask = 0x1f, /* pio0-4 */
190 .mwdma_mask = 0x07, /* mwdma0-2 */
191 .udma_mask = 0x7f, /* udma0-6 ; FIXME */
Jeff Garzik2cba5822005-08-29 05:12:30 -0400192 .port_ops = &pdc_pata_ops,
Tobias Lorenzf497ba72005-05-12 15:51:01 -0400193 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194};
195
Jeff Garzik3b7d6972005-11-10 11:04:11 -0500196static const struct pci_device_id pdc_ata_pci_tbl[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 { PCI_VENDOR_ID_PROMISE, 0x3371, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
198 board_2037x },
Jeff Garzik07c1da22005-10-28 17:00:31 -0400199 { PCI_VENDOR_ID_PROMISE, 0x3570, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
200 board_2037x },
Francisco Javier4c3a53d2005-05-25 19:29:37 -0400201 { PCI_VENDOR_ID_PROMISE, 0x3571, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
202 board_2037x },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 { PCI_VENDOR_ID_PROMISE, 0x3373, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
204 board_2037x },
205 { PCI_VENDOR_ID_PROMISE, 0x3375, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
206 board_2037x },
207 { PCI_VENDOR_ID_PROMISE, 0x3376, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
208 board_2037x },
209 { PCI_VENDOR_ID_PROMISE, 0x3574, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
210 board_2037x },
211 { PCI_VENDOR_ID_PROMISE, 0x3d75, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
212 board_2037x },
Ed Kearc45154a2005-07-16 23:32:19 -0400213 { PCI_VENDOR_ID_PROMISE, 0x3d73, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
214 board_2037x },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215
216 { PCI_VENDOR_ID_PROMISE, 0x3318, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
217 board_20319 },
218 { PCI_VENDOR_ID_PROMISE, 0x3319, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
219 board_20319 },
Daniel Drake93090492005-08-22 14:59:23 +0100220 { PCI_VENDOR_ID_PROMISE, 0x3519, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
221 board_20319 },
Otto Meier08b791c02005-08-22 14:58:57 +0100222 { PCI_VENDOR_ID_PROMISE, 0x3d17, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
223 board_20319 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 { PCI_VENDOR_ID_PROMISE, 0x3d18, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
225 board_20319 },
226
Tobias Lorenzf497ba72005-05-12 15:51:01 -0400227 { PCI_VENDOR_ID_PROMISE, 0x6629, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
228 board_20619 },
229
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 { } /* terminate list */
231};
232
233
234static struct pci_driver pdc_ata_pci_driver = {
235 .name = DRV_NAME,
236 .id_table = pdc_ata_pci_tbl,
237 .probe = pdc_ata_init_one,
238 .remove = ata_pci_remove_one,
239};
240
241
242static int pdc_port_start(struct ata_port *ap)
243{
244 struct device *dev = ap->host_set->dev;
245 struct pdc_port_priv *pp;
246 int rc;
247
248 rc = ata_port_start(ap);
249 if (rc)
250 return rc;
251
252 pp = kmalloc(sizeof(*pp), GFP_KERNEL);
253 if (!pp) {
254 rc = -ENOMEM;
255 goto err_out;
256 }
257 memset(pp, 0, sizeof(*pp));
258
259 pp->pkt = dma_alloc_coherent(dev, 128, &pp->pkt_dma, GFP_KERNEL);
260 if (!pp->pkt) {
261 rc = -ENOMEM;
262 goto err_out_kfree;
263 }
264
265 ap->private_data = pp;
266
267 return 0;
268
269err_out_kfree:
270 kfree(pp);
271err_out:
272 ata_port_stop(ap);
273 return rc;
274}
275
276
277static void pdc_port_stop(struct ata_port *ap)
278{
279 struct device *dev = ap->host_set->dev;
280 struct pdc_port_priv *pp = ap->private_data;
281
282 ap->private_data = NULL;
283 dma_free_coherent(dev, 128, pp->pkt, pp->pkt_dma);
284 kfree(pp);
285 ata_port_stop(ap);
286}
287
288
289static void pdc_reset_port(struct ata_port *ap)
290{
Jeff Garzikea6ba102005-08-30 05:18:18 -0400291 void __iomem *mmio = (void __iomem *) ap->ioaddr.cmd_addr + PDC_CTLSTAT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 unsigned int i;
293 u32 tmp;
294
295 for (i = 11; i > 0; i--) {
296 tmp = readl(mmio);
297 if (tmp & PDC_RESET)
298 break;
299
300 udelay(100);
301
302 tmp |= PDC_RESET;
303 writel(tmp, mmio);
304 }
305
306 tmp &= ~PDC_RESET;
307 writel(tmp, mmio);
308 readl(mmio); /* flush */
309}
310
Jeff Garzik2cba5822005-08-29 05:12:30 -0400311static void pdc_sata_phy_reset(struct ata_port *ap)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312{
313 pdc_reset_port(ap);
314 sata_phy_reset(ap);
315}
316
Jeff Garzik2cba5822005-08-29 05:12:30 -0400317static void pdc_pata_phy_reset(struct ata_port *ap)
318{
319 /* FIXME: add cable detect. Don't assume 40-pin cable */
320 ap->cbl = ATA_CBL_PATA40;
321 ap->udma_mask &= ATA_UDMA_MASK_40C;
322
323 pdc_reset_port(ap);
324 ata_port_probe(ap);
325 ata_bus_reset(ap);
326}
327
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328static u32 pdc_sata_scr_read (struct ata_port *ap, unsigned int sc_reg)
329{
330 if (sc_reg > SCR_CONTROL)
331 return 0xffffffffU;
Al Virob181d3b2005-10-21 06:46:02 +0100332 return readl((void __iomem *) ap->ioaddr.scr_addr + (sc_reg * 4));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333}
334
335
336static void pdc_sata_scr_write (struct ata_port *ap, unsigned int sc_reg,
337 u32 val)
338{
339 if (sc_reg > SCR_CONTROL)
340 return;
Al Virob181d3b2005-10-21 06:46:02 +0100341 writel(val, (void __iomem *) ap->ioaddr.scr_addr + (sc_reg * 4));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342}
343
344static void pdc_qc_prep(struct ata_queued_cmd *qc)
345{
346 struct pdc_port_priv *pp = qc->ap->private_data;
347 unsigned int i;
348
349 VPRINTK("ENTER\n");
350
351 switch (qc->tf.protocol) {
352 case ATA_PROT_DMA:
353 ata_qc_prep(qc);
354 /* fall through */
355
356 case ATA_PROT_NODATA:
357 i = pdc_pkt_header(&qc->tf, qc->ap->prd_dma,
358 qc->dev->devno, pp->pkt);
359
360 if (qc->tf.flags & ATA_TFLAG_LBA48)
361 i = pdc_prep_lba48(&qc->tf, pp->pkt, i);
362 else
363 i = pdc_prep_lba28(&qc->tf, pp->pkt, i);
364
365 pdc_pkt_footer(&qc->tf, pp->pkt, i);
366 break;
367
368 default:
369 break;
370 }
371}
372
373static void pdc_eng_timeout(struct ata_port *ap)
374{
Jeff Garzikb8f61532005-08-25 22:01:20 -0400375 struct ata_host_set *host_set = ap->host_set;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 u8 drv_stat;
377 struct ata_queued_cmd *qc;
Jeff Garzikb8f61532005-08-25 22:01:20 -0400378 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379
380 DPRINTK("ENTER\n");
381
Jeff Garzikb8f61532005-08-25 22:01:20 -0400382 spin_lock_irqsave(&host_set->lock, flags);
383
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 qc = ata_qc_from_tag(ap, ap->active_tag);
385 if (!qc) {
386 printk(KERN_ERR "ata%u: BUG: timeout without command\n",
387 ap->id);
388 goto out;
389 }
390
391 /* hack alert! We cannot use the supplied completion
392 * function from inside the ->eh_strategy_handler() thread.
393 * libata is the only user of ->eh_strategy_handler() in
394 * any kernel, so the default scsi_done() assumes it is
395 * not being called from the SCSI EH.
396 */
397 qc->scsidone = scsi_finish_command;
398
399 switch (qc->tf.protocol) {
400 case ATA_PROT_DMA:
401 case ATA_PROT_NODATA:
402 printk(KERN_ERR "ata%u: command timeout\n", ap->id);
Jeff Garzika7dac442005-10-30 04:44:42 -0500403 drv_stat = ata_wait_idle(ap);
Albert Leea22e2eb2005-12-05 15:38:02 +0800404 qc->err_mask |= __ac_err_mask(drv_stat);
405 ata_qc_complete(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 break;
407
408 default:
409 drv_stat = ata_busy_wait(ap, ATA_BUSY | ATA_DRQ, 1000);
410
411 printk(KERN_ERR "ata%u: unknown timeout, cmd 0x%x stat 0x%x\n",
412 ap->id, qc->tf.command, drv_stat);
413
Albert Leea22e2eb2005-12-05 15:38:02 +0800414 qc->err_mask |= ac_err_mask(drv_stat);
415 ata_qc_complete(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 break;
417 }
418
419out:
Jeff Garzikb8f61532005-08-25 22:01:20 -0400420 spin_unlock_irqrestore(&host_set->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 DPRINTK("EXIT\n");
422}
423
424static inline unsigned int pdc_host_intr( struct ata_port *ap,
425 struct ata_queued_cmd *qc)
426{
Albert Leea22e2eb2005-12-05 15:38:02 +0800427 unsigned int handled = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 u32 tmp;
Jeff Garzikea6ba102005-08-30 05:18:18 -0400429 void __iomem *mmio = (void __iomem *) ap->ioaddr.cmd_addr + PDC_GLOBAL_CTL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430
431 tmp = readl(mmio);
432 if (tmp & PDC_ERR_MASK) {
Albert Leea22e2eb2005-12-05 15:38:02 +0800433 qc->err_mask |= AC_ERR_DEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 pdc_reset_port(ap);
435 }
436
437 switch (qc->tf.protocol) {
438 case ATA_PROT_DMA:
439 case ATA_PROT_NODATA:
Albert Leea22e2eb2005-12-05 15:38:02 +0800440 qc->err_mask |= ac_err_mask(ata_wait_idle(ap));
441 ata_qc_complete(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 handled = 1;
443 break;
444
445 default:
Albert Leeee500aa2005-09-27 17:34:38 +0800446 ap->stats.idle_irq++;
447 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 }
449
Albert Leeee500aa2005-09-27 17:34:38 +0800450 return handled;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451}
452
453static void pdc_irq_clear(struct ata_port *ap)
454{
455 struct ata_host_set *host_set = ap->host_set;
Jeff Garzikea6ba102005-08-30 05:18:18 -0400456 void __iomem *mmio = host_set->mmio_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457
458 readl(mmio + PDC_INT_SEQMASK);
459}
460
461static irqreturn_t pdc_interrupt (int irq, void *dev_instance, struct pt_regs *regs)
462{
463 struct ata_host_set *host_set = dev_instance;
464 struct ata_port *ap;
465 u32 mask = 0;
466 unsigned int i, tmp;
467 unsigned int handled = 0;
Jeff Garzikea6ba102005-08-30 05:18:18 -0400468 void __iomem *mmio_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469
470 VPRINTK("ENTER\n");
471
472 if (!host_set || !host_set->mmio_base) {
473 VPRINTK("QUICK EXIT\n");
474 return IRQ_NONE;
475 }
476
477 mmio_base = host_set->mmio_base;
478
479 /* reading should also clear interrupts */
480 mask = readl(mmio_base + PDC_INT_SEQMASK);
481
482 if (mask == 0xffffffff) {
483 VPRINTK("QUICK EXIT 2\n");
484 return IRQ_NONE;
485 }
486 mask &= 0xffff; /* only 16 tags possible */
487 if (!mask) {
488 VPRINTK("QUICK EXIT 3\n");
489 return IRQ_NONE;
490 }
491
492 spin_lock(&host_set->lock);
493
494 writel(mask, mmio_base + PDC_INT_SEQMASK);
495
496 for (i = 0; i < host_set->n_ports; i++) {
497 VPRINTK("port %u\n", i);
498 ap = host_set->ports[i];
499 tmp = mask & (1 << (i + 1));
Tejun Heoc1389502005-08-22 14:59:24 +0900500 if (tmp && ap &&
501 !(ap->flags & (ATA_FLAG_PORT_DISABLED | ATA_FLAG_NOINTR))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 struct ata_queued_cmd *qc;
503
504 qc = ata_qc_from_tag(ap, ap->active_tag);
505 if (qc && (!(qc->tf.ctl & ATA_NIEN)))
506 handled += pdc_host_intr(ap, qc);
507 }
508 }
509
510 spin_unlock(&host_set->lock);
511
512 VPRINTK("EXIT\n");
513
514 return IRQ_RETVAL(handled);
515}
516
517static inline void pdc_packet_start(struct ata_queued_cmd *qc)
518{
519 struct ata_port *ap = qc->ap;
520 struct pdc_port_priv *pp = ap->private_data;
521 unsigned int port_no = ap->port_no;
522 u8 seq = (u8) (port_no + 1);
523
524 VPRINTK("ENTER, ap %p\n", ap);
525
526 writel(0x00000001, ap->host_set->mmio_base + (seq * 4));
527 readl(ap->host_set->mmio_base + (seq * 4)); /* flush */
528
529 pp->pkt[2] = seq;
530 wmb(); /* flush PRD, pkt writes */
Al Virob181d3b2005-10-21 06:46:02 +0100531 writel(pp->pkt_dma, (void __iomem *) ap->ioaddr.cmd_addr + PDC_PKT_SUBMIT);
532 readl((void __iomem *) ap->ioaddr.cmd_addr + PDC_PKT_SUBMIT); /* flush */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533}
534
535static int pdc_qc_issue_prot(struct ata_queued_cmd *qc)
536{
537 switch (qc->tf.protocol) {
538 case ATA_PROT_DMA:
539 case ATA_PROT_NODATA:
540 pdc_packet_start(qc);
541 return 0;
542
543 case ATA_PROT_ATAPI_DMA:
544 BUG();
545 break;
546
547 default:
548 break;
549 }
550
551 return ata_qc_issue_prot(qc);
552}
553
Jeff Garzik057ace52005-10-22 14:27:05 -0400554static void pdc_tf_load_mmio(struct ata_port *ap, const struct ata_taskfile *tf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555{
556 WARN_ON (tf->protocol == ATA_PROT_DMA ||
557 tf->protocol == ATA_PROT_NODATA);
558 ata_tf_load(ap, tf);
559}
560
561
Jeff Garzik057ace52005-10-22 14:27:05 -0400562static void pdc_exec_command_mmio(struct ata_port *ap, const struct ata_taskfile *tf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563{
564 WARN_ON (tf->protocol == ATA_PROT_DMA ||
565 tf->protocol == ATA_PROT_NODATA);
566 ata_exec_command(ap, tf);
567}
568
569
570static void pdc_ata_setup_port(struct ata_ioports *port, unsigned long base)
571{
572 port->cmd_addr = base;
573 port->data_addr = base;
574 port->feature_addr =
575 port->error_addr = base + 0x4;
576 port->nsect_addr = base + 0x8;
577 port->lbal_addr = base + 0xc;
578 port->lbam_addr = base + 0x10;
579 port->lbah_addr = base + 0x14;
580 port->device_addr = base + 0x18;
581 port->command_addr =
582 port->status_addr = base + 0x1c;
583 port->altstatus_addr =
584 port->ctl_addr = base + 0x38;
585}
586
587
588static void pdc_host_init(unsigned int chip_id, struct ata_probe_ent *pe)
589{
Jeff Garzikea6ba102005-08-30 05:18:18 -0400590 void __iomem *mmio = pe->mmio_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 u32 tmp;
592
593 /*
594 * Except for the hotplug stuff, this is voodoo from the
595 * Promise driver. Label this entire section
596 * "TODO: figure out why we do this"
597 */
598
599 /* change FIFO_SHD to 8 dwords, enable BMR_BURST */
600 tmp = readl(mmio + PDC_FLASH_CTL);
601 tmp |= 0x12000; /* bit 16 (fifo 8 dw) and 13 (bmr burst?) */
602 writel(tmp, mmio + PDC_FLASH_CTL);
603
604 /* clear plug/unplug flags for all ports */
605 tmp = readl(mmio + PDC_SATA_PLUG_CSR);
606 writel(tmp | 0xff, mmio + PDC_SATA_PLUG_CSR);
607
608 /* mask plug/unplug ints */
609 tmp = readl(mmio + PDC_SATA_PLUG_CSR);
610 writel(tmp | 0xff0000, mmio + PDC_SATA_PLUG_CSR);
611
612 /* reduce TBG clock to 133 Mhz. */
613 tmp = readl(mmio + PDC_TBG_MODE);
614 tmp &= ~0x30000; /* clear bit 17, 16*/
615 tmp |= 0x10000; /* set bit 17:16 = 0:1 */
616 writel(tmp, mmio + PDC_TBG_MODE);
617
618 readl(mmio + PDC_TBG_MODE); /* flush */
619 msleep(10);
620
621 /* adjust slew rate control register. */
622 tmp = readl(mmio + PDC_SLEW_CTL);
623 tmp &= 0xFFFFF03F; /* clear bit 11 ~ 6 */
624 tmp |= 0x00000900; /* set bit 11-9 = 100b , bit 8-6 = 100 */
625 writel(tmp, mmio + PDC_SLEW_CTL);
626}
627
628static int pdc_ata_init_one (struct pci_dev *pdev, const struct pci_device_id *ent)
629{
630 static int printed_version;
631 struct ata_probe_ent *probe_ent = NULL;
632 unsigned long base;
Jeff Garzikea6ba102005-08-30 05:18:18 -0400633 void __iomem *mmio_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 unsigned int board_idx = (unsigned int) ent->driver_data;
635 int pci_dev_busy = 0;
636 int rc;
637
638 if (!printed_version++)
Jeff Garzika9524a72005-10-30 14:39:11 -0500639 dev_printk(KERN_DEBUG, &pdev->dev, "version " DRV_VERSION "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640
641 /*
642 * If this driver happens to only be useful on Apple's K2, then
643 * we should check that here as it has a normal Serverworks ID
644 */
645 rc = pci_enable_device(pdev);
646 if (rc)
647 return rc;
648
649 rc = pci_request_regions(pdev, DRV_NAME);
650 if (rc) {
651 pci_dev_busy = 1;
652 goto err_out;
653 }
654
655 rc = pci_set_dma_mask(pdev, ATA_DMA_MASK);
656 if (rc)
657 goto err_out_regions;
658 rc = pci_set_consistent_dma_mask(pdev, ATA_DMA_MASK);
659 if (rc)
660 goto err_out_regions;
661
662 probe_ent = kmalloc(sizeof(*probe_ent), GFP_KERNEL);
663 if (probe_ent == NULL) {
664 rc = -ENOMEM;
665 goto err_out_regions;
666 }
667
668 memset(probe_ent, 0, sizeof(*probe_ent));
669 probe_ent->dev = pci_dev_to_dev(pdev);
670 INIT_LIST_HEAD(&probe_ent->node);
671
Jeff Garzik374b1872005-08-30 05:42:52 -0400672 mmio_base = pci_iomap(pdev, 3, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 if (mmio_base == NULL) {
674 rc = -ENOMEM;
675 goto err_out_free_ent;
676 }
677 base = (unsigned long) mmio_base;
678
679 probe_ent->sht = pdc_port_info[board_idx].sht;
680 probe_ent->host_flags = pdc_port_info[board_idx].host_flags;
681 probe_ent->pio_mask = pdc_port_info[board_idx].pio_mask;
682 probe_ent->mwdma_mask = pdc_port_info[board_idx].mwdma_mask;
683 probe_ent->udma_mask = pdc_port_info[board_idx].udma_mask;
684 probe_ent->port_ops = pdc_port_info[board_idx].port_ops;
685
686 probe_ent->irq = pdev->irq;
687 probe_ent->irq_flags = SA_SHIRQ;
688 probe_ent->mmio_base = mmio_base;
689
690 pdc_ata_setup_port(&probe_ent->port[0], base + 0x200);
691 pdc_ata_setup_port(&probe_ent->port[1], base + 0x280);
692
693 probe_ent->port[0].scr_addr = base + 0x400;
694 probe_ent->port[1].scr_addr = base + 0x500;
695
696 /* notice 4-port boards */
697 switch (board_idx) {
698 case board_20319:
699 probe_ent->n_ports = 4;
700
701 pdc_ata_setup_port(&probe_ent->port[2], base + 0x300);
702 pdc_ata_setup_port(&probe_ent->port[3], base + 0x380);
703
704 probe_ent->port[2].scr_addr = base + 0x600;
705 probe_ent->port[3].scr_addr = base + 0x700;
706 break;
707 case board_2037x:
Jeff Garzik6c9e5eb2005-11-30 16:42:55 -0500708 probe_ent->n_ports = 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 break;
Tobias Lorenzf497ba72005-05-12 15:51:01 -0400710 case board_20619:
711 probe_ent->n_ports = 4;
712
713 pdc_ata_setup_port(&probe_ent->port[2], base + 0x300);
714 pdc_ata_setup_port(&probe_ent->port[3], base + 0x380);
715
716 probe_ent->port[2].scr_addr = base + 0x600;
717 probe_ent->port[3].scr_addr = base + 0x700;
Jeff Garzik6c9e5eb2005-11-30 16:42:55 -0500718 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 default:
720 BUG();
721 break;
722 }
723
724 pci_set_master(pdev);
725
726 /* initialize adapter */
727 pdc_host_init(board_idx, probe_ent);
728
729 /* FIXME: check ata_device_add return value */
730 ata_device_add(probe_ent);
731 kfree(probe_ent);
732
733 return 0;
734
735err_out_free_ent:
736 kfree(probe_ent);
737err_out_regions:
738 pci_release_regions(pdev);
739err_out:
740 if (!pci_dev_busy)
741 pci_disable_device(pdev);
742 return rc;
743}
744
745
746static int __init pdc_ata_init(void)
747{
748 return pci_module_init(&pdc_ata_pci_driver);
749}
750
751
752static void __exit pdc_ata_exit(void)
753{
754 pci_unregister_driver(&pdc_ata_pci_driver);
755}
756
757
758MODULE_AUTHOR("Jeff Garzik");
Tobias Lorenzf497ba72005-05-12 15:51:01 -0400759MODULE_DESCRIPTION("Promise ATA TX2/TX4/TX4000 low-level driver");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760MODULE_LICENSE("GPL");
761MODULE_DEVICE_TABLE(pci, pdc_ata_pci_tbl);
762MODULE_VERSION(DRV_VERSION);
763
764module_init(pdc_ata_init);
765module_exit(pdc_ata_exit);