blob: 9001991d2830d7e2b8cb46f7b40e8db89f0091c1 [file] [log] [blame]
Jeff Garzik669a5db2006-08-29 18:12:40 -04001/*
2 * pata_pdc202xx_old.c - Promise PDC202xx PATA for new ATA layer
3 * (C) 2005 Red Hat Inc
Alan Coxab771632008-10-27 15:09:10 +00004 * Alan Cox <alan@lxorguk.ukuu.org.uk>
Bartlomiej Zolnierkiewicza75032e2010-02-13 14:35:53 +01005 * (C) 2007,2009,2010 Bartlomiej Zolnierkiewicz
Jeff Garzik669a5db2006-08-29 18:12:40 -04006 *
7 * Based in part on linux/drivers/ide/pci/pdc202xx_old.c
8 *
9 * First cut with LBA48/ATAPI
10 *
11 * TODO:
Alan Cox06b74dd2007-09-26 15:23:17 +010012 * Channel interlock/reset on both required ?
Jeff Garzik669a5db2006-08-29 18:12:40 -040013 */
Jeff Garzik85cd7252006-08-31 00:03:49 -040014
Jeff Garzik669a5db2006-08-29 18:12:40 -040015#include <linux/kernel.h>
16#include <linux/module.h>
17#include <linux/pci.h>
Jeff Garzik669a5db2006-08-29 18:12:40 -040018#include <linux/blkdev.h>
19#include <linux/delay.h>
20#include <scsi/scsi_host.h>
21#include <linux/libata.h>
22
23#define DRV_NAME "pata_pdc202xx_old"
Alan Cox06b74dd2007-09-26 15:23:17 +010024#define DRV_VERSION "0.4.3"
Jeff Garzik669a5db2006-08-29 18:12:40 -040025
Jeff Garzika0fcdc02007-03-09 07:24:15 -050026static int pdc2026x_cable_detect(struct ata_port *ap)
Jeff Garzik669a5db2006-08-29 18:12:40 -040027{
28 struct pci_dev *pdev = to_pci_dev(ap->host->dev);
29 u16 cis;
Jeff Garzik85cd7252006-08-31 00:03:49 -040030
Jeff Garzik669a5db2006-08-29 18:12:40 -040031 pci_read_config_word(pdev, 0x50, &cis);
32 if (cis & (1 << (10 + ap->port_no)))
Alan Coxa0ac38f2007-07-03 15:15:13 +010033 return ATA_CBL_PATA40;
34 return ATA_CBL_PATA80;
Jeff Garzik669a5db2006-08-29 18:12:40 -040035}
36
Bartlomiej Zolnierkiewicz750e5192010-02-13 17:43:17 -050037static void pdc202xx_exec_command(struct ata_port *ap,
Bartlomiej Zolnierkiewicza75032e2010-02-13 14:35:53 +010038 const struct ata_taskfile *tf)
39{
40 DPRINTK("ata%u: cmd 0x%X\n", ap->print_id, tf->command);
41
42 iowrite8(tf->command, ap->ioaddr.command_addr);
43 ndelay(400);
44}
45
Sergei Shtylyov606254e2010-10-08 18:57:45 +040046static bool pdc202xx_irq_check(struct ata_port *ap)
47{
48 struct pci_dev *pdev = to_pci_dev(ap->host->dev);
49 unsigned long master = pci_resource_start(pdev, 4);
50 u8 sc1d = inb(master + 0x1d);
51
52 if (ap->port_no) {
53 /*
54 * bit 7: error, bit 6: interrupting,
55 * bit 5: FIFO full, bit 4: FIFO empty
56 */
57 return sc1d & 0x40;
58 } else {
59 /*
60 * bit 3: error, bit 2: interrupting,
61 * bit 1: FIFO full, bit 0: FIFO empty
62 */
63 return sc1d & 0x04;
64 }
65}
66
Jeff Garzik669a5db2006-08-29 18:12:40 -040067/**
Alan Coxada406c2006-11-03 13:18:06 +000068 * pdc202xx_configure_piomode - set chip PIO timing
Jeff Garzik669a5db2006-08-29 18:12:40 -040069 * @ap: ATA interface
70 * @adev: ATA device
71 * @pio: PIO mode
72 *
73 * Called to do the PIO mode setup. Our timing registers are shared
74 * so a configure_dmamode call will undo any work we do here and vice
75 * versa
76 */
Jeff Garzik85cd7252006-08-31 00:03:49 -040077
Alan Coxada406c2006-11-03 13:18:06 +000078static void pdc202xx_configure_piomode(struct ata_port *ap, struct ata_device *adev, int pio)
Jeff Garzik669a5db2006-08-29 18:12:40 -040079{
80 struct pci_dev *pdev = to_pci_dev(ap->host->dev);
Bartlomiej Zolnierkiewicz63ed7102007-03-04 04:48:08 +010081 int port = 0x60 + 8 * ap->port_no + 4 * adev->devno;
Jeff Garzik669a5db2006-08-29 18:12:40 -040082 static u16 pio_timing[5] = {
83 0x0913, 0x050C , 0x0308, 0x0206, 0x0104
84 };
85 u8 r_ap, r_bp;
86
87 pci_read_config_byte(pdev, port, &r_ap);
88 pci_read_config_byte(pdev, port + 1, &r_bp);
89 r_ap &= ~0x3F; /* Preserve ERRDY_EN, SYNC_IN */
Bartlomiej Zolnierkiewicz63ed7102007-03-04 04:48:08 +010090 r_bp &= ~0x1F;
Jeff Garzik669a5db2006-08-29 18:12:40 -040091 r_ap |= (pio_timing[pio] >> 8);
92 r_bp |= (pio_timing[pio] & 0xFF);
Jeff Garzik85cd7252006-08-31 00:03:49 -040093
Jeff Garzik669a5db2006-08-29 18:12:40 -040094 if (ata_pio_need_iordy(adev))
95 r_ap |= 0x20; /* IORDY enable */
96 if (adev->class == ATA_DEV_ATA)
97 r_ap |= 0x10; /* FIFO enable */
98 pci_write_config_byte(pdev, port, r_ap);
99 pci_write_config_byte(pdev, port + 1, r_bp);
100}
101
102/**
Alan Coxada406c2006-11-03 13:18:06 +0000103 * pdc202xx_set_piomode - set initial PIO mode data
Jeff Garzik669a5db2006-08-29 18:12:40 -0400104 * @ap: ATA interface
105 * @adev: ATA device
106 *
107 * Called to do the PIO mode setup. Our timing registers are shared
108 * but we want to set the PIO timing by default.
109 */
Jeff Garzik85cd7252006-08-31 00:03:49 -0400110
Alan Coxada406c2006-11-03 13:18:06 +0000111static void pdc202xx_set_piomode(struct ata_port *ap, struct ata_device *adev)
Jeff Garzik669a5db2006-08-29 18:12:40 -0400112{
Alan Coxada406c2006-11-03 13:18:06 +0000113 pdc202xx_configure_piomode(ap, adev, adev->pio_mode - XFER_PIO_0);
Jeff Garzik669a5db2006-08-29 18:12:40 -0400114}
115
116/**
Alan Coxada406c2006-11-03 13:18:06 +0000117 * pdc202xx_configure_dmamode - set DMA mode in chip
Jeff Garzik669a5db2006-08-29 18:12:40 -0400118 * @ap: ATA interface
119 * @adev: ATA device
120 *
121 * Load DMA cycle times into the chip ready for a DMA transfer
122 * to occur.
123 */
Jeff Garzik85cd7252006-08-31 00:03:49 -0400124
Alan Coxada406c2006-11-03 13:18:06 +0000125static void pdc202xx_set_dmamode(struct ata_port *ap, struct ata_device *adev)
Jeff Garzik669a5db2006-08-29 18:12:40 -0400126{
127 struct pci_dev *pdev = to_pci_dev(ap->host->dev);
Bartlomiej Zolnierkiewicz63ed7102007-03-04 04:48:08 +0100128 int port = 0x60 + 8 * ap->port_no + 4 * adev->devno;
Jeff Garzik669a5db2006-08-29 18:12:40 -0400129 static u8 udma_timing[6][2] = {
130 { 0x60, 0x03 }, /* 33 Mhz Clock */
131 { 0x40, 0x02 },
132 { 0x20, 0x01 },
133 { 0x40, 0x02 }, /* 66 Mhz Clock */
134 { 0x20, 0x01 },
Jeff Garzik85cd7252006-08-31 00:03:49 -0400135 { 0x20, 0x01 }
Jeff Garzik669a5db2006-08-29 18:12:40 -0400136 };
Bartlomiej Zolnierkiewicz63ed7102007-03-04 04:48:08 +0100137 static u8 mdma_timing[3][2] = {
Bartlomiej Zolnierkiewicz63ed7102007-03-04 04:48:08 +0100138 { 0xe0, 0x0f },
Alan Cox06b74dd2007-09-26 15:23:17 +0100139 { 0x60, 0x04 },
140 { 0x60, 0x03 },
Bartlomiej Zolnierkiewicz63ed7102007-03-04 04:48:08 +0100141 };
Jeff Garzik669a5db2006-08-29 18:12:40 -0400142 u8 r_bp, r_cp;
Jeff Garzik85cd7252006-08-31 00:03:49 -0400143
Jeff Garzik669a5db2006-08-29 18:12:40 -0400144 pci_read_config_byte(pdev, port + 1, &r_bp);
145 pci_read_config_byte(pdev, port + 2, &r_cp);
Jeff Garzik85cd7252006-08-31 00:03:49 -0400146
Bartlomiej Zolnierkiewicz63ed7102007-03-04 04:48:08 +0100147 r_bp &= ~0xE0;
Jeff Garzik669a5db2006-08-29 18:12:40 -0400148 r_cp &= ~0x0F;
Jeff Garzik85cd7252006-08-31 00:03:49 -0400149
Jeff Garzik669a5db2006-08-29 18:12:40 -0400150 if (adev->dma_mode >= XFER_UDMA_0) {
151 int speed = adev->dma_mode - XFER_UDMA_0;
152 r_bp |= udma_timing[speed][0];
153 r_cp |= udma_timing[speed][1];
Jeff Garzik85cd7252006-08-31 00:03:49 -0400154
Jeff Garzik669a5db2006-08-29 18:12:40 -0400155 } else {
156 int speed = adev->dma_mode - XFER_MW_DMA_0;
Bartlomiej Zolnierkiewicz63ed7102007-03-04 04:48:08 +0100157 r_bp |= mdma_timing[speed][0];
158 r_cp |= mdma_timing[speed][1];
Jeff Garzik669a5db2006-08-29 18:12:40 -0400159 }
160 pci_write_config_byte(pdev, port + 1, r_bp);
161 pci_write_config_byte(pdev, port + 2, r_cp);
Jeff Garzik85cd7252006-08-31 00:03:49 -0400162
Jeff Garzik669a5db2006-08-29 18:12:40 -0400163}
164
165/**
166 * pdc2026x_bmdma_start - DMA engine begin
167 * @qc: ATA command
168 *
169 * In UDMA3 or higher we have to clock switch for the duration of the
170 * DMA transfer sequence.
Alan Cox06b74dd2007-09-26 15:23:17 +0100171 *
172 * Note: The host lock held by the libata layer protects
173 * us from two channels both trying to set DMA bits at once
Jeff Garzik669a5db2006-08-29 18:12:40 -0400174 */
Jeff Garzik85cd7252006-08-31 00:03:49 -0400175
Jeff Garzik669a5db2006-08-29 18:12:40 -0400176static void pdc2026x_bmdma_start(struct ata_queued_cmd *qc)
177{
178 struct ata_port *ap = qc->ap;
179 struct ata_device *adev = qc->dev;
180 struct ata_taskfile *tf = &qc->tf;
181 int sel66 = ap->port_no ? 0x08: 0x02;
182
Tejun Heo0d5ff562007-02-01 15:06:36 +0900183 void __iomem *master = ap->host->ports[0]->ioaddr.bmdma_addr;
184 void __iomem *clock = master + 0x11;
185 void __iomem *atapi_reg = master + 0x20 + (4 * ap->port_no);
Jeff Garzik85cd7252006-08-31 00:03:49 -0400186
Jeff Garzik669a5db2006-08-29 18:12:40 -0400187 u32 len;
Jeff Garzik85cd7252006-08-31 00:03:49 -0400188
Jeff Garzik669a5db2006-08-29 18:12:40 -0400189 /* Check we keep host level locking here */
Bartlomiej Zolnierkiewicz6ad58b22009-04-20 22:31:25 +0200190 if (adev->dma_mode > XFER_UDMA_2)
Tejun Heo0d5ff562007-02-01 15:06:36 +0900191 iowrite8(ioread8(clock) | sel66, clock);
Jeff Garzik669a5db2006-08-29 18:12:40 -0400192 else
Tejun Heo0d5ff562007-02-01 15:06:36 +0900193 iowrite8(ioread8(clock) & ~sel66, clock);
Jeff Garzik669a5db2006-08-29 18:12:40 -0400194
Jeff Garzik85cd7252006-08-31 00:03:49 -0400195 /* The DMA clocks may have been trashed by a reset. FIXME: make conditional
Jeff Garzik669a5db2006-08-29 18:12:40 -0400196 and move to qc_issue ? */
Alan Coxada406c2006-11-03 13:18:06 +0000197 pdc202xx_set_dmamode(ap, qc->dev);
Jeff Garzik669a5db2006-08-29 18:12:40 -0400198
199 /* Cases the state machine will not complete correctly without help */
Tejun Heo0dc36882007-12-18 16:34:43 -0500200 if ((tf->flags & ATA_TFLAG_LBA48) || tf->protocol == ATAPI_PROT_DMA) {
Alan Cox5e518812007-03-23 18:57:23 +0000201 len = qc->nbytes / 2;
Jeff Garzik85cd7252006-08-31 00:03:49 -0400202
Jeff Garzik669a5db2006-08-29 18:12:40 -0400203 if (tf->flags & ATA_TFLAG_WRITE)
204 len |= 0x06000000;
205 else
206 len |= 0x05000000;
Jeff Garzik85cd7252006-08-31 00:03:49 -0400207
Tejun Heo0d5ff562007-02-01 15:06:36 +0900208 iowrite32(len, atapi_reg);
Jeff Garzik669a5db2006-08-29 18:12:40 -0400209 }
Jeff Garzik85cd7252006-08-31 00:03:49 -0400210
211 /* Activate DMA */
Jeff Garzik669a5db2006-08-29 18:12:40 -0400212 ata_bmdma_start(qc);
213}
214
215/**
216 * pdc2026x_bmdma_end - DMA engine stop
217 * @qc: ATA command
218 *
219 * After a DMA completes we need to put the clock back to 33MHz for
220 * PIO timings.
Alan Cox06b74dd2007-09-26 15:23:17 +0100221 *
222 * Note: The host lock held by the libata layer protects
223 * us from two channels both trying to set DMA bits at once
Jeff Garzik669a5db2006-08-29 18:12:40 -0400224 */
Jeff Garzik85cd7252006-08-31 00:03:49 -0400225
Jeff Garzik669a5db2006-08-29 18:12:40 -0400226static void pdc2026x_bmdma_stop(struct ata_queued_cmd *qc)
227{
228 struct ata_port *ap = qc->ap;
229 struct ata_device *adev = qc->dev;
230 struct ata_taskfile *tf = &qc->tf;
Jeff Garzik85cd7252006-08-31 00:03:49 -0400231
Jeff Garzik669a5db2006-08-29 18:12:40 -0400232 int sel66 = ap->port_no ? 0x08: 0x02;
233 /* The clock bits are in the same register for both channels */
Tejun Heo0d5ff562007-02-01 15:06:36 +0900234 void __iomem *master = ap->host->ports[0]->ioaddr.bmdma_addr;
235 void __iomem *clock = master + 0x11;
236 void __iomem *atapi_reg = master + 0x20 + (4 * ap->port_no);
Jeff Garzik85cd7252006-08-31 00:03:49 -0400237
Jeff Garzik669a5db2006-08-29 18:12:40 -0400238 /* Cases the state machine will not complete correctly */
Tejun Heo0dc36882007-12-18 16:34:43 -0500239 if (tf->protocol == ATAPI_PROT_DMA || (tf->flags & ATA_TFLAG_LBA48)) {
Tejun Heo0d5ff562007-02-01 15:06:36 +0900240 iowrite32(0, atapi_reg);
241 iowrite8(ioread8(clock) & ~sel66, clock);
Jeff Garzik669a5db2006-08-29 18:12:40 -0400242 }
Jeff Garzik669a5db2006-08-29 18:12:40 -0400243 /* Flip back to 33Mhz for PIO */
Bartlomiej Zolnierkiewicz6ad58b22009-04-20 22:31:25 +0200244 if (adev->dma_mode > XFER_UDMA_2)
Tejun Heo0d5ff562007-02-01 15:06:36 +0900245 iowrite8(ioread8(clock) & ~sel66, clock);
Jeff Garzik669a5db2006-08-29 18:12:40 -0400246 ata_bmdma_stop(qc);
Alan Cox36906d92008-01-04 00:08:49 +0000247 pdc202xx_set_piomode(ap, adev);
Jeff Garzik669a5db2006-08-29 18:12:40 -0400248}
249
250/**
251 * pdc2026x_dev_config - device setup hook
Jeff Garzik669a5db2006-08-29 18:12:40 -0400252 * @adev: newly found device
253 *
254 * Perform chip specific early setup. We need to lock the transfer
255 * sizes to 8bit to avoid making the state engine on the 2026x cards
256 * barf.
257 */
Jeff Garzik85cd7252006-08-31 00:03:49 -0400258
Alancd0d3bb2007-03-02 00:56:15 +0000259static void pdc2026x_dev_config(struct ata_device *adev)
Jeff Garzik669a5db2006-08-29 18:12:40 -0400260{
261 adev->max_sectors = 256;
262}
263
Alan Cox36906d92008-01-04 00:08:49 +0000264static int pdc2026x_port_start(struct ata_port *ap)
265{
266 void __iomem *bmdma = ap->ioaddr.bmdma_addr;
267 if (bmdma) {
268 /* Enable burst mode */
269 u8 burst = ioread8(bmdma + 0x1f);
270 iowrite8(burst | 0x01, bmdma + 0x1f);
271 }
Tejun Heoc7087652010-05-10 21:41:34 +0200272 return ata_bmdma_port_start(ap);
Alan Cox36906d92008-01-04 00:08:49 +0000273}
274
Alan Coxaa8f2372008-01-19 15:51:26 +0000275/**
276 * pdc2026x_check_atapi_dma - Check whether ATAPI DMA can be supported for this command
277 * @qc: Metadata associated with taskfile to check
278 *
279 * Just say no - not supported on older Promise.
280 *
281 * LOCKING:
282 * None (inherited from caller).
283 *
284 * RETURNS: 0 when ATAPI DMA can be used
285 * 1 otherwise
286 */
287
288static int pdc2026x_check_atapi_dma(struct ata_queued_cmd *qc)
289{
290 return 1;
291}
292
Alan Coxada406c2006-11-03 13:18:06 +0000293static struct scsi_host_template pdc202xx_sht = {
Tejun Heo68d1d072008-03-25 12:22:49 +0900294 ATA_BMDMA_SHT(DRV_NAME),
Jeff Garzik669a5db2006-08-29 18:12:40 -0400295};
296
297static struct ata_port_operations pdc2024x_port_ops = {
Tejun Heo029cfd62008-03-25 12:22:49 +0900298 .inherits = &ata_bmdma_port_ops,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400299
Tejun Heo029cfd62008-03-25 12:22:49 +0900300 .cable_detect = ata_cable_40wire,
301 .set_piomode = pdc202xx_set_piomode,
302 .set_dmamode = pdc202xx_set_dmamode,
Bartlomiej Zolnierkiewicza75032e2010-02-13 14:35:53 +0100303
Bartlomiej Zolnierkiewicz750e5192010-02-13 17:43:17 -0500304 .sff_exec_command = pdc202xx_exec_command,
Sergei Shtylyov606254e2010-10-08 18:57:45 +0400305 .sff_irq_check = pdc202xx_irq_check,
Jeff Garzik85cd7252006-08-31 00:03:49 -0400306};
Jeff Garzik669a5db2006-08-29 18:12:40 -0400307
308static struct ata_port_operations pdc2026x_port_ops = {
Tejun Heo029cfd62008-03-25 12:22:49 +0900309 .inherits = &pdc2024x_port_ops,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400310
Tejun Heo029cfd62008-03-25 12:22:49 +0900311 .check_atapi_dma = pdc2026x_check_atapi_dma,
312 .bmdma_start = pdc2026x_bmdma_start,
313 .bmdma_stop = pdc2026x_bmdma_stop,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400314
Tejun Heo029cfd62008-03-25 12:22:49 +0900315 .cable_detect = pdc2026x_cable_detect,
316 .dev_config = pdc2026x_dev_config,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400317
Tejun Heo029cfd62008-03-25 12:22:49 +0900318 .port_start = pdc2026x_port_start,
Bartlomiej Zolnierkiewicz750e5192010-02-13 17:43:17 -0500319
320 .sff_exec_command = pdc202xx_exec_command,
Sergei Shtylyov606254e2010-10-08 18:57:45 +0400321 .sff_irq_check = pdc202xx_irq_check,
Jeff Garzik85cd7252006-08-31 00:03:49 -0400322};
Jeff Garzik669a5db2006-08-29 18:12:40 -0400323
Alan Coxada406c2006-11-03 13:18:06 +0000324static int pdc202xx_init_one(struct pci_dev *dev, const struct pci_device_id *id)
Jeff Garzik669a5db2006-08-29 18:12:40 -0400325{
Tejun Heo1626aeb2007-05-04 12:43:58 +0200326 static const struct ata_port_info info[3] = {
Jeff Garzik669a5db2006-08-29 18:12:40 -0400327 {
Jeff Garzik1d2808f2007-05-28 06:59:48 -0400328 .flags = ATA_FLAG_SLAVE_POSS,
Erik Inge Bolsø14bdef982009-03-14 21:38:24 +0100329 .pio_mask = ATA_PIO4,
330 .mwdma_mask = ATA_MWDMA2,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400331 .udma_mask = ATA_UDMA2,
332 .port_ops = &pdc2024x_port_ops
Jeff Garzik85cd7252006-08-31 00:03:49 -0400333 },
Jeff Garzik669a5db2006-08-29 18:12:40 -0400334 {
Jeff Garzik1d2808f2007-05-28 06:59:48 -0400335 .flags = ATA_FLAG_SLAVE_POSS,
Erik Inge Bolsø14bdef982009-03-14 21:38:24 +0100336 .pio_mask = ATA_PIO4,
337 .mwdma_mask = ATA_MWDMA2,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400338 .udma_mask = ATA_UDMA4,
339 .port_ops = &pdc2026x_port_ops
340 },
341 {
Jeff Garzik1d2808f2007-05-28 06:59:48 -0400342 .flags = ATA_FLAG_SLAVE_POSS,
Erik Inge Bolsø14bdef982009-03-14 21:38:24 +0100343 .pio_mask = ATA_PIO4,
344 .mwdma_mask = ATA_MWDMA2,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400345 .udma_mask = ATA_UDMA5,
346 .port_ops = &pdc2026x_port_ops
347 }
Jeff Garzik85cd7252006-08-31 00:03:49 -0400348
Jeff Garzik669a5db2006-08-29 18:12:40 -0400349 };
Tejun Heo1626aeb2007-05-04 12:43:58 +0200350 const struct ata_port_info *ppi[] = { &info[id->driver_data], NULL };
Jeff Garzik85cd7252006-08-31 00:03:49 -0400351
Jeff Garzik669a5db2006-08-29 18:12:40 -0400352 if (dev->device == PCI_DEVICE_ID_PROMISE_20265) {
353 struct pci_dev *bridge = dev->bus->self;
354 /* Don't grab anything behind a Promise I2O RAID */
355 if (bridge && bridge->vendor == PCI_VENDOR_ID_INTEL) {
Jeff Garzikb4479162007-10-25 20:47:30 -0400356 if (bridge->device == PCI_DEVICE_ID_INTEL_I960)
Jeff Garzik669a5db2006-08-29 18:12:40 -0400357 return -ENODEV;
Jeff Garzikb4479162007-10-25 20:47:30 -0400358 if (bridge->device == PCI_DEVICE_ID_INTEL_I960RM)
Jeff Garzik669a5db2006-08-29 18:12:40 -0400359 return -ENODEV;
360 }
361 }
Tejun Heo1c5afdf2010-05-19 22:10:22 +0200362 return ata_pci_bmdma_init_one(dev, ppi, &pdc202xx_sht, NULL, 0);
Jeff Garzik669a5db2006-08-29 18:12:40 -0400363}
364
Alan Coxada406c2006-11-03 13:18:06 +0000365static const struct pci_device_id pdc202xx[] = {
Jeff Garzik2d2744f2006-09-28 20:21:59 -0400366 { PCI_VDEVICE(PROMISE, PCI_DEVICE_ID_PROMISE_20246), 0 },
367 { PCI_VDEVICE(PROMISE, PCI_DEVICE_ID_PROMISE_20262), 1 },
368 { PCI_VDEVICE(PROMISE, PCI_DEVICE_ID_PROMISE_20263), 1 },
369 { PCI_VDEVICE(PROMISE, PCI_DEVICE_ID_PROMISE_20265), 2 },
370 { PCI_VDEVICE(PROMISE, PCI_DEVICE_ID_PROMISE_20267), 2 },
371
372 { },
Jeff Garzik669a5db2006-08-29 18:12:40 -0400373};
374
Alan Coxada406c2006-11-03 13:18:06 +0000375static struct pci_driver pdc202xx_pci_driver = {
Jeff Garzik2d2744f2006-09-28 20:21:59 -0400376 .name = DRV_NAME,
Alan Coxada406c2006-11-03 13:18:06 +0000377 .id_table = pdc202xx,
378 .probe = pdc202xx_init_one,
Alan62d64ae2006-11-27 16:27:20 +0000379 .remove = ata_pci_remove_one,
Bartlomiej Zolnierkiewicz58eb8cd2014-05-07 17:17:44 +0200380#ifdef CONFIG_PM_SLEEP
Alan62d64ae2006-11-27 16:27:20 +0000381 .suspend = ata_pci_device_suspend,
382 .resume = ata_pci_device_resume,
Tejun Heo438ac6d2007-03-02 17:31:26 +0900383#endif
Jeff Garzik669a5db2006-08-29 18:12:40 -0400384};
385
Axel Lin2fc75da2012-04-19 13:43:05 +0800386module_pci_driver(pdc202xx_pci_driver);
Jeff Garzik669a5db2006-08-29 18:12:40 -0400387
Jeff Garzik669a5db2006-08-29 18:12:40 -0400388MODULE_AUTHOR("Alan Cox");
389MODULE_DESCRIPTION("low-level driver for Promise 2024x and 20262-20267");
390MODULE_LICENSE("GPL");
Alan Coxada406c2006-11-03 13:18:06 +0000391MODULE_DEVICE_TABLE(pci, pdc202xx);
Jeff Garzik669a5db2006-08-29 18:12:40 -0400392MODULE_VERSION(DRV_VERSION);