sata_promise: add missing cable_detect hooks
[pandora-kernel.git] / drivers / ata / 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/device.h>
41 #include <scsi/scsi.h>
42 #include <scsi/scsi_host.h>
43 #include <scsi/scsi_cmnd.h>
44 #include <linux/libata.h>
45 #include "sata_promise.h"
46
47 #define DRV_NAME        "sata_promise"
48 #define DRV_VERSION     "2.02"
49
50
51 enum {
52         PDC_MMIO_BAR            = 3,
53
54         /* register offsets */
55         PDC_FEATURE             = 0x04, /* Feature/Error reg (per port) */
56         PDC_SECTOR_COUNT        = 0x08, /* Sector count reg (per port) */
57         PDC_SECTOR_NUMBER       = 0x0C, /* Sector number reg (per port) */
58         PDC_CYLINDER_LOW        = 0x10, /* Cylinder low reg (per port) */
59         PDC_CYLINDER_HIGH       = 0x14, /* Cylinder high reg (per port) */
60         PDC_DEVICE              = 0x18, /* Device/Head reg (per port) */
61         PDC_COMMAND             = 0x1C, /* Command/status reg (per port) */
62         PDC_ALTSTATUS           = 0x38, /* Alternate-status/device-control reg (per port) */
63         PDC_PKT_SUBMIT          = 0x40, /* Command packet pointer addr */
64         PDC_INT_SEQMASK         = 0x40, /* Mask of asserted SEQ INTs */
65         PDC_FLASH_CTL           = 0x44, /* Flash control register */
66         PDC_GLOBAL_CTL          = 0x48, /* Global control/status (per port) */
67         PDC_CTLSTAT             = 0x60, /* IDE control and status (per port) */
68         PDC_SATA_PLUG_CSR       = 0x6C, /* SATA Plug control/status reg */
69         PDC2_SATA_PLUG_CSR      = 0x60, /* SATAII Plug control/status reg */
70         PDC_TBG_MODE            = 0x41C, /* TBG mode (not SATAII) */
71         PDC_SLEW_CTL            = 0x470, /* slew rate control reg (not SATAII) */
72
73         PDC_ERR_MASK            = (1<<19) | (1<<20) | (1<<21) | (1<<22) |
74                                   (1<<8) | (1<<9) | (1<<10),
75
76         board_2037x             = 0,    /* FastTrak S150 TX2plus */
77         board_20319             = 1,    /* FastTrak S150 TX4 */
78         board_20619             = 2,    /* FastTrak TX4000 */
79         board_2057x             = 3,    /* SATAII150 Tx2plus */
80         board_40518             = 4,    /* SATAII150 Tx4 */
81
82         PDC_HAS_PATA            = (1 << 1), /* PDC20375/20575 has PATA */
83
84         /* Sequence counter control registers bit definitions */
85         PDC_SEQCNTRL_INT_MASK   = (1 << 5), /* Sequence Interrupt Mask */
86
87         /* Feature register values */
88         PDC_FEATURE_ATAPI_PIO   = 0x00, /* ATAPI data xfer by PIO */
89         PDC_FEATURE_ATAPI_DMA   = 0x01, /* ATAPI data xfer by DMA */
90
91         /* Device/Head register values */
92         PDC_DEVICE_SATA         = 0xE0, /* Device/Head value for SATA devices */
93
94         /* PDC_CTLSTAT bit definitions */
95         PDC_DMA_ENABLE          = (1 << 7),
96         PDC_IRQ_DISABLE         = (1 << 10),
97         PDC_RESET               = (1 << 11), /* HDMA reset */
98
99         PDC_COMMON_FLAGS        = ATA_FLAG_NO_LEGACY |
100                                   ATA_FLAG_MMIO |
101                                   ATA_FLAG_PIO_POLLING,
102
103         /* hp->flags bits */
104         PDC_FLAG_GEN_II         = (1 << 0),
105 };
106
107
108 struct pdc_port_priv {
109         u8                      *pkt;
110         dma_addr_t              pkt_dma;
111 };
112
113 struct pdc_host_priv {
114         unsigned long           flags;
115         unsigned long           port_flags[ATA_MAX_PORTS];
116 };
117
118 static u32 pdc_sata_scr_read (struct ata_port *ap, unsigned int sc_reg);
119 static void pdc_sata_scr_write (struct ata_port *ap, unsigned int sc_reg, u32 val);
120 static int pdc_ata_init_one (struct pci_dev *pdev, const struct pci_device_id *ent);
121 static irqreturn_t pdc_interrupt (int irq, void *dev_instance);
122 static int pdc_port_start(struct ata_port *ap);
123 static void pdc_qc_prep(struct ata_queued_cmd *qc);
124 static void pdc_tf_load_mmio(struct ata_port *ap, const struct ata_taskfile *tf);
125 static void pdc_exec_command_mmio(struct ata_port *ap, const struct ata_taskfile *tf);
126 static int pdc_check_atapi_dma(struct ata_queued_cmd *qc);
127 static int pdc_old_check_atapi_dma(struct ata_queued_cmd *qc);
128 static void pdc_irq_clear(struct ata_port *ap);
129 static unsigned int pdc_qc_issue_prot(struct ata_queued_cmd *qc);
130 static void pdc_freeze(struct ata_port *ap);
131 static void pdc_thaw(struct ata_port *ap);
132 static void pdc_error_handler(struct ata_port *ap);
133 static void pdc_post_internal_cmd(struct ata_queued_cmd *qc);
134 static int pdc_cable_detect(struct ata_port *ap);
135
136 static struct scsi_host_template pdc_ata_sht = {
137         .module                 = THIS_MODULE,
138         .name                   = DRV_NAME,
139         .ioctl                  = ata_scsi_ioctl,
140         .queuecommand           = ata_scsi_queuecmd,
141         .can_queue              = ATA_DEF_QUEUE,
142         .this_id                = ATA_SHT_THIS_ID,
143         .sg_tablesize           = LIBATA_MAX_PRD,
144         .cmd_per_lun            = ATA_SHT_CMD_PER_LUN,
145         .emulated               = ATA_SHT_EMULATED,
146         .use_clustering         = ATA_SHT_USE_CLUSTERING,
147         .proc_name              = DRV_NAME,
148         .dma_boundary           = ATA_DMA_BOUNDARY,
149         .slave_configure        = ata_scsi_slave_config,
150         .slave_destroy          = ata_scsi_slave_destroy,
151         .bios_param             = ata_std_bios_param,
152 };
153
154 static const struct ata_port_operations pdc_sata_ops = {
155         .port_disable           = ata_port_disable,
156         .tf_load                = pdc_tf_load_mmio,
157         .tf_read                = ata_tf_read,
158         .check_status           = ata_check_status,
159         .exec_command           = pdc_exec_command_mmio,
160         .dev_select             = ata_std_dev_select,
161         .check_atapi_dma        = pdc_check_atapi_dma,
162
163         .qc_prep                = pdc_qc_prep,
164         .qc_issue               = pdc_qc_issue_prot,
165         .freeze                 = pdc_freeze,
166         .thaw                   = pdc_thaw,
167         .error_handler          = pdc_error_handler,
168         .post_internal_cmd      = pdc_post_internal_cmd,
169         .cable_detect           = pdc_cable_detect,
170         .data_xfer              = ata_data_xfer,
171         .irq_handler            = pdc_interrupt,
172         .irq_clear              = pdc_irq_clear,
173         .irq_on                 = ata_irq_on,
174         .irq_ack                = ata_irq_ack,
175
176         .scr_read               = pdc_sata_scr_read,
177         .scr_write              = pdc_sata_scr_write,
178         .port_start             = pdc_port_start,
179 };
180
181 /* First-generation chips need a more restrictive ->check_atapi_dma op */
182 static const struct ata_port_operations pdc_old_sata_ops = {
183         .port_disable           = ata_port_disable,
184         .tf_load                = pdc_tf_load_mmio,
185         .tf_read                = ata_tf_read,
186         .check_status           = ata_check_status,
187         .exec_command           = pdc_exec_command_mmio,
188         .dev_select             = ata_std_dev_select,
189         .check_atapi_dma        = pdc_old_check_atapi_dma,
190
191         .qc_prep                = pdc_qc_prep,
192         .qc_issue               = pdc_qc_issue_prot,
193         .freeze                 = pdc_freeze,
194         .thaw                   = pdc_thaw,
195         .error_handler          = pdc_error_handler,
196         .post_internal_cmd      = pdc_post_internal_cmd,
197         .cable_detect           = pdc_cable_detect,
198         .data_xfer              = ata_data_xfer,
199         .irq_handler            = pdc_interrupt,
200         .irq_clear              = pdc_irq_clear,
201         .irq_on                 = ata_irq_on,
202         .irq_ack                = ata_irq_ack,
203
204         .scr_read               = pdc_sata_scr_read,
205         .scr_write              = pdc_sata_scr_write,
206         .port_start             = pdc_port_start,
207 };
208
209 static const struct ata_port_operations pdc_pata_ops = {
210         .port_disable           = ata_port_disable,
211         .tf_load                = pdc_tf_load_mmio,
212         .tf_read                = ata_tf_read,
213         .check_status           = ata_check_status,
214         .exec_command           = pdc_exec_command_mmio,
215         .dev_select             = ata_std_dev_select,
216         .check_atapi_dma        = pdc_check_atapi_dma,
217
218         .qc_prep                = pdc_qc_prep,
219         .qc_issue               = pdc_qc_issue_prot,
220         .freeze                 = pdc_freeze,
221         .thaw                   = pdc_thaw,
222         .error_handler          = pdc_error_handler,
223         .post_internal_cmd      = pdc_post_internal_cmd,
224         .cable_detect           = pdc_cable_detect,
225         .data_xfer              = ata_data_xfer,
226         .irq_handler            = pdc_interrupt,
227         .irq_clear              = pdc_irq_clear,
228         .irq_on                 = ata_irq_on,
229         .irq_ack                = ata_irq_ack,
230
231         .port_start             = pdc_port_start,
232 };
233
234 static const struct ata_port_info pdc_port_info[] = {
235         /* board_2037x */
236         {
237                 .sht            = &pdc_ata_sht,
238                 .flags          = PDC_COMMON_FLAGS,
239                 .pio_mask       = 0x1f, /* pio0-4 */
240                 .mwdma_mask     = 0x07, /* mwdma0-2 */
241                 .udma_mask      = 0x7f, /* udma0-6 ; FIXME */
242                 .port_ops       = &pdc_old_sata_ops,
243         },
244
245         /* board_20319 */
246         {
247                 .sht            = &pdc_ata_sht,
248                 .flags          = PDC_COMMON_FLAGS | ATA_FLAG_SATA,
249                 .pio_mask       = 0x1f, /* pio0-4 */
250                 .mwdma_mask     = 0x07, /* mwdma0-2 */
251                 .udma_mask      = 0x7f, /* udma0-6 ; FIXME */
252                 .port_ops       = &pdc_old_sata_ops,
253         },
254
255         /* board_20619 */
256         {
257                 .sht            = &pdc_ata_sht,
258                 .flags          = PDC_COMMON_FLAGS | ATA_FLAG_SLAVE_POSS,
259                 .pio_mask       = 0x1f, /* pio0-4 */
260                 .mwdma_mask     = 0x07, /* mwdma0-2 */
261                 .udma_mask      = 0x7f, /* udma0-6 ; FIXME */
262                 .port_ops       = &pdc_pata_ops,
263         },
264
265         /* board_2057x */
266         {
267                 .sht            = &pdc_ata_sht,
268                 .flags          = PDC_COMMON_FLAGS,
269                 .pio_mask       = 0x1f, /* pio0-4 */
270                 .mwdma_mask     = 0x07, /* mwdma0-2 */
271                 .udma_mask      = 0x7f, /* udma0-6 ; FIXME */
272                 .port_ops       = &pdc_sata_ops,
273         },
274
275         /* board_40518 */
276         {
277                 .sht            = &pdc_ata_sht,
278                 .flags          = PDC_COMMON_FLAGS | ATA_FLAG_SATA,
279                 .pio_mask       = 0x1f, /* pio0-4 */
280                 .mwdma_mask     = 0x07, /* mwdma0-2 */
281                 .udma_mask      = 0x7f, /* udma0-6 ; FIXME */
282                 .port_ops       = &pdc_sata_ops,
283         },
284 };
285
286 static const struct pci_device_id pdc_ata_pci_tbl[] = {
287         { PCI_VDEVICE(PROMISE, 0x3371), board_2037x },
288         { PCI_VDEVICE(PROMISE, 0x3373), board_2037x },
289         { PCI_VDEVICE(PROMISE, 0x3375), board_2037x },
290         { PCI_VDEVICE(PROMISE, 0x3376), board_2037x },
291         { PCI_VDEVICE(PROMISE, 0x3570), board_2057x },
292         { PCI_VDEVICE(PROMISE, 0x3571), board_2057x },
293         { PCI_VDEVICE(PROMISE, 0x3574), board_2057x },
294         { PCI_VDEVICE(PROMISE, 0x3577), board_2057x },
295         { PCI_VDEVICE(PROMISE, 0x3d73), board_2057x },
296         { PCI_VDEVICE(PROMISE, 0x3d75), board_2057x },
297
298         { PCI_VDEVICE(PROMISE, 0x3318), board_20319 },
299         { PCI_VDEVICE(PROMISE, 0x3319), board_20319 },
300         { PCI_VDEVICE(PROMISE, 0x3515), board_20319 },
301         { PCI_VDEVICE(PROMISE, 0x3519), board_20319 },
302         { PCI_VDEVICE(PROMISE, 0x3d17), board_40518 },
303         { PCI_VDEVICE(PROMISE, 0x3d18), board_40518 },
304
305         { PCI_VDEVICE(PROMISE, 0x6629), board_20619 },
306
307         { }     /* terminate list */
308 };
309
310
311 static struct pci_driver pdc_ata_pci_driver = {
312         .name                   = DRV_NAME,
313         .id_table               = pdc_ata_pci_tbl,
314         .probe                  = pdc_ata_init_one,
315         .remove                 = ata_pci_remove_one,
316 };
317
318
319 static int pdc_port_start(struct ata_port *ap)
320 {
321         struct device *dev = ap->host->dev;
322         struct pdc_host_priv *hp = ap->host->private_data;
323         struct pdc_port_priv *pp;
324         int rc;
325
326         /* fix up port flags and cable type for SATA+PATA chips */
327         ap->flags |= hp->port_flags[ap->port_no];
328         if (ap->flags & ATA_FLAG_SATA)
329                 ap->cbl = ATA_CBL_SATA;
330
331         rc = ata_port_start(ap);
332         if (rc)
333                 return rc;
334
335         pp = devm_kzalloc(dev, sizeof(*pp), GFP_KERNEL);
336         if (!pp)
337                 return -ENOMEM;
338
339         pp->pkt = dmam_alloc_coherent(dev, 128, &pp->pkt_dma, GFP_KERNEL);
340         if (!pp->pkt)
341                 return -ENOMEM;
342
343         ap->private_data = pp;
344
345         /* fix up PHYMODE4 align timing */
346         if ((hp->flags & PDC_FLAG_GEN_II) && sata_scr_valid(ap)) {
347                 void __iomem *mmio = (void __iomem *) ap->ioaddr.scr_addr;
348                 unsigned int tmp;
349
350                 tmp = readl(mmio + 0x014);
351                 tmp = (tmp & ~3) | 1;   /* set bits 1:0 = 0:1 */
352                 writel(tmp, mmio + 0x014);
353         }
354
355         return 0;
356 }
357
358 static void pdc_reset_port(struct ata_port *ap)
359 {
360         void __iomem *mmio = ap->ioaddr.cmd_addr + PDC_CTLSTAT;
361         unsigned int i;
362         u32 tmp;
363
364         for (i = 11; i > 0; i--) {
365                 tmp = readl(mmio);
366                 if (tmp & PDC_RESET)
367                         break;
368
369                 udelay(100);
370
371                 tmp |= PDC_RESET;
372                 writel(tmp, mmio);
373         }
374
375         tmp &= ~PDC_RESET;
376         writel(tmp, mmio);
377         readl(mmio);    /* flush */
378 }
379
380 static int pdc_cable_detect(struct ata_port *ap)
381 {
382         u8 tmp;
383         void __iomem *mmio = (void __iomem *) ap->ioaddr.cmd_addr + PDC_CTLSTAT + 0x03;
384
385         if (!sata_scr_valid(ap)) {
386                 tmp = readb(mmio);
387                 if (tmp & 0x01)
388                         return ATA_CBL_PATA40;
389                 return ATA_CBL_PATA80;
390         }
391         return ATA_CBL_SATA;
392 }
393
394 static u32 pdc_sata_scr_read (struct ata_port *ap, unsigned int sc_reg)
395 {
396         if (sc_reg > SCR_CONTROL || ap->cbl != ATA_CBL_SATA)
397                 return 0xffffffffU;
398         return readl(ap->ioaddr.scr_addr + (sc_reg * 4));
399 }
400
401
402 static void pdc_sata_scr_write (struct ata_port *ap, unsigned int sc_reg,
403                                u32 val)
404 {
405         if (sc_reg > SCR_CONTROL || ap->cbl != ATA_CBL_SATA)
406                 return;
407         writel(val, ap->ioaddr.scr_addr + (sc_reg * 4));
408 }
409
410 static void pdc_atapi_pkt(struct ata_queued_cmd *qc)
411 {
412         struct ata_port *ap = qc->ap;
413         dma_addr_t sg_table = ap->prd_dma;
414         unsigned int cdb_len = qc->dev->cdb_len;
415         u8 *cdb = qc->cdb;
416         struct pdc_port_priv *pp = ap->private_data;
417         u8 *buf = pp->pkt;
418         u32 *buf32 = (u32 *) buf;
419         unsigned int dev_sel, feature, nbytes;
420
421         /* set control bits (byte 0), zero delay seq id (byte 3),
422          * and seq id (byte 2)
423          */
424         switch (qc->tf.protocol) {
425         case ATA_PROT_ATAPI_DMA:
426                 if (!(qc->tf.flags & ATA_TFLAG_WRITE))
427                         buf32[0] = cpu_to_le32(PDC_PKT_READ);
428                 else
429                         buf32[0] = 0;
430                 break;
431         case ATA_PROT_ATAPI_NODATA:
432                 buf32[0] = cpu_to_le32(PDC_PKT_NODATA);
433                 break;
434         default:
435                 BUG();
436                 break;
437         }
438         buf32[1] = cpu_to_le32(sg_table);       /* S/G table addr */
439         buf32[2] = 0;                           /* no next-packet */
440
441         /* select drive */
442         if (sata_scr_valid(ap)) {
443                 dev_sel = PDC_DEVICE_SATA;
444         } else {
445                 dev_sel = ATA_DEVICE_OBS;
446                 if (qc->dev->devno != 0)
447                         dev_sel |= ATA_DEV1;
448         }
449         buf[12] = (1 << 5) | ATA_REG_DEVICE;
450         buf[13] = dev_sel;
451         buf[14] = (1 << 5) | ATA_REG_DEVICE | PDC_PKT_CLEAR_BSY;
452         buf[15] = dev_sel; /* once more, waiting for BSY to clear */
453
454         buf[16] = (1 << 5) | ATA_REG_NSECT;
455         buf[17] = 0x00;
456         buf[18] = (1 << 5) | ATA_REG_LBAL;
457         buf[19] = 0x00;
458
459         /* set feature and byte counter registers */
460         if (qc->tf.protocol != ATA_PROT_ATAPI_DMA) {
461                 feature = PDC_FEATURE_ATAPI_PIO;
462                 /* set byte counter register to real transfer byte count */
463                 nbytes = qc->nbytes;
464                 if (nbytes > 0xffff)
465                         nbytes = 0xffff;
466         } else {
467                 feature = PDC_FEATURE_ATAPI_DMA;
468                 /* set byte counter register to 0 */
469                 nbytes = 0;
470         }
471         buf[20] = (1 << 5) | ATA_REG_FEATURE;
472         buf[21] = feature;
473         buf[22] = (1 << 5) | ATA_REG_BYTEL;
474         buf[23] = nbytes & 0xFF;
475         buf[24] = (1 << 5) | ATA_REG_BYTEH;
476         buf[25] = (nbytes >> 8) & 0xFF;
477
478         /* send ATAPI packet command 0xA0 */
479         buf[26] = (1 << 5) | ATA_REG_CMD;
480         buf[27] = ATA_CMD_PACKET;
481
482         /* select drive and check DRQ */
483         buf[28] = (1 << 5) | ATA_REG_DEVICE | PDC_PKT_WAIT_DRDY;
484         buf[29] = dev_sel;
485
486         /* we can represent cdb lengths 2/4/6/8/10/12/14/16 */
487         BUG_ON(cdb_len & ~0x1E);
488
489         /* append the CDB as the final part */
490         buf[30] = (((cdb_len >> 1) & 7) << 5) | ATA_REG_DATA | PDC_LAST_REG;
491         memcpy(buf+31, cdb, cdb_len);
492 }
493
494 static void pdc_qc_prep(struct ata_queued_cmd *qc)
495 {
496         struct pdc_port_priv *pp = qc->ap->private_data;
497         unsigned int i;
498
499         VPRINTK("ENTER\n");
500
501         switch (qc->tf.protocol) {
502         case ATA_PROT_DMA:
503                 ata_qc_prep(qc);
504                 /* fall through */
505
506         case ATA_PROT_NODATA:
507                 i = pdc_pkt_header(&qc->tf, qc->ap->prd_dma,
508                                    qc->dev->devno, pp->pkt);
509
510                 if (qc->tf.flags & ATA_TFLAG_LBA48)
511                         i = pdc_prep_lba48(&qc->tf, pp->pkt, i);
512                 else
513                         i = pdc_prep_lba28(&qc->tf, pp->pkt, i);
514
515                 pdc_pkt_footer(&qc->tf, pp->pkt, i);
516                 break;
517
518         case ATA_PROT_ATAPI:
519                 ata_qc_prep(qc);
520                 break;
521
522         case ATA_PROT_ATAPI_DMA:
523                 ata_qc_prep(qc);
524                 /*FALLTHROUGH*/
525         case ATA_PROT_ATAPI_NODATA:
526                 pdc_atapi_pkt(qc);
527                 break;
528
529         default:
530                 break;
531         }
532 }
533
534 static void pdc_freeze(struct ata_port *ap)
535 {
536         void __iomem *mmio = (void __iomem *) ap->ioaddr.cmd_addr;
537         u32 tmp;
538
539         tmp = readl(mmio + PDC_CTLSTAT);
540         tmp |= PDC_IRQ_DISABLE;
541         tmp &= ~PDC_DMA_ENABLE;
542         writel(tmp, mmio + PDC_CTLSTAT);
543         readl(mmio + PDC_CTLSTAT); /* flush */
544 }
545
546 static void pdc_thaw(struct ata_port *ap)
547 {
548         void __iomem *mmio = (void __iomem *) ap->ioaddr.cmd_addr;
549         u32 tmp;
550
551         /* clear IRQ */
552         readl(mmio + PDC_INT_SEQMASK);
553
554         /* turn IRQ back on */
555         tmp = readl(mmio + PDC_CTLSTAT);
556         tmp &= ~PDC_IRQ_DISABLE;
557         writel(tmp, mmio + PDC_CTLSTAT);
558         readl(mmio + PDC_CTLSTAT); /* flush */
559 }
560
561 static void pdc_error_handler(struct ata_port *ap)
562 {
563         ata_reset_fn_t hardreset;
564
565         if (!(ap->pflags & ATA_PFLAG_FROZEN))
566                 pdc_reset_port(ap);
567
568         hardreset = NULL;
569         if (sata_scr_valid(ap))
570                 hardreset = sata_std_hardreset;
571
572         /* perform recovery */
573         ata_do_eh(ap, ata_std_prereset, ata_std_softreset, hardreset,
574                   ata_std_postreset);
575 }
576
577 static void pdc_post_internal_cmd(struct ata_queued_cmd *qc)
578 {
579         struct ata_port *ap = qc->ap;
580
581         if (qc->flags & ATA_QCFLAG_FAILED)
582                 qc->err_mask |= AC_ERR_OTHER;
583
584         /* make DMA engine forget about the failed command */
585         if (qc->err_mask)
586                 pdc_reset_port(ap);
587 }
588
589 static inline unsigned int pdc_host_intr( struct ata_port *ap,
590                                           struct ata_queued_cmd *qc)
591 {
592         unsigned int handled = 0;
593         u32 tmp;
594         void __iomem *mmio = ap->ioaddr.cmd_addr + PDC_GLOBAL_CTL;
595
596         tmp = readl(mmio);
597         if (tmp & PDC_ERR_MASK) {
598                 qc->err_mask |= AC_ERR_DEV;
599                 pdc_reset_port(ap);
600         }
601
602         switch (qc->tf.protocol) {
603         case ATA_PROT_DMA:
604         case ATA_PROT_NODATA:
605         case ATA_PROT_ATAPI_DMA:
606         case ATA_PROT_ATAPI_NODATA:
607                 qc->err_mask |= ac_err_mask(ata_wait_idle(ap));
608                 ata_qc_complete(qc);
609                 handled = 1;
610                 break;
611
612         default:
613                 ap->stats.idle_irq++;
614                 break;
615         }
616
617         return handled;
618 }
619
620 static void pdc_irq_clear(struct ata_port *ap)
621 {
622         struct ata_host *host = ap->host;
623         void __iomem *mmio = host->iomap[PDC_MMIO_BAR];
624
625         readl(mmio + PDC_INT_SEQMASK);
626 }
627
628 static irqreturn_t pdc_interrupt (int irq, void *dev_instance)
629 {
630         struct ata_host *host = dev_instance;
631         struct ata_port *ap;
632         u32 mask = 0;
633         unsigned int i, tmp;
634         unsigned int handled = 0;
635         void __iomem *mmio_base;
636
637         VPRINTK("ENTER\n");
638
639         if (!host || !host->iomap[PDC_MMIO_BAR]) {
640                 VPRINTK("QUICK EXIT\n");
641                 return IRQ_NONE;
642         }
643
644         mmio_base = host->iomap[PDC_MMIO_BAR];
645
646         /* reading should also clear interrupts */
647         mask = readl(mmio_base + PDC_INT_SEQMASK);
648
649         if (mask == 0xffffffff) {
650                 VPRINTK("QUICK EXIT 2\n");
651                 return IRQ_NONE;
652         }
653
654         spin_lock(&host->lock);
655
656         mask &= 0xffff;         /* only 16 tags possible */
657         if (!mask) {
658                 VPRINTK("QUICK EXIT 3\n");
659                 goto done_irq;
660         }
661
662         writel(mask, mmio_base + PDC_INT_SEQMASK);
663
664         for (i = 0; i < host->n_ports; i++) {
665                 VPRINTK("port %u\n", i);
666                 ap = host->ports[i];
667                 tmp = mask & (1 << (i + 1));
668                 if (tmp && ap &&
669                     !(ap->flags & ATA_FLAG_DISABLED)) {
670                         struct ata_queued_cmd *qc;
671
672                         qc = ata_qc_from_tag(ap, ap->active_tag);
673                         if (qc && (!(qc->tf.flags & ATA_TFLAG_POLLING)))
674                                 handled += pdc_host_intr(ap, qc);
675                 }
676         }
677
678         VPRINTK("EXIT\n");
679
680 done_irq:
681         spin_unlock(&host->lock);
682         return IRQ_RETVAL(handled);
683 }
684
685 static inline void pdc_packet_start(struct ata_queued_cmd *qc)
686 {
687         struct ata_port *ap = qc->ap;
688         struct pdc_port_priv *pp = ap->private_data;
689         void __iomem *mmio = ap->host->iomap[PDC_MMIO_BAR];
690         unsigned int port_no = ap->port_no;
691         u8 seq = (u8) (port_no + 1);
692
693         VPRINTK("ENTER, ap %p\n", ap);
694
695         writel(0x00000001, mmio + (seq * 4));
696         readl(mmio + (seq * 4));        /* flush */
697
698         pp->pkt[2] = seq;
699         wmb();                  /* flush PRD, pkt writes */
700         writel(pp->pkt_dma, ap->ioaddr.cmd_addr + PDC_PKT_SUBMIT);
701         readl(ap->ioaddr.cmd_addr + PDC_PKT_SUBMIT); /* flush */
702 }
703
704 static unsigned int pdc_qc_issue_prot(struct ata_queued_cmd *qc)
705 {
706         switch (qc->tf.protocol) {
707         case ATA_PROT_ATAPI_NODATA:
708                 if (qc->dev->flags & ATA_DFLAG_CDB_INTR)
709                         break;
710                 /*FALLTHROUGH*/
711         case ATA_PROT_ATAPI_DMA:
712         case ATA_PROT_DMA:
713         case ATA_PROT_NODATA:
714                 pdc_packet_start(qc);
715                 return 0;
716
717         default:
718                 break;
719         }
720
721         return ata_qc_issue_prot(qc);
722 }
723
724 static void pdc_tf_load_mmio(struct ata_port *ap, const struct ata_taskfile *tf)
725 {
726         WARN_ON (tf->protocol == ATA_PROT_DMA ||
727                  tf->protocol == ATA_PROT_NODATA);
728         ata_tf_load(ap, tf);
729 }
730
731
732 static void pdc_exec_command_mmio(struct ata_port *ap, const struct ata_taskfile *tf)
733 {
734         WARN_ON (tf->protocol == ATA_PROT_DMA ||
735                  tf->protocol == ATA_PROT_NODATA);
736         ata_exec_command(ap, tf);
737 }
738
739 static int pdc_check_atapi_dma(struct ata_queued_cmd *qc)
740 {
741         u8 *scsicmd = qc->scsicmd->cmnd;
742         int pio = 1; /* atapi dma off by default */
743
744         /* Whitelist commands that may use DMA. */
745         switch (scsicmd[0]) {
746         case WRITE_12:
747         case WRITE_10:
748         case WRITE_6:
749         case READ_12:
750         case READ_10:
751         case READ_6:
752         case 0xad: /* READ_DVD_STRUCTURE */
753         case 0xbe: /* READ_CD */
754                 pio = 0;
755         }
756         /* -45150 (FFFF4FA2) to -1 (FFFFFFFF) shall use PIO mode */
757         if (scsicmd[0] == WRITE_10) {
758                 unsigned int lba;
759                 lba = (scsicmd[2] << 24) | (scsicmd[3] << 16) | (scsicmd[4] << 8) | scsicmd[5];
760                 if (lba >= 0xFFFF4FA2)
761                         pio = 1;
762         }
763         return pio;
764 }
765
766 static int pdc_old_check_atapi_dma(struct ata_queued_cmd *qc)
767 {
768         struct ata_port *ap = qc->ap;
769
770         /* First generation chips cannot use ATAPI DMA on SATA ports */
771         if (sata_scr_valid(ap))
772                 return 1;
773         return pdc_check_atapi_dma(qc);
774 }
775
776 static void pdc_ata_setup_port(struct ata_ioports *port, void __iomem *base,
777                                void __iomem *scr_addr)
778 {
779         port->cmd_addr          = base;
780         port->data_addr         = base;
781         port->feature_addr      =
782         port->error_addr        = base + 0x4;
783         port->nsect_addr        = base + 0x8;
784         port->lbal_addr         = base + 0xc;
785         port->lbam_addr         = base + 0x10;
786         port->lbah_addr         = base + 0x14;
787         port->device_addr       = base + 0x18;
788         port->command_addr      =
789         port->status_addr       = base + 0x1c;
790         port->altstatus_addr    =
791         port->ctl_addr          = base + 0x38;
792         port->scr_addr          = scr_addr;
793 }
794
795
796 static void pdc_host_init(unsigned int chip_id, struct ata_probe_ent *pe)
797 {
798         void __iomem *mmio = pe->iomap[PDC_MMIO_BAR];
799         struct pdc_host_priv *hp = pe->private_data;
800         int hotplug_offset;
801         u32 tmp;
802
803         if (hp->flags & PDC_FLAG_GEN_II)
804                 hotplug_offset = PDC2_SATA_PLUG_CSR;
805         else
806                 hotplug_offset = PDC_SATA_PLUG_CSR;
807
808         /*
809          * Except for the hotplug stuff, this is voodoo from the
810          * Promise driver.  Label this entire section
811          * "TODO: figure out why we do this"
812          */
813
814         /* enable BMR_BURST, maybe change FIFO_SHD to 8 dwords */
815         tmp = readl(mmio + PDC_FLASH_CTL);
816         tmp |= 0x02000; /* bit 13 (enable bmr burst) */
817         if (!(hp->flags & PDC_FLAG_GEN_II))
818                 tmp |= 0x10000; /* bit 16 (fifo threshold at 8 dw) */
819         writel(tmp, mmio + PDC_FLASH_CTL);
820
821         /* clear plug/unplug flags for all ports */
822         tmp = readl(mmio + hotplug_offset);
823         writel(tmp | 0xff, mmio + hotplug_offset);
824
825         /* mask plug/unplug ints */
826         tmp = readl(mmio + hotplug_offset);
827         writel(tmp | 0xff0000, mmio + hotplug_offset);
828
829         /* don't initialise TBG or SLEW on 2nd generation chips */
830         if (hp->flags & PDC_FLAG_GEN_II)
831                 return;
832
833         /* reduce TBG clock to 133 Mhz. */
834         tmp = readl(mmio + PDC_TBG_MODE);
835         tmp &= ~0x30000; /* clear bit 17, 16*/
836         tmp |= 0x10000;  /* set bit 17:16 = 0:1 */
837         writel(tmp, mmio + PDC_TBG_MODE);
838
839         readl(mmio + PDC_TBG_MODE);     /* flush */
840         msleep(10);
841
842         /* adjust slew rate control register. */
843         tmp = readl(mmio + PDC_SLEW_CTL);
844         tmp &= 0xFFFFF03F; /* clear bit 11 ~ 6 */
845         tmp  |= 0x00000900; /* set bit 11-9 = 100b , bit 8-6 = 100 */
846         writel(tmp, mmio + PDC_SLEW_CTL);
847 }
848
849 static int pdc_ata_init_one (struct pci_dev *pdev, const struct pci_device_id *ent)
850 {
851         static int printed_version;
852         struct ata_probe_ent *probe_ent;
853         struct pdc_host_priv *hp;
854         void __iomem *base;
855         unsigned int board_idx = (unsigned int) ent->driver_data;
856         int rc;
857         u8 tmp;
858
859         if (!printed_version++)
860                 dev_printk(KERN_DEBUG, &pdev->dev, "version " DRV_VERSION "\n");
861
862         rc = pcim_enable_device(pdev);
863         if (rc)
864                 return rc;
865
866         rc = pcim_iomap_regions(pdev, 1 << PDC_MMIO_BAR, DRV_NAME);
867         if (rc == -EBUSY)
868                 pcim_pin_device(pdev);
869         if (rc)
870                 return rc;
871
872         rc = pci_set_dma_mask(pdev, ATA_DMA_MASK);
873         if (rc)
874                 return rc;
875         rc = pci_set_consistent_dma_mask(pdev, ATA_DMA_MASK);
876         if (rc)
877                 return rc;
878
879         probe_ent = devm_kzalloc(&pdev->dev, sizeof(*probe_ent), GFP_KERNEL);
880         if (probe_ent == NULL)
881                 return -ENOMEM;
882
883         probe_ent->dev = pci_dev_to_dev(pdev);
884         INIT_LIST_HEAD(&probe_ent->node);
885
886         hp = devm_kzalloc(&pdev->dev, sizeof(*hp), GFP_KERNEL);
887         if (hp == NULL)
888                 return -ENOMEM;
889
890         probe_ent->private_data = hp;
891
892         probe_ent->sht          = pdc_port_info[board_idx].sht;
893         probe_ent->port_flags   = pdc_port_info[board_idx].flags;
894         probe_ent->pio_mask     = pdc_port_info[board_idx].pio_mask;
895         probe_ent->mwdma_mask   = pdc_port_info[board_idx].mwdma_mask;
896         probe_ent->udma_mask    = pdc_port_info[board_idx].udma_mask;
897         probe_ent->port_ops     = pdc_port_info[board_idx].port_ops;
898
899         probe_ent->irq = pdev->irq;
900         probe_ent->irq_flags = IRQF_SHARED;
901         probe_ent->iomap = pcim_iomap_table(pdev);
902
903         base = probe_ent->iomap[PDC_MMIO_BAR];
904
905         pdc_ata_setup_port(&probe_ent->port[0], base + 0x200, base + 0x400);
906         pdc_ata_setup_port(&probe_ent->port[1], base + 0x280, base + 0x500);
907
908         /* notice 4-port boards */
909         switch (board_idx) {
910         case board_40518:
911                 hp->flags |= PDC_FLAG_GEN_II;
912                 /* Fall through */
913         case board_20319:
914                 probe_ent->n_ports = 4;
915                 pdc_ata_setup_port(&probe_ent->port[2], base + 0x300, base + 0x600);
916                 pdc_ata_setup_port(&probe_ent->port[3], base + 0x380, base + 0x700);
917                 break;
918         case board_2057x:
919                 hp->flags |= PDC_FLAG_GEN_II;
920                 /* Fall through */
921         case board_2037x:
922                 /* TX2plus boards also have a PATA port */
923                 tmp = readb(base + PDC_FLASH_CTL+1);
924                 if (!(tmp & 0x80)) {
925                         probe_ent->n_ports = 3;
926                         pdc_ata_setup_port(&probe_ent->port[2], base + 0x300, NULL);
927                         hp->port_flags[2] = ATA_FLAG_SLAVE_POSS;
928                         printk(KERN_INFO DRV_NAME " PATA port found\n");
929                 } else
930                         probe_ent->n_ports = 2;
931                 hp->port_flags[0] = ATA_FLAG_SATA;
932                 hp->port_flags[1] = ATA_FLAG_SATA;
933                 break;
934         case board_20619:
935                 probe_ent->n_ports = 4;
936                 pdc_ata_setup_port(&probe_ent->port[2], base + 0x300, NULL);
937                 pdc_ata_setup_port(&probe_ent->port[3], base + 0x380, NULL);
938                 break;
939         default:
940                 BUG();
941                 break;
942         }
943
944         pci_set_master(pdev);
945
946         /* initialize adapter */
947         pdc_host_init(board_idx, probe_ent);
948
949         if (!ata_device_add(probe_ent))
950                 return -ENODEV;
951
952         devm_kfree(&pdev->dev, probe_ent);
953         return 0;
954 }
955
956
957 static int __init pdc_ata_init(void)
958 {
959         return pci_register_driver(&pdc_ata_pci_driver);
960 }
961
962
963 static void __exit pdc_ata_exit(void)
964 {
965         pci_unregister_driver(&pdc_ata_pci_driver);
966 }
967
968
969 MODULE_AUTHOR("Jeff Garzik");
970 MODULE_DESCRIPTION("Promise ATA TX2/TX4/TX4000 low-level driver");
971 MODULE_LICENSE("GPL");
972 MODULE_DEVICE_TABLE(pci, pdc_ata_pci_tbl);
973 MODULE_VERSION(DRV_VERSION);
974
975 module_init(pdc_ata_init);
976 module_exit(pdc_ata_exit);