blob: 5c1bd7928c276af99cbda2d0d64fff465c95dbce [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * Copyright (C) 2001-2002 Andre Hedrick <andre@linux-ide.org>
3 * Copyright (C) 2003 Red Hat <alan@redhat.com>
Sergei Shtylyov075cb652007-02-17 02:40:22 +01004 * Copyright (C) 2007 MontaVista Software, Inc.
Bartlomiej Zolnierkiewicz328dcbb2007-07-20 01:11:54 +02005 * Copyright (C) 2007 Bartlomiej Zolnierkiewicz
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 *
7 * May be copied or modified under the terms of the GNU General Public License
8 *
Jeff Garzikbf4c7962005-11-18 22:55:47 +01009 * Documentation for CMD680:
10 * http://gkernel.sourceforge.net/specs/sii/sii-0680a-v1.31.pdf.bz2
11 *
12 * Documentation for SiI 3112:
13 * http://gkernel.sourceforge.net/specs/sii/3112A_SiI-DS-0095-B2.pdf.bz2
14 *
15 * Errata and other documentation only available under NDA.
Linus Torvalds1da177e2005-04-16 15:20:36 -070016 *
17 *
18 * FAQ Items:
19 * If you are using Marvell SATA-IDE adapters with Maxtor drives
20 * ensure the system is set up for ATA100/UDMA5 not UDMA6.
21 *
22 * If you are using WD drives with SATA bridges you must set the
23 * drive to "Single". "Master" will hang
24 *
25 * If you have strange problems with nVidia chipset systems please
26 * see the SI support documentation and update your system BIOS
Robert P. J. Day3a4fa0a2007-10-19 23:10:43 +020027 * if necessary
Alan Cox8693d3e2007-03-03 17:48:54 +010028 *
29 * The Dell DRAC4 has some interesting features including effectively hot
30 * unplugging/replugging the virtual CD interface when the DRAC is reset.
31 * This often causes drivers/ide/siimage to panic but is ok with the rather
32 * smarter code in libata.
Bartlomiej Zolnierkiewicz328dcbb2007-07-20 01:11:54 +020033 *
34 * TODO:
35 * - IORDY fixes
36 * - VDMA support
Linus Torvalds1da177e2005-04-16 15:20:36 -070037 */
38
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#include <linux/types.h>
40#include <linux/module.h>
41#include <linux/pci.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070042#include <linux/hdreg.h>
43#include <linux/ide.h>
44#include <linux/init.h>
45
46#include <asm/io.h>
47
Linus Torvalds1da177e2005-04-16 15:20:36 -070048/**
49 * pdev_is_sata - check if device is SATA
50 * @pdev: PCI device to check
51 *
52 * Returns true if this is a SATA controller
53 */
54
55static int pdev_is_sata(struct pci_dev *pdev)
56{
Bartlomiej Zolnierkiewicz438c4702007-10-20 00:32:31 +020057#ifdef CONFIG_BLK_DEV_IDE_SATA
58 switch(pdev->device) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070059 case PCI_DEVICE_ID_SII_3112:
60 case PCI_DEVICE_ID_SII_1210SA:
61 return 1;
62 case PCI_DEVICE_ID_SII_680:
63 return 0;
64 }
65 BUG();
Bartlomiej Zolnierkiewicz438c4702007-10-20 00:32:31 +020066#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070067 return 0;
68}
Bartlomiej Zolnierkiewicz438c4702007-10-20 00:32:31 +020069
Linus Torvalds1da177e2005-04-16 15:20:36 -070070/**
71 * is_sata - check if hwif is SATA
72 * @hwif: interface to check
73 *
74 * Returns true if this is a SATA controller
75 */
76
77static inline int is_sata(ide_hwif_t *hwif)
78{
Bartlomiej Zolnierkiewicz36501652008-02-01 23:09:31 +010079 return pdev_is_sata(to_pci_dev(hwif->dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -070080}
81
82/**
83 * siimage_selreg - return register base
84 * @hwif: interface
85 * @r: config offset
86 *
87 * Turn a config register offset into the right address in either
88 * PCI space or MMIO space to access the control register in question
89 * Thankfully this is a configuration operation so isnt performance
90 * criticial.
91 */
92
93static unsigned long siimage_selreg(ide_hwif_t *hwif, int r)
94{
95 unsigned long base = (unsigned long)hwif->hwif_data;
96 base += 0xA0 + r;
97 if(hwif->mmio)
98 base += (hwif->channel << 6);
99 else
100 base += (hwif->channel << 4);
101 return base;
102}
103
104/**
105 * siimage_seldev - return register base
106 * @hwif: interface
107 * @r: config offset
108 *
109 * Turn a config register offset into the right address in either
110 * PCI space or MMIO space to access the control register in question
111 * including accounting for the unit shift.
112 */
113
114static inline unsigned long siimage_seldev(ide_drive_t *drive, int r)
115{
116 ide_hwif_t *hwif = HWIF(drive);
117 unsigned long base = (unsigned long)hwif->hwif_data;
118 base += 0xA0 + r;
119 if(hwif->mmio)
120 base += (hwif->channel << 6);
121 else
122 base += (hwif->channel << 4);
123 base |= drive->select.b.unit << drive->select.b.unit;
124 return base;
125}
126
127/**
Bartlomiej Zolnierkiewicz2d5eaa62007-05-10 00:01:08 +0200128 * sil_udma_filter - compute UDMA mask
129 * @drive: IDE device
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 *
Bartlomiej Zolnierkiewicz2d5eaa62007-05-10 00:01:08 +0200131 * Compute the available UDMA speeds for the device on the interface.
132 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 * For the CMD680 this depends on the clocking mode (scsc), for the
Bartlomiej Zolnierkiewicz2d5eaa62007-05-10 00:01:08 +0200134 * SI3112 SATA controller life is a bit simpler.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 */
Bartlomiej Zolnierkiewicz2d5eaa62007-05-10 00:01:08 +0200136
Bartlomiej Zolnierkiewicz438c4702007-10-20 00:32:31 +0200137static u8 sil_pata_udma_filter(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138{
Bartlomiej Zolnierkiewicz2d5eaa62007-05-10 00:01:08 +0200139 ide_hwif_t *hwif = drive->hwif;
Bartlomiej Zolnierkiewicz36501652008-02-01 23:09:31 +0100140 struct pci_dev *dev = to_pci_dev(hwif->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 unsigned long base = (unsigned long) hwif->hwif_data;
Bartlomiej Zolnierkiewicz2d5eaa62007-05-10 00:01:08 +0200142 u8 mask = 0, scsc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143
144 if (hwif->mmio)
145 scsc = hwif->INB(base + 0x4A);
146 else
Bartlomiej Zolnierkiewicz36501652008-02-01 23:09:31 +0100147 pci_read_config_byte(dev, 0x8A, &scsc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 if ((scsc & 0x30) == 0x10) /* 133 */
Bartlomiej Zolnierkiewicz438c4702007-10-20 00:32:31 +0200150 mask = ATA_UDMA6;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 else if ((scsc & 0x30) == 0x20) /* 2xPCI */
Bartlomiej Zolnierkiewicz438c4702007-10-20 00:32:31 +0200152 mask = ATA_UDMA6;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 else if ((scsc & 0x30) == 0x00) /* 100 */
Bartlomiej Zolnierkiewicz438c4702007-10-20 00:32:31 +0200154 mask = ATA_UDMA5;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 else /* Disabled ? */
156 BUG();
Bartlomiej Zolnierkiewicz438c4702007-10-20 00:32:31 +0200157
Bartlomiej Zolnierkiewicz2d5eaa62007-05-10 00:01:08 +0200158 return mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159}
160
Bartlomiej Zolnierkiewicz438c4702007-10-20 00:32:31 +0200161static u8 sil_sata_udma_filter(ide_drive_t *drive)
162{
163 return strstr(drive->id->model, "Maxtor") ? ATA_UDMA5 : ATA_UDMA6;
164}
165
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166/**
Bartlomiej Zolnierkiewicz88b2b322007-10-13 17:47:51 +0200167 * sil_set_pio_mode - set host controller for PIO mode
168 * @drive: drive
169 * @pio: PIO mode number
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 *
171 * Load the timing settings for this device mode into the
172 * controller. If we are in PIO mode 3 or 4 turn on IORDY
173 * monitoring (bit 9). The TF timing is bits 31:16
174 */
Bartlomiej Zolnierkiewicz328dcbb2007-07-20 01:11:54 +0200175
Bartlomiej Zolnierkiewicz88b2b322007-10-13 17:47:51 +0200176static void sil_set_pio_mode(ide_drive_t *drive, u8 pio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177{
Bartlomiej Zolnierkiewicz328dcbb2007-07-20 01:11:54 +0200178 const u16 tf_speed[] = { 0x328a, 0x2283, 0x1281, 0x10c3, 0x10c1 };
179 const u16 data_speed[] = { 0x328a, 0x2283, 0x1104, 0x10c3, 0x10c1 };
180
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 ide_hwif_t *hwif = HWIF(drive);
Benjamin Herrenschmidta87a87c2007-10-19 00:30:05 +0200182 ide_drive_t *pair = ide_get_paired_drive(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 u32 speedt = 0;
184 u16 speedp = 0;
185 unsigned long addr = siimage_seldev(drive, 0x04);
186 unsigned long tfaddr = siimage_selreg(hwif, 0x02);
Bartlomiej Zolnierkiewiczffe54152007-10-11 23:54:01 +0200187 unsigned long base = (unsigned long)hwif->hwif_data;
Bartlomiej Zolnierkiewicz328dcbb2007-07-20 01:11:54 +0200188 u8 tf_pio = pio;
Bartlomiej Zolnierkiewiczffe54152007-10-11 23:54:01 +0200189 u8 addr_mask = hwif->channel ? (hwif->mmio ? 0xF4 : 0x84)
190 : (hwif->mmio ? 0xB4 : 0x80);
191 u8 mode = 0;
192 u8 unit = drive->select.b.unit;
Bartlomiej Zolnierkiewicz328dcbb2007-07-20 01:11:54 +0200193
194 /* trim *taskfile* PIO to the slowest of the master/slave */
195 if (pair->present) {
Bartlomiej Zolnierkiewicz21347582007-07-20 01:11:58 +0200196 u8 pair_pio = ide_get_best_pio_mode(pair, 255, 4);
Bartlomiej Zolnierkiewicz328dcbb2007-07-20 01:11:54 +0200197
198 if (pair_pio < tf_pio)
199 tf_pio = pair_pio;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 }
Sergei Shtylyov075cb652007-02-17 02:40:22 +0100201
Bartlomiej Zolnierkiewicz328dcbb2007-07-20 01:11:54 +0200202 /* cheat for now and use the docs */
203 speedp = data_speed[pio];
204 speedt = tf_speed[tf_pio];
205
Sergei Shtylyov075cb652007-02-17 02:40:22 +0100206 if (hwif->mmio) {
207 hwif->OUTW(speedp, addr);
208 hwif->OUTW(speedt, tfaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 /* Now set up IORDY */
Bartlomiej Zolnierkiewicz328dcbb2007-07-20 01:11:54 +0200210 if (pio > 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 hwif->OUTW(hwif->INW(tfaddr-2)|0x200, tfaddr-2);
212 else
213 hwif->OUTW(hwif->INW(tfaddr-2)&~0x200, tfaddr-2);
Bartlomiej Zolnierkiewiczffe54152007-10-11 23:54:01 +0200214
215 mode = hwif->INB(base + addr_mask);
216 mode &= ~(unit ? 0x30 : 0x03);
217 mode |= (unit ? 0x10 : 0x01);
218 hwif->OUTB(mode, base + addr_mask);
Sergei Shtylyov075cb652007-02-17 02:40:22 +0100219 } else {
Bartlomiej Zolnierkiewicz36501652008-02-01 23:09:31 +0100220 struct pci_dev *dev = to_pci_dev(hwif->dev);
221
222 pci_write_config_word(dev, addr, speedp);
223 pci_write_config_word(dev, tfaddr, speedt);
224 pci_read_config_word(dev, tfaddr - 2, &speedp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 speedp &= ~0x200;
226 /* Set IORDY for mode 3 or 4 */
Bartlomiej Zolnierkiewicz328dcbb2007-07-20 01:11:54 +0200227 if (pio > 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 speedp |= 0x200;
Bartlomiej Zolnierkiewicz36501652008-02-01 23:09:31 +0100229 pci_write_config_word(dev, tfaddr - 2, speedp);
Bartlomiej Zolnierkiewiczffe54152007-10-11 23:54:01 +0200230
Bartlomiej Zolnierkiewicz36501652008-02-01 23:09:31 +0100231 pci_read_config_byte(dev, addr_mask, &mode);
Bartlomiej Zolnierkiewiczffe54152007-10-11 23:54:01 +0200232 mode &= ~(unit ? 0x30 : 0x03);
233 mode |= (unit ? 0x10 : 0x01);
Bartlomiej Zolnierkiewicz36501652008-02-01 23:09:31 +0100234 pci_write_config_byte(dev, addr_mask, mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 }
236}
237
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238/**
Bartlomiej Zolnierkiewicz88b2b322007-10-13 17:47:51 +0200239 * sil_set_dma_mode - set host controller for DMA mode
240 * @drive: drive
241 * @speed: DMA mode
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 *
Bartlomiej Zolnierkiewicz88b2b322007-10-13 17:47:51 +0200243 * Tune the SiI chipset for the desired DMA mode.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 */
Bartlomiej Zolnierkiewiczf212ff22007-10-11 23:53:59 +0200245
Bartlomiej Zolnierkiewicz88b2b322007-10-13 17:47:51 +0200246static void sil_set_dma_mode(ide_drive_t *drive, const u8 speed)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247{
248 u8 ultra6[] = { 0x0F, 0x0B, 0x07, 0x05, 0x03, 0x02, 0x01 };
249 u8 ultra5[] = { 0x0C, 0x07, 0x05, 0x04, 0x02, 0x01 };
250 u16 dma[] = { 0x2208, 0x10C2, 0x10C1 };
251
252 ide_hwif_t *hwif = HWIF(drive);
Bartlomiej Zolnierkiewicz36501652008-02-01 23:09:31 +0100253 struct pci_dev *dev = to_pci_dev(hwif->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 u16 ultra = 0, multi = 0;
255 u8 mode = 0, unit = drive->select.b.unit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 unsigned long base = (unsigned long)hwif->hwif_data;
257 u8 scsc = 0, addr_mask = ((hwif->channel) ?
258 ((hwif->mmio) ? 0xF4 : 0x84) :
259 ((hwif->mmio) ? 0xB4 : 0x80));
260
261 unsigned long ma = siimage_seldev(drive, 0x08);
262 unsigned long ua = siimage_seldev(drive, 0x0C);
263
264 if (hwif->mmio) {
265 scsc = hwif->INB(base + 0x4A);
266 mode = hwif->INB(base + addr_mask);
267 multi = hwif->INW(ma);
268 ultra = hwif->INW(ua);
269 } else {
Bartlomiej Zolnierkiewicz36501652008-02-01 23:09:31 +0100270 pci_read_config_byte(dev, 0x8A, &scsc);
271 pci_read_config_byte(dev, addr_mask, &mode);
272 pci_read_config_word(dev, ma, &multi);
273 pci_read_config_word(dev, ua, &ultra);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 }
275
276 mode &= ~((unit) ? 0x30 : 0x03);
277 ultra &= ~0x3F;
278 scsc = ((scsc & 0x30) == 0x00) ? 0 : 1;
279
280 scsc = is_sata(hwif) ? 1 : scsc;
281
Bartlomiej Zolnierkiewicz4db90a12008-01-25 22:17:18 +0100282 if (speed >= XFER_UDMA_0) {
283 multi = dma[2];
284 ultra |= (scsc ? ultra6[speed - XFER_UDMA_0] :
285 ultra5[speed - XFER_UDMA_0]);
286 mode |= (unit ? 0x30 : 0x03);
287 } else {
288 multi = dma[speed - XFER_MW_DMA_0];
289 mode |= (unit ? 0x20 : 0x02);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 }
291
292 if (hwif->mmio) {
293 hwif->OUTB(mode, base + addr_mask);
294 hwif->OUTW(multi, ma);
295 hwif->OUTW(ultra, ua);
296 } else {
Bartlomiej Zolnierkiewicz36501652008-02-01 23:09:31 +0100297 pci_write_config_byte(dev, addr_mask, mode);
298 pci_write_config_word(dev, ma, multi);
299 pci_write_config_word(dev, ua, ultra);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301}
302
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303/* returns 1 if dma irq issued, 0 otherwise */
304static int siimage_io_ide_dma_test_irq (ide_drive_t *drive)
305{
306 ide_hwif_t *hwif = HWIF(drive);
Bartlomiej Zolnierkiewicz36501652008-02-01 23:09:31 +0100307 struct pci_dev *dev = to_pci_dev(hwif->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 u8 dma_altstat = 0;
309 unsigned long addr = siimage_selreg(hwif, 1);
310
311 /* return 1 if INTR asserted */
312 if ((hwif->INB(hwif->dma_status) & 4) == 4)
313 return 1;
314
315 /* return 1 if Device INTR asserted */
Bartlomiej Zolnierkiewicz36501652008-02-01 23:09:31 +0100316 pci_read_config_byte(dev, addr, &dma_altstat);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 if (dma_altstat & 8)
318 return 0; //return 1;
319 return 0;
320}
321
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322/**
323 * siimage_mmio_ide_dma_test_irq - check we caused an IRQ
324 * @drive: drive we are testing
325 *
326 * Check if we caused an IDE DMA interrupt. We may also have caused
327 * SATA status interrupts, if so we clean them up and continue.
328 */
329
330static int siimage_mmio_ide_dma_test_irq (ide_drive_t *drive)
331{
332 ide_hwif_t *hwif = HWIF(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 unsigned long addr = siimage_selreg(hwif, 0x1);
334
335 if (SATA_ERROR_REG) {
Bartlomiej Zolnierkiewicz438c4702007-10-20 00:32:31 +0200336 unsigned long base = (unsigned long)hwif->hwif_data;
337
Bartlomiej Zolnierkiewicz0ecdca22007-02-17 02:40:25 +0100338 u32 ext_stat = readl((void __iomem *)(base + 0x10));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 u8 watchdog = 0;
340 if (ext_stat & ((hwif->channel) ? 0x40 : 0x10)) {
Bartlomiej Zolnierkiewicz0ecdca22007-02-17 02:40:25 +0100341 u32 sata_error = readl((void __iomem *)SATA_ERROR_REG);
342 writel(sata_error, (void __iomem *)SATA_ERROR_REG);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 watchdog = (sata_error & 0x00680000) ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 printk(KERN_WARNING "%s: sata_error = 0x%08x, "
345 "watchdog = %d, %s\n",
346 drive->name, sata_error, watchdog,
347 __FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348
349 } else {
350 watchdog = (ext_stat & 0x8000) ? 1 : 0;
351 }
352 ext_stat >>= 16;
353
354 if (!(ext_stat & 0x0404) && !watchdog)
355 return 0;
356 }
357
358 /* return 1 if INTR asserted */
Bartlomiej Zolnierkiewicz0ecdca22007-02-17 02:40:25 +0100359 if ((readb((void __iomem *)hwif->dma_status) & 0x04) == 0x04)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 return 1;
361
362 /* return 1 if Device INTR asserted */
Bartlomiej Zolnierkiewicz0ecdca22007-02-17 02:40:25 +0100363 if ((readb((void __iomem *)addr) & 8) == 8)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 return 0; //return 1;
365
366 return 0;
367}
368
369/**
Bartlomiej Zolnierkiewicz438c4702007-10-20 00:32:31 +0200370 * sil_sata_busproc - bus isolation IOCTL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 * @drive: drive to isolate/restore
372 * @state: bus state to set
373 *
374 * Used by the SII3112 to handle bus isolation. As this is a
375 * SATA controller the work required is quite limited, we
376 * just have to clean up the statistics
377 */
Bartlomiej Zolnierkiewicz438c4702007-10-20 00:32:31 +0200378
379static int sil_sata_busproc(ide_drive_t * drive, int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380{
381 ide_hwif_t *hwif = HWIF(drive);
Bartlomiej Zolnierkiewicz36501652008-02-01 23:09:31 +0100382 struct pci_dev *dev = to_pci_dev(hwif->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 u32 stat_config = 0;
384 unsigned long addr = siimage_selreg(hwif, 0);
385
Bartlomiej Zolnierkiewicz0ecdca22007-02-17 02:40:25 +0100386 if (hwif->mmio)
387 stat_config = readl((void __iomem *)addr);
388 else
Bartlomiej Zolnierkiewicz36501652008-02-01 23:09:31 +0100389 pci_read_config_dword(dev, addr, &stat_config);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390
391 switch (state) {
392 case BUSSTATE_ON:
393 hwif->drives[0].failures = 0;
394 hwif->drives[1].failures = 0;
395 break;
396 case BUSSTATE_OFF:
397 hwif->drives[0].failures = hwif->drives[0].max_failures + 1;
398 hwif->drives[1].failures = hwif->drives[1].max_failures + 1;
399 break;
400 case BUSSTATE_TRISTATE:
401 hwif->drives[0].failures = hwif->drives[0].max_failures + 1;
402 hwif->drives[1].failures = hwif->drives[1].max_failures + 1;
403 break;
404 default:
405 return -EINVAL;
406 }
407 hwif->bus_state = state;
408 return 0;
409}
410
411/**
Bartlomiej Zolnierkiewicz438c4702007-10-20 00:32:31 +0200412 * sil_sata_reset_poll - wait for SATA reset
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 * @drive: drive we are resetting
414 *
415 * Poll the SATA phy and see whether it has come back from the dead
416 * yet.
417 */
Bartlomiej Zolnierkiewicz438c4702007-10-20 00:32:31 +0200418
419static int sil_sata_reset_poll(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420{
421 if (SATA_STATUS_REG) {
422 ide_hwif_t *hwif = HWIF(drive);
423
Bartlomiej Zolnierkiewicz0ecdca22007-02-17 02:40:25 +0100424 /* SATA_STATUS_REG is valid only when in MMIO mode */
425 if ((readl((void __iomem *)SATA_STATUS_REG) & 0x03) != 0x03) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 printk(KERN_WARNING "%s: reset phy dead, status=0x%08x\n",
Bartlomiej Zolnierkiewicz0ecdca22007-02-17 02:40:25 +0100427 hwif->name, readl((void __iomem *)SATA_STATUS_REG));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 HWGROUP(drive)->polling = 0;
429 return ide_started;
430 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 }
Bartlomiej Zolnierkiewicz438c4702007-10-20 00:32:31 +0200432
433 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434}
435
436/**
Bartlomiej Zolnierkiewicz438c4702007-10-20 00:32:31 +0200437 * sil_sata_pre_reset - reset hook
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 * @drive: IDE device being reset
439 *
440 * For the SATA devices we need to handle recalibration/geometry
441 * differently
442 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443
Bartlomiej Zolnierkiewicz438c4702007-10-20 00:32:31 +0200444static void sil_sata_pre_reset(ide_drive_t *drive)
445{
446 if (drive->media == ide_disk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 drive->special.b.set_geometry = 0;
448 drive->special.b.recalibrate = 0;
449 }
450}
451
452/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 * proc_reports_siimage - add siimage controller to proc
454 * @dev: PCI device
455 * @clocking: SCSC value
456 * @name: controller name
457 *
458 * Report the clocking mode of the controller and add it to
459 * the /proc interface layer
460 */
461
462static void proc_reports_siimage (struct pci_dev *dev, u8 clocking, const char *name)
463{
464 if (!pdev_is_sata(dev)) {
465 printk(KERN_INFO "%s: BASE CLOCK ", name);
466 clocking &= 0x03;
467 switch (clocking) {
468 case 0x03: printk("DISABLED!\n"); break;
469 case 0x02: printk("== 2X PCI\n"); break;
470 case 0x01: printk("== 133\n"); break;
471 case 0x00: printk("== 100\n"); break;
472 }
473 }
474}
475
476/**
477 * setup_mmio_siimage - switch an SI controller into MMIO
478 * @dev: PCI device we are configuring
479 * @name: device name
480 *
481 * Attempt to put the device into mmio mode. There are some slight
482 * complications here with certain systems where the mmio bar isnt
483 * mapped so we have to be sure we can fall back to I/O.
484 */
485
486static unsigned int setup_mmio_siimage (struct pci_dev *dev, const char *name)
487{
488 unsigned long bar5 = pci_resource_start(dev, 5);
489 unsigned long barsize = pci_resource_len(dev, 5);
490 u8 tmpbyte = 0;
491 void __iomem *ioaddr;
John W. Linvilled868dd12005-11-10 00:19:14 +0100492 u32 tmp, irq_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493
494 /*
495 * Drop back to PIO if we can't map the mmio. Some
496 * systems seem to get terminally confused in the PCI
497 * spaces.
498 */
499
500 if(!request_mem_region(bar5, barsize, name))
501 {
502 printk(KERN_WARNING "siimage: IDE controller MMIO ports not available.\n");
503 return 0;
504 }
505
506 ioaddr = ioremap(bar5, barsize);
507
508 if (ioaddr == NULL)
509 {
510 release_mem_region(bar5, barsize);
511 return 0;
512 }
513
514 pci_set_master(dev);
515 pci_set_drvdata(dev, (void *) ioaddr);
516
517 if (pdev_is_sata(dev)) {
John W. Linvilled868dd12005-11-10 00:19:14 +0100518 /* make sure IDE0/1 interrupts are not masked */
519 irq_mask = (1 << 22) | (1 << 23);
520 tmp = readl(ioaddr + 0x48);
521 if (tmp & irq_mask) {
522 tmp &= ~irq_mask;
523 writel(tmp, ioaddr + 0x48);
524 readl(ioaddr + 0x48); /* flush */
525 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 writel(0, ioaddr + 0x148);
527 writel(0, ioaddr + 0x1C8);
528 }
529
530 writeb(0, ioaddr + 0xB4);
531 writeb(0, ioaddr + 0xF4);
532 tmpbyte = readb(ioaddr + 0x4A);
533
534 switch(tmpbyte & 0x30) {
535 case 0x00:
536 /* In 100 MHz clocking, try and switch to 133 */
537 writeb(tmpbyte|0x10, ioaddr + 0x4A);
538 break;
539 case 0x10:
540 /* On 133Mhz clocking */
541 break;
542 case 0x20:
543 /* On PCIx2 clocking */
544 break;
545 case 0x30:
546 /* Clocking is disabled */
547 /* 133 clock attempt to force it on */
548 writeb(tmpbyte & ~0x20, ioaddr + 0x4A);
549 break;
550 }
551
552 writeb( 0x72, ioaddr + 0xA1);
553 writew( 0x328A, ioaddr + 0xA2);
554 writel(0x62DD62DD, ioaddr + 0xA4);
555 writel(0x43924392, ioaddr + 0xA8);
556 writel(0x40094009, ioaddr + 0xAC);
557 writeb( 0x72, ioaddr + 0xE1);
558 writew( 0x328A, ioaddr + 0xE2);
559 writel(0x62DD62DD, ioaddr + 0xE4);
560 writel(0x43924392, ioaddr + 0xE8);
561 writel(0x40094009, ioaddr + 0xEC);
562
563 if (pdev_is_sata(dev)) {
564 writel(0xFFFF0000, ioaddr + 0x108);
565 writel(0xFFFF0000, ioaddr + 0x188);
566 writel(0x00680000, ioaddr + 0x148);
567 writel(0x00680000, ioaddr + 0x1C8);
568 }
569
570 tmpbyte = readb(ioaddr + 0x4A);
571
572 proc_reports_siimage(dev, (tmpbyte>>4), name);
573 return 1;
574}
575
576/**
577 * init_chipset_siimage - set up an SI device
578 * @dev: PCI device
579 * @name: device name
580 *
581 * Perform the initial PCI set up for this device. Attempt to switch
582 * to 133MHz clocking if the system isn't already set up to do it.
583 */
584
585static unsigned int __devinit init_chipset_siimage(struct pci_dev *dev, const char *name)
586{
Bartlomiej Zolnierkiewiczfc212bb2007-10-19 00:30:08 +0200587 u8 rev = dev->revision, tmpbyte = 0, BA5_EN = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588
Bartlomiej Zolnierkiewiczfc212bb2007-10-19 00:30:08 +0200589 pci_write_config_byte(dev, PCI_CACHE_LINE_SIZE, rev ? 1 : 255);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590
591 pci_read_config_byte(dev, 0x8A, &BA5_EN);
592 if ((BA5_EN & 0x01) || (pci_resource_start(dev, 5))) {
593 if (setup_mmio_siimage(dev, name)) {
594 return 0;
595 }
596 }
597
598 pci_write_config_byte(dev, 0x80, 0x00);
599 pci_write_config_byte(dev, 0x84, 0x00);
600 pci_read_config_byte(dev, 0x8A, &tmpbyte);
601 switch(tmpbyte & 0x30) {
602 case 0x00:
603 /* 133 clock attempt to force it on */
604 pci_write_config_byte(dev, 0x8A, tmpbyte|0x10);
605 case 0x30:
606 /* if clocking is disabled */
607 /* 133 clock attempt to force it on */
608 pci_write_config_byte(dev, 0x8A, tmpbyte & ~0x20);
609 case 0x10:
610 /* 133 already */
611 break;
612 case 0x20:
613 /* BIOS set PCI x2 clocking */
614 break;
615 }
616
617 pci_read_config_byte(dev, 0x8A, &tmpbyte);
618
619 pci_write_config_byte(dev, 0xA1, 0x72);
620 pci_write_config_word(dev, 0xA2, 0x328A);
621 pci_write_config_dword(dev, 0xA4, 0x62DD62DD);
622 pci_write_config_dword(dev, 0xA8, 0x43924392);
623 pci_write_config_dword(dev, 0xAC, 0x40094009);
624 pci_write_config_byte(dev, 0xB1, 0x72);
625 pci_write_config_word(dev, 0xB2, 0x328A);
626 pci_write_config_dword(dev, 0xB4, 0x62DD62DD);
627 pci_write_config_dword(dev, 0xB8, 0x43924392);
628 pci_write_config_dword(dev, 0xBC, 0x40094009);
629
630 proc_reports_siimage(dev, (tmpbyte>>4), name);
631 return 0;
632}
633
634/**
635 * init_mmio_iops_siimage - set up the iops for MMIO
636 * @hwif: interface to set up
637 *
638 * The basic setup here is fairly simple, we can use standard MMIO
639 * operations. However we do have to set the taskfile register offsets
640 * by hand as there isnt a standard defined layout for them this
641 * time.
642 *
643 * The hardware supports buffered taskfiles and also some rather nice
Alan Cox19c1ef52006-06-28 04:26:59 -0700644 * extended PRD tables. For better SI3112 support use the libata driver
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 */
646
647static void __devinit init_mmio_iops_siimage(ide_hwif_t *hwif)
648{
Bartlomiej Zolnierkiewicz36501652008-02-01 23:09:31 +0100649 struct pci_dev *dev = to_pci_dev(hwif->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 void *addr = pci_get_drvdata(dev);
651 u8 ch = hwif->channel;
652 hw_regs_t hw;
653 unsigned long base;
654
655 /*
656 * Fill in the basic HWIF bits
657 */
658
659 default_hwif_mmiops(hwif);
660 hwif->hwif_data = addr;
661
662 /*
663 * Now set up the hw. We have to do this ourselves as
Michael Opdenacker59c51592007-05-09 08:57:56 +0200664 * the MMIO layout isnt the same as the standard port
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 * based I/O
666 */
667
668 memset(&hw, 0, sizeof(hw_regs_t));
669
670 base = (unsigned long)addr;
671 if (ch)
672 base += 0xC0;
673 else
674 base += 0x80;
675
676 /*
677 * The buffered task file doesn't have status/control
678 * so we can't currently use it sanely since we want to
679 * use LBA48 mode.
680 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 hw.io_ports[IDE_DATA_OFFSET] = base;
682 hw.io_ports[IDE_ERROR_OFFSET] = base + 1;
683 hw.io_ports[IDE_NSECTOR_OFFSET] = base + 2;
684 hw.io_ports[IDE_SECTOR_OFFSET] = base + 3;
685 hw.io_ports[IDE_LCYL_OFFSET] = base + 4;
686 hw.io_ports[IDE_HCYL_OFFSET] = base + 5;
687 hw.io_ports[IDE_SELECT_OFFSET] = base + 6;
688 hw.io_ports[IDE_STATUS_OFFSET] = base + 7;
689 hw.io_ports[IDE_CONTROL_OFFSET] = base + 10;
690
691 hw.io_ports[IDE_IRQ_OFFSET] = 0;
692
693 if (pdev_is_sata(dev)) {
694 base = (unsigned long)addr;
695 if (ch)
696 base += 0x80;
697 hwif->sata_scr[SATA_STATUS_OFFSET] = base + 0x104;
698 hwif->sata_scr[SATA_ERROR_OFFSET] = base + 0x108;
699 hwif->sata_scr[SATA_CONTROL_OFFSET] = base + 0x100;
700 hwif->sata_misc[SATA_MISC_OFFSET] = base + 0x140;
701 hwif->sata_misc[SATA_PHY_OFFSET] = base + 0x144;
702 hwif->sata_misc[SATA_IEN_OFFSET] = base + 0x148;
703 }
704
Bartlomiej Zolnierkiewicz9239b332007-10-20 00:32:33 +0200705 memcpy(hwif->io_ports, hw.io_ports, sizeof(hwif->io_ports));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706
Bartlomiej Zolnierkiewicz9239b332007-10-20 00:32:33 +0200707 hwif->irq = dev->irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708
Bartlomiej Zolnierkiewicz9239b332007-10-20 00:32:33 +0200709 hwif->dma_base = (unsigned long)addr + (ch ? 0x08 : 0x00);
Bartlomiej Zolnierkiewicz2ad1e552007-02-17 02:40:25 +0100710
711 hwif->mmio = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712}
713
714static int is_dev_seagate_sata(ide_drive_t *drive)
715{
716 const char *s = &drive->id->model[0];
717 unsigned len;
718
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 len = strnlen(s, sizeof(drive->id->model));
720
721 if ((len > 4) && (!memcmp(s, "ST", 2))) {
722 if ((!memcmp(s + len - 2, "AS", 2)) ||
723 (!memcmp(s + len - 3, "ASL", 3))) {
724 printk(KERN_INFO "%s: applying pessimistic Seagate "
725 "errata fix\n", drive->name);
726 return 1;
727 }
728 }
729 return 0;
730}
731
732/**
Bartlomiej Zolnierkiewiczf01393e2008-01-26 20:13:03 +0100733 * sil_quirkproc - post probe fixups
734 * @drive: drive
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 *
736 * Called after drive probe we use this to decide whether the
737 * Seagate fixup must be applied. This used to be in init_iops but
738 * that can occur before we know what drives are present.
739 */
740
Bartlomiej Zolnierkiewiczf01393e2008-01-26 20:13:03 +0100741static void __devinit sil_quirkproc(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742{
Bartlomiej Zolnierkiewiczf01393e2008-01-26 20:13:03 +0100743 ide_hwif_t *hwif = drive->hwif;
744
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 /* Try and raise the rqsize */
Bartlomiej Zolnierkiewiczf01393e2008-01-26 20:13:03 +0100746 if (!is_sata(hwif) || !is_dev_seagate_sata(drive))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 hwif->rqsize = 128;
748}
749
750/**
751 * init_iops_siimage - set up iops
752 * @hwif: interface to set up
753 *
754 * Do the basic setup for the SIIMAGE hardware interface
755 * and then do the MMIO setup if we can. This is the first
756 * look in we get for setting up the hwif so that we
757 * can get the iops right before using them.
758 */
759
760static void __devinit init_iops_siimage(ide_hwif_t *hwif)
761{
Bartlomiej Zolnierkiewicz36501652008-02-01 23:09:31 +0100762 struct pci_dev *dev = to_pci_dev(hwif->dev);
763
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 hwif->hwif_data = NULL;
765
766 /* Pessimal until we finish probing */
767 hwif->rqsize = 15;
768
Bartlomiej Zolnierkiewicz36501652008-02-01 23:09:31 +0100769 if (pci_get_drvdata(dev) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 return;
Bartlomiej Zolnierkiewiczfc212bb2007-10-19 00:30:08 +0200771
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 init_mmio_iops_siimage(hwif);
773}
774
775/**
776 * ata66_siimage - check for 80 pin cable
777 * @hwif: interface to check
778 *
779 * Check for the presence of an ATA66 capable cable on the
780 * interface.
781 */
782
Bartlomiej Zolnierkiewicz49521f92007-07-09 23:17:58 +0200783static u8 __devinit ata66_siimage(ide_hwif_t *hwif)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784{
Bartlomiej Zolnierkiewicz36501652008-02-01 23:09:31 +0100785 struct pci_dev *dev = to_pci_dev(hwif->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 unsigned long addr = siimage_selreg(hwif, 0);
Bartlomiej Zolnierkiewicz49521f92007-07-09 23:17:58 +0200787 u8 ata66 = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788
Bartlomiej Zolnierkiewicz36501652008-02-01 23:09:31 +0100789 if (pci_get_drvdata(dev) == NULL)
790 pci_read_config_byte(dev, addr, &ata66);
Bartlomiej Zolnierkiewicz49521f92007-07-09 23:17:58 +0200791 else
792 ata66 = hwif->INB(addr);
793
794 return (ata66 & 0x01) ? ATA_CBL_PATA80 : ATA_CBL_PATA40;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795}
796
797/**
798 * init_hwif_siimage - set up hwif structs
799 * @hwif: interface to set up
800 *
801 * We do the basic set up of the interface structure. The SIIMAGE
802 * requires several custom handlers so we override the default
803 * ide DMA handlers appropriately
804 */
805
806static void __devinit init_hwif_siimage(ide_hwif_t *hwif)
807{
Bartlomiej Zolnierkiewicz438c4702007-10-20 00:32:31 +0200808 u8 sata = is_sata(hwif);
809
Bartlomiej Zolnierkiewicz26bcb872007-10-11 23:54:00 +0200810 hwif->set_pio_mode = &sil_set_pio_mode;
Bartlomiej Zolnierkiewicz88b2b322007-10-13 17:47:51 +0200811 hwif->set_dma_mode = &sil_set_dma_mode;
Bartlomiej Zolnierkiewiczf01393e2008-01-26 20:13:03 +0100812 hwif->quirkproc = &sil_quirkproc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813
Bartlomiej Zolnierkiewicz438c4702007-10-20 00:32:31 +0200814 if (sata) {
Alan Cox19c1ef52006-06-28 04:26:59 -0700815 static int first = 1;
816
Bartlomiej Zolnierkiewicz438c4702007-10-20 00:32:31 +0200817 hwif->busproc = &sil_sata_busproc;
818 hwif->reset_poll = &sil_sata_reset_poll;
819 hwif->pre_reset = &sil_sata_pre_reset;
820 hwif->udma_filter = &sil_sata_udma_filter;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821
Alan Cox19c1ef52006-06-28 04:26:59 -0700822 if (first) {
823 printk(KERN_INFO "siimage: For full SATA support you should use the libata sata_sil module.\n");
824 first = 0;
825 }
Bartlomiej Zolnierkiewicz438c4702007-10-20 00:32:31 +0200826 } else
827 hwif->udma_filter = &sil_pata_udma_filter;
Bartlomiej Zolnierkiewicz328dcbb2007-07-20 01:11:54 +0200828
Bartlomiej Zolnierkiewiczbfa14b42008-02-02 19:56:31 +0100829 hwif->cable_detect = ata66_siimage;
830
Bartlomiej Zolnierkiewicz328dcbb2007-07-20 01:11:54 +0200831 if (hwif->dma_base == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833
Bartlomiej Zolnierkiewicz438c4702007-10-20 00:32:31 +0200834 if (sata)
Bartlomiej Zolnierkiewicz33c10022007-10-19 00:30:06 +0200835 hwif->host_flags |= IDE_HFLAG_NO_ATAPI_DMA;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 if (hwif->mmio) {
838 hwif->ide_dma_test_irq = &siimage_mmio_ide_dma_test_irq;
839 } else {
840 hwif->ide_dma_test_irq = & siimage_io_ide_dma_test_irq;
841 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842}
843
844#define DECLARE_SII_DEV(name_str) \
845 { \
846 .name = name_str, \
847 .init_chipset = init_chipset_siimage, \
848 .init_iops = init_iops_siimage, \
849 .init_hwif = init_hwif_siimage, \
Bartlomiej Zolnierkiewicz7cab14a2007-10-19 00:30:06 +0200850 .host_flags = IDE_HFLAG_BOOTABLE, \
Bartlomiej Zolnierkiewicz4099d142007-07-20 01:11:59 +0200851 .pio_mask = ATA_PIO4, \
Bartlomiej Zolnierkiewicz5f8b6c32007-10-19 00:30:07 +0200852 .mwdma_mask = ATA_MWDMA2, \
853 .udma_mask = ATA_UDMA6, \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 }
855
Bartlomiej Zolnierkiewicz85620432007-10-20 00:32:34 +0200856static const struct ide_port_info siimage_chipsets[] __devinitdata = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 /* 0 */ DECLARE_SII_DEV("SiI680"),
858 /* 1 */ DECLARE_SII_DEV("SiI3112 Serial ATA"),
859 /* 2 */ DECLARE_SII_DEV("Adaptec AAR-1210SA")
860};
861
862/**
863 * siimage_init_one - pci layer discovery entry
864 * @dev: PCI device
865 * @id: ident table entry
866 *
867 * Called by the PCI code when it finds an SI680 or SI3112 controller.
868 * We then use the IDE PCI generic helper to do most of the work.
869 */
870
871static int __devinit siimage_init_one(struct pci_dev *dev, const struct pci_device_id *id)
872{
873 return ide_setup_pci_device(dev, &siimage_chipsets[id->driver_data]);
874}
875
Bartlomiej Zolnierkiewicz9cbcc5e2007-10-16 22:29:56 +0200876static const struct pci_device_id siimage_pci_tbl[] = {
877 { PCI_VDEVICE(CMD, PCI_DEVICE_ID_SII_680), 0 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878#ifdef CONFIG_BLK_DEV_IDE_SATA
Bartlomiej Zolnierkiewicz9cbcc5e2007-10-16 22:29:56 +0200879 { PCI_VDEVICE(CMD, PCI_DEVICE_ID_SII_3112), 1 },
880 { PCI_VDEVICE(CMD, PCI_DEVICE_ID_SII_1210SA), 2 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881#endif
882 { 0, },
883};
884MODULE_DEVICE_TABLE(pci, siimage_pci_tbl);
885
886static struct pci_driver driver = {
887 .name = "SiI_IDE",
888 .id_table = siimage_pci_tbl,
889 .probe = siimage_init_one,
890};
891
Bartlomiej Zolnierkiewicz82ab1ee2007-01-27 13:46:56 +0100892static int __init siimage_ide_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893{
894 return ide_pci_register_driver(&driver);
895}
896
897module_init(siimage_ide_init);
898
899MODULE_AUTHOR("Andre Hedrick, Alan Cox");
900MODULE_DESCRIPTION("PCI driver module for SiI IDE");
901MODULE_LICENSE("GPL");