blob: 7e194d81c1b643f94ac7f9eeee4c2cec5ba3f659 [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
4 * Alan Cox <alan@redhat.com>
5 *
6 * Based in part on linux/drivers/ide/pci/pdc202xx_old.c
7 *
8 * First cut with LBA48/ATAPI
9 *
10 * TODO:
11 * Channel interlock/reset on both required ?
12 */
Jeff Garzik85cd7252006-08-31 00:03:49 -040013
Jeff Garzik669a5db2006-08-29 18:12:40 -040014#include <linux/kernel.h>
15#include <linux/module.h>
16#include <linux/pci.h>
17#include <linux/init.h>
18#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"
Alan62d64ae2006-11-27 16:27:20 +000024#define DRV_VERSION "0.2.3"
Jeff Garzik669a5db2006-08-29 18:12:40 -040025
26/**
27 * pdc2024x_pre_reset - probe begin
28 * @ap: ATA port
29 *
30 * Set up cable type and use generic probe init
31 */
Jeff Garzik85cd7252006-08-31 00:03:49 -040032
Jeff Garzik669a5db2006-08-29 18:12:40 -040033static int pdc2024x_pre_reset(struct ata_port *ap)
34{
35 ap->cbl = ATA_CBL_PATA40;
36 return ata_std_prereset(ap);
37}
38
39
40static void pdc2024x_error_handler(struct ata_port *ap)
41{
42 ata_bmdma_drive_eh(ap, pdc2024x_pre_reset, ata_std_softreset, NULL, ata_std_postreset);
43}
44
45
46static int pdc2026x_pre_reset(struct ata_port *ap)
47{
48 struct pci_dev *pdev = to_pci_dev(ap->host->dev);
49 u16 cis;
Jeff Garzik85cd7252006-08-31 00:03:49 -040050
Jeff Garzik669a5db2006-08-29 18:12:40 -040051 pci_read_config_word(pdev, 0x50, &cis);
52 if (cis & (1 << (10 + ap->port_no)))
53 ap->cbl = ATA_CBL_PATA80;
54 else
55 ap->cbl = ATA_CBL_PATA40;
56
57 return ata_std_prereset(ap);
58}
59
60static void pdc2026x_error_handler(struct ata_port *ap)
61{
62 ata_bmdma_drive_eh(ap, pdc2026x_pre_reset, ata_std_softreset, NULL, ata_std_postreset);
63}
64
65/**
Alan Coxada406c2006-11-03 13:18:06 +000066 * pdc202xx_configure_piomode - set chip PIO timing
Jeff Garzik669a5db2006-08-29 18:12:40 -040067 * @ap: ATA interface
68 * @adev: ATA device
69 * @pio: PIO mode
70 *
71 * Called to do the PIO mode setup. Our timing registers are shared
72 * so a configure_dmamode call will undo any work we do here and vice
73 * versa
74 */
Jeff Garzik85cd7252006-08-31 00:03:49 -040075
Alan Coxada406c2006-11-03 13:18:06 +000076static void pdc202xx_configure_piomode(struct ata_port *ap, struct ata_device *adev, int pio)
Jeff Garzik669a5db2006-08-29 18:12:40 -040077{
78 struct pci_dev *pdev = to_pci_dev(ap->host->dev);
79 int port = 0x60 + 4 * ap->port_no + 2 * adev->devno;
80 static u16 pio_timing[5] = {
81 0x0913, 0x050C , 0x0308, 0x0206, 0x0104
82 };
83 u8 r_ap, r_bp;
84
85 pci_read_config_byte(pdev, port, &r_ap);
86 pci_read_config_byte(pdev, port + 1, &r_bp);
87 r_ap &= ~0x3F; /* Preserve ERRDY_EN, SYNC_IN */
88 r_bp &= ~0x07;
89 r_ap |= (pio_timing[pio] >> 8);
90 r_bp |= (pio_timing[pio] & 0xFF);
Jeff Garzik85cd7252006-08-31 00:03:49 -040091
Jeff Garzik669a5db2006-08-29 18:12:40 -040092 if (ata_pio_need_iordy(adev))
93 r_ap |= 0x20; /* IORDY enable */
94 if (adev->class == ATA_DEV_ATA)
95 r_ap |= 0x10; /* FIFO enable */
96 pci_write_config_byte(pdev, port, r_ap);
97 pci_write_config_byte(pdev, port + 1, r_bp);
98}
99
100/**
Alan Coxada406c2006-11-03 13:18:06 +0000101 * pdc202xx_set_piomode - set initial PIO mode data
Jeff Garzik669a5db2006-08-29 18:12:40 -0400102 * @ap: ATA interface
103 * @adev: ATA device
104 *
105 * Called to do the PIO mode setup. Our timing registers are shared
106 * but we want to set the PIO timing by default.
107 */
Jeff Garzik85cd7252006-08-31 00:03:49 -0400108
Alan Coxada406c2006-11-03 13:18:06 +0000109static void pdc202xx_set_piomode(struct ata_port *ap, struct ata_device *adev)
Jeff Garzik669a5db2006-08-29 18:12:40 -0400110{
Alan Coxada406c2006-11-03 13:18:06 +0000111 pdc202xx_configure_piomode(ap, adev, adev->pio_mode - XFER_PIO_0);
Jeff Garzik669a5db2006-08-29 18:12:40 -0400112}
113
114/**
Alan Coxada406c2006-11-03 13:18:06 +0000115 * pdc202xx_configure_dmamode - set DMA mode in chip
Jeff Garzik669a5db2006-08-29 18:12:40 -0400116 * @ap: ATA interface
117 * @adev: ATA device
118 *
119 * Load DMA cycle times into the chip ready for a DMA transfer
120 * to occur.
121 */
Jeff Garzik85cd7252006-08-31 00:03:49 -0400122
Alan Coxada406c2006-11-03 13:18:06 +0000123static void pdc202xx_set_dmamode(struct ata_port *ap, struct ata_device *adev)
Jeff Garzik669a5db2006-08-29 18:12:40 -0400124{
125 struct pci_dev *pdev = to_pci_dev(ap->host->dev);
126 int port = 0x60 + 4 * ap->port_no + 2 * adev->devno;
127 static u8 udma_timing[6][2] = {
128 { 0x60, 0x03 }, /* 33 Mhz Clock */
129 { 0x40, 0x02 },
130 { 0x20, 0x01 },
131 { 0x40, 0x02 }, /* 66 Mhz Clock */
132 { 0x20, 0x01 },
Jeff Garzik85cd7252006-08-31 00:03:49 -0400133 { 0x20, 0x01 }
Jeff Garzik669a5db2006-08-29 18:12:40 -0400134 };
135 u8 r_bp, r_cp;
Jeff Garzik85cd7252006-08-31 00:03:49 -0400136
Jeff Garzik669a5db2006-08-29 18:12:40 -0400137 pci_read_config_byte(pdev, port + 1, &r_bp);
138 pci_read_config_byte(pdev, port + 2, &r_cp);
Jeff Garzik85cd7252006-08-31 00:03:49 -0400139
Jeff Garzik669a5db2006-08-29 18:12:40 -0400140 r_bp &= ~0xF0;
141 r_cp &= ~0x0F;
Jeff Garzik85cd7252006-08-31 00:03:49 -0400142
Jeff Garzik669a5db2006-08-29 18:12:40 -0400143 if (adev->dma_mode >= XFER_UDMA_0) {
144 int speed = adev->dma_mode - XFER_UDMA_0;
145 r_bp |= udma_timing[speed][0];
146 r_cp |= udma_timing[speed][1];
Jeff Garzik85cd7252006-08-31 00:03:49 -0400147
Jeff Garzik669a5db2006-08-29 18:12:40 -0400148 } else {
149 int speed = adev->dma_mode - XFER_MW_DMA_0;
150 r_bp |= 0x60;
151 r_cp |= (5 - speed);
152 }
153 pci_write_config_byte(pdev, port + 1, r_bp);
154 pci_write_config_byte(pdev, port + 2, r_cp);
Jeff Garzik85cd7252006-08-31 00:03:49 -0400155
Jeff Garzik669a5db2006-08-29 18:12:40 -0400156}
157
158/**
159 * pdc2026x_bmdma_start - DMA engine begin
160 * @qc: ATA command
161 *
162 * In UDMA3 or higher we have to clock switch for the duration of the
163 * DMA transfer sequence.
164 */
Jeff Garzik85cd7252006-08-31 00:03:49 -0400165
Jeff Garzik669a5db2006-08-29 18:12:40 -0400166static void pdc2026x_bmdma_start(struct ata_queued_cmd *qc)
167{
168 struct ata_port *ap = qc->ap;
169 struct ata_device *adev = qc->dev;
170 struct ata_taskfile *tf = &qc->tf;
171 int sel66 = ap->port_no ? 0x08: 0x02;
172
Tejun Heo0d5ff562007-02-01 15:06:36 +0900173 void __iomem *master = ap->host->ports[0]->ioaddr.bmdma_addr;
174 void __iomem *clock = master + 0x11;
175 void __iomem *atapi_reg = master + 0x20 + (4 * ap->port_no);
Jeff Garzik85cd7252006-08-31 00:03:49 -0400176
Jeff Garzik669a5db2006-08-29 18:12:40 -0400177 u32 len;
Jeff Garzik85cd7252006-08-31 00:03:49 -0400178
Jeff Garzik669a5db2006-08-29 18:12:40 -0400179 /* Check we keep host level locking here */
180 if (adev->dma_mode >= XFER_UDMA_2)
Tejun Heo0d5ff562007-02-01 15:06:36 +0900181 iowrite8(ioread8(clock) | sel66, clock);
Jeff Garzik669a5db2006-08-29 18:12:40 -0400182 else
Tejun Heo0d5ff562007-02-01 15:06:36 +0900183 iowrite8(ioread8(clock) & ~sel66, clock);
Jeff Garzik669a5db2006-08-29 18:12:40 -0400184
Jeff Garzik85cd7252006-08-31 00:03:49 -0400185 /* The DMA clocks may have been trashed by a reset. FIXME: make conditional
Jeff Garzik669a5db2006-08-29 18:12:40 -0400186 and move to qc_issue ? */
Alan Coxada406c2006-11-03 13:18:06 +0000187 pdc202xx_set_dmamode(ap, qc->dev);
Jeff Garzik669a5db2006-08-29 18:12:40 -0400188
189 /* Cases the state machine will not complete correctly without help */
190 if ((tf->flags & ATA_TFLAG_LBA48) || tf->protocol == ATA_PROT_ATAPI_DMA)
191 {
Tejun Heo726f0782007-01-03 17:30:39 +0900192 len = qc->nbytes;
Jeff Garzik85cd7252006-08-31 00:03:49 -0400193
Jeff Garzik669a5db2006-08-29 18:12:40 -0400194 if (tf->flags & ATA_TFLAG_WRITE)
195 len |= 0x06000000;
196 else
197 len |= 0x05000000;
Jeff Garzik85cd7252006-08-31 00:03:49 -0400198
Tejun Heo0d5ff562007-02-01 15:06:36 +0900199 iowrite32(len, atapi_reg);
Jeff Garzik669a5db2006-08-29 18:12:40 -0400200 }
Jeff Garzik85cd7252006-08-31 00:03:49 -0400201
202 /* Activate DMA */
Jeff Garzik669a5db2006-08-29 18:12:40 -0400203 ata_bmdma_start(qc);
204}
205
206/**
207 * pdc2026x_bmdma_end - DMA engine stop
208 * @qc: ATA command
209 *
210 * After a DMA completes we need to put the clock back to 33MHz for
211 * PIO timings.
212 */
Jeff Garzik85cd7252006-08-31 00:03:49 -0400213
Jeff Garzik669a5db2006-08-29 18:12:40 -0400214static void pdc2026x_bmdma_stop(struct ata_queued_cmd *qc)
215{
216 struct ata_port *ap = qc->ap;
217 struct ata_device *adev = qc->dev;
218 struct ata_taskfile *tf = &qc->tf;
Jeff Garzik85cd7252006-08-31 00:03:49 -0400219
Jeff Garzik669a5db2006-08-29 18:12:40 -0400220 int sel66 = ap->port_no ? 0x08: 0x02;
221 /* The clock bits are in the same register for both channels */
Tejun Heo0d5ff562007-02-01 15:06:36 +0900222 void __iomem *master = ap->host->ports[0]->ioaddr.bmdma_addr;
223 void __iomem *clock = master + 0x11;
224 void __iomem *atapi_reg = master + 0x20 + (4 * ap->port_no);
Jeff Garzik85cd7252006-08-31 00:03:49 -0400225
Jeff Garzik669a5db2006-08-29 18:12:40 -0400226 /* Cases the state machine will not complete correctly */
227 if (tf->protocol == ATA_PROT_ATAPI_DMA || ( tf->flags & ATA_TFLAG_LBA48)) {
Tejun Heo0d5ff562007-02-01 15:06:36 +0900228 iowrite32(0, atapi_reg);
229 iowrite8(ioread8(clock) & ~sel66, clock);
Jeff Garzik669a5db2006-08-29 18:12:40 -0400230 }
231 /* Check we keep host level locking here */
232 /* Flip back to 33Mhz for PIO */
233 if (adev->dma_mode >= XFER_UDMA_2)
Tejun Heo0d5ff562007-02-01 15:06:36 +0900234 iowrite8(ioread8(clock) & ~sel66, clock);
Jeff Garzik669a5db2006-08-29 18:12:40 -0400235
236 ata_bmdma_stop(qc);
237}
238
239/**
240 * pdc2026x_dev_config - device setup hook
241 * @ap: ATA port
242 * @adev: newly found device
243 *
244 * Perform chip specific early setup. We need to lock the transfer
245 * sizes to 8bit to avoid making the state engine on the 2026x cards
246 * barf.
247 */
Jeff Garzik85cd7252006-08-31 00:03:49 -0400248
Jeff Garzik669a5db2006-08-29 18:12:40 -0400249static void pdc2026x_dev_config(struct ata_port *ap, struct ata_device *adev)
250{
251 adev->max_sectors = 256;
252}
253
Alan Coxada406c2006-11-03 13:18:06 +0000254static struct scsi_host_template pdc202xx_sht = {
Jeff Garzik669a5db2006-08-29 18:12:40 -0400255 .module = THIS_MODULE,
256 .name = DRV_NAME,
257 .ioctl = ata_scsi_ioctl,
258 .queuecommand = ata_scsi_queuecmd,
259 .can_queue = ATA_DEF_QUEUE,
260 .this_id = ATA_SHT_THIS_ID,
261 .sg_tablesize = LIBATA_MAX_PRD,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400262 .cmd_per_lun = ATA_SHT_CMD_PER_LUN,
263 .emulated = ATA_SHT_EMULATED,
264 .use_clustering = ATA_SHT_USE_CLUSTERING,
265 .proc_name = DRV_NAME,
266 .dma_boundary = ATA_DMA_BOUNDARY,
267 .slave_configure = ata_scsi_slave_config,
Tejun Heoafdfe892006-11-29 11:26:47 +0900268 .slave_destroy = ata_scsi_slave_destroy,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400269 .bios_param = ata_std_bios_param,
Alan62d64ae2006-11-27 16:27:20 +0000270 .resume = ata_scsi_device_resume,
271 .suspend = ata_scsi_device_suspend,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400272};
273
274static struct ata_port_operations pdc2024x_port_ops = {
275 .port_disable = ata_port_disable,
Alan Coxada406c2006-11-03 13:18:06 +0000276 .set_piomode = pdc202xx_set_piomode,
277 .set_dmamode = pdc202xx_set_dmamode,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400278 .mode_filter = ata_pci_default_filter,
279 .tf_load = ata_tf_load,
280 .tf_read = ata_tf_read,
281 .check_status = ata_check_status,
282 .exec_command = ata_exec_command,
283 .dev_select = ata_std_dev_select,
284
285 .freeze = ata_bmdma_freeze,
286 .thaw = ata_bmdma_thaw,
287 .error_handler = pdc2024x_error_handler,
288 .post_internal_cmd = ata_bmdma_post_internal_cmd,
289
290 .bmdma_setup = ata_bmdma_setup,
291 .bmdma_start = ata_bmdma_start,
292 .bmdma_stop = ata_bmdma_stop,
293 .bmdma_status = ata_bmdma_status,
294
295 .qc_prep = ata_qc_prep,
296 .qc_issue = ata_qc_issue_prot,
Tejun Heo0d5ff562007-02-01 15:06:36 +0900297 .data_xfer = ata_data_xfer,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400298
299 .irq_handler = ata_interrupt,
300 .irq_clear = ata_bmdma_irq_clear,
Jeff Garzik85cd7252006-08-31 00:03:49 -0400301
Jeff Garzik669a5db2006-08-29 18:12:40 -0400302 .port_start = ata_port_start,
Jeff Garzik85cd7252006-08-31 00:03:49 -0400303};
Jeff Garzik669a5db2006-08-29 18:12:40 -0400304
305static struct ata_port_operations pdc2026x_port_ops = {
306 .port_disable = ata_port_disable,
Alan Coxada406c2006-11-03 13:18:06 +0000307 .set_piomode = pdc202xx_set_piomode,
308 .set_dmamode = pdc202xx_set_dmamode,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400309 .mode_filter = ata_pci_default_filter,
310 .tf_load = ata_tf_load,
311 .tf_read = ata_tf_read,
312 .check_status = ata_check_status,
313 .exec_command = ata_exec_command,
314 .dev_select = ata_std_dev_select,
315 .dev_config = pdc2026x_dev_config,
316
317 .freeze = ata_bmdma_freeze,
318 .thaw = ata_bmdma_thaw,
319 .error_handler = pdc2026x_error_handler,
320 .post_internal_cmd = ata_bmdma_post_internal_cmd,
321
322 .bmdma_setup = ata_bmdma_setup,
323 .bmdma_start = pdc2026x_bmdma_start,
324 .bmdma_stop = pdc2026x_bmdma_stop,
325 .bmdma_status = ata_bmdma_status,
326
327 .qc_prep = ata_qc_prep,
328 .qc_issue = ata_qc_issue_prot,
Tejun Heo0d5ff562007-02-01 15:06:36 +0900329 .data_xfer = ata_data_xfer,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400330
331 .irq_handler = ata_interrupt,
332 .irq_clear = ata_bmdma_irq_clear,
Jeff Garzik85cd7252006-08-31 00:03:49 -0400333
Jeff Garzik669a5db2006-08-29 18:12:40 -0400334 .port_start = ata_port_start,
Jeff Garzik85cd7252006-08-31 00:03:49 -0400335};
Jeff Garzik669a5db2006-08-29 18:12:40 -0400336
Alan Coxada406c2006-11-03 13:18:06 +0000337static int pdc202xx_init_one(struct pci_dev *dev, const struct pci_device_id *id)
Jeff Garzik669a5db2006-08-29 18:12:40 -0400338{
339 static struct ata_port_info info[3] = {
340 {
Alan Coxada406c2006-11-03 13:18:06 +0000341 .sht = &pdc202xx_sht,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400342 .flags = ATA_FLAG_SLAVE_POSS | ATA_FLAG_SRST,
343 .pio_mask = 0x1f,
344 .mwdma_mask = 0x07,
345 .udma_mask = ATA_UDMA2,
346 .port_ops = &pdc2024x_port_ops
Jeff Garzik85cd7252006-08-31 00:03:49 -0400347 },
Jeff Garzik669a5db2006-08-29 18:12:40 -0400348 {
Alan Coxada406c2006-11-03 13:18:06 +0000349 .sht = &pdc202xx_sht,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400350 .flags = ATA_FLAG_SLAVE_POSS | ATA_FLAG_SRST,
351 .pio_mask = 0x1f,
352 .mwdma_mask = 0x07,
353 .udma_mask = ATA_UDMA4,
354 .port_ops = &pdc2026x_port_ops
355 },
356 {
Alan Coxada406c2006-11-03 13:18:06 +0000357 .sht = &pdc202xx_sht,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400358 .flags = ATA_FLAG_SLAVE_POSS | ATA_FLAG_SRST,
359 .pio_mask = 0x1f,
360 .mwdma_mask = 0x07,
361 .udma_mask = ATA_UDMA5,
362 .port_ops = &pdc2026x_port_ops
363 }
Jeff Garzik85cd7252006-08-31 00:03:49 -0400364
Jeff Garzik669a5db2006-08-29 18:12:40 -0400365 };
366 static struct ata_port_info *port_info[2];
367
368 port_info[0] = port_info[1] = &info[id->driver_data];
Jeff Garzik85cd7252006-08-31 00:03:49 -0400369
Jeff Garzik669a5db2006-08-29 18:12:40 -0400370 if (dev->device == PCI_DEVICE_ID_PROMISE_20265) {
371 struct pci_dev *bridge = dev->bus->self;
372 /* Don't grab anything behind a Promise I2O RAID */
373 if (bridge && bridge->vendor == PCI_VENDOR_ID_INTEL) {
374 if( bridge->device == PCI_DEVICE_ID_INTEL_I960)
375 return -ENODEV;
376 if( bridge->device == PCI_DEVICE_ID_INTEL_I960RM)
377 return -ENODEV;
378 }
379 }
380 return ata_pci_init_one(dev, port_info, 2);
381}
382
Alan Coxada406c2006-11-03 13:18:06 +0000383static const struct pci_device_id pdc202xx[] = {
Jeff Garzik2d2744f2006-09-28 20:21:59 -0400384 { PCI_VDEVICE(PROMISE, PCI_DEVICE_ID_PROMISE_20246), 0 },
385 { PCI_VDEVICE(PROMISE, PCI_DEVICE_ID_PROMISE_20262), 1 },
386 { PCI_VDEVICE(PROMISE, PCI_DEVICE_ID_PROMISE_20263), 1 },
387 { PCI_VDEVICE(PROMISE, PCI_DEVICE_ID_PROMISE_20265), 2 },
388 { PCI_VDEVICE(PROMISE, PCI_DEVICE_ID_PROMISE_20267), 2 },
389
390 { },
Jeff Garzik669a5db2006-08-29 18:12:40 -0400391};
392
Alan Coxada406c2006-11-03 13:18:06 +0000393static struct pci_driver pdc202xx_pci_driver = {
Jeff Garzik2d2744f2006-09-28 20:21:59 -0400394 .name = DRV_NAME,
Alan Coxada406c2006-11-03 13:18:06 +0000395 .id_table = pdc202xx,
396 .probe = pdc202xx_init_one,
Alan62d64ae2006-11-27 16:27:20 +0000397 .remove = ata_pci_remove_one,
398 .suspend = ata_pci_device_suspend,
399 .resume = ata_pci_device_resume,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400400};
401
Alan Coxada406c2006-11-03 13:18:06 +0000402static int __init pdc202xx_init(void)
Jeff Garzik669a5db2006-08-29 18:12:40 -0400403{
Alan Coxada406c2006-11-03 13:18:06 +0000404 return pci_register_driver(&pdc202xx_pci_driver);
Jeff Garzik669a5db2006-08-29 18:12:40 -0400405}
406
Alan Coxada406c2006-11-03 13:18:06 +0000407static void __exit pdc202xx_exit(void)
Jeff Garzik669a5db2006-08-29 18:12:40 -0400408{
Alan Coxada406c2006-11-03 13:18:06 +0000409 pci_unregister_driver(&pdc202xx_pci_driver);
Jeff Garzik669a5db2006-08-29 18:12:40 -0400410}
411
Jeff Garzik669a5db2006-08-29 18:12:40 -0400412MODULE_AUTHOR("Alan Cox");
413MODULE_DESCRIPTION("low-level driver for Promise 2024x and 20262-20267");
414MODULE_LICENSE("GPL");
Alan Coxada406c2006-11-03 13:18:06 +0000415MODULE_DEVICE_TABLE(pci, pdc202xx);
Jeff Garzik669a5db2006-08-29 18:12:40 -0400416MODULE_VERSION(DRV_VERSION);
417
Alan Coxada406c2006-11-03 13:18:06 +0000418module_init(pdc202xx_init);
419module_exit(pdc202xx_exit);