Merge branch 'master'
[pandora-kernel.git] / drivers / scsi / sata_promise.c
1 /*
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  *
10  *
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.
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.
30  *
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>
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"
47
48 #define DRV_NAME        "sata_promise"
49 #define DRV_VERSION     "1.02"
50
51
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         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 */
68         board_20619             = 2,    /* FastTrak TX4000 */
69
70         PDC_HAS_PATA            = (1 << 1), /* PDC20375 has PATA */
71
72         PDC_RESET               = (1 << 11), /* HDMA reset */
73 };
74
75
76 struct pdc_port_priv {
77         u8                      *pkt;
78         dma_addr_t              pkt_dma;
79 };
80
81 static u32 pdc_sata_scr_read (struct ata_port *ap, unsigned int sc_reg);
82 static void pdc_sata_scr_write (struct ata_port *ap, unsigned int sc_reg, u32 val);
83 static int pdc_ata_init_one (struct pci_dev *pdev, const struct pci_device_id *ent);
84 static irqreturn_t pdc_interrupt (int irq, void *dev_instance, struct pt_regs *regs);
85 static void pdc_eng_timeout(struct ata_port *ap);
86 static int pdc_port_start(struct ata_port *ap);
87 static void pdc_port_stop(struct ata_port *ap);
88 static void pdc_pata_phy_reset(struct ata_port *ap);
89 static void pdc_sata_phy_reset(struct ata_port *ap);
90 static void pdc_qc_prep(struct ata_queued_cmd *qc);
91 static void pdc_tf_load_mmio(struct ata_port *ap, const struct ata_taskfile *tf);
92 static void pdc_exec_command_mmio(struct ata_port *ap, const struct ata_taskfile *tf);
93 static void pdc_irq_clear(struct ata_port *ap);
94 static int pdc_qc_issue_prot(struct ata_queued_cmd *qc);
95
96
97 static struct scsi_host_template pdc_ata_sht = {
98         .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
117 static const struct ata_port_operations pdc_sata_ops = {
118         .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,
124
125         .phy_reset              = pdc_sata_phy_reset,
126
127         .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,
132
133         .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,
137         .host_stop              = ata_pci_host_stop,
138 };
139
140 static const struct ata_port_operations pdc_pata_ops = {
141         .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,
158         .host_stop              = ata_pci_host_stop,
159 };
160
161 static struct ata_port_info pdc_port_info[] = {
162         /* 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                                   ATA_FLAG_PIO_POLLING,
168                 .pio_mask       = 0x1f, /* pio0-4 */
169                 .mwdma_mask     = 0x07, /* mwdma0-2 */
170                 .udma_mask      = 0x7f, /* udma0-6 ; FIXME */
171                 .port_ops       = &pdc_sata_ops,
172         },
173
174         /* board_20319 */
175         {
176                 .sht            = &pdc_ata_sht,
177                 .host_flags     = ATA_FLAG_SATA | ATA_FLAG_NO_LEGACY |
178                                   ATA_FLAG_SRST | ATA_FLAG_MMIO |
179                                   ATA_FLAG_PIO_POLLING,
180                 .pio_mask       = 0x1f, /* pio0-4 */
181                 .mwdma_mask     = 0x07, /* mwdma0-2 */
182                 .udma_mask      = 0x7f, /* udma0-6 ; FIXME */
183                 .port_ops       = &pdc_sata_ops,
184         },
185
186         /* board_20619 */
187         {
188                 .sht            = &pdc_ata_sht,
189                 .host_flags     = ATA_FLAG_NO_LEGACY | ATA_FLAG_SRST |
190                                   ATA_FLAG_MMIO | ATA_FLAG_SLAVE_POSS |
191                                   ATA_FLAG_PIO_POLLING,
192                 .pio_mask       = 0x1f, /* pio0-4 */
193                 .mwdma_mask     = 0x07, /* mwdma0-2 */
194                 .udma_mask      = 0x7f, /* udma0-6 ; FIXME */
195                 .port_ops       = &pdc_pata_ops,
196         },
197 };
198
199 static const struct pci_device_id pdc_ata_pci_tbl[] = {
200         { PCI_VENDOR_ID_PROMISE, 0x3371, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
201           board_2037x },
202         { PCI_VENDOR_ID_PROMISE, 0x3570, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
203           board_2037x },
204         { PCI_VENDOR_ID_PROMISE, 0x3571, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
205           board_2037x },
206         { PCI_VENDOR_ID_PROMISE, 0x3373, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
207           board_2037x },
208         { PCI_VENDOR_ID_PROMISE, 0x3375, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
209           board_2037x },
210         { PCI_VENDOR_ID_PROMISE, 0x3376, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
211           board_2037x },
212         { PCI_VENDOR_ID_PROMISE, 0x3574, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
213           board_2037x },
214         { PCI_VENDOR_ID_PROMISE, 0x3d75, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
215           board_2037x },
216         { PCI_VENDOR_ID_PROMISE, 0x3d73, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
217           board_2037x },
218
219         { PCI_VENDOR_ID_PROMISE, 0x3318, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
220           board_20319 },
221         { PCI_VENDOR_ID_PROMISE, 0x3319, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
222           board_20319 },
223         { PCI_VENDOR_ID_PROMISE, 0x3519, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
224           board_20319 },
225         { PCI_VENDOR_ID_PROMISE, 0x3d17, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
226           board_20319 },
227         { PCI_VENDOR_ID_PROMISE, 0x3d18, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
228           board_20319 },
229
230         { PCI_VENDOR_ID_PROMISE, 0x6629, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
231           board_20619 },
232
233         { }     /* terminate list */
234 };
235
236
237 static struct pci_driver pdc_ata_pci_driver = {
238         .name                   = DRV_NAME,
239         .id_table               = pdc_ata_pci_tbl,
240         .probe                  = pdc_ata_init_one,
241         .remove                 = ata_pci_remove_one,
242 };
243
244
245 static int pdc_port_start(struct ata_port *ap)
246 {
247         struct device *dev = ap->host_set->dev;
248         struct pdc_port_priv *pp;
249         int rc;
250
251         rc = ata_port_start(ap);
252         if (rc)
253                 return rc;
254
255         pp = kmalloc(sizeof(*pp), GFP_KERNEL);
256         if (!pp) {
257                 rc = -ENOMEM;
258                 goto err_out;
259         }
260         memset(pp, 0, sizeof(*pp));
261
262         pp->pkt = dma_alloc_coherent(dev, 128, &pp->pkt_dma, GFP_KERNEL);
263         if (!pp->pkt) {
264                 rc = -ENOMEM;
265                 goto err_out_kfree;
266         }
267
268         ap->private_data = pp;
269
270         return 0;
271
272 err_out_kfree:
273         kfree(pp);
274 err_out:
275         ata_port_stop(ap);
276         return rc;
277 }
278
279
280 static void pdc_port_stop(struct ata_port *ap)
281 {
282         struct device *dev = ap->host_set->dev;
283         struct pdc_port_priv *pp = ap->private_data;
284
285         ap->private_data = NULL;
286         dma_free_coherent(dev, 128, pp->pkt, pp->pkt_dma);
287         kfree(pp);
288         ata_port_stop(ap);
289 }
290
291
292 static void pdc_reset_port(struct ata_port *ap)
293 {
294         void __iomem *mmio = (void __iomem *) ap->ioaddr.cmd_addr + PDC_CTLSTAT;
295         unsigned int i;
296         u32 tmp;
297
298         for (i = 11; i > 0; i--) {
299                 tmp = readl(mmio);
300                 if (tmp & PDC_RESET)
301                         break;
302
303                 udelay(100);
304
305                 tmp |= PDC_RESET;
306                 writel(tmp, mmio);
307         }
308
309         tmp &= ~PDC_RESET;
310         writel(tmp, mmio);
311         readl(mmio);    /* flush */
312 }
313
314 static void pdc_sata_phy_reset(struct ata_port *ap)
315 {
316         pdc_reset_port(ap);
317         sata_phy_reset(ap);
318 }
319
320 static void pdc_pata_phy_reset(struct ata_port *ap)
321 {
322         /* FIXME: add cable detect.  Don't assume 40-pin cable */
323         ap->cbl = ATA_CBL_PATA40;
324         ap->udma_mask &= ATA_UDMA_MASK_40C;
325
326         pdc_reset_port(ap);
327         ata_port_probe(ap);
328         ata_bus_reset(ap);
329 }
330
331 static u32 pdc_sata_scr_read (struct ata_port *ap, unsigned int sc_reg)
332 {
333         if (sc_reg > SCR_CONTROL)
334                 return 0xffffffffU;
335         return readl((void __iomem *) ap->ioaddr.scr_addr + (sc_reg * 4));
336 }
337
338
339 static void pdc_sata_scr_write (struct ata_port *ap, unsigned int sc_reg,
340                                u32 val)
341 {
342         if (sc_reg > SCR_CONTROL)
343                 return;
344         writel(val, (void __iomem *) ap->ioaddr.scr_addr + (sc_reg * 4));
345 }
346
347 static void pdc_qc_prep(struct ata_queued_cmd *qc)
348 {
349         struct pdc_port_priv *pp = qc->ap->private_data;
350         unsigned int i;
351
352         VPRINTK("ENTER\n");
353
354         switch (qc->tf.protocol) {
355         case ATA_PROT_DMA:
356                 ata_qc_prep(qc);
357                 /* fall through */
358
359         case ATA_PROT_NODATA:
360                 i = pdc_pkt_header(&qc->tf, qc->ap->prd_dma,
361                                    qc->dev->devno, pp->pkt);
362
363                 if (qc->tf.flags & ATA_TFLAG_LBA48)
364                         i = pdc_prep_lba48(&qc->tf, pp->pkt, i);
365                 else
366                         i = pdc_prep_lba28(&qc->tf, pp->pkt, i);
367
368                 pdc_pkt_footer(&qc->tf, pp->pkt, i);
369                 break;
370
371         default:
372                 break;
373         }
374 }
375
376 static void pdc_eng_timeout(struct ata_port *ap)
377 {
378         struct ata_host_set *host_set = ap->host_set;
379         u8 drv_stat;
380         struct ata_queued_cmd *qc;
381         unsigned long flags;
382
383         DPRINTK("ENTER\n");
384
385         spin_lock_irqsave(&host_set->lock, flags);
386
387         qc = ata_qc_from_tag(ap, ap->active_tag);
388         if (!qc) {
389                 printk(KERN_ERR "ata%u: BUG: timeout without command\n",
390                        ap->id);
391                 goto out;
392         }
393
394         /* hack alert!  We cannot use the supplied completion
395          * function from inside the ->eh_strategy_handler() thread.
396          * libata is the only user of ->eh_strategy_handler() in
397          * any kernel, so the default scsi_done() assumes it is
398          * not being called from the SCSI EH.
399          */
400         qc->scsidone = scsi_finish_command;
401
402         switch (qc->tf.protocol) {
403         case ATA_PROT_DMA:
404         case ATA_PROT_NODATA:
405                 printk(KERN_ERR "ata%u: command timeout\n", ap->id);
406                 drv_stat = ata_wait_idle(ap);
407                 ata_qc_complete(qc, __ac_err_mask(drv_stat));
408                 break;
409
410         default:
411                 drv_stat = ata_busy_wait(ap, ATA_BUSY | ATA_DRQ, 1000);
412
413                 printk(KERN_ERR "ata%u: unknown timeout, cmd 0x%x stat 0x%x\n",
414                        ap->id, qc->tf.command, drv_stat);
415
416                 ata_qc_complete(qc, ac_err_mask(drv_stat));
417                 break;
418         }
419
420 out:
421         spin_unlock_irqrestore(&host_set->lock, flags);
422         DPRINTK("EXIT\n");
423 }
424
425 static inline unsigned int pdc_host_intr( struct ata_port *ap,
426                                           struct ata_queued_cmd *qc)
427 {
428         unsigned int handled = 0, err_mask = 0;
429         u32 tmp;
430         void __iomem *mmio = (void __iomem *) ap->ioaddr.cmd_addr + PDC_GLOBAL_CTL;
431
432         tmp = readl(mmio);
433         if (tmp & PDC_ERR_MASK) {
434                 err_mask = AC_ERR_DEV;
435                 pdc_reset_port(ap);
436         }
437
438         switch (qc->tf.protocol) {
439         case ATA_PROT_DMA:
440         case ATA_PROT_NODATA:
441                 err_mask |= ac_err_mask(ata_wait_idle(ap));
442                 ata_qc_complete(qc, err_mask);
443                 handled = 1;
444                 break;
445
446         default:
447                 ap->stats.idle_irq++;
448                 break;
449         }
450
451         return handled;
452 }
453
454 static void pdc_irq_clear(struct ata_port *ap)
455 {
456         struct ata_host_set *host_set = ap->host_set;
457         void __iomem *mmio = host_set->mmio_base;
458
459         readl(mmio + PDC_INT_SEQMASK);
460 }
461
462 static irqreturn_t pdc_interrupt (int irq, void *dev_instance, struct pt_regs *regs)
463 {
464         struct ata_host_set *host_set = dev_instance;
465         struct ata_port *ap;
466         u32 mask = 0;
467         unsigned int i, tmp;
468         unsigned int handled = 0;
469         void __iomem *mmio_base;
470
471         VPRINTK("ENTER\n");
472
473         if (!host_set || !host_set->mmio_base) {
474                 VPRINTK("QUICK EXIT\n");
475                 return IRQ_NONE;
476         }
477
478         mmio_base = host_set->mmio_base;
479
480         /* reading should also clear interrupts */
481         mask = readl(mmio_base + PDC_INT_SEQMASK);
482
483         if (mask == 0xffffffff) {
484                 VPRINTK("QUICK EXIT 2\n");
485                 return IRQ_NONE;
486         }
487         mask &= 0xffff;         /* only 16 tags possible */
488         if (!mask) {
489                 VPRINTK("QUICK EXIT 3\n");
490                 return IRQ_NONE;
491         }
492
493         spin_lock(&host_set->lock);
494
495         writel(mask, mmio_base + PDC_INT_SEQMASK);
496
497         for (i = 0; i < host_set->n_ports; i++) {
498                 VPRINTK("port %u\n", i);
499                 ap = host_set->ports[i];
500                 tmp = mask & (1 << (i + 1));
501                 if (tmp && ap &&
502                     !(ap->flags & ATA_FLAG_PORT_DISABLED)) {
503                         struct ata_queued_cmd *qc;
504
505                         qc = ata_qc_from_tag(ap, ap->active_tag);
506                         if (qc && (!(qc->tf.flags & ATA_TFLAG_POLLING)))
507                                 handled += pdc_host_intr(ap, qc);
508                 }
509         }
510
511         spin_unlock(&host_set->lock);
512
513         VPRINTK("EXIT\n");
514
515         return IRQ_RETVAL(handled);
516 }
517
518 static inline void pdc_packet_start(struct ata_queued_cmd *qc)
519 {
520         struct ata_port *ap = qc->ap;
521         struct pdc_port_priv *pp = ap->private_data;
522         unsigned int port_no = ap->port_no;
523         u8 seq = (u8) (port_no + 1);
524
525         VPRINTK("ENTER, ap %p\n", ap);
526
527         writel(0x00000001, ap->host_set->mmio_base + (seq * 4));
528         readl(ap->host_set->mmio_base + (seq * 4));     /* flush */
529
530         pp->pkt[2] = seq;
531         wmb();                  /* flush PRD, pkt writes */
532         writel(pp->pkt_dma, (void __iomem *) ap->ioaddr.cmd_addr + PDC_PKT_SUBMIT);
533         readl((void __iomem *) ap->ioaddr.cmd_addr + PDC_PKT_SUBMIT); /* flush */
534 }
535
536 static int pdc_qc_issue_prot(struct ata_queued_cmd *qc)
537 {
538         switch (qc->tf.protocol) {
539         case ATA_PROT_DMA:
540         case ATA_PROT_NODATA:
541                 pdc_packet_start(qc);
542                 return 0;
543
544         case ATA_PROT_ATAPI_DMA:
545                 BUG();
546                 break;
547
548         default:
549                 break;
550         }
551
552         return ata_qc_issue_prot(qc);
553 }
554
555 static void pdc_tf_load_mmio(struct ata_port *ap, const struct ata_taskfile *tf)
556 {
557         WARN_ON (tf->protocol == ATA_PROT_DMA ||
558                  tf->protocol == ATA_PROT_NODATA);
559         ata_tf_load(ap, tf);
560 }
561
562
563 static void pdc_exec_command_mmio(struct ata_port *ap, const struct ata_taskfile *tf)
564 {
565         WARN_ON (tf->protocol == ATA_PROT_DMA ||
566                  tf->protocol == ATA_PROT_NODATA);
567         ata_exec_command(ap, tf);
568 }
569
570
571 static void pdc_ata_setup_port(struct ata_ioports *port, unsigned long base)
572 {
573         port->cmd_addr          = base;
574         port->data_addr         = base;
575         port->feature_addr      =
576         port->error_addr        = base + 0x4;
577         port->nsect_addr        = base + 0x8;
578         port->lbal_addr         = base + 0xc;
579         port->lbam_addr         = base + 0x10;
580         port->lbah_addr         = base + 0x14;
581         port->device_addr       = base + 0x18;
582         port->command_addr      =
583         port->status_addr       = base + 0x1c;
584         port->altstatus_addr    =
585         port->ctl_addr          = base + 0x38;
586 }
587
588
589 static void pdc_host_init(unsigned int chip_id, struct ata_probe_ent *pe)
590 {
591         void __iomem *mmio = pe->mmio_base;
592         u32 tmp;
593
594         /*
595          * Except for the hotplug stuff, this is voodoo from the
596          * Promise driver.  Label this entire section
597          * "TODO: figure out why we do this"
598          */
599
600         /* change FIFO_SHD to 8 dwords, enable BMR_BURST */
601         tmp = readl(mmio + PDC_FLASH_CTL);
602         tmp |= 0x12000; /* bit 16 (fifo 8 dw) and 13 (bmr burst?) */
603         writel(tmp, mmio + PDC_FLASH_CTL);
604
605         /* clear plug/unplug flags for all ports */
606         tmp = readl(mmio + PDC_SATA_PLUG_CSR);
607         writel(tmp | 0xff, mmio + PDC_SATA_PLUG_CSR);
608
609         /* mask plug/unplug ints */
610         tmp = readl(mmio + PDC_SATA_PLUG_CSR);
611         writel(tmp | 0xff0000, mmio + PDC_SATA_PLUG_CSR);
612
613         /* reduce TBG clock to 133 Mhz. */
614         tmp = readl(mmio + PDC_TBG_MODE);
615         tmp &= ~0x30000; /* clear bit 17, 16*/
616         tmp |= 0x10000;  /* set bit 17:16 = 0:1 */
617         writel(tmp, mmio + PDC_TBG_MODE);
618
619         readl(mmio + PDC_TBG_MODE);     /* flush */
620         msleep(10);
621
622         /* adjust slew rate control register. */
623         tmp = readl(mmio + PDC_SLEW_CTL);
624         tmp &= 0xFFFFF03F; /* clear bit 11 ~ 6 */
625         tmp  |= 0x00000900; /* set bit 11-9 = 100b , bit 8-6 = 100 */
626         writel(tmp, mmio + PDC_SLEW_CTL);
627 }
628
629 static int pdc_ata_init_one (struct pci_dev *pdev, const struct pci_device_id *ent)
630 {
631         static int printed_version;
632         struct ata_probe_ent *probe_ent = NULL;
633         unsigned long base;
634         void __iomem *mmio_base;
635         unsigned int board_idx = (unsigned int) ent->driver_data;
636         int pci_dev_busy = 0;
637         int rc;
638
639         if (!printed_version++)
640                 dev_printk(KERN_DEBUG, &pdev->dev, "version " DRV_VERSION "\n");
641
642         /*
643          * If this driver happens to only be useful on Apple's K2, then
644          * we should check that here as it has a normal Serverworks ID
645          */
646         rc = pci_enable_device(pdev);
647         if (rc)
648                 return rc;
649
650         rc = pci_request_regions(pdev, DRV_NAME);
651         if (rc) {
652                 pci_dev_busy = 1;
653                 goto err_out;
654         }
655
656         rc = pci_set_dma_mask(pdev, ATA_DMA_MASK);
657         if (rc)
658                 goto err_out_regions;
659         rc = pci_set_consistent_dma_mask(pdev, ATA_DMA_MASK);
660         if (rc)
661                 goto err_out_regions;
662
663         probe_ent = kmalloc(sizeof(*probe_ent), GFP_KERNEL);
664         if (probe_ent == NULL) {
665                 rc = -ENOMEM;
666                 goto err_out_regions;
667         }
668
669         memset(probe_ent, 0, sizeof(*probe_ent));
670         probe_ent->dev = pci_dev_to_dev(pdev);
671         INIT_LIST_HEAD(&probe_ent->node);
672
673         mmio_base = pci_iomap(pdev, 3, 0);
674         if (mmio_base == NULL) {
675                 rc = -ENOMEM;
676                 goto err_out_free_ent;
677         }
678         base = (unsigned long) mmio_base;
679
680         probe_ent->sht          = pdc_port_info[board_idx].sht;
681         probe_ent->host_flags   = pdc_port_info[board_idx].host_flags;
682         probe_ent->pio_mask     = pdc_port_info[board_idx].pio_mask;
683         probe_ent->mwdma_mask   = pdc_port_info[board_idx].mwdma_mask;
684         probe_ent->udma_mask    = pdc_port_info[board_idx].udma_mask;
685         probe_ent->port_ops     = pdc_port_info[board_idx].port_ops;
686
687         probe_ent->irq = pdev->irq;
688         probe_ent->irq_flags = SA_SHIRQ;
689         probe_ent->mmio_base = mmio_base;
690
691         pdc_ata_setup_port(&probe_ent->port[0], base + 0x200);
692         pdc_ata_setup_port(&probe_ent->port[1], base + 0x280);
693
694         probe_ent->port[0].scr_addr = base + 0x400;
695         probe_ent->port[1].scr_addr = base + 0x500;
696
697         /* notice 4-port boards */
698         switch (board_idx) {
699         case board_20319:
700                 probe_ent->n_ports = 4;
701
702                 pdc_ata_setup_port(&probe_ent->port[2], base + 0x300);
703                 pdc_ata_setup_port(&probe_ent->port[3], base + 0x380);
704
705                 probe_ent->port[2].scr_addr = base + 0x600;
706                 probe_ent->port[3].scr_addr = base + 0x700;
707                 break;
708         case board_2037x:
709                 probe_ent->n_ports = 2;
710                 break;
711         case board_20619:
712                 probe_ent->n_ports = 4;
713
714                 pdc_ata_setup_port(&probe_ent->port[2], base + 0x300);
715                 pdc_ata_setup_port(&probe_ent->port[3], base + 0x380);
716
717                 probe_ent->port[2].scr_addr = base + 0x600;
718                 probe_ent->port[3].scr_addr = base + 0x700;
719                 break;
720         default:
721                 BUG();
722                 break;
723         }
724
725         pci_set_master(pdev);
726
727         /* initialize adapter */
728         pdc_host_init(board_idx, probe_ent);
729
730         /* FIXME: check ata_device_add return value */
731         ata_device_add(probe_ent);
732         kfree(probe_ent);
733
734         return 0;
735
736 err_out_free_ent:
737         kfree(probe_ent);
738 err_out_regions:
739         pci_release_regions(pdev);
740 err_out:
741         if (!pci_dev_busy)
742                 pci_disable_device(pdev);
743         return rc;
744 }
745
746
747 static int __init pdc_ata_init(void)
748 {
749         return pci_module_init(&pdc_ata_pci_driver);
750 }
751
752
753 static void __exit pdc_ata_exit(void)
754 {
755         pci_unregister_driver(&pdc_ata_pci_driver);
756 }
757
758
759 MODULE_AUTHOR("Jeff Garzik");
760 MODULE_DESCRIPTION("Promise ATA TX2/TX4/TX4000 low-level driver");
761 MODULE_LICENSE("GPL");
762 MODULE_DEVICE_TABLE(pci, pdc_ata_pci_tbl);
763 MODULE_VERSION(DRV_VERSION);
764
765 module_init(pdc_ata_init);
766 module_exit(pdc_ata_exit);