blob: 3d7759c361ff6a396516a28c312715b1ea95c92a [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 */
Sergei Shtylyove93df702007-05-05 22:03:49 +020055static unsigned int get_pio_timings(ide_pio_data_t *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -070056{
Sergei Shtylyove93df702007-05-05 22:03:49 +020057 unsigned int cmd_on, cmd_off;
Linus Torvalds1da177e2005-04-16 15:20:36 -070058
Sergei Shtylyove93df702007-05-05 22:03:49 +020059 cmd_on = (ide_pio_timings[p->pio_mode].active_time + 29) / 30;
Linus Torvalds1da177e2005-04-16 15:20:36 -070060 cmd_off = (p->cycle_time - 30 * cmd_on + 29) / 30;
61
Linus Torvalds1da177e2005-04-16 15:20:36 -070062 if (cmd_on == 0)
63 cmd_on = 1;
64
Linus Torvalds1da177e2005-04-16 15:20:36 -070065 if (cmd_off == 0)
66 cmd_off = 1;
67
68 return (cmd_on - 1) << 8 | (cmd_off - 1) | (p->use_iordy ? 0x40 : 0x00);
69}
70
71/*
Sergei Shtylyove93df702007-05-05 22:03:49 +020072 * Configure the chipset for PIO mode.
Linus Torvalds1da177e2005-04-16 15:20:36 -070073 */
Sergei Shtylyove93df702007-05-05 22:03:49 +020074static u8 sl82c105_tune_pio(ide_drive_t *drive, u8 pio)
Linus Torvalds1da177e2005-04-16 15:20:36 -070075{
Sergei Shtylyove93df702007-05-05 22:03:49 +020076 struct pci_dev *dev = HWIF(drive)->pci_dev;
77 int reg = 0x44 + drive->dn * 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 ide_pio_data_t p;
Sergei Shtylyove93df702007-05-05 22:03:49 +020079 u16 drv_ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -070080
Sergei Shtylyove93df702007-05-05 22:03:49 +020081 DBG(("sl82c105_tune_pio(drive:%s, pio:%u)\n", drive->name, pio));
Linus Torvalds1da177e2005-04-16 15:20:36 -070082
83 pio = ide_get_best_pio_mode(drive, pio, 5, &p);
84
Sergei Shtylyov46cedc92007-05-16 00:51:44 +020085 drv_ctrl = get_pio_timings(&p);
86
87 /*
88 * Store the PIO timings so that we can restore them
89 * in case DMA will be turned off...
90 */
91 drive->drive_data &= 0xffff0000;
92 drive->drive_data |= drv_ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -070093
Sergei Shtylyove93df702007-05-05 22:03:49 +020094 if (!drive->using_dma) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 /*
96 * If we are actually using MW DMA, then we can not
97 * reprogram the interface drive control register.
98 */
Sergei Shtylyove93df702007-05-05 22:03:49 +020099 pci_write_config_word(dev, reg, drv_ctrl);
100 pci_read_config_word (dev, reg, &drv_ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 }
Sergei Shtylyove93df702007-05-05 22:03:49 +0200102
103 printk(KERN_DEBUG "%s: selected %s (%dns) (%04X)\n", drive->name,
104 ide_xfer_verbose(pio + XFER_PIO_0), p.cycle_time, drv_ctrl);
105
106 return pio;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107}
108
109/*
Sergei Shtylyov46cedc92007-05-16 00:51:44 +0200110 * Configure the drive and chipset for a new transfer speed.
111 */
112static int sl82c105_tune_chipset(ide_drive_t *drive, u8 speed)
113{
114 static u16 mwdma_timings[] = {0x0707, 0x0201, 0x0200};
115 u16 drv_ctrl;
116
117 DBG(("sl82c105_tune_chipset(drive:%s, speed:%s)\n",
118 drive->name, ide_xfer_verbose(speed)));
119
120 speed = ide_rate_filter(drive, speed);
121
122 switch (speed) {
123 case XFER_MW_DMA_2:
124 case XFER_MW_DMA_1:
125 case XFER_MW_DMA_0:
126 drv_ctrl = mwdma_timings[speed - XFER_MW_DMA_0];
127
128 /*
129 * Store the DMA timings so that we can actually program
130 * them when DMA will be turned on...
131 */
132 drive->drive_data &= 0x0000ffff;
133 drive->drive_data |= (unsigned long)drv_ctrl << 16;
134
135 /*
136 * If we are already using DMA, we just reprogram
137 * the drive control register.
138 */
139 if (drive->using_dma) {
140 struct pci_dev *dev = HWIF(drive)->pci_dev;
141 int reg = 0x44 + drive->dn * 4;
142
143 pci_write_config_word(dev, reg, drv_ctrl);
144 }
145 break;
146 case XFER_PIO_5:
147 case XFER_PIO_4:
148 case XFER_PIO_3:
149 case XFER_PIO_2:
150 case XFER_PIO_1:
151 case XFER_PIO_0:
152 (void) sl82c105_tune_pio(drive, speed - XFER_PIO_0);
153 break;
154 default:
155 return -1;
156 }
157
158 return ide_config_drive_speed(drive, speed);
159}
160
161/*
Sergei Shtylyov688a87d2007-05-05 22:03:49 +0200162 * Configure the drive for DMA.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 */
Sergei Shtylyov688a87d2007-05-05 22:03:49 +0200164static int config_for_dma(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165{
Sergei Shtylyov46cedc92007-05-16 00:51:44 +0200166 u8 speed = ide_max_dma_mode(drive);
167
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 DBG(("config_for_dma(drive:%s)\n", drive->name));
169
Sergei Shtylyov46cedc92007-05-16 00:51:44 +0200170 if (!speed || sl82c105_tune_chipset(drive, speed))
Sergei Shtylyov688a87d2007-05-05 22:03:49 +0200171 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172
Sergei Shtylyov688a87d2007-05-05 22:03:49 +0200173 return ide_dma_enable(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174}
175
176/*
Sergei Shtylyov688a87d2007-05-05 22:03:49 +0200177 * Check to see if the drive and chipset are capable of DMA mode.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 */
Sergei Shtylyov688a87d2007-05-05 22:03:49 +0200179static int sl82c105_ide_dma_check(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180{
Sergei Shtylyov688a87d2007-05-05 22:03:49 +0200181 DBG(("sl82c105_ide_dma_check(drive:%s)\n", drive->name));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182
Sergei Shtylyov688a87d2007-05-05 22:03:49 +0200183 if (ide_use_dma(drive) && config_for_dma(drive))
184 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185
Bartlomiej Zolnierkiewicz3608b5d2007-02-17 02:40:26 +0100186 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187}
188
189/*
190 * The SL82C105 holds off all IDE interrupts while in DMA mode until
191 * all DMA activity is completed. Sometimes this causes problems (eg,
192 * when the drive wants to report an error condition).
193 *
194 * 0x7e is a "chip testing" register. Bit 2 resets the DMA controller
195 * state machine. We need to kick this to work around various bugs.
196 */
197static inline void sl82c105_reset_host(struct pci_dev *dev)
198{
199 u16 val;
200
201 pci_read_config_word(dev, 0x7e, &val);
202 pci_write_config_word(dev, 0x7e, val | (1 << 2));
203 pci_write_config_word(dev, 0x7e, val & ~(1 << 2));
204}
205
206/*
207 * If we get an IRQ timeout, it might be that the DMA state machine
208 * got confused. Fix from Todd Inglett. Details from Winbond.
209 *
210 * This function is called when the IDE timer expires, the drive
211 * indicates that it is READY, and we were waiting for DMA to complete.
212 */
Sergei Shtylyov688a87d2007-05-05 22:03:49 +0200213static int sl82c105_ide_dma_lostirq(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214{
Sergei Shtylyov688a87d2007-05-05 22:03:49 +0200215 ide_hwif_t *hwif = HWIF(drive);
216 struct pci_dev *dev = hwif->pci_dev;
217 u32 val, mask = hwif->channel ? CTRL_IDE_IRQB : CTRL_IDE_IRQA;
218 u8 dma_cmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219
Sergei Shtylyov688a87d2007-05-05 22:03:49 +0200220 printk("sl82c105: lost IRQ, resetting host\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221
222 /*
223 * Check the raw interrupt from the drive.
224 */
225 pci_read_config_dword(dev, 0x40, &val);
226 if (val & mask)
227 printk("sl82c105: drive was requesting IRQ, but host lost it\n");
228
229 /*
230 * Was DMA enabled? If so, disable it - we're resetting the
231 * host. The IDE layer will be handling the drive for us.
232 */
Sergei Shtylyov688a87d2007-05-05 22:03:49 +0200233 dma_cmd = inb(hwif->dma_command);
234 if (dma_cmd & 1) {
235 outb(dma_cmd & ~1, hwif->dma_command);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 printk("sl82c105: DMA was enabled\n");
237 }
238
239 sl82c105_reset_host(dev);
240
Sergei Shtylyov688a87d2007-05-05 22:03:49 +0200241 /* __ide_dma_lostirq would return 1, so we do as well */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 return 1;
243}
244
245/*
246 * ATAPI devices can cause the SL82C105 DMA state machine to go gaga.
247 * Winbond recommend that the DMA state machine is reset prior to
248 * setting the bus master DMA enable bit.
249 *
250 * The generic IDE core will have disabled the BMEN bit before this
251 * function is called.
252 */
Sergei Shtylyov688a87d2007-05-05 22:03:49 +0200253static void sl82c105_dma_start(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254{
Sergei Shtylyov688a87d2007-05-05 22:03:49 +0200255 ide_hwif_t *hwif = HWIF(drive);
256 struct pci_dev *dev = hwif->pci_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257
258 sl82c105_reset_host(dev);
259 ide_dma_start(drive);
260}
261
262static int sl82c105_ide_dma_timeout(ide_drive_t *drive)
263{
Sergei Shtylyov688a87d2007-05-05 22:03:49 +0200264 ide_hwif_t *hwif = HWIF(drive);
265 struct pci_dev *dev = hwif->pci_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266
267 DBG(("sl82c105_ide_dma_timeout(drive:%s)\n", drive->name));
268
269 sl82c105_reset_host(dev);
270 return __ide_dma_timeout(drive);
271}
272
Sergei Shtylyov688a87d2007-05-05 22:03:49 +0200273static int sl82c105_ide_dma_on(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274{
Sergei Shtylyov688a87d2007-05-05 22:03:49 +0200275 struct pci_dev *dev = HWIF(drive)->pci_dev;
276 int rc, reg = 0x44 + drive->dn * 4;
277
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 DBG(("sl82c105_ide_dma_on(drive:%s)\n", drive->name));
279
Sergei Shtylyov688a87d2007-05-05 22:03:49 +0200280 rc = __ide_dma_on(drive);
281 if (rc == 0) {
Sergei Shtylyov46cedc92007-05-16 00:51:44 +0200282 pci_write_config_word(dev, reg, drive->drive_data >> 16);
Sergei Shtylyov688a87d2007-05-05 22:03:49 +0200283
284 printk(KERN_INFO "%s: DMA enabled\n", drive->name);
285 }
286 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287}
288
Bartlomiej Zolnierkiewicz7469aaf2007-02-17 02:40:26 +0100289static void sl82c105_dma_off_quietly(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290{
Sergei Shtylyove93df702007-05-05 22:03:49 +0200291 struct pci_dev *dev = HWIF(drive)->pci_dev;
292 int reg = 0x44 + drive->dn * 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293
Bartlomiej Zolnierkiewicz7469aaf2007-02-17 02:40:26 +0100294 DBG(("sl82c105_dma_off_quietly(drive:%s)\n", drive->name));
295
Sergei Shtylyove93df702007-05-05 22:03:49 +0200296 pci_write_config_word(dev, reg, drive->drive_data);
297
Bartlomiej Zolnierkiewicz7469aaf2007-02-17 02:40:26 +0100298 ide_dma_off_quietly(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299}
300
301/*
302 * Ok, that is nasty, but we must make sure the DMA timings
303 * won't be used for a PIO access. The solution here is
304 * to make sure the 16 bits mode is diabled on the channel
305 * when DMA is enabled, thus causing the chip to use PIO0
306 * timings for those operations.
307 */
308static void sl82c105_selectproc(ide_drive_t *drive)
309{
Sergei Shtylyov688a87d2007-05-05 22:03:49 +0200310 ide_hwif_t *hwif = HWIF(drive);
311 struct pci_dev *dev = hwif->pci_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 u32 val, old, mask;
313
314 //DBG(("sl82c105_selectproc(drive:%s)\n", drive->name));
315
316 mask = hwif->channel ? CTRL_P1F16 : CTRL_P0F16;
Sergei Shtylyovdd607d22006-12-08 02:40:01 -0800317 old = val = (u32)pci_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 if (drive->using_dma)
319 val &= ~mask;
320 else
321 val |= mask;
322 if (old != val) {
323 pci_write_config_dword(dev, 0x40, val);
Sergei Shtylyovdd607d22006-12-08 02:40:01 -0800324 pci_set_drvdata(dev, (void *)val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 }
326}
327
328/*
329 * ATA reset will clear the 16 bits mode in the control
330 * register, we need to update our cache
331 */
332static void sl82c105_resetproc(ide_drive_t *drive)
333{
Sergei Shtylyovdd607d22006-12-08 02:40:01 -0800334 struct pci_dev *dev = HWIF(drive)->pci_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 u32 val;
336
337 DBG(("sl82c105_resetproc(drive:%s)\n", drive->name));
338
339 pci_read_config_dword(dev, 0x40, &val);
Sergei Shtylyovdd607d22006-12-08 02:40:01 -0800340 pci_set_drvdata(dev, (void *)val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341}
342
343/*
344 * We only deal with PIO mode here - DMA mode 'using_dma' is not
345 * initialised at the point that this function is called.
346 */
Sergei Shtylyove93df702007-05-05 22:03:49 +0200347static void sl82c105_tune_drive(ide_drive_t *drive, u8 pio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348{
Sergei Shtylyove93df702007-05-05 22:03:49 +0200349 DBG(("sl82c105_tune_drive(drive:%s, pio:%u)\n", drive->name, pio));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350
Sergei Shtylyove93df702007-05-05 22:03:49 +0200351 pio = sl82c105_tune_pio(drive, pio);
352 (void) ide_config_drive_speed(drive, XFER_PIO_0 + pio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353}
354
355/*
356 * Return the revision of the Winbond bridge
357 * which this function is part of.
358 */
359static unsigned int sl82c105_bridge_revision(struct pci_dev *dev)
360{
361 struct pci_dev *bridge;
362 u8 rev;
363
364 /*
365 * The bridge should be part of the same device, but function 0.
366 */
367 bridge = pci_find_slot(dev->bus->number,
368 PCI_DEVFN(PCI_SLOT(dev->devfn), 0));
369 if (!bridge)
370 return -1;
371
372 /*
373 * Make sure it is a Winbond 553 and is an ISA bridge.
374 */
375 if (bridge->vendor != PCI_VENDOR_ID_WINBOND ||
376 bridge->device != PCI_DEVICE_ID_WINBOND_83C553 ||
377 bridge->class >> 8 != PCI_CLASS_BRIDGE_ISA)
378 return -1;
379
380 /*
381 * We need to find function 0's revision, not function 1
382 */
383 pci_read_config_byte(bridge, PCI_REVISION_ID, &rev);
384
385 return rev;
386}
387
388/*
389 * Enable the PCI device
390 *
391 * --BenH: It's arch fixup code that should enable channels that
392 * have not been enabled by firmware. I decided we can still enable
393 * channel 0 here at least, but channel 1 has to be enabled by
394 * firmware or arch code. We still set both to 16 bits mode.
395 */
Herbert Xu34a62242005-07-03 16:36:56 +0200396static unsigned int __devinit init_chipset_sl82c105(struct pci_dev *dev, const char *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397{
398 u32 val;
399
400 DBG(("init_chipset_sl82c105()\n"));
401
402 pci_read_config_dword(dev, 0x40, &val);
403 val |= CTRL_P0EN | CTRL_P0F16 | CTRL_P1F16;
404 pci_write_config_dword(dev, 0x40, val);
Sergei Shtylyovdd607d22006-12-08 02:40:01 -0800405 pci_set_drvdata(dev, (void *)val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406
407 return dev->irq;
408}
409
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410/*
Sergei Shtylyov688a87d2007-05-05 22:03:49 +0200411 * Initialise IDE channel
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 */
Herbert Xu34a62242005-07-03 16:36:56 +0200413static void __devinit init_hwif_sl82c105(ide_hwif_t *hwif)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414{
Russell King9648f552005-11-12 16:57:29 +0000415 unsigned int rev;
Sergei Shtylyovdd607d22006-12-08 02:40:01 -0800416
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 DBG(("init_hwif_sl82c105(hwif: ide%d)\n", hwif->index));
418
Sergei Shtylyove93df702007-05-05 22:03:49 +0200419 hwif->tuneproc = &sl82c105_tune_drive;
Sergei Shtylyov46cedc92007-05-16 00:51:44 +0200420 hwif->speedproc = &sl82c105_tune_chipset;
Sergei Shtylyove93df702007-05-05 22:03:49 +0200421 hwif->selectproc = &sl82c105_selectproc;
422 hwif->resetproc = &sl82c105_resetproc;
Sergei Shtylyovdd607d22006-12-08 02:40:01 -0800423
424 /*
Sergei Shtylyove93df702007-05-05 22:03:49 +0200425 * We support 32-bit I/O on this interface, and
426 * it doesn't have problems with interrupts.
427 */
428 hwif->drives[0].io_32bit = hwif->drives[1].io_32bit = 1;
429 hwif->drives[0].unmask = hwif->drives[1].unmask = 1;
430
431 /*
Sergei Shtylyovdd607d22006-12-08 02:40:01 -0800432 * We always autotune PIO, this is done before DMA is checked,
433 * so there's no risk of accidentally disabling DMA
434 */
Sergei Shtylyove93df702007-05-05 22:03:49 +0200435 hwif->drives[0].autotune = hwif->drives[1].autotune = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 if (!hwif->dma_base)
438 return;
439
Russell King9648f552005-11-12 16:57:29 +0000440 rev = sl82c105_bridge_revision(hwif->pci_dev);
441 if (rev <= 5) {
442 /*
443 * Never ever EVER under any circumstances enable
444 * DMA when the bridge is this old.
445 */
Sergei Shtylyov688a87d2007-05-05 22:03:49 +0200446 printk(" %s: Winbond W83C553 bridge revision %d, "
447 "BM-DMA disabled\n", hwif->name, rev);
448 return;
Russell King9648f552005-11-12 16:57:29 +0000449 }
Sergei Shtylyov688a87d2007-05-05 22:03:49 +0200450
451 hwif->atapi_dma = 1;
Sergei Shtylyov46cedc92007-05-16 00:51:44 +0200452 hwif->mwdma_mask = 0x07;
Sergei Shtylyov688a87d2007-05-05 22:03:49 +0200453
454 hwif->ide_dma_check = &sl82c105_ide_dma_check;
455 hwif->ide_dma_on = &sl82c105_ide_dma_on;
456 hwif->dma_off_quietly = &sl82c105_dma_off_quietly;
457 hwif->ide_dma_lostirq = &sl82c105_ide_dma_lostirq;
458 hwif->dma_start = &sl82c105_dma_start;
459 hwif->ide_dma_timeout = &sl82c105_ide_dma_timeout;
460
461 if (!noautodma)
462 hwif->autodma = 1;
463 hwif->drives[0].autodma = hwif->drives[1].autodma = hwif->autodma;
464
465 if (hwif->mate)
466 hwif->serialized = hwif->mate->serialized = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467}
468
469static ide_pci_device_t sl82c105_chipset __devinitdata = {
470 .name = "W82C105",
471 .init_chipset = init_chipset_sl82c105,
472 .init_hwif = init_hwif_sl82c105,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 .channels = 2,
474 .autodma = NOAUTODMA,
475 .enablebits = {{0x40,0x01,0x01}, {0x40,0x10,0x10}},
476 .bootable = ON_BOARD,
477};
478
479static int __devinit sl82c105_init_one(struct pci_dev *dev, const struct pci_device_id *id)
480{
481 return ide_setup_pci_device(dev, &sl82c105_chipset);
482}
483
484static struct pci_device_id sl82c105_pci_tbl[] = {
Alan Coxf201f502006-06-28 04:27:02 -0700485 { PCI_DEVICE(PCI_VENDOR_ID_WINBOND, PCI_DEVICE_ID_WINBOND_82C105), 0},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 { 0, },
487};
488MODULE_DEVICE_TABLE(pci, sl82c105_pci_tbl);
489
490static struct pci_driver driver = {
491 .name = "W82C105_IDE",
492 .id_table = sl82c105_pci_tbl,
493 .probe = sl82c105_init_one,
494};
495
Bartlomiej Zolnierkiewicz82ab1ee2007-01-27 13:46:56 +0100496static int __init sl82c105_ide_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497{
498 return ide_pci_register_driver(&driver);
499}
500
501module_init(sl82c105_ide_init);
502
503MODULE_DESCRIPTION("PCI driver module for W82C105 IDE");
504MODULE_LICENSE("GPL");