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