blob: 069f104fdceafbcd1ddf4e1cb835b77b731ff78d [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/drivers/ide/pci/sl82c105.c
3 *
4 * SL82C105/Winbond 553 IDE driver
5 *
6 * Maintainer unknown.
7 *
8 * Drive tuning added from Rebel.com's kernel sources
9 * -- Russell King (15/11/98) linux@arm.linux.org.uk
10 *
11 * Merge in Russell's HW workarounds, fix various problems
12 * with the timing registers setup.
13 * -- Benjamin Herrenschmidt (01/11/03) benh@kernel.crashing.org
Sergei Shtylyove93df702007-05-05 22:03:49 +020014 *
15 * Copyright (C) 2006-2007 MontaVista Software, Inc. <source@mvista.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016 */
17
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include <linux/types.h>
19#include <linux/module.h>
20#include <linux/kernel.h>
21#include <linux/timer.h>
22#include <linux/mm.h>
23#include <linux/ioport.h>
24#include <linux/interrupt.h>
25#include <linux/blkdev.h>
26#include <linux/hdreg.h>
27#include <linux/pci.h>
28#include <linux/ide.h>
29
30#include <asm/io.h>
31#include <asm/dma.h>
32
33#undef DEBUG
34
35#ifdef DEBUG
36#define DBG(arg) printk arg
37#else
38#define DBG(fmt,...)
39#endif
40/*
41 * SL82C105 PCI config register 0x40 bits.
42 */
43#define CTRL_IDE_IRQB (1 << 30)
44#define CTRL_IDE_IRQA (1 << 28)
45#define CTRL_LEGIRQ (1 << 11)
46#define CTRL_P1F16 (1 << 5)
47#define CTRL_P1EN (1 << 4)
48#define CTRL_P0F16 (1 << 1)
49#define CTRL_P0EN (1 << 0)
50
51/*
Sergei Shtylyove93df702007-05-05 22:03:49 +020052 * Convert a PIO mode and cycle time to the required on/off times
53 * for the interface. This has protection against runaway timings.
Linus Torvalds1da177e2005-04-16 15:20:36 -070054 */
Bartlomiej Zolnierkiewicz7dd00082007-07-20 01:11:56 +020055static unsigned int get_pio_timings(ide_drive_t *drive, u8 pio)
Linus Torvalds1da177e2005-04-16 15:20:36 -070056{
Sergei Shtylyove93df702007-05-05 22:03:49 +020057 unsigned int cmd_on, cmd_off;
Bartlomiej Zolnierkiewicz22298332007-07-20 01:11:55 +020058 u8 iordy = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
Bartlomiej Zolnierkiewicz7dd00082007-07-20 01:11:56 +020060 cmd_on = (ide_pio_timings[pio].active_time + 29) / 30;
61 cmd_off = (ide_pio_cycle_time(drive, pio) - 30 * cmd_on + 29) / 30;
Linus Torvalds1da177e2005-04-16 15:20:36 -070062
Linus Torvalds1da177e2005-04-16 15:20:36 -070063 if (cmd_on == 0)
64 cmd_on = 1;
65
Linus Torvalds1da177e2005-04-16 15:20:36 -070066 if (cmd_off == 0)
67 cmd_off = 1;
68
Bartlomiej Zolnierkiewicz7dd00082007-07-20 01:11:56 +020069 if (pio > 2 || ide_dev_has_iordy(drive->id))
Bartlomiej Zolnierkiewicz22298332007-07-20 01:11:55 +020070 iordy = 0x40;
71
72 return (cmd_on - 1) << 8 | (cmd_off - 1) | iordy;
Linus Torvalds1da177e2005-04-16 15:20:36 -070073}
74
75/*
Sergei Shtylyove93df702007-05-05 22:03:49 +020076 * Configure the chipset for PIO mode.
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 */
Bartlomiej Zolnierkiewicz88b2b322007-10-13 17:47:51 +020078static void sl82c105_set_pio_mode(ide_drive_t *drive, const u8 pio)
Linus Torvalds1da177e2005-04-16 15:20:36 -070079{
Sergei Shtylyove93df702007-05-05 22:03:49 +020080 struct pci_dev *dev = HWIF(drive)->pci_dev;
81 int reg = 0x44 + drive->dn * 4;
Sergei Shtylyove93df702007-05-05 22:03:49 +020082 u16 drv_ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -070083
Bartlomiej Zolnierkiewicz7dd00082007-07-20 01:11:56 +020084 drv_ctrl = get_pio_timings(drive, pio);
Sergei Shtylyov46cedc92007-05-16 00:51:44 +020085
86 /*
87 * Store the PIO timings so that we can restore them
88 * in case DMA will be turned off...
89 */
90 drive->drive_data &= 0xffff0000;
91 drive->drive_data |= drv_ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -070092
Sergei Shtylyove93df702007-05-05 22:03:49 +020093 if (!drive->using_dma) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 /*
95 * If we are actually using MW DMA, then we can not
96 * reprogram the interface drive control register.
97 */
Sergei Shtylyove93df702007-05-05 22:03:49 +020098 pci_write_config_word(dev, reg, drv_ctrl);
99 pci_read_config_word (dev, reg, &drv_ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 }
Sergei Shtylyove93df702007-05-05 22:03:49 +0200101
102 printk(KERN_DEBUG "%s: selected %s (%dns) (%04X)\n", drive->name,
Bartlomiej Zolnierkiewicz7dd00082007-07-20 01:11:56 +0200103 ide_xfer_verbose(pio + XFER_PIO_0),
104 ide_pio_cycle_time(drive, pio), drv_ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105}
106
107/*
Bartlomiej Zolnierkiewicz88b2b322007-10-13 17:47:51 +0200108 * Configure the chipset for DMA mode.
Sergei Shtylyov46cedc92007-05-16 00:51:44 +0200109 */
Bartlomiej Zolnierkiewicz88b2b322007-10-13 17:47:51 +0200110static void sl82c105_set_dma_mode(ide_drive_t *drive, const u8 speed)
Sergei Shtylyov46cedc92007-05-16 00:51:44 +0200111{
112 static u16 mwdma_timings[] = {0x0707, 0x0201, 0x0200};
113 u16 drv_ctrl;
114
115 DBG(("sl82c105_tune_chipset(drive:%s, speed:%s)\n",
116 drive->name, ide_xfer_verbose(speed)));
117
Bartlomiej Zolnierkiewicz4db90a12008-01-25 22:17:18 +0100118 drv_ctrl = mwdma_timings[speed - XFER_MW_DMA_0];
Sergei Shtylyov46cedc92007-05-16 00:51:44 +0200119
Bartlomiej Zolnierkiewicz4db90a12008-01-25 22:17:18 +0100120 /*
121 * Store the DMA timings so that we can actually program
122 * them when DMA will be turned on...
123 */
124 drive->drive_data &= 0x0000ffff;
125 drive->drive_data |= (unsigned long)drv_ctrl << 16;
Sergei Shtylyov46cedc92007-05-16 00:51:44 +0200126
Bartlomiej Zolnierkiewicz4db90a12008-01-25 22:17:18 +0100127 /*
128 * If we are already using DMA, we just reprogram
129 * the drive control register.
130 */
131 if (drive->using_dma) {
132 struct pci_dev *dev = HWIF(drive)->pci_dev;
133 int reg = 0x44 + drive->dn * 4;
Sergei Shtylyov46cedc92007-05-16 00:51:44 +0200134
Bartlomiej Zolnierkiewicz4db90a12008-01-25 22:17:18 +0100135 pci_write_config_word(dev, reg, drv_ctrl);
Sergei Shtylyov46cedc92007-05-16 00:51:44 +0200136 }
Sergei Shtylyov46cedc92007-05-16 00:51:44 +0200137}
138
139/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 * The SL82C105 holds off all IDE interrupts while in DMA mode until
141 * all DMA activity is completed. Sometimes this causes problems (eg,
142 * when the drive wants to report an error condition).
143 *
144 * 0x7e is a "chip testing" register. Bit 2 resets the DMA controller
145 * state machine. We need to kick this to work around various bugs.
146 */
147static inline void sl82c105_reset_host(struct pci_dev *dev)
148{
149 u16 val;
150
151 pci_read_config_word(dev, 0x7e, &val);
152 pci_write_config_word(dev, 0x7e, val | (1 << 2));
153 pci_write_config_word(dev, 0x7e, val & ~(1 << 2));
154}
155
156/*
157 * If we get an IRQ timeout, it might be that the DMA state machine
158 * got confused. Fix from Todd Inglett. Details from Winbond.
159 *
160 * This function is called when the IDE timer expires, the drive
161 * indicates that it is READY, and we were waiting for DMA to complete.
162 */
Sergei Shtylyov841d2a92007-07-09 23:17:54 +0200163static void sl82c105_dma_lost_irq(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164{
Sergei Shtylyov688a87d2007-05-05 22:03:49 +0200165 ide_hwif_t *hwif = HWIF(drive);
166 struct pci_dev *dev = hwif->pci_dev;
167 u32 val, mask = hwif->channel ? CTRL_IDE_IRQB : CTRL_IDE_IRQA;
168 u8 dma_cmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169
Sergei Shtylyov688a87d2007-05-05 22:03:49 +0200170 printk("sl82c105: lost IRQ, resetting host\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171
172 /*
173 * Check the raw interrupt from the drive.
174 */
175 pci_read_config_dword(dev, 0x40, &val);
176 if (val & mask)
177 printk("sl82c105: drive was requesting IRQ, but host lost it\n");
178
179 /*
180 * Was DMA enabled? If so, disable it - we're resetting the
181 * host. The IDE layer will be handling the drive for us.
182 */
Sergei Shtylyov688a87d2007-05-05 22:03:49 +0200183 dma_cmd = inb(hwif->dma_command);
184 if (dma_cmd & 1) {
185 outb(dma_cmd & ~1, hwif->dma_command);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 printk("sl82c105: DMA was enabled\n");
187 }
188
189 sl82c105_reset_host(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190}
191
192/*
193 * ATAPI devices can cause the SL82C105 DMA state machine to go gaga.
194 * Winbond recommend that the DMA state machine is reset prior to
195 * setting the bus master DMA enable bit.
196 *
197 * The generic IDE core will have disabled the BMEN bit before this
198 * function is called.
199 */
Sergei Shtylyov688a87d2007-05-05 22:03:49 +0200200static void sl82c105_dma_start(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201{
Sergei Shtylyov688a87d2007-05-05 22:03:49 +0200202 ide_hwif_t *hwif = HWIF(drive);
203 struct pci_dev *dev = hwif->pci_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204
205 sl82c105_reset_host(dev);
206 ide_dma_start(drive);
207}
208
Sergei Shtylyovc283f5d2007-07-09 23:17:54 +0200209static void sl82c105_dma_timeout(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210{
Sergei Shtylyovc283f5d2007-07-09 23:17:54 +0200211 DBG(("sl82c105_dma_timeout(drive:%s)\n", drive->name));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212
Sergei Shtylyovc283f5d2007-07-09 23:17:54 +0200213 sl82c105_reset_host(HWIF(drive)->pci_dev);
214 ide_dma_timeout(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215}
216
Sergei Shtylyov688a87d2007-05-05 22:03:49 +0200217static int sl82c105_ide_dma_on(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218{
Sergei Shtylyov688a87d2007-05-05 22:03:49 +0200219 struct pci_dev *dev = HWIF(drive)->pci_dev;
220 int rc, reg = 0x44 + drive->dn * 4;
221
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 DBG(("sl82c105_ide_dma_on(drive:%s)\n", drive->name));
223
Sergei Shtylyov688a87d2007-05-05 22:03:49 +0200224 rc = __ide_dma_on(drive);
225 if (rc == 0) {
Sergei Shtylyov46cedc92007-05-16 00:51:44 +0200226 pci_write_config_word(dev, reg, drive->drive_data >> 16);
Sergei Shtylyov688a87d2007-05-05 22:03:49 +0200227
228 printk(KERN_INFO "%s: DMA enabled\n", drive->name);
229 }
230 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231}
232
Bartlomiej Zolnierkiewicz7469aaf2007-02-17 02:40:26 +0100233static void sl82c105_dma_off_quietly(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234{
Sergei Shtylyove93df702007-05-05 22:03:49 +0200235 struct pci_dev *dev = HWIF(drive)->pci_dev;
236 int reg = 0x44 + drive->dn * 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237
Bartlomiej Zolnierkiewicz7469aaf2007-02-17 02:40:26 +0100238 DBG(("sl82c105_dma_off_quietly(drive:%s)\n", drive->name));
239
Sergei Shtylyove93df702007-05-05 22:03:49 +0200240 pci_write_config_word(dev, reg, drive->drive_data);
241
Bartlomiej Zolnierkiewicz7469aaf2007-02-17 02:40:26 +0100242 ide_dma_off_quietly(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243}
244
245/*
246 * Ok, that is nasty, but we must make sure the DMA timings
247 * won't be used for a PIO access. The solution here is
248 * to make sure the 16 bits mode is diabled on the channel
249 * when DMA is enabled, thus causing the chip to use PIO0
250 * timings for those operations.
251 */
252static void sl82c105_selectproc(ide_drive_t *drive)
253{
Sergei Shtylyov688a87d2007-05-05 22:03:49 +0200254 ide_hwif_t *hwif = HWIF(drive);
255 struct pci_dev *dev = hwif->pci_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 u32 val, old, mask;
257
258 //DBG(("sl82c105_selectproc(drive:%s)\n", drive->name));
259
260 mask = hwif->channel ? CTRL_P1F16 : CTRL_P0F16;
Sergei Shtylyovdd607d22006-12-08 02:40:01 -0800261 old = val = (u32)pci_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 if (drive->using_dma)
263 val &= ~mask;
264 else
265 val |= mask;
266 if (old != val) {
267 pci_write_config_dword(dev, 0x40, val);
Sergei Shtylyovdd607d22006-12-08 02:40:01 -0800268 pci_set_drvdata(dev, (void *)val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 }
270}
271
272/*
273 * ATA reset will clear the 16 bits mode in the control
274 * register, we need to update our cache
275 */
276static void sl82c105_resetproc(ide_drive_t *drive)
277{
Sergei Shtylyovdd607d22006-12-08 02:40:01 -0800278 struct pci_dev *dev = HWIF(drive)->pci_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 u32 val;
280
281 DBG(("sl82c105_resetproc(drive:%s)\n", drive->name));
282
283 pci_read_config_dword(dev, 0x40, &val);
Sergei Shtylyovdd607d22006-12-08 02:40:01 -0800284 pci_set_drvdata(dev, (void *)val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286
287/*
288 * Return the revision of the Winbond bridge
289 * which this function is part of.
290 */
291static unsigned int sl82c105_bridge_revision(struct pci_dev *dev)
292{
293 struct pci_dev *bridge;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294
295 /*
296 * The bridge should be part of the same device, but function 0.
297 */
Alan Cox640b31b2007-05-16 00:51:46 +0200298 bridge = pci_get_bus_and_slot(dev->bus->number,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 PCI_DEVFN(PCI_SLOT(dev->devfn), 0));
300 if (!bridge)
301 return -1;
302
303 /*
304 * Make sure it is a Winbond 553 and is an ISA bridge.
305 */
306 if (bridge->vendor != PCI_VENDOR_ID_WINBOND ||
307 bridge->device != PCI_DEVICE_ID_WINBOND_83C553 ||
Alan Cox640b31b2007-05-16 00:51:46 +0200308 bridge->class >> 8 != PCI_CLASS_BRIDGE_ISA) {
309 pci_dev_put(bridge);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 return -1;
Alan Cox640b31b2007-05-16 00:51:46 +0200311 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 /*
313 * We need to find function 0's revision, not function 1
314 */
Alan Cox640b31b2007-05-16 00:51:46 +0200315 pci_dev_put(bridge);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316
Auke Kok44c10132007-06-08 15:46:36 -0700317 return bridge->revision;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318}
319
320/*
321 * Enable the PCI device
322 *
323 * --BenH: It's arch fixup code that should enable channels that
324 * have not been enabled by firmware. I decided we can still enable
325 * channel 0 here at least, but channel 1 has to be enabled by
326 * firmware or arch code. We still set both to 16 bits mode.
327 */
Herbert Xu34a62242005-07-03 16:36:56 +0200328static unsigned int __devinit init_chipset_sl82c105(struct pci_dev *dev, const char *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329{
330 u32 val;
331
332 DBG(("init_chipset_sl82c105()\n"));
333
334 pci_read_config_dword(dev, 0x40, &val);
335 val |= CTRL_P0EN | CTRL_P0F16 | CTRL_P1F16;
336 pci_write_config_dword(dev, 0x40, val);
Sergei Shtylyovdd607d22006-12-08 02:40:01 -0800337 pci_set_drvdata(dev, (void *)val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338
339 return dev->irq;
340}
341
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342/*
Sergei Shtylyov688a87d2007-05-05 22:03:49 +0200343 * Initialise IDE channel
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 */
Herbert Xu34a62242005-07-03 16:36:56 +0200345static void __devinit init_hwif_sl82c105(ide_hwif_t *hwif)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346{
Russell King9648f552005-11-12 16:57:29 +0000347 unsigned int rev;
Sergei Shtylyovdd607d22006-12-08 02:40:01 -0800348
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 DBG(("init_hwif_sl82c105(hwif: ide%d)\n", hwif->index));
350
Bartlomiej Zolnierkiewicz26bcb872007-10-11 23:54:00 +0200351 hwif->set_pio_mode = &sl82c105_set_pio_mode;
Bartlomiej Zolnierkiewicz88b2b322007-10-13 17:47:51 +0200352 hwif->set_dma_mode = &sl82c105_set_dma_mode;
Sergei Shtylyove93df702007-05-05 22:03:49 +0200353 hwif->selectproc = &sl82c105_selectproc;
354 hwif->resetproc = &sl82c105_resetproc;
Sergei Shtylyovdd607d22006-12-08 02:40:01 -0800355
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 if (!hwif->dma_base)
357 return;
358
Russell King9648f552005-11-12 16:57:29 +0000359 rev = sl82c105_bridge_revision(hwif->pci_dev);
360 if (rev <= 5) {
361 /*
362 * Never ever EVER under any circumstances enable
363 * DMA when the bridge is this old.
364 */
Sergei Shtylyov688a87d2007-05-05 22:03:49 +0200365 printk(" %s: Winbond W83C553 bridge revision %d, "
366 "BM-DMA disabled\n", hwif->name, rev);
367 return;
Russell King9648f552005-11-12 16:57:29 +0000368 }
Sergei Shtylyov688a87d2007-05-05 22:03:49 +0200369
Bartlomiej Zolnierkiewicz5f8b6c32007-10-19 00:30:07 +0200370 hwif->mwdma_mask = ATA_MWDMA2;
Sergei Shtylyov688a87d2007-05-05 22:03:49 +0200371
Sergei Shtylyov688a87d2007-05-05 22:03:49 +0200372 hwif->ide_dma_on = &sl82c105_ide_dma_on;
373 hwif->dma_off_quietly = &sl82c105_dma_off_quietly;
Sergei Shtylyov841d2a92007-07-09 23:17:54 +0200374 hwif->dma_lost_irq = &sl82c105_dma_lost_irq;
Sergei Shtylyov688a87d2007-05-05 22:03:49 +0200375 hwif->dma_start = &sl82c105_dma_start;
Sergei Shtylyovc283f5d2007-07-09 23:17:54 +0200376 hwif->dma_timeout = &sl82c105_dma_timeout;
Sergei Shtylyov688a87d2007-05-05 22:03:49 +0200377
Sergei Shtylyov688a87d2007-05-05 22:03:49 +0200378 if (hwif->mate)
379 hwif->serialized = hwif->mate->serialized = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380}
381
Bartlomiej Zolnierkiewicz85620432007-10-20 00:32:34 +0200382static const struct ide_port_info sl82c105_chipset __devinitdata = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 .name = "W82C105",
384 .init_chipset = init_chipset_sl82c105,
385 .init_hwif = init_hwif_sl82c105,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 .enablebits = {{0x40,0x01,0x01}, {0x40,0x10,0x10}},
Bartlomiej Zolnierkiewiczcaea7602007-10-20 00:32:30 +0200387 .host_flags = IDE_HFLAG_IO_32BIT |
388 IDE_HFLAG_UNMASK_IRQS |
389 IDE_HFLAG_NO_AUTODMA |
390 IDE_HFLAG_BOOTABLE,
Bartlomiej Zolnierkiewicz4099d142007-07-20 01:11:59 +0200391 .pio_mask = ATA_PIO5,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392};
393
394static int __devinit sl82c105_init_one(struct pci_dev *dev, const struct pci_device_id *id)
395{
396 return ide_setup_pci_device(dev, &sl82c105_chipset);
397}
398
Bartlomiej Zolnierkiewicz9cbcc5e2007-10-16 22:29:56 +0200399static const struct pci_device_id sl82c105_pci_tbl[] = {
400 { PCI_VDEVICE(WINBOND, PCI_DEVICE_ID_WINBOND_82C105), 0 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 { 0, },
402};
403MODULE_DEVICE_TABLE(pci, sl82c105_pci_tbl);
404
405static struct pci_driver driver = {
406 .name = "W82C105_IDE",
407 .id_table = sl82c105_pci_tbl,
408 .probe = sl82c105_init_one,
409};
410
Bartlomiej Zolnierkiewicz82ab1ee2007-01-27 13:46:56 +0100411static int __init sl82c105_ide_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412{
413 return ide_pci_register_driver(&driver);
414}
415
416module_init(sl82c105_ide_init);
417
418MODULE_DESCRIPTION("PCI driver module for W82C105 IDE");
419MODULE_LICENSE("GPL");