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