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