2 * sata_promise.c - Promise SATA
4 * Maintained by: Jeff Garzik <jgarzik@pobox.com>
5 * Please ALWAYS copy linux-ide@vger.kernel.org
8 * Copyright 2003-2004 Red Hat, Inc.
11 * 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)
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.
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.
26 * libata documentation is available via 'make {ps|pdf}docs',
27 * as Documentation/DocBook/libata.*
29 * Hardware information only available under NDA.
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>
41 #include <linux/device.h>
42 #include <scsi/scsi.h>
43 #include <scsi/scsi_host.h>
44 #include <scsi/scsi_cmnd.h>
45 #include <linux/libata.h>
46 #include "sata_promise.h"
48 #define DRV_NAME "sata_promise"
49 #define DRV_VERSION "1.05"
55 /* register offsets */
56 PDC_FEATURE = 0x04, /* Feature/Error reg (per port) */
57 PDC_SECTOR_COUNT = 0x08, /* Sector count reg (per port) */
58 PDC_SECTOR_NUMBER = 0x0C, /* Sector number reg (per port) */
59 PDC_CYLINDER_LOW = 0x10, /* Cylinder low reg (per port) */
60 PDC_CYLINDER_HIGH = 0x14, /* Cylinder high reg (per port) */
61 PDC_DEVICE = 0x18, /* Device/Head reg (per port) */
62 PDC_COMMAND = 0x1C, /* Command/status reg (per port) */
63 PDC_ALTSTATUS = 0x38, /* Alternate-status/device-control reg (per port) */
64 PDC_PKT_SUBMIT = 0x40, /* Command packet pointer addr */
65 PDC_INT_SEQMASK = 0x40, /* Mask of asserted SEQ INTs */
66 PDC_FLASH_CTL = 0x44, /* Flash control register */
67 PDC_GLOBAL_CTL = 0x48, /* Global control/status (per port) */
68 PDC_CTLSTAT = 0x60, /* IDE control and status (per port) */
69 PDC_SATA_PLUG_CSR = 0x6C, /* SATA Plug control/status reg */
70 PDC2_SATA_PLUG_CSR = 0x60, /* SATAII Plug control/status reg */
71 PDC_TBG_MODE = 0x41C, /* TBG mode (not SATAII) */
72 PDC_SLEW_CTL = 0x470, /* slew rate control reg (not SATAII) */
74 PDC_ERR_MASK = (1<<19) | (1<<20) | (1<<21) | (1<<22) |
75 (1<<8) | (1<<9) | (1<<10),
77 board_2037x = 0, /* FastTrak S150 TX2plus */
78 board_20319 = 1, /* FastTrak S150 TX4 */
79 board_20619 = 2, /* FastTrak TX4000 */
80 board_2057x = 3, /* SATAII150 Tx2plus */
81 board_40518 = 4, /* SATAII150 Tx4 */
83 PDC_HAS_PATA = (1 << 1), /* PDC20375/20575 has PATA */
85 /* Sequence counter control registers bit definitions */
86 PDC_SEQCNTRL_INT_MASK = (1 << 5), /* Sequence Interrupt Mask */
88 /* Feature register values */
89 PDC_FEATURE_ATAPI_PIO = 0x00, /* ATAPI data xfer by PIO */
90 PDC_FEATURE_ATAPI_DMA = 0x01, /* ATAPI data xfer by DMA */
92 /* Device/Head register values */
93 PDC_DEVICE_SATA = 0xE0, /* Device/Head value for SATA devices */
95 /* PDC_CTLSTAT bit definitions */
96 PDC_DMA_ENABLE = (1 << 7),
97 PDC_IRQ_DISABLE = (1 << 10),
98 PDC_RESET = (1 << 11), /* HDMA reset */
100 PDC_COMMON_FLAGS = ATA_FLAG_NO_LEGACY |
102 ATA_FLAG_PIO_POLLING,
105 PDC_FLAG_GEN_II = (1 << 0),
109 struct pdc_port_priv {
114 struct pdc_host_priv {
116 unsigned long port_flags[ATA_MAX_PORTS];
119 static u32 pdc_sata_scr_read (struct ata_port *ap, unsigned int sc_reg);
120 static void pdc_sata_scr_write (struct ata_port *ap, unsigned int sc_reg, u32 val);
121 static int pdc_ata_init_one (struct pci_dev *pdev, const struct pci_device_id *ent);
122 static irqreturn_t pdc_interrupt (int irq, void *dev_instance);
123 static void pdc_eng_timeout(struct ata_port *ap);
124 static int pdc_port_start(struct ata_port *ap);
125 static void pdc_pata_phy_reset(struct ata_port *ap);
126 static void pdc_qc_prep(struct ata_queued_cmd *qc);
127 static void pdc_tf_load_mmio(struct ata_port *ap, const struct ata_taskfile *tf);
128 static void pdc_exec_command_mmio(struct ata_port *ap, const struct ata_taskfile *tf);
129 static int pdc_check_atapi_dma(struct ata_queued_cmd *qc);
130 static int pdc_old_check_atapi_dma(struct ata_queued_cmd *qc);
131 static void pdc_irq_clear(struct ata_port *ap);
132 static unsigned int pdc_qc_issue_prot(struct ata_queued_cmd *qc);
133 static void pdc_freeze(struct ata_port *ap);
134 static void pdc_thaw(struct ata_port *ap);
135 static void pdc_error_handler(struct ata_port *ap);
136 static void pdc_post_internal_cmd(struct ata_queued_cmd *qc);
139 static struct scsi_host_template pdc_ata_sht = {
140 .module = THIS_MODULE,
142 .ioctl = ata_scsi_ioctl,
143 .queuecommand = ata_scsi_queuecmd,
144 .can_queue = ATA_DEF_QUEUE,
145 .this_id = ATA_SHT_THIS_ID,
146 .sg_tablesize = LIBATA_MAX_PRD,
147 .cmd_per_lun = ATA_SHT_CMD_PER_LUN,
148 .emulated = ATA_SHT_EMULATED,
149 .use_clustering = ATA_SHT_USE_CLUSTERING,
150 .proc_name = DRV_NAME,
151 .dma_boundary = ATA_DMA_BOUNDARY,
152 .slave_configure = ata_scsi_slave_config,
153 .slave_destroy = ata_scsi_slave_destroy,
154 .bios_param = ata_std_bios_param,
157 static const struct ata_port_operations pdc_sata_ops = {
158 .port_disable = ata_port_disable,
159 .tf_load = pdc_tf_load_mmio,
160 .tf_read = ata_tf_read,
161 .check_status = ata_check_status,
162 .exec_command = pdc_exec_command_mmio,
163 .dev_select = ata_std_dev_select,
164 .check_atapi_dma = pdc_check_atapi_dma,
166 .qc_prep = pdc_qc_prep,
167 .qc_issue = pdc_qc_issue_prot,
168 .freeze = pdc_freeze,
170 .error_handler = pdc_error_handler,
171 .post_internal_cmd = pdc_post_internal_cmd,
172 .data_xfer = ata_data_xfer,
173 .irq_handler = pdc_interrupt,
174 .irq_clear = pdc_irq_clear,
175 .irq_on = ata_irq_on,
176 .irq_ack = ata_irq_ack,
178 .scr_read = pdc_sata_scr_read,
179 .scr_write = pdc_sata_scr_write,
180 .port_start = pdc_port_start,
183 /* First-generation chips need a more restrictive ->check_atapi_dma op */
184 static const struct ata_port_operations pdc_old_sata_ops = {
185 .port_disable = ata_port_disable,
186 .tf_load = pdc_tf_load_mmio,
187 .tf_read = ata_tf_read,
188 .check_status = ata_check_status,
189 .exec_command = pdc_exec_command_mmio,
190 .dev_select = ata_std_dev_select,
191 .check_atapi_dma = pdc_old_check_atapi_dma,
193 .qc_prep = pdc_qc_prep,
194 .qc_issue = pdc_qc_issue_prot,
195 .freeze = pdc_freeze,
197 .error_handler = pdc_error_handler,
198 .post_internal_cmd = pdc_post_internal_cmd,
199 .data_xfer = ata_data_xfer,
200 .irq_handler = pdc_interrupt,
201 .irq_clear = pdc_irq_clear,
202 .irq_on = ata_irq_on,
203 .irq_ack = ata_irq_ack,
205 .scr_read = pdc_sata_scr_read,
206 .scr_write = pdc_sata_scr_write,
207 .port_start = pdc_port_start,
210 static const struct ata_port_operations pdc_pata_ops = {
211 .port_disable = ata_port_disable,
212 .tf_load = pdc_tf_load_mmio,
213 .tf_read = ata_tf_read,
214 .check_status = ata_check_status,
215 .exec_command = pdc_exec_command_mmio,
216 .dev_select = ata_std_dev_select,
217 .check_atapi_dma = pdc_check_atapi_dma,
219 .phy_reset = pdc_pata_phy_reset,
221 .qc_prep = pdc_qc_prep,
222 .qc_issue = pdc_qc_issue_prot,
223 .data_xfer = ata_data_xfer,
224 .eng_timeout = pdc_eng_timeout,
225 .irq_handler = pdc_interrupt,
226 .irq_clear = pdc_irq_clear,
227 .irq_on = ata_irq_on,
228 .irq_ack = ata_irq_ack,
230 .port_start = pdc_port_start,
233 static const struct ata_port_info pdc_port_info[] = {
237 .flags = PDC_COMMON_FLAGS,
238 .pio_mask = 0x1f, /* pio0-4 */
239 .mwdma_mask = 0x07, /* mwdma0-2 */
240 .udma_mask = 0x7f, /* udma0-6 ; FIXME */
241 .port_ops = &pdc_old_sata_ops,
247 .flags = PDC_COMMON_FLAGS | ATA_FLAG_SATA,
248 .pio_mask = 0x1f, /* pio0-4 */
249 .mwdma_mask = 0x07, /* mwdma0-2 */
250 .udma_mask = 0x7f, /* udma0-6 ; FIXME */
251 .port_ops = &pdc_old_sata_ops,
257 .flags = PDC_COMMON_FLAGS | ATA_FLAG_SRST | ATA_FLAG_SLAVE_POSS,
258 .pio_mask = 0x1f, /* pio0-4 */
259 .mwdma_mask = 0x07, /* mwdma0-2 */
260 .udma_mask = 0x7f, /* udma0-6 ; FIXME */
261 .port_ops = &pdc_pata_ops,
267 .flags = PDC_COMMON_FLAGS,
268 .pio_mask = 0x1f, /* pio0-4 */
269 .mwdma_mask = 0x07, /* mwdma0-2 */
270 .udma_mask = 0x7f, /* udma0-6 ; FIXME */
271 .port_ops = &pdc_sata_ops,
277 .flags = PDC_COMMON_FLAGS | ATA_FLAG_SATA,
278 .pio_mask = 0x1f, /* pio0-4 */
279 .mwdma_mask = 0x07, /* mwdma0-2 */
280 .udma_mask = 0x7f, /* udma0-6 ; FIXME */
281 .port_ops = &pdc_sata_ops,
285 static const struct pci_device_id pdc_ata_pci_tbl[] = {
286 { PCI_VDEVICE(PROMISE, 0x3371), board_2037x },
287 { PCI_VDEVICE(PROMISE, 0x3373), board_2037x },
288 { PCI_VDEVICE(PROMISE, 0x3375), board_2037x },
289 { PCI_VDEVICE(PROMISE, 0x3376), board_2037x },
290 { PCI_VDEVICE(PROMISE, 0x3570), board_2057x },
291 { PCI_VDEVICE(PROMISE, 0x3571), board_2057x },
292 { PCI_VDEVICE(PROMISE, 0x3574), board_2057x },
293 { PCI_VDEVICE(PROMISE, 0x3577), board_2057x },
294 { PCI_VDEVICE(PROMISE, 0x3d73), board_2057x },
295 { PCI_VDEVICE(PROMISE, 0x3d75), board_2057x },
297 { PCI_VDEVICE(PROMISE, 0x3318), board_20319 },
298 { PCI_VDEVICE(PROMISE, 0x3319), board_20319 },
299 { PCI_VDEVICE(PROMISE, 0x3515), board_20319 },
300 { PCI_VDEVICE(PROMISE, 0x3519), board_20319 },
301 { PCI_VDEVICE(PROMISE, 0x3d17), board_40518 },
302 { PCI_VDEVICE(PROMISE, 0x3d18), board_40518 },
304 { PCI_VDEVICE(PROMISE, 0x6629), board_20619 },
306 { } /* terminate list */
310 static struct pci_driver pdc_ata_pci_driver = {
312 .id_table = pdc_ata_pci_tbl,
313 .probe = pdc_ata_init_one,
314 .remove = ata_pci_remove_one,
318 static int pdc_port_start(struct ata_port *ap)
320 struct device *dev = ap->host->dev;
321 struct pdc_host_priv *hp = ap->host->private_data;
322 struct pdc_port_priv *pp;
325 /* fix up port flags and cable type for SATA+PATA chips */
326 ap->flags |= hp->port_flags[ap->port_no];
327 if (ap->flags & ATA_FLAG_SATA)
328 ap->cbl = ATA_CBL_SATA;
330 rc = ata_port_start(ap);
334 pp = devm_kzalloc(dev, sizeof(*pp), GFP_KERNEL);
338 pp->pkt = dmam_alloc_coherent(dev, 128, &pp->pkt_dma, GFP_KERNEL);
342 ap->private_data = pp;
344 /* fix up PHYMODE4 align timing */
345 if ((hp->flags & PDC_FLAG_GEN_II) && sata_scr_valid(ap)) {
346 void __iomem *mmio = (void __iomem *) ap->ioaddr.scr_addr;
349 tmp = readl(mmio + 0x014);
350 tmp = (tmp & ~3) | 1; /* set bits 1:0 = 0:1 */
351 writel(tmp, mmio + 0x014);
357 static void pdc_reset_port(struct ata_port *ap)
359 void __iomem *mmio = ap->ioaddr.cmd_addr + PDC_CTLSTAT;
363 for (i = 11; i > 0; i--) {
376 readl(mmio); /* flush */
379 static void pdc_pata_cbl_detect(struct ata_port *ap)
382 void __iomem *mmio = (void __iomem *) ap->ioaddr.cmd_addr + PDC_CTLSTAT + 0x03;
387 ap->cbl = ATA_CBL_PATA40;
388 ap->udma_mask &= ATA_UDMA_MASK_40C;
390 ap->cbl = ATA_CBL_PATA80;
393 static void pdc_pata_phy_reset(struct ata_port *ap)
395 pdc_pata_cbl_detect(ap);
401 static u32 pdc_sata_scr_read (struct ata_port *ap, unsigned int sc_reg)
403 if (sc_reg > SCR_CONTROL || ap->cbl != ATA_CBL_SATA)
405 return readl(ap->ioaddr.scr_addr + (sc_reg * 4));
409 static void pdc_sata_scr_write (struct ata_port *ap, unsigned int sc_reg,
412 if (sc_reg > SCR_CONTROL || ap->cbl != ATA_CBL_SATA)
414 writel(val, ap->ioaddr.scr_addr + (sc_reg * 4));
417 static void pdc_atapi_pkt(struct ata_queued_cmd *qc)
419 struct ata_port *ap = qc->ap;
420 dma_addr_t sg_table = ap->prd_dma;
421 unsigned int cdb_len = qc->dev->cdb_len;
423 struct pdc_port_priv *pp = ap->private_data;
425 u32 *buf32 = (u32 *) buf;
426 unsigned int dev_sel, feature, nbytes;
428 /* set control bits (byte 0), zero delay seq id (byte 3),
429 * and seq id (byte 2)
431 switch (qc->tf.protocol) {
432 case ATA_PROT_ATAPI_DMA:
433 if (!(qc->tf.flags & ATA_TFLAG_WRITE))
434 buf32[0] = cpu_to_le32(PDC_PKT_READ);
438 case ATA_PROT_ATAPI_NODATA:
439 buf32[0] = cpu_to_le32(PDC_PKT_NODATA);
445 buf32[1] = cpu_to_le32(sg_table); /* S/G table addr */
446 buf32[2] = 0; /* no next-packet */
449 if (sata_scr_valid(ap)) {
450 dev_sel = PDC_DEVICE_SATA;
452 dev_sel = ATA_DEVICE_OBS;
453 if (qc->dev->devno != 0)
456 buf[12] = (1 << 5) | ATA_REG_DEVICE;
458 buf[14] = (1 << 5) | ATA_REG_DEVICE | PDC_PKT_CLEAR_BSY;
459 buf[15] = dev_sel; /* once more, waiting for BSY to clear */
461 buf[16] = (1 << 5) | ATA_REG_NSECT;
463 buf[18] = (1 << 5) | ATA_REG_LBAL;
466 /* set feature and byte counter registers */
467 if (qc->tf.protocol != ATA_PROT_ATAPI_DMA) {
468 feature = PDC_FEATURE_ATAPI_PIO;
469 /* set byte counter register to real transfer byte count */
474 feature = PDC_FEATURE_ATAPI_DMA;
475 /* set byte counter register to 0 */
478 buf[20] = (1 << 5) | ATA_REG_FEATURE;
480 buf[22] = (1 << 5) | ATA_REG_BYTEL;
481 buf[23] = nbytes & 0xFF;
482 buf[24] = (1 << 5) | ATA_REG_BYTEH;
483 buf[25] = (nbytes >> 8) & 0xFF;
485 /* send ATAPI packet command 0xA0 */
486 buf[26] = (1 << 5) | ATA_REG_CMD;
487 buf[27] = ATA_CMD_PACKET;
489 /* select drive and check DRQ */
490 buf[28] = (1 << 5) | ATA_REG_DEVICE | PDC_PKT_WAIT_DRDY;
493 /* we can represent cdb lengths 2/4/6/8/10/12/14/16 */
494 BUG_ON(cdb_len & ~0x1E);
496 /* append the CDB as the final part */
497 buf[30] = (((cdb_len >> 1) & 7) << 5) | ATA_REG_DATA | PDC_LAST_REG;
498 memcpy(buf+31, cdb, cdb_len);
501 static void pdc_qc_prep(struct ata_queued_cmd *qc)
503 struct pdc_port_priv *pp = qc->ap->private_data;
508 switch (qc->tf.protocol) {
513 case ATA_PROT_NODATA:
514 i = pdc_pkt_header(&qc->tf, qc->ap->prd_dma,
515 qc->dev->devno, pp->pkt);
517 if (qc->tf.flags & ATA_TFLAG_LBA48)
518 i = pdc_prep_lba48(&qc->tf, pp->pkt, i);
520 i = pdc_prep_lba28(&qc->tf, pp->pkt, i);
522 pdc_pkt_footer(&qc->tf, pp->pkt, i);
529 case ATA_PROT_ATAPI_DMA:
532 case ATA_PROT_ATAPI_NODATA:
541 static void pdc_freeze(struct ata_port *ap)
543 void __iomem *mmio = (void __iomem *) ap->ioaddr.cmd_addr;
546 tmp = readl(mmio + PDC_CTLSTAT);
547 tmp |= PDC_IRQ_DISABLE;
548 tmp &= ~PDC_DMA_ENABLE;
549 writel(tmp, mmio + PDC_CTLSTAT);
550 readl(mmio + PDC_CTLSTAT); /* flush */
553 static void pdc_thaw(struct ata_port *ap)
555 void __iomem *mmio = (void __iomem *) ap->ioaddr.cmd_addr;
559 readl(mmio + PDC_INT_SEQMASK);
561 /* turn IRQ back on */
562 tmp = readl(mmio + PDC_CTLSTAT);
563 tmp &= ~PDC_IRQ_DISABLE;
564 writel(tmp, mmio + PDC_CTLSTAT);
565 readl(mmio + PDC_CTLSTAT); /* flush */
568 static void pdc_error_handler(struct ata_port *ap)
570 ata_reset_fn_t hardreset;
572 if (!(ap->pflags & ATA_PFLAG_FROZEN))
576 if (sata_scr_valid(ap))
577 hardreset = sata_std_hardreset;
579 /* perform recovery */
580 ata_do_eh(ap, ata_std_prereset, ata_std_softreset, hardreset,
584 static void pdc_post_internal_cmd(struct ata_queued_cmd *qc)
586 struct ata_port *ap = qc->ap;
588 if (qc->flags & ATA_QCFLAG_FAILED)
589 qc->err_mask |= AC_ERR_OTHER;
591 /* make DMA engine forget about the failed command */
596 static void pdc_eng_timeout(struct ata_port *ap)
598 struct ata_host *host = ap->host;
600 struct ata_queued_cmd *qc;
605 spin_lock_irqsave(&host->lock, flags);
607 qc = ata_qc_from_tag(ap, ap->active_tag);
609 switch (qc->tf.protocol) {
611 case ATA_PROT_NODATA:
612 ata_port_printk(ap, KERN_ERR, "command timeout\n");
613 drv_stat = ata_wait_idle(ap);
614 qc->err_mask |= __ac_err_mask(drv_stat);
618 drv_stat = ata_busy_wait(ap, ATA_BUSY | ATA_DRQ, 1000);
620 ata_port_printk(ap, KERN_ERR,
621 "unknown timeout, cmd 0x%x stat 0x%x\n",
622 qc->tf.command, drv_stat);
624 qc->err_mask |= ac_err_mask(drv_stat);
628 spin_unlock_irqrestore(&host->lock, flags);
629 ata_eh_qc_complete(qc);
633 static inline unsigned int pdc_host_intr( struct ata_port *ap,
634 struct ata_queued_cmd *qc)
636 unsigned int handled = 0;
638 void __iomem *mmio = ap->ioaddr.cmd_addr + PDC_GLOBAL_CTL;
641 if (tmp & PDC_ERR_MASK) {
642 qc->err_mask |= AC_ERR_DEV;
646 switch (qc->tf.protocol) {
648 case ATA_PROT_NODATA:
649 case ATA_PROT_ATAPI_DMA:
650 case ATA_PROT_ATAPI_NODATA:
651 qc->err_mask |= ac_err_mask(ata_wait_idle(ap));
657 ap->stats.idle_irq++;
664 static void pdc_irq_clear(struct ata_port *ap)
666 struct ata_host *host = ap->host;
667 void __iomem *mmio = host->iomap[PDC_MMIO_BAR];
669 readl(mmio + PDC_INT_SEQMASK);
672 static irqreturn_t pdc_interrupt (int irq, void *dev_instance)
674 struct ata_host *host = dev_instance;
678 unsigned int handled = 0;
679 void __iomem *mmio_base;
683 if (!host || !host->iomap[PDC_MMIO_BAR]) {
684 VPRINTK("QUICK EXIT\n");
688 mmio_base = host->iomap[PDC_MMIO_BAR];
690 /* reading should also clear interrupts */
691 mask = readl(mmio_base + PDC_INT_SEQMASK);
693 if (mask == 0xffffffff) {
694 VPRINTK("QUICK EXIT 2\n");
698 spin_lock(&host->lock);
700 mask &= 0xffff; /* only 16 tags possible */
702 VPRINTK("QUICK EXIT 3\n");
706 writel(mask, mmio_base + PDC_INT_SEQMASK);
708 for (i = 0; i < host->n_ports; i++) {
709 VPRINTK("port %u\n", i);
711 tmp = mask & (1 << (i + 1));
713 !(ap->flags & ATA_FLAG_DISABLED)) {
714 struct ata_queued_cmd *qc;
716 qc = ata_qc_from_tag(ap, ap->active_tag);
717 if (qc && (!(qc->tf.flags & ATA_TFLAG_POLLING)))
718 handled += pdc_host_intr(ap, qc);
725 spin_unlock(&host->lock);
726 return IRQ_RETVAL(handled);
729 static inline void pdc_packet_start(struct ata_queued_cmd *qc)
731 struct ata_port *ap = qc->ap;
732 struct pdc_port_priv *pp = ap->private_data;
733 void __iomem *mmio = ap->host->iomap[PDC_MMIO_BAR];
734 unsigned int port_no = ap->port_no;
735 u8 seq = (u8) (port_no + 1);
737 VPRINTK("ENTER, ap %p\n", ap);
739 writel(0x00000001, mmio + (seq * 4));
740 readl(mmio + (seq * 4)); /* flush */
743 wmb(); /* flush PRD, pkt writes */
744 writel(pp->pkt_dma, ap->ioaddr.cmd_addr + PDC_PKT_SUBMIT);
745 readl(ap->ioaddr.cmd_addr + PDC_PKT_SUBMIT); /* flush */
748 static unsigned int pdc_qc_issue_prot(struct ata_queued_cmd *qc)
750 switch (qc->tf.protocol) {
751 case ATA_PROT_ATAPI_NODATA:
752 if (qc->dev->flags & ATA_DFLAG_CDB_INTR)
755 case ATA_PROT_ATAPI_DMA:
757 case ATA_PROT_NODATA:
758 pdc_packet_start(qc);
765 return ata_qc_issue_prot(qc);
768 static void pdc_tf_load_mmio(struct ata_port *ap, const struct ata_taskfile *tf)
770 WARN_ON (tf->protocol == ATA_PROT_DMA ||
771 tf->protocol == ATA_PROT_NODATA);
776 static void pdc_exec_command_mmio(struct ata_port *ap, const struct ata_taskfile *tf)
778 WARN_ON (tf->protocol == ATA_PROT_DMA ||
779 tf->protocol == ATA_PROT_NODATA);
780 ata_exec_command(ap, tf);
783 static int pdc_check_atapi_dma(struct ata_queued_cmd *qc)
785 u8 *scsicmd = qc->scsicmd->cmnd;
786 int pio = 1; /* atapi dma off by default */
788 /* Whitelist commands that may use DMA. */
789 switch (scsicmd[0]) {
796 case 0xad: /* READ_DVD_STRUCTURE */
797 case 0xbe: /* READ_CD */
800 /* -45150 (FFFF4FA2) to -1 (FFFFFFFF) shall use PIO mode */
801 if (scsicmd[0] == WRITE_10) {
803 lba = (scsicmd[2] << 24) | (scsicmd[3] << 16) | (scsicmd[4] << 8) | scsicmd[5];
804 if (lba >= 0xFFFF4FA2)
810 static int pdc_old_check_atapi_dma(struct ata_queued_cmd *qc)
812 struct ata_port *ap = qc->ap;
814 /* First generation chips cannot use ATAPI DMA on SATA ports */
815 if (sata_scr_valid(ap))
817 return pdc_check_atapi_dma(qc);
820 static void pdc_ata_setup_port(struct ata_ioports *port, void __iomem *base)
822 port->cmd_addr = base;
823 port->data_addr = base;
825 port->error_addr = base + 0x4;
826 port->nsect_addr = base + 0x8;
827 port->lbal_addr = base + 0xc;
828 port->lbam_addr = base + 0x10;
829 port->lbah_addr = base + 0x14;
830 port->device_addr = base + 0x18;
832 port->status_addr = base + 0x1c;
833 port->altstatus_addr =
834 port->ctl_addr = base + 0x38;
838 static void pdc_host_init(unsigned int chip_id, struct ata_probe_ent *pe)
840 void __iomem *mmio = pe->iomap[PDC_MMIO_BAR];
841 struct pdc_host_priv *hp = pe->private_data;
845 if (hp->flags & PDC_FLAG_GEN_II)
846 hotplug_offset = PDC2_SATA_PLUG_CSR;
848 hotplug_offset = PDC_SATA_PLUG_CSR;
851 * Except for the hotplug stuff, this is voodoo from the
852 * Promise driver. Label this entire section
853 * "TODO: figure out why we do this"
856 /* enable BMR_BURST, maybe change FIFO_SHD to 8 dwords */
857 tmp = readl(mmio + PDC_FLASH_CTL);
858 tmp |= 0x02000; /* bit 13 (enable bmr burst) */
859 if (!(hp->flags & PDC_FLAG_GEN_II))
860 tmp |= 0x10000; /* bit 16 (fifo threshold at 8 dw) */
861 writel(tmp, mmio + PDC_FLASH_CTL);
863 /* clear plug/unplug flags for all ports */
864 tmp = readl(mmio + hotplug_offset);
865 writel(tmp | 0xff, mmio + hotplug_offset);
867 /* mask plug/unplug ints */
868 tmp = readl(mmio + hotplug_offset);
869 writel(tmp | 0xff0000, mmio + hotplug_offset);
871 /* don't initialise TBG or SLEW on 2nd generation chips */
872 if (hp->flags & PDC_FLAG_GEN_II)
875 /* reduce TBG clock to 133 Mhz. */
876 tmp = readl(mmio + PDC_TBG_MODE);
877 tmp &= ~0x30000; /* clear bit 17, 16*/
878 tmp |= 0x10000; /* set bit 17:16 = 0:1 */
879 writel(tmp, mmio + PDC_TBG_MODE);
881 readl(mmio + PDC_TBG_MODE); /* flush */
884 /* adjust slew rate control register. */
885 tmp = readl(mmio + PDC_SLEW_CTL);
886 tmp &= 0xFFFFF03F; /* clear bit 11 ~ 6 */
887 tmp |= 0x00000900; /* set bit 11-9 = 100b , bit 8-6 = 100 */
888 writel(tmp, mmio + PDC_SLEW_CTL);
891 static int pdc_ata_init_one (struct pci_dev *pdev, const struct pci_device_id *ent)
893 static int printed_version;
894 struct ata_probe_ent *probe_ent;
895 struct pdc_host_priv *hp;
897 unsigned int board_idx = (unsigned int) ent->driver_data;
901 if (!printed_version++)
902 dev_printk(KERN_DEBUG, &pdev->dev, "version " DRV_VERSION "\n");
904 rc = pcim_enable_device(pdev);
908 rc = pcim_iomap_regions(pdev, 1 << PDC_MMIO_BAR, DRV_NAME);
910 pcim_pin_device(pdev);
914 rc = pci_set_dma_mask(pdev, ATA_DMA_MASK);
917 rc = pci_set_consistent_dma_mask(pdev, ATA_DMA_MASK);
921 probe_ent = devm_kzalloc(&pdev->dev, sizeof(*probe_ent), GFP_KERNEL);
922 if (probe_ent == NULL)
925 probe_ent->dev = pci_dev_to_dev(pdev);
926 INIT_LIST_HEAD(&probe_ent->node);
928 hp = devm_kzalloc(&pdev->dev, sizeof(*hp), GFP_KERNEL);
932 probe_ent->private_data = hp;
934 probe_ent->sht = pdc_port_info[board_idx].sht;
935 probe_ent->port_flags = pdc_port_info[board_idx].flags;
936 probe_ent->pio_mask = pdc_port_info[board_idx].pio_mask;
937 probe_ent->mwdma_mask = pdc_port_info[board_idx].mwdma_mask;
938 probe_ent->udma_mask = pdc_port_info[board_idx].udma_mask;
939 probe_ent->port_ops = pdc_port_info[board_idx].port_ops;
941 probe_ent->irq = pdev->irq;
942 probe_ent->irq_flags = IRQF_SHARED;
943 probe_ent->iomap = pcim_iomap_table(pdev);
945 base = probe_ent->iomap[PDC_MMIO_BAR];
947 pdc_ata_setup_port(&probe_ent->port[0], base + 0x200);
948 pdc_ata_setup_port(&probe_ent->port[1], base + 0x280);
950 probe_ent->port[0].scr_addr = base + 0x400;
951 probe_ent->port[1].scr_addr = base + 0x500;
953 /* notice 4-port boards */
956 hp->flags |= PDC_FLAG_GEN_II;
959 probe_ent->n_ports = 4;
961 pdc_ata_setup_port(&probe_ent->port[2], base + 0x300);
962 pdc_ata_setup_port(&probe_ent->port[3], base + 0x380);
964 probe_ent->port[2].scr_addr = base + 0x600;
965 probe_ent->port[3].scr_addr = base + 0x700;
968 hp->flags |= PDC_FLAG_GEN_II;
971 /* TX2plus boards also have a PATA port */
972 tmp = readb(base + PDC_FLASH_CTL+1);
974 probe_ent->n_ports = 3;
975 pdc_ata_setup_port(&probe_ent->port[2], base + 0x300);
976 hp->port_flags[2] = ATA_FLAG_SLAVE_POSS;
977 printk(KERN_INFO DRV_NAME " PATA port found\n");
979 probe_ent->n_ports = 2;
980 hp->port_flags[0] = ATA_FLAG_SATA;
981 hp->port_flags[1] = ATA_FLAG_SATA;
984 probe_ent->n_ports = 4;
986 pdc_ata_setup_port(&probe_ent->port[2], base + 0x300);
987 pdc_ata_setup_port(&probe_ent->port[3], base + 0x380);
989 probe_ent->port[2].scr_addr = base + 0x600;
990 probe_ent->port[3].scr_addr = base + 0x700;
997 pci_set_master(pdev);
999 /* initialize adapter */
1000 pdc_host_init(board_idx, probe_ent);
1002 if (!ata_device_add(probe_ent))
1005 devm_kfree(&pdev->dev, probe_ent);
1010 static int __init pdc_ata_init(void)
1012 return pci_register_driver(&pdc_ata_pci_driver);
1016 static void __exit pdc_ata_exit(void)
1018 pci_unregister_driver(&pdc_ata_pci_driver);
1022 MODULE_AUTHOR("Jeff Garzik");
1023 MODULE_DESCRIPTION("Promise ATA TX2/TX4/TX4000 low-level driver");
1024 MODULE_LICENSE("GPL");
1025 MODULE_DEVICE_TABLE(pci, pdc_ata_pci_tbl);
1026 MODULE_VERSION(DRV_VERSION);
1028 module_init(pdc_ata_init);
1029 module_exit(pdc_ata_exit);