blob: bdec7efa46432fac1a1d64d18a75c016854ef42f [file] [log] [blame]
Jeff Garzik669a5db2006-08-29 18:12:40 -04001/*
2 * pata_optidma.c - Opti DMA PATA for new ATA layer
3 * (C) 2006 Red Hat Inc
Jeff Garzik669a5db2006-08-29 18:12:40 -04004 *
5 * The Opti DMA controllers are related to the older PIO PCI controllers
6 * and indeed the VLB ones. The main differences are that the timing
7 * numbers are now based off PCI clocks not VLB and differ, and that
8 * MWDMA is supported.
9 *
10 * This driver should support Viper-N+, FireStar, FireStar Plus.
11 *
12 * These devices support virtual DMA for read (aka the CS5520). Later
13 * chips support UDMA33, but only if the rest of the board logic does,
14 * so you have to get this right. We don't support the virtual DMA
15 * but we do handle UDMA.
16 *
17 * Bits that are worth knowing
18 * Most control registers are shadowed into I/O registers
19 * 0x1F5 bit 0 tells you if the PCI/VLB clock is 33 or 25Mhz
20 * Virtual DMA registers *move* between rev 0x02 and rev 0x10
21 * UDMA requires a 66MHz FSB
22 *
23 */
24
25#include <linux/kernel.h>
26#include <linux/module.h>
27#include <linux/pci.h>
Jeff Garzik669a5db2006-08-29 18:12:40 -040028#include <linux/blkdev.h>
29#include <linux/delay.h>
30#include <scsi/scsi_host.h>
31#include <linux/libata.h>
32
33#define DRV_NAME "pata_optidma"
Alan Cox5c25bf02007-03-26 21:43:43 -080034#define DRV_VERSION "0.3.2"
Jeff Garzik669a5db2006-08-29 18:12:40 -040035
36enum {
37 READ_REG = 0, /* index of Read cycle timing register */
38 WRITE_REG = 1, /* index of Write cycle timing register */
39 CNTRL_REG = 3, /* index of Control register */
40 STRAP_REG = 5, /* index of Strap register */
41 MISC_REG = 6 /* index of Miscellaneous register */
42};
43
44static int pci_clock; /* 0 = 33 1 = 25 */
45
46/**
47 * optidma_pre_reset - probe begin
Tejun Heocc0680a2007-08-06 18:36:23 +090048 * @link: ATA link
Tejun Heod4b2bab2007-02-02 16:50:52 +090049 * @deadline: deadline jiffies for the operation
Jeff Garzik669a5db2006-08-29 18:12:40 -040050 *
51 * Set up cable type and use generic probe init
52 */
Jeff Garzik85cd7252006-08-31 00:03:49 -040053
Tejun Heocc0680a2007-08-06 18:36:23 +090054static int optidma_pre_reset(struct ata_link *link, unsigned long deadline)
Jeff Garzik669a5db2006-08-29 18:12:40 -040055{
Tejun Heocc0680a2007-08-06 18:36:23 +090056 struct ata_port *ap = link->ap;
Jeff Garzik669a5db2006-08-29 18:12:40 -040057 struct pci_dev *pdev = to_pci_dev(ap->host->dev);
Jeff Garzik85cd7252006-08-31 00:03:49 -040058 static const struct pci_bits optidma_enable_bits = {
Jeff Garzik669a5db2006-08-29 18:12:40 -040059 0x40, 1, 0x08, 0x00
60 };
61
Alan Coxc9619222006-09-26 17:53:38 +010062 if (ap->port_no && !pci_test_config_bits(pdev, &optidma_enable_bits))
63 return -ENOENT;
64
Tejun Heo9363c382008-04-07 22:47:16 +090065 return ata_sff_prereset(link, deadline);
Jeff Garzik669a5db2006-08-29 18:12:40 -040066}
67
68/**
Jeff Garzik669a5db2006-08-29 18:12:40 -040069 * optidma_unlock - unlock control registers
70 * @ap: ATA port
71 *
72 * Unlock the control register block for this adapter. Registers must not
73 * be unlocked in a situation where libata might look at them.
74 */
Jeff Garzik85cd7252006-08-31 00:03:49 -040075
Jeff Garzik669a5db2006-08-29 18:12:40 -040076static void optidma_unlock(struct ata_port *ap)
77{
Tejun Heo0d5ff562007-02-01 15:06:36 +090078 void __iomem *regio = ap->ioaddr.cmd_addr;
Jeff Garzik85cd7252006-08-31 00:03:49 -040079
Jeff Garzik669a5db2006-08-29 18:12:40 -040080 /* These 3 unlock the control register access */
Tejun Heo0d5ff562007-02-01 15:06:36 +090081 ioread16(regio + 1);
82 ioread16(regio + 1);
83 iowrite8(3, regio + 2);
Jeff Garzik669a5db2006-08-29 18:12:40 -040084}
85
86/**
87 * optidma_lock - issue temporary relock
88 * @ap: ATA port
89 *
90 * Re-lock the configuration register settings.
91 */
Jeff Garzik85cd7252006-08-31 00:03:49 -040092
Jeff Garzik669a5db2006-08-29 18:12:40 -040093static void optidma_lock(struct ata_port *ap)
94{
Tejun Heo0d5ff562007-02-01 15:06:36 +090095 void __iomem *regio = ap->ioaddr.cmd_addr;
Jeff Garzik85cd7252006-08-31 00:03:49 -040096
Jeff Garzik669a5db2006-08-29 18:12:40 -040097 /* Relock */
Tejun Heo0d5ff562007-02-01 15:06:36 +090098 iowrite8(0x83, regio + 2);
Jeff Garzik669a5db2006-08-29 18:12:40 -040099}
100
101/**
Alan Cox5c25bf02007-03-26 21:43:43 -0800102 * optidma_mode_setup - set mode data
Jeff Garzik669a5db2006-08-29 18:12:40 -0400103 * @ap: ATA interface
104 * @adev: ATA device
105 * @mode: Mode to set
106 *
107 * Called to do the DMA or PIO mode setup. Timing numbers are all
108 * pre computed to keep the code clean. There are two tables depending
109 * on the hardware clock speed.
110 *
111 * WARNING: While we do this the IDE registers vanish. If we take an
112 * IRQ here we depend on the host set locking to avoid catastrophe.
113 */
114
Alan Cox5c25bf02007-03-26 21:43:43 -0800115static void optidma_mode_setup(struct ata_port *ap, struct ata_device *adev, u8 mode)
Jeff Garzik669a5db2006-08-29 18:12:40 -0400116{
117 struct ata_device *pair = ata_dev_pair(adev);
118 int pio = adev->pio_mode - XFER_PIO_0;
119 int dma = adev->dma_mode - XFER_MW_DMA_0;
Tejun Heo0d5ff562007-02-01 15:06:36 +0900120 void __iomem *regio = ap->ioaddr.cmd_addr;
Jeff Garzik669a5db2006-08-29 18:12:40 -0400121 u8 addr;
122
123 /* Address table precomputed with a DCLK of 2 */
124 static const u8 addr_timing[2][5] = {
125 { 0x30, 0x20, 0x20, 0x10, 0x10 },
126 { 0x20, 0x20, 0x10, 0x10, 0x10 }
127 };
128 static const u8 data_rec_timing[2][5] = {
129 { 0x59, 0x46, 0x30, 0x20, 0x20 },
130 { 0x46, 0x32, 0x20, 0x20, 0x10 }
131 };
132 static const u8 dma_data_rec_timing[2][3] = {
133 { 0x76, 0x20, 0x20 },
134 { 0x54, 0x20, 0x10 }
135 };
136
137 /* Switch from IDE to control mode */
138 optidma_unlock(ap);
Jeff Garzik85cd7252006-08-31 00:03:49 -0400139
Jeff Garzik669a5db2006-08-29 18:12:40 -0400140
141 /*
142 * As with many controllers the address setup time is shared
143 * and must suit both devices if present. FIXME: Check if we
144 * need to look at slowest of PIO/DMA mode of either device
145 */
146
147 if (mode >= XFER_MW_DMA_0)
148 addr = 0;
149 else
150 addr = addr_timing[pci_clock][pio];
Jeff Garzik85cd7252006-08-31 00:03:49 -0400151
Jeff Garzik669a5db2006-08-29 18:12:40 -0400152 if (pair) {
153 u8 pair_addr;
154 /* Hardware constraint */
155 if (pair->dma_mode)
156 pair_addr = 0;
157 else
158 pair_addr = addr_timing[pci_clock][pair->pio_mode - XFER_PIO_0];
159 if (pair_addr > addr)
160 addr = pair_addr;
161 }
Jeff Garzik85cd7252006-08-31 00:03:49 -0400162
Jeff Garzik669a5db2006-08-29 18:12:40 -0400163 /* Commence primary programming sequence */
164 /* First we load the device number into the timing select */
Tejun Heo0d5ff562007-02-01 15:06:36 +0900165 iowrite8(adev->devno, regio + MISC_REG);
Jeff Garzik669a5db2006-08-29 18:12:40 -0400166 /* Now we load the data timings into read data/write data */
167 if (mode < XFER_MW_DMA_0) {
Tejun Heo0d5ff562007-02-01 15:06:36 +0900168 iowrite8(data_rec_timing[pci_clock][pio], regio + READ_REG);
169 iowrite8(data_rec_timing[pci_clock][pio], regio + WRITE_REG);
Jeff Garzik669a5db2006-08-29 18:12:40 -0400170 } else if (mode < XFER_UDMA_0) {
Tejun Heo0d5ff562007-02-01 15:06:36 +0900171 iowrite8(dma_data_rec_timing[pci_clock][dma], regio + READ_REG);
172 iowrite8(dma_data_rec_timing[pci_clock][dma], regio + WRITE_REG);
Jeff Garzik669a5db2006-08-29 18:12:40 -0400173 }
174 /* Finally we load the address setup into the misc register */
Tejun Heo0d5ff562007-02-01 15:06:36 +0900175 iowrite8(addr | adev->devno, regio + MISC_REG);
Jeff Garzik669a5db2006-08-29 18:12:40 -0400176
177 /* Programming sequence complete, timing 0 dev 0, timing 1 dev 1 */
Tejun Heo0d5ff562007-02-01 15:06:36 +0900178 iowrite8(0x85, regio + CNTRL_REG);
Jeff Garzik85cd7252006-08-31 00:03:49 -0400179
Jeff Garzik669a5db2006-08-29 18:12:40 -0400180 /* Switch back to IDE mode */
181 optidma_lock(ap);
Jeff Garzik85cd7252006-08-31 00:03:49 -0400182
Jeff Garzik669a5db2006-08-29 18:12:40 -0400183 /* Note: at this point our programming is incomplete. We are
184 not supposed to program PCI 0x43 "things we hacked onto the chip"
185 until we've done both sets of PIO/DMA timings */
186}
187
188/**
Alan Cox5c25bf02007-03-26 21:43:43 -0800189 * optiplus_mode_setup - DMA setup for Firestar Plus
Jeff Garzik669a5db2006-08-29 18:12:40 -0400190 * @ap: ATA port
191 * @adev: device
192 * @mode: desired mode
193 *
194 * The Firestar plus has additional UDMA functionality for UDMA0-2 and
195 * requires we do some additional work. Because the base work we must do
196 * is mostly shared we wrap the Firestar setup functionality in this
197 * one
198 */
199
Alan Cox5c25bf02007-03-26 21:43:43 -0800200static void optiplus_mode_setup(struct ata_port *ap, struct ata_device *adev, u8 mode)
Jeff Garzik669a5db2006-08-29 18:12:40 -0400201{
202 struct pci_dev *pdev = to_pci_dev(ap->host->dev);
203 u8 udcfg;
204 u8 udslave;
205 int dev2 = 2 * adev->devno;
206 int unit = 2 * ap->port_no + adev->devno;
207 int udma = mode - XFER_UDMA_0;
Jeff Garzik85cd7252006-08-31 00:03:49 -0400208
Jeff Garzik669a5db2006-08-29 18:12:40 -0400209 pci_read_config_byte(pdev, 0x44, &udcfg);
210 if (mode <= XFER_UDMA_0) {
211 udcfg &= ~(1 << unit);
Alan Cox5c25bf02007-03-26 21:43:43 -0800212 optidma_mode_setup(ap, adev, adev->dma_mode);
Jeff Garzik669a5db2006-08-29 18:12:40 -0400213 } else {
214 udcfg |= (1 << unit);
215 if (ap->port_no) {
216 pci_read_config_byte(pdev, 0x45, &udslave);
217 udslave &= ~(0x03 << dev2);
218 udslave |= (udma << dev2);
219 pci_write_config_byte(pdev, 0x45, udslave);
220 } else {
221 udcfg &= ~(0x30 << dev2);
222 udcfg |= (udma << dev2);
223 }
224 }
225 pci_write_config_byte(pdev, 0x44, udcfg);
226}
227
228/**
229 * optidma_set_pio_mode - PIO setup callback
230 * @ap: ATA port
231 * @adev: Device
232 *
233 * The libata core provides separate functions for handling PIO and
234 * DMA programming. The architecture of the Firestar makes it easier
235 * for us to have a common function so we provide wrappers
236 */
Jeff Garzik85cd7252006-08-31 00:03:49 -0400237
Jeff Garzik669a5db2006-08-29 18:12:40 -0400238static void optidma_set_pio_mode(struct ata_port *ap, struct ata_device *adev)
239{
Alan Cox5c25bf02007-03-26 21:43:43 -0800240 optidma_mode_setup(ap, adev, adev->pio_mode);
Jeff Garzik669a5db2006-08-29 18:12:40 -0400241}
242
243/**
244 * optidma_set_dma_mode - DMA setup callback
245 * @ap: ATA port
246 * @adev: Device
247 *
248 * The libata core provides separate functions for handling PIO and
249 * DMA programming. The architecture of the Firestar makes it easier
250 * for us to have a common function so we provide wrappers
251 */
Jeff Garzik85cd7252006-08-31 00:03:49 -0400252
Jeff Garzik669a5db2006-08-29 18:12:40 -0400253static void optidma_set_dma_mode(struct ata_port *ap, struct ata_device *adev)
254{
Alan Cox5c25bf02007-03-26 21:43:43 -0800255 optidma_mode_setup(ap, adev, adev->dma_mode);
Jeff Garzik669a5db2006-08-29 18:12:40 -0400256}
257
258/**
259 * optiplus_set_pio_mode - PIO setup callback
260 * @ap: ATA port
261 * @adev: Device
262 *
263 * The libata core provides separate functions for handling PIO and
264 * DMA programming. The architecture of the Firestar makes it easier
265 * for us to have a common function so we provide wrappers
266 */
Jeff Garzik85cd7252006-08-31 00:03:49 -0400267
Jeff Garzik669a5db2006-08-29 18:12:40 -0400268static void optiplus_set_pio_mode(struct ata_port *ap, struct ata_device *adev)
269{
Alan Cox5c25bf02007-03-26 21:43:43 -0800270 optiplus_mode_setup(ap, adev, adev->pio_mode);
Jeff Garzik669a5db2006-08-29 18:12:40 -0400271}
272
273/**
274 * optiplus_set_dma_mode - DMA setup callback
275 * @ap: ATA port
276 * @adev: Device
277 *
278 * The libata core provides separate functions for handling PIO and
279 * DMA programming. The architecture of the Firestar makes it easier
280 * for us to have a common function so we provide wrappers
281 */
Jeff Garzik85cd7252006-08-31 00:03:49 -0400282
Jeff Garzik669a5db2006-08-29 18:12:40 -0400283static void optiplus_set_dma_mode(struct ata_port *ap, struct ata_device *adev)
284{
Alan Cox5c25bf02007-03-26 21:43:43 -0800285 optiplus_mode_setup(ap, adev, adev->dma_mode);
Jeff Garzik669a5db2006-08-29 18:12:40 -0400286}
287
288/**
289 * optidma_make_bits - PCI setup helper
290 * @adev: ATA device
291 *
292 * Turn the ATA device setup into PCI configuration bits
293 * for register 0x43 and return the two bits needed.
294 */
Jeff Garzik85cd7252006-08-31 00:03:49 -0400295
Jeff Garzik669a5db2006-08-29 18:12:40 -0400296static u8 optidma_make_bits43(struct ata_device *adev)
297{
298 static const u8 bits43[5] = {
299 0, 0, 0, 1, 2
300 };
301 if (!ata_dev_enabled(adev))
302 return 0;
303 if (adev->dma_mode)
304 return adev->dma_mode - XFER_MW_DMA_0;
305 return bits43[adev->pio_mode - XFER_PIO_0];
306}
307
308/**
Alan Cox5c25bf02007-03-26 21:43:43 -0800309 * optidma_set_mode - mode setup
Tejun Heo02607312007-08-06 18:36:23 +0900310 * @link: link to set up
Jeff Garzik669a5db2006-08-29 18:12:40 -0400311 *
Alan Cox5c25bf02007-03-26 21:43:43 -0800312 * Use the standard setup to tune the chipset and then finalise the
313 * configuration by writing the nibble of extra bits of data into
314 * the chip.
Jeff Garzik669a5db2006-08-29 18:12:40 -0400315 */
Jeff Garzik85cd7252006-08-31 00:03:49 -0400316
Tejun Heo02607312007-08-06 18:36:23 +0900317static int optidma_set_mode(struct ata_link *link, struct ata_device **r_failed)
Jeff Garzik669a5db2006-08-29 18:12:40 -0400318{
Tejun Heo02607312007-08-06 18:36:23 +0900319 struct ata_port *ap = link->ap;
Jeff Garzik669a5db2006-08-29 18:12:40 -0400320 u8 r;
321 int nybble = 4 * ap->port_no;
322 struct pci_dev *pdev = to_pci_dev(ap->host->dev);
Tejun Heo02607312007-08-06 18:36:23 +0900323 int rc = ata_do_set_mode(link, r_failed);
Alan Cox5c25bf02007-03-26 21:43:43 -0800324 if (rc == 0) {
325 pci_read_config_byte(pdev, 0x43, &r);
Jeff Garzik85cd7252006-08-31 00:03:49 -0400326
Alan Cox5c25bf02007-03-26 21:43:43 -0800327 r &= (0x0F << nybble);
Tejun Heo02607312007-08-06 18:36:23 +0900328 r |= (optidma_make_bits43(&link->device[0]) +
329 (optidma_make_bits43(&link->device[0]) << 2)) << nybble;
Alan Cox5c25bf02007-03-26 21:43:43 -0800330 pci_write_config_byte(pdev, 0x43, r);
331 }
332 return rc;
Jeff Garzik669a5db2006-08-29 18:12:40 -0400333}
334
335static struct scsi_host_template optidma_sht = {
Tejun Heo68d1d072008-03-25 12:22:49 +0900336 ATA_BMDMA_SHT(DRV_NAME),
Jeff Garzik669a5db2006-08-29 18:12:40 -0400337};
338
339static struct ata_port_operations optidma_port_ops = {
Tejun Heo029cfd62008-03-25 12:22:49 +0900340 .inherits = &ata_bmdma_port_ops,
341 .cable_detect = ata_cable_40wire,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400342 .set_piomode = optidma_set_pio_mode,
343 .set_dmamode = optidma_set_dma_mode,
Alan Cox5c25bf02007-03-26 21:43:43 -0800344 .set_mode = optidma_set_mode,
Tejun Heoa1efdab2008-03-25 12:22:50 +0900345 .prereset = optidma_pre_reset,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400346};
347
348static struct ata_port_operations optiplus_port_ops = {
Tejun Heo029cfd62008-03-25 12:22:49 +0900349 .inherits = &optidma_port_ops,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400350 .set_piomode = optiplus_set_pio_mode,
351 .set_dmamode = optiplus_set_dma_mode,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400352};
353
354/**
355 * optiplus_with_udma - Look for UDMA capable setup
356 * @pdev; ATA controller
357 */
Jeff Garzik85cd7252006-08-31 00:03:49 -0400358
Jeff Garzik669a5db2006-08-29 18:12:40 -0400359static int optiplus_with_udma(struct pci_dev *pdev)
360{
361 u8 r;
362 int ret = 0;
363 int ioport = 0x22;
364 struct pci_dev *dev1;
Jeff Garzik85cd7252006-08-31 00:03:49 -0400365
Jeff Garzik669a5db2006-08-29 18:12:40 -0400366 /* Find function 1 */
367 dev1 = pci_get_device(0x1045, 0xC701, NULL);
Jeff Garzikb4479162007-10-25 20:47:30 -0400368 if (dev1 == NULL)
Jeff Garzik669a5db2006-08-29 18:12:40 -0400369 return 0;
Jeff Garzik85cd7252006-08-31 00:03:49 -0400370
Jeff Garzik669a5db2006-08-29 18:12:40 -0400371 /* Rev must be >= 0x10 */
372 pci_read_config_byte(dev1, 0x08, &r);
373 if (r < 0x10)
374 goto done_nomsg;
375 /* Read the chipset system configuration to check our mode */
376 pci_read_config_byte(dev1, 0x5F, &r);
377 ioport |= (r << 8);
378 outb(0x10, ioport);
379 /* Must be 66Mhz sync */
380 if ((inb(ioport + 2) & 1) == 0)
381 goto done;
382
383 /* Check the ATA arbitration/timing is suitable */
384 pci_read_config_byte(pdev, 0x42, &r);
385 if ((r & 0x36) != 0x36)
386 goto done;
387 pci_read_config_byte(dev1, 0x52, &r);
388 if (r & 0x80) /* IDEDIR disabled */
389 ret = 1;
Jeff Garzik85cd7252006-08-31 00:03:49 -0400390done:
Jeff Garzik669a5db2006-08-29 18:12:40 -0400391 printk(KERN_WARNING "UDMA not supported in this configuration.\n");
392done_nomsg: /* Wrong chip revision */
393 pci_dev_put(dev1);
394 return ret;
395}
396
397static int optidma_init_one(struct pci_dev *dev, const struct pci_device_id *id)
398{
Tejun Heo1626aeb2007-05-04 12:43:58 +0200399 static const struct ata_port_info info_82c700 = {
Jeff Garzik1d2808f2007-05-28 06:59:48 -0400400 .flags = ATA_FLAG_SLAVE_POSS,
Erik Inge Bolsø14bdef92009-03-14 21:38:24 +0100401 .pio_mask = ATA_PIO4,
402 .mwdma_mask = ATA_MWDMA2,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400403 .port_ops = &optidma_port_ops
404 };
Tejun Heo1626aeb2007-05-04 12:43:58 +0200405 static const struct ata_port_info info_82c700_udma = {
Jeff Garzik1d2808f2007-05-28 06:59:48 -0400406 .flags = ATA_FLAG_SLAVE_POSS,
Erik Inge Bolsø14bdef92009-03-14 21:38:24 +0100407 .pio_mask = ATA_PIO4,
408 .mwdma_mask = ATA_MWDMA2,
409 .udma_mask = ATA_UDMA2,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400410 .port_ops = &optiplus_port_ops
411 };
Tejun Heo1626aeb2007-05-04 12:43:58 +0200412 const struct ata_port_info *ppi[] = { &info_82c700, NULL };
Tejun Heof08048e2008-03-25 12:22:47 +0900413 int rc;
Jeff Garzik669a5db2006-08-29 18:12:40 -0400414
Joe Perches06296a12011-04-15 15:52:00 -0700415 ata_print_version_once(&dev->dev, DRV_VERSION);
Jeff Garzik669a5db2006-08-29 18:12:40 -0400416
Tejun Heof08048e2008-03-25 12:22:47 +0900417 rc = pcim_enable_device(dev);
418 if (rc)
419 return rc;
420
Jeff Garzik669a5db2006-08-29 18:12:40 -0400421 /* Fixed location chipset magic */
422 inw(0x1F1);
423 inw(0x1F1);
424 pci_clock = inb(0x1F5) & 1; /* 0 = 33Mhz, 1 = 25Mhz */
Jeff Garzik85cd7252006-08-31 00:03:49 -0400425
Jeff Garzik669a5db2006-08-29 18:12:40 -0400426 if (optiplus_with_udma(dev))
Tejun Heo1626aeb2007-05-04 12:43:58 +0200427 ppi[0] = &info_82c700_udma;
Jeff Garzik669a5db2006-08-29 18:12:40 -0400428
Tejun Heo1c5afdf2010-05-19 22:10:22 +0200429 return ata_pci_bmdma_init_one(dev, ppi, &optidma_sht, NULL, 0);
Jeff Garzik669a5db2006-08-29 18:12:40 -0400430}
431
432static const struct pci_device_id optidma[] = {
Jeff Garzik2d2744f2006-09-28 20:21:59 -0400433 { PCI_VDEVICE(OPTI, 0xD568), }, /* Opti 82C700 */
434
435 { },
Jeff Garzik669a5db2006-08-29 18:12:40 -0400436};
437
438static struct pci_driver optidma_pci_driver = {
Jeff Garzik2d2744f2006-09-28 20:21:59 -0400439 .name = DRV_NAME,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400440 .id_table = optidma,
441 .probe = optidma_init_one,
Alan30ced0f2006-11-22 16:57:36 +0000442 .remove = ata_pci_remove_one,
Bartlomiej Zolnierkiewicz58eb8cd2014-05-07 17:17:44 +0200443#ifdef CONFIG_PM_SLEEP
Alan30ced0f2006-11-22 16:57:36 +0000444 .suspend = ata_pci_device_suspend,
445 .resume = ata_pci_device_resume,
Tejun Heo438ac6d2007-03-02 17:31:26 +0900446#endif
Jeff Garzik669a5db2006-08-29 18:12:40 -0400447};
448
Axel Lin2fc75da2012-04-19 13:43:05 +0800449module_pci_driver(optidma_pci_driver);
Jeff Garzik669a5db2006-08-29 18:12:40 -0400450
Jeff Garzik669a5db2006-08-29 18:12:40 -0400451MODULE_AUTHOR("Alan Cox");
452MODULE_DESCRIPTION("low-level driver for Opti Firestar/Firestar Plus");
453MODULE_LICENSE("GPL");
454MODULE_DEVICE_TABLE(pci, optidma);
455MODULE_VERSION(DRV_VERSION);