Merge branch 'irq-pio'
[linux-2.6/kmemtrace.git] / drivers / scsi / sata_promise.c
blobbb000438cb6c0a578aed45cd1a85ab6b415a838e
1 /*
2 * sata_promise.c - Promise SATA
4 * Maintained by: Jeff Garzik <jgarzik@pobox.com>
5 * Please ALWAYS copy linux-ide@vger.kernel.org
6 * on emails.
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)
14 * any later version.
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_host.h>
43 #include <scsi/scsi_cmnd.h>
44 #include <linux/libata.h>
45 #include <asm/io.h>
46 #include "sata_promise.h"
48 #define DRV_NAME "sata_promise"
49 #define DRV_VERSION "1.04"
52 enum {
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 PDC2_SATA_PLUG_CSR = 0x60, /* SATAII Plug control/status reg */
62 PDC_SLEW_CTL = 0x470, /* slew rate control reg */
64 PDC_ERR_MASK = (1<<19) | (1<<20) | (1<<21) | (1<<22) |
65 (1<<8) | (1<<9) | (1<<10),
67 board_2037x = 0, /* FastTrak S150 TX2plus */
68 board_20319 = 1, /* FastTrak S150 TX4 */
69 board_20619 = 2, /* FastTrak TX4000 */
70 board_20771 = 3, /* FastTrak TX2300 */
71 board_2057x = 4, /* SATAII150 Tx2plus */
72 board_40518 = 5, /* SATAII150 Tx4 */
74 PDC_HAS_PATA = (1 << 1), /* PDC20375/20575 has PATA */
76 PDC_RESET = (1 << 11), /* HDMA reset */
78 PDC_COMMON_FLAGS = ATA_FLAG_NO_LEGACY | ATA_FLAG_SRST |
79 ATA_FLAG_MMIO | ATA_FLAG_NO_ATAPI |
80 ATA_FLAG_PIO_POLLING,
84 struct pdc_port_priv {
85 u8 *pkt;
86 dma_addr_t pkt_dma;
89 struct pdc_host_priv {
90 int hotplug_offset;
93 static u32 pdc_sata_scr_read (struct ata_port *ap, unsigned int sc_reg);
94 static void pdc_sata_scr_write (struct ata_port *ap, unsigned int sc_reg, u32 val);
95 static int pdc_ata_init_one (struct pci_dev *pdev, const struct pci_device_id *ent);
96 static irqreturn_t pdc_interrupt (int irq, void *dev_instance, struct pt_regs *regs);
97 static void pdc_eng_timeout(struct ata_port *ap);
98 static int pdc_port_start(struct ata_port *ap);
99 static void pdc_port_stop(struct ata_port *ap);
100 static void pdc_pata_phy_reset(struct ata_port *ap);
101 static void pdc_sata_phy_reset(struct ata_port *ap);
102 static void pdc_qc_prep(struct ata_queued_cmd *qc);
103 static void pdc_tf_load_mmio(struct ata_port *ap, const struct ata_taskfile *tf);
104 static void pdc_exec_command_mmio(struct ata_port *ap, const struct ata_taskfile *tf);
105 static void pdc_irq_clear(struct ata_port *ap);
106 static unsigned int pdc_qc_issue_prot(struct ata_queued_cmd *qc);
107 static void pdc_host_stop(struct ata_host_set *host_set);
110 static struct scsi_host_template pdc_ata_sht = {
111 .module = THIS_MODULE,
112 .name = DRV_NAME,
113 .ioctl = ata_scsi_ioctl,
114 .queuecommand = ata_scsi_queuecmd,
115 .can_queue = ATA_DEF_QUEUE,
116 .this_id = ATA_SHT_THIS_ID,
117 .sg_tablesize = LIBATA_MAX_PRD,
118 .cmd_per_lun = ATA_SHT_CMD_PER_LUN,
119 .emulated = ATA_SHT_EMULATED,
120 .use_clustering = ATA_SHT_USE_CLUSTERING,
121 .proc_name = DRV_NAME,
122 .dma_boundary = ATA_DMA_BOUNDARY,
123 .slave_configure = ata_scsi_slave_config,
124 .bios_param = ata_std_bios_param,
127 static const struct ata_port_operations pdc_sata_ops = {
128 .port_disable = ata_port_disable,
129 .tf_load = pdc_tf_load_mmio,
130 .tf_read = ata_tf_read,
131 .check_status = ata_check_status,
132 .exec_command = pdc_exec_command_mmio,
133 .dev_select = ata_std_dev_select,
135 .phy_reset = pdc_sata_phy_reset,
137 .qc_prep = pdc_qc_prep,
138 .qc_issue = pdc_qc_issue_prot,
139 .eng_timeout = pdc_eng_timeout,
140 .irq_handler = pdc_interrupt,
141 .irq_clear = pdc_irq_clear,
143 .scr_read = pdc_sata_scr_read,
144 .scr_write = pdc_sata_scr_write,
145 .port_start = pdc_port_start,
146 .port_stop = pdc_port_stop,
147 .host_stop = pdc_host_stop,
150 static const struct ata_port_operations pdc_pata_ops = {
151 .port_disable = ata_port_disable,
152 .tf_load = pdc_tf_load_mmio,
153 .tf_read = ata_tf_read,
154 .check_status = ata_check_status,
155 .exec_command = pdc_exec_command_mmio,
156 .dev_select = ata_std_dev_select,
158 .phy_reset = pdc_pata_phy_reset,
160 .qc_prep = pdc_qc_prep,
161 .qc_issue = pdc_qc_issue_prot,
162 .eng_timeout = pdc_eng_timeout,
163 .irq_handler = pdc_interrupt,
164 .irq_clear = pdc_irq_clear,
166 .port_start = pdc_port_start,
167 .port_stop = pdc_port_stop,
168 .host_stop = pdc_host_stop,
171 static const struct ata_port_info pdc_port_info[] = {
172 /* board_2037x */
174 .sht = &pdc_ata_sht,
175 .host_flags = PDC_COMMON_FLAGS | ATA_FLAG_SATA,
176 .pio_mask = 0x1f, /* pio0-4 */
177 .mwdma_mask = 0x07, /* mwdma0-2 */
178 .udma_mask = 0x7f, /* udma0-6 ; FIXME */
179 .port_ops = &pdc_sata_ops,
182 /* board_20319 */
184 .sht = &pdc_ata_sht,
185 .host_flags = PDC_COMMON_FLAGS | ATA_FLAG_SATA,
186 .pio_mask = 0x1f, /* pio0-4 */
187 .mwdma_mask = 0x07, /* mwdma0-2 */
188 .udma_mask = 0x7f, /* udma0-6 ; FIXME */
189 .port_ops = &pdc_sata_ops,
192 /* board_20619 */
194 .sht = &pdc_ata_sht,
195 .host_flags = PDC_COMMON_FLAGS | ATA_FLAG_SLAVE_POSS,
196 .pio_mask = 0x1f, /* pio0-4 */
197 .mwdma_mask = 0x07, /* mwdma0-2 */
198 .udma_mask = 0x7f, /* udma0-6 ; FIXME */
199 .port_ops = &pdc_pata_ops,
202 /* board_20771 */
204 .sht = &pdc_ata_sht,
205 .host_flags = PDC_COMMON_FLAGS | ATA_FLAG_SATA,
206 .pio_mask = 0x1f, /* pio0-4 */
207 .mwdma_mask = 0x07, /* mwdma0-2 */
208 .udma_mask = 0x7f, /* udma0-6 ; FIXME */
209 .port_ops = &pdc_sata_ops,
212 /* board_2057x */
214 .sht = &pdc_ata_sht,
215 .host_flags = PDC_COMMON_FLAGS | ATA_FLAG_SATA,
216 .pio_mask = 0x1f, /* pio0-4 */
217 .mwdma_mask = 0x07, /* mwdma0-2 */
218 .udma_mask = 0x7f, /* udma0-6 ; FIXME */
219 .port_ops = &pdc_sata_ops,
222 /* board_40518 */
224 .sht = &pdc_ata_sht,
225 .host_flags = PDC_COMMON_FLAGS | ATA_FLAG_SATA,
226 .pio_mask = 0x1f, /* pio0-4 */
227 .mwdma_mask = 0x07, /* mwdma0-2 */
228 .udma_mask = 0x7f, /* udma0-6 ; FIXME */
229 .port_ops = &pdc_sata_ops,
233 static const struct pci_device_id pdc_ata_pci_tbl[] = {
234 { PCI_VENDOR_ID_PROMISE, 0x3371, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
235 board_2037x },
236 { PCI_VENDOR_ID_PROMISE, 0x3570, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
237 board_2037x },
238 { PCI_VENDOR_ID_PROMISE, 0x3571, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
239 board_2037x },
240 { PCI_VENDOR_ID_PROMISE, 0x3373, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
241 board_2037x },
242 { PCI_VENDOR_ID_PROMISE, 0x3375, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
243 board_2037x },
244 { PCI_VENDOR_ID_PROMISE, 0x3376, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
245 board_2037x },
246 { PCI_VENDOR_ID_PROMISE, 0x3574, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
247 board_2057x },
248 { PCI_VENDOR_ID_PROMISE, 0x3d75, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
249 board_2057x },
250 { PCI_VENDOR_ID_PROMISE, 0x3d73, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
251 board_2037x },
253 { PCI_VENDOR_ID_PROMISE, 0x3318, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
254 board_20319 },
255 { PCI_VENDOR_ID_PROMISE, 0x3319, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
256 board_20319 },
257 { PCI_VENDOR_ID_PROMISE, 0x3515, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
258 board_20319 },
259 { PCI_VENDOR_ID_PROMISE, 0x3519, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
260 board_20319 },
261 { PCI_VENDOR_ID_PROMISE, 0x3d17, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
262 board_20319 },
263 { PCI_VENDOR_ID_PROMISE, 0x3d18, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
264 board_40518 },
266 { PCI_VENDOR_ID_PROMISE, 0x6629, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
267 board_20619 },
269 { PCI_VENDOR_ID_PROMISE, 0x3570, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
270 board_20771 },
271 { } /* terminate list */
275 static struct pci_driver pdc_ata_pci_driver = {
276 .name = DRV_NAME,
277 .id_table = pdc_ata_pci_tbl,
278 .probe = pdc_ata_init_one,
279 .remove = ata_pci_remove_one,
283 static int pdc_port_start(struct ata_port *ap)
285 struct device *dev = ap->host_set->dev;
286 struct pdc_port_priv *pp;
287 int rc;
289 rc = ata_port_start(ap);
290 if (rc)
291 return rc;
293 pp = kzalloc(sizeof(*pp), GFP_KERNEL);
294 if (!pp) {
295 rc = -ENOMEM;
296 goto err_out;
299 pp->pkt = dma_alloc_coherent(dev, 128, &pp->pkt_dma, GFP_KERNEL);
300 if (!pp->pkt) {
301 rc = -ENOMEM;
302 goto err_out_kfree;
305 ap->private_data = pp;
307 return 0;
309 err_out_kfree:
310 kfree(pp);
311 err_out:
312 ata_port_stop(ap);
313 return rc;
317 static void pdc_port_stop(struct ata_port *ap)
319 struct device *dev = ap->host_set->dev;
320 struct pdc_port_priv *pp = ap->private_data;
322 ap->private_data = NULL;
323 dma_free_coherent(dev, 128, pp->pkt, pp->pkt_dma);
324 kfree(pp);
325 ata_port_stop(ap);
329 static void pdc_host_stop(struct ata_host_set *host_set)
331 struct pdc_host_priv *hp = host_set->private_data;
333 ata_pci_host_stop(host_set);
335 kfree(hp);
339 static void pdc_reset_port(struct ata_port *ap)
341 void __iomem *mmio = (void __iomem *) ap->ioaddr.cmd_addr + PDC_CTLSTAT;
342 unsigned int i;
343 u32 tmp;
345 for (i = 11; i > 0; i--) {
346 tmp = readl(mmio);
347 if (tmp & PDC_RESET)
348 break;
350 udelay(100);
352 tmp |= PDC_RESET;
353 writel(tmp, mmio);
356 tmp &= ~PDC_RESET;
357 writel(tmp, mmio);
358 readl(mmio); /* flush */
361 static void pdc_sata_phy_reset(struct ata_port *ap)
363 pdc_reset_port(ap);
364 sata_phy_reset(ap);
367 static void pdc_pata_phy_reset(struct ata_port *ap)
369 /* FIXME: add cable detect. Don't assume 40-pin cable */
370 ap->cbl = ATA_CBL_PATA40;
371 ap->udma_mask &= ATA_UDMA_MASK_40C;
373 pdc_reset_port(ap);
374 ata_port_probe(ap);
375 ata_bus_reset(ap);
378 static u32 pdc_sata_scr_read (struct ata_port *ap, unsigned int sc_reg)
380 if (sc_reg > SCR_CONTROL)
381 return 0xffffffffU;
382 return readl((void __iomem *) ap->ioaddr.scr_addr + (sc_reg * 4));
386 static void pdc_sata_scr_write (struct ata_port *ap, unsigned int sc_reg,
387 u32 val)
389 if (sc_reg > SCR_CONTROL)
390 return;
391 writel(val, (void __iomem *) ap->ioaddr.scr_addr + (sc_reg * 4));
394 static void pdc_qc_prep(struct ata_queued_cmd *qc)
396 struct pdc_port_priv *pp = qc->ap->private_data;
397 unsigned int i;
399 VPRINTK("ENTER\n");
401 switch (qc->tf.protocol) {
402 case ATA_PROT_DMA:
403 ata_qc_prep(qc);
404 /* fall through */
406 case ATA_PROT_NODATA:
407 i = pdc_pkt_header(&qc->tf, qc->ap->prd_dma,
408 qc->dev->devno, pp->pkt);
410 if (qc->tf.flags & ATA_TFLAG_LBA48)
411 i = pdc_prep_lba48(&qc->tf, pp->pkt, i);
412 else
413 i = pdc_prep_lba28(&qc->tf, pp->pkt, i);
415 pdc_pkt_footer(&qc->tf, pp->pkt, i);
416 break;
418 default:
419 break;
423 static void pdc_eng_timeout(struct ata_port *ap)
425 struct ata_host_set *host_set = ap->host_set;
426 u8 drv_stat;
427 struct ata_queued_cmd *qc;
428 unsigned long flags;
430 DPRINTK("ENTER\n");
432 spin_lock_irqsave(&host_set->lock, flags);
434 qc = ata_qc_from_tag(ap, ap->active_tag);
436 switch (qc->tf.protocol) {
437 case ATA_PROT_DMA:
438 case ATA_PROT_NODATA:
439 ata_port_printk(ap, KERN_ERR, "command timeout\n");
440 drv_stat = ata_wait_idle(ap);
441 qc->err_mask |= __ac_err_mask(drv_stat);
442 break;
444 default:
445 drv_stat = ata_busy_wait(ap, ATA_BUSY | ATA_DRQ, 1000);
447 ata_port_printk(ap, KERN_ERR,
448 "unknown timeout, cmd 0x%x stat 0x%x\n",
449 qc->tf.command, drv_stat);
451 qc->err_mask |= ac_err_mask(drv_stat);
452 break;
455 spin_unlock_irqrestore(&host_set->lock, flags);
456 ata_eh_qc_complete(qc);
457 DPRINTK("EXIT\n");
460 static inline unsigned int pdc_host_intr( struct ata_port *ap,
461 struct ata_queued_cmd *qc)
463 unsigned int handled = 0;
464 u32 tmp;
465 void __iomem *mmio = (void __iomem *) ap->ioaddr.cmd_addr + PDC_GLOBAL_CTL;
467 tmp = readl(mmio);
468 if (tmp & PDC_ERR_MASK) {
469 qc->err_mask |= AC_ERR_DEV;
470 pdc_reset_port(ap);
473 switch (qc->tf.protocol) {
474 case ATA_PROT_DMA:
475 case ATA_PROT_NODATA:
476 qc->err_mask |= ac_err_mask(ata_wait_idle(ap));
477 ata_qc_complete(qc);
478 handled = 1;
479 break;
481 default:
482 ap->stats.idle_irq++;
483 break;
486 return handled;
489 static void pdc_irq_clear(struct ata_port *ap)
491 struct ata_host_set *host_set = ap->host_set;
492 void __iomem *mmio = host_set->mmio_base;
494 readl(mmio + PDC_INT_SEQMASK);
497 static irqreturn_t pdc_interrupt (int irq, void *dev_instance, struct pt_regs *regs)
499 struct ata_host_set *host_set = dev_instance;
500 struct ata_port *ap;
501 u32 mask = 0;
502 unsigned int i, tmp;
503 unsigned int handled = 0;
504 void __iomem *mmio_base;
506 VPRINTK("ENTER\n");
508 if (!host_set || !host_set->mmio_base) {
509 VPRINTK("QUICK EXIT\n");
510 return IRQ_NONE;
513 mmio_base = host_set->mmio_base;
515 /* reading should also clear interrupts */
516 mask = readl(mmio_base + PDC_INT_SEQMASK);
518 if (mask == 0xffffffff) {
519 VPRINTK("QUICK EXIT 2\n");
520 return IRQ_NONE;
523 spin_lock(&host_set->lock);
525 mask &= 0xffff; /* only 16 tags possible */
526 if (!mask) {
527 VPRINTK("QUICK EXIT 3\n");
528 goto done_irq;
531 writel(mask, mmio_base + PDC_INT_SEQMASK);
533 for (i = 0; i < host_set->n_ports; i++) {
534 VPRINTK("port %u\n", i);
535 ap = host_set->ports[i];
536 tmp = mask & (1 << (i + 1));
537 if (tmp && ap &&
538 !(ap->flags & ATA_FLAG_DISABLED)) {
539 struct ata_queued_cmd *qc;
541 qc = ata_qc_from_tag(ap, ap->active_tag);
542 if (qc && (!(qc->tf.flags & ATA_TFLAG_POLLING)))
543 handled += pdc_host_intr(ap, qc);
547 VPRINTK("EXIT\n");
549 done_irq:
550 spin_unlock(&host_set->lock);
551 return IRQ_RETVAL(handled);
554 static inline void pdc_packet_start(struct ata_queued_cmd *qc)
556 struct ata_port *ap = qc->ap;
557 struct pdc_port_priv *pp = ap->private_data;
558 unsigned int port_no = ap->port_no;
559 u8 seq = (u8) (port_no + 1);
561 VPRINTK("ENTER, ap %p\n", ap);
563 writel(0x00000001, ap->host_set->mmio_base + (seq * 4));
564 readl(ap->host_set->mmio_base + (seq * 4)); /* flush */
566 pp->pkt[2] = seq;
567 wmb(); /* flush PRD, pkt writes */
568 writel(pp->pkt_dma, (void __iomem *) ap->ioaddr.cmd_addr + PDC_PKT_SUBMIT);
569 readl((void __iomem *) ap->ioaddr.cmd_addr + PDC_PKT_SUBMIT); /* flush */
572 static unsigned int pdc_qc_issue_prot(struct ata_queued_cmd *qc)
574 switch (qc->tf.protocol) {
575 case ATA_PROT_DMA:
576 case ATA_PROT_NODATA:
577 pdc_packet_start(qc);
578 return 0;
580 case ATA_PROT_ATAPI_DMA:
581 BUG();
582 break;
584 default:
585 break;
588 return ata_qc_issue_prot(qc);
591 static void pdc_tf_load_mmio(struct ata_port *ap, const struct ata_taskfile *tf)
593 WARN_ON (tf->protocol == ATA_PROT_DMA ||
594 tf->protocol == ATA_PROT_NODATA);
595 ata_tf_load(ap, tf);
599 static void pdc_exec_command_mmio(struct ata_port *ap, const struct ata_taskfile *tf)
601 WARN_ON (tf->protocol == ATA_PROT_DMA ||
602 tf->protocol == ATA_PROT_NODATA);
603 ata_exec_command(ap, tf);
607 static void pdc_ata_setup_port(struct ata_ioports *port, unsigned long base)
609 port->cmd_addr = base;
610 port->data_addr = base;
611 port->feature_addr =
612 port->error_addr = base + 0x4;
613 port->nsect_addr = base + 0x8;
614 port->lbal_addr = base + 0xc;
615 port->lbam_addr = base + 0x10;
616 port->lbah_addr = base + 0x14;
617 port->device_addr = base + 0x18;
618 port->command_addr =
619 port->status_addr = base + 0x1c;
620 port->altstatus_addr =
621 port->ctl_addr = base + 0x38;
625 static void pdc_host_init(unsigned int chip_id, struct ata_probe_ent *pe)
627 void __iomem *mmio = pe->mmio_base;
628 struct pdc_host_priv *hp = pe->private_data;
629 int hotplug_offset = hp->hotplug_offset;
630 u32 tmp;
633 * Except for the hotplug stuff, this is voodoo from the
634 * Promise driver. Label this entire section
635 * "TODO: figure out why we do this"
638 /* change FIFO_SHD to 8 dwords, enable BMR_BURST */
639 tmp = readl(mmio + PDC_FLASH_CTL);
640 tmp |= 0x12000; /* bit 16 (fifo 8 dw) and 13 (bmr burst?) */
641 writel(tmp, mmio + PDC_FLASH_CTL);
643 /* clear plug/unplug flags for all ports */
644 tmp = readl(mmio + hotplug_offset);
645 writel(tmp | 0xff, mmio + hotplug_offset);
647 /* mask plug/unplug ints */
648 tmp = readl(mmio + hotplug_offset);
649 writel(tmp | 0xff0000, mmio + hotplug_offset);
651 /* reduce TBG clock to 133 Mhz. */
652 tmp = readl(mmio + PDC_TBG_MODE);
653 tmp &= ~0x30000; /* clear bit 17, 16*/
654 tmp |= 0x10000; /* set bit 17:16 = 0:1 */
655 writel(tmp, mmio + PDC_TBG_MODE);
657 readl(mmio + PDC_TBG_MODE); /* flush */
658 msleep(10);
660 /* adjust slew rate control register. */
661 tmp = readl(mmio + PDC_SLEW_CTL);
662 tmp &= 0xFFFFF03F; /* clear bit 11 ~ 6 */
663 tmp |= 0x00000900; /* set bit 11-9 = 100b , bit 8-6 = 100 */
664 writel(tmp, mmio + PDC_SLEW_CTL);
667 static int pdc_ata_init_one (struct pci_dev *pdev, const struct pci_device_id *ent)
669 static int printed_version;
670 struct ata_probe_ent *probe_ent = NULL;
671 struct pdc_host_priv *hp;
672 unsigned long base;
673 void __iomem *mmio_base;
674 unsigned int board_idx = (unsigned int) ent->driver_data;
675 int pci_dev_busy = 0;
676 int rc;
678 if (!printed_version++)
679 dev_printk(KERN_DEBUG, &pdev->dev, "version " DRV_VERSION "\n");
681 rc = pci_enable_device(pdev);
682 if (rc)
683 return rc;
685 rc = pci_request_regions(pdev, DRV_NAME);
686 if (rc) {
687 pci_dev_busy = 1;
688 goto err_out;
691 rc = pci_set_dma_mask(pdev, ATA_DMA_MASK);
692 if (rc)
693 goto err_out_regions;
694 rc = pci_set_consistent_dma_mask(pdev, ATA_DMA_MASK);
695 if (rc)
696 goto err_out_regions;
698 probe_ent = kzalloc(sizeof(*probe_ent), GFP_KERNEL);
699 if (probe_ent == NULL) {
700 rc = -ENOMEM;
701 goto err_out_regions;
704 probe_ent->dev = pci_dev_to_dev(pdev);
705 INIT_LIST_HEAD(&probe_ent->node);
707 mmio_base = pci_iomap(pdev, 3, 0);
708 if (mmio_base == NULL) {
709 rc = -ENOMEM;
710 goto err_out_free_ent;
712 base = (unsigned long) mmio_base;
714 hp = kzalloc(sizeof(*hp), GFP_KERNEL);
715 if (hp == NULL) {
716 rc = -ENOMEM;
717 goto err_out_free_ent;
720 /* Set default hotplug offset */
721 hp->hotplug_offset = PDC_SATA_PLUG_CSR;
722 probe_ent->private_data = hp;
724 probe_ent->sht = pdc_port_info[board_idx].sht;
725 probe_ent->host_flags = pdc_port_info[board_idx].host_flags;
726 probe_ent->pio_mask = pdc_port_info[board_idx].pio_mask;
727 probe_ent->mwdma_mask = pdc_port_info[board_idx].mwdma_mask;
728 probe_ent->udma_mask = pdc_port_info[board_idx].udma_mask;
729 probe_ent->port_ops = pdc_port_info[board_idx].port_ops;
731 probe_ent->irq = pdev->irq;
732 probe_ent->irq_flags = SA_SHIRQ;
733 probe_ent->mmio_base = mmio_base;
735 pdc_ata_setup_port(&probe_ent->port[0], base + 0x200);
736 pdc_ata_setup_port(&probe_ent->port[1], base + 0x280);
738 probe_ent->port[0].scr_addr = base + 0x400;
739 probe_ent->port[1].scr_addr = base + 0x500;
741 /* notice 4-port boards */
742 switch (board_idx) {
743 case board_40518:
744 /* Override hotplug offset for SATAII150 */
745 hp->hotplug_offset = PDC2_SATA_PLUG_CSR;
746 /* Fall through */
747 case board_20319:
748 probe_ent->n_ports = 4;
750 pdc_ata_setup_port(&probe_ent->port[2], base + 0x300);
751 pdc_ata_setup_port(&probe_ent->port[3], base + 0x380);
753 probe_ent->port[2].scr_addr = base + 0x600;
754 probe_ent->port[3].scr_addr = base + 0x700;
755 break;
756 case board_2057x:
757 /* Override hotplug offset for SATAII150 */
758 hp->hotplug_offset = PDC2_SATA_PLUG_CSR;
759 /* Fall through */
760 case board_2037x:
761 probe_ent->n_ports = 2;
762 break;
763 case board_20771:
764 probe_ent->n_ports = 2;
765 break;
766 case board_20619:
767 probe_ent->n_ports = 4;
769 pdc_ata_setup_port(&probe_ent->port[2], base + 0x300);
770 pdc_ata_setup_port(&probe_ent->port[3], base + 0x380);
772 probe_ent->port[2].scr_addr = base + 0x600;
773 probe_ent->port[3].scr_addr = base + 0x700;
774 break;
775 default:
776 BUG();
777 break;
780 pci_set_master(pdev);
782 /* initialize adapter */
783 pdc_host_init(board_idx, probe_ent);
785 /* FIXME: Need any other frees than hp? */
786 if (!ata_device_add(probe_ent))
787 kfree(hp);
789 kfree(probe_ent);
791 return 0;
793 err_out_free_ent:
794 kfree(probe_ent);
795 err_out_regions:
796 pci_release_regions(pdev);
797 err_out:
798 if (!pci_dev_busy)
799 pci_disable_device(pdev);
800 return rc;
804 static int __init pdc_ata_init(void)
806 return pci_module_init(&pdc_ata_pci_driver);
810 static void __exit pdc_ata_exit(void)
812 pci_unregister_driver(&pdc_ata_pci_driver);
816 MODULE_AUTHOR("Jeff Garzik");
817 MODULE_DESCRIPTION("Promise ATA TX2/TX4/TX4000 low-level driver");
818 MODULE_LICENSE("GPL");
819 MODULE_DEVICE_TABLE(pci, pdc_ata_pci_tbl);
820 MODULE_VERSION(DRV_VERSION);
822 module_init(pdc_ata_init);
823 module_exit(pdc_ata_exit);