2 * linux/drivers/ide/pci/siimage.c Version 1.16 Jul 13 2007
4 * Copyright (C) 2001-2002 Andre Hedrick <andre@linux-ide.org>
5 * Copyright (C) 2003 Red Hat <alan@redhat.com>
6 * Copyright (C) 2007 MontaVista Software, Inc.
7 * Copyright (C) 2007 Bartlomiej Zolnierkiewicz
9 * May be copied or modified under the terms of the GNU General Public License
11 * Documentation for CMD680:
12 * http://gkernel.sourceforge.net/specs/sii/sii-0680a-v1.31.pdf.bz2
14 * Documentation for SiI 3112:
15 * http://gkernel.sourceforge.net/specs/sii/3112A_SiI-DS-0095-B2.pdf.bz2
17 * Errata and other documentation only available under NDA.
21 * If you are using Marvell SATA-IDE adapters with Maxtor drives
22 * ensure the system is set up for ATA100/UDMA5 not UDMA6.
24 * If you are using WD drives with SATA bridges you must set the
25 * drive to "Single". "Master" will hang
27 * If you have strange problems with nVidia chipset systems please
28 * see the SI support documentation and update your system BIOS
31 * The Dell DRAC4 has some interesting features including effectively hot
32 * unplugging/replugging the virtual CD interface when the DRAC is reset.
33 * This often causes drivers/ide/siimage to panic but is ok with the rather
34 * smarter code in libata.
41 #include <linux/types.h>
42 #include <linux/module.h>
43 #include <linux/pci.h>
44 #include <linux/delay.h>
45 #include <linux/hdreg.h>
46 #include <linux/ide.h>
47 #include <linux/init.h>
52 * pdev_is_sata - check if device is SATA
53 * @pdev: PCI device to check
55 * Returns true if this is a SATA controller
58 static int pdev_is_sata(struct pci_dev *pdev)
62 case PCI_DEVICE_ID_SII_3112:
63 case PCI_DEVICE_ID_SII_1210SA:
65 case PCI_DEVICE_ID_SII_680:
73 * is_sata - check if hwif is SATA
74 * @hwif: interface to check
76 * Returns true if this is a SATA controller
79 static inline int is_sata(ide_hwif_t *hwif)
81 return pdev_is_sata(hwif->pci_dev);
85 * siimage_selreg - return register base
89 * Turn a config register offset into the right address in either
90 * PCI space or MMIO space to access the control register in question
91 * Thankfully this is a configuration operation so isnt performance
95 static unsigned long siimage_selreg(ide_hwif_t *hwif, int r)
97 unsigned long base = (unsigned long)hwif->hwif_data;
100 base += (hwif->channel << 6);
102 base += (hwif->channel << 4);
107 * siimage_seldev - return register base
111 * Turn a config register offset into the right address in either
112 * PCI space or MMIO space to access the control register in question
113 * including accounting for the unit shift.
116 static inline unsigned long siimage_seldev(ide_drive_t *drive, int r)
118 ide_hwif_t *hwif = HWIF(drive);
119 unsigned long base = (unsigned long)hwif->hwif_data;
122 base += (hwif->channel << 6);
124 base += (hwif->channel << 4);
125 base |= drive->select.b.unit << drive->select.b.unit;
130 * sil_udma_filter - compute UDMA mask
133 * Compute the available UDMA speeds for the device on the interface.
135 * For the CMD680 this depends on the clocking mode (scsc), for the
136 * SI3112 SATA controller life is a bit simpler.
139 static u8 sil_udma_filter(ide_drive_t *drive)
141 ide_hwif_t *hwif = drive->hwif;
142 unsigned long base = (unsigned long) hwif->hwif_data;
143 u8 mask = 0, scsc = 0;
146 scsc = hwif->INB(base + 0x4A);
148 pci_read_config_byte(hwif->pci_dev, 0x8A, &scsc);
151 mask = strstr(drive->id->model, "Maxtor") ? 0x3f : 0x7f;
155 if ((scsc & 0x30) == 0x10) /* 133 */
157 else if ((scsc & 0x30) == 0x20) /* 2xPCI */
159 else if ((scsc & 0x30) == 0x00) /* 100 */
161 else /* Disabled ? */
168 * sil_tune_pio - tune a drive
169 * @drive: drive to tune
170 * @pio: the desired PIO mode
172 * Load the timing settings for this device mode into the
173 * controller. If we are in PIO mode 3 or 4 turn on IORDY
174 * monitoring (bit 9). The TF timing is bits 31:16
177 static void sil_tune_pio(ide_drive_t *drive, u8 pio)
179 const u16 tf_speed[] = { 0x328a, 0x2283, 0x1281, 0x10c3, 0x10c1 };
180 const u16 data_speed[] = { 0x328a, 0x2283, 0x1104, 0x10c3, 0x10c1 };
182 ide_hwif_t *hwif = HWIF(drive);
183 ide_drive_t *pair = &hwif->drives[drive->dn ^ 1];
186 unsigned long addr = siimage_seldev(drive, 0x04);
187 unsigned long tfaddr = siimage_selreg(hwif, 0x02);
188 unsigned long base = (unsigned long)hwif->hwif_data;
190 u8 addr_mask = hwif->channel ? (hwif->mmio ? 0xF4 : 0x84)
191 : (hwif->mmio ? 0xB4 : 0x80);
193 u8 unit = drive->select.b.unit;
195 /* trim *taskfile* PIO to the slowest of the master/slave */
197 u8 pair_pio = ide_get_best_pio_mode(pair, 255, 4);
199 if (pair_pio < tf_pio)
203 /* cheat for now and use the docs */
204 speedp = data_speed[pio];
205 speedt = tf_speed[tf_pio];
208 hwif->OUTW(speedp, addr);
209 hwif->OUTW(speedt, tfaddr);
210 /* Now set up IORDY */
212 hwif->OUTW(hwif->INW(tfaddr-2)|0x200, tfaddr-2);
214 hwif->OUTW(hwif->INW(tfaddr-2)&~0x200, tfaddr-2);
216 mode = hwif->INB(base + addr_mask);
217 mode &= ~(unit ? 0x30 : 0x03);
218 mode |= (unit ? 0x10 : 0x01);
219 hwif->OUTB(mode, base + addr_mask);
221 pci_write_config_word(hwif->pci_dev, addr, speedp);
222 pci_write_config_word(hwif->pci_dev, tfaddr, speedt);
223 pci_read_config_word(hwif->pci_dev, tfaddr-2, &speedp);
225 /* Set IORDY for mode 3 or 4 */
228 pci_write_config_word(hwif->pci_dev, tfaddr-2, speedp);
230 pci_read_config_byte(hwif->pci_dev, addr_mask, &mode);
231 mode &= ~(unit ? 0x30 : 0x03);
232 mode |= (unit ? 0x10 : 0x01);
233 pci_write_config_byte(hwif->pci_dev, addr_mask, mode);
237 static void sil_set_pio_mode(ide_drive_t *drive, const u8 pio)
239 sil_tune_pio(drive, pio);
240 (void)ide_config_drive_speed(drive, XFER_PIO_0 + pio);
244 * siimage_tune_chipset - set controller timings
245 * @drive: Drive to set up
246 * @speed: speed we want to achieve
248 * Tune the SII chipset for the desired mode.
251 static int siimage_tune_chipset(ide_drive_t *drive, const u8 speed)
253 u8 ultra6[] = { 0x0F, 0x0B, 0x07, 0x05, 0x03, 0x02, 0x01 };
254 u8 ultra5[] = { 0x0C, 0x07, 0x05, 0x04, 0x02, 0x01 };
255 u16 dma[] = { 0x2208, 0x10C2, 0x10C1 };
257 ide_hwif_t *hwif = HWIF(drive);
258 u16 ultra = 0, multi = 0;
259 u8 mode = 0, unit = drive->select.b.unit;
260 unsigned long base = (unsigned long)hwif->hwif_data;
261 u8 scsc = 0, addr_mask = ((hwif->channel) ?
262 ((hwif->mmio) ? 0xF4 : 0x84) :
263 ((hwif->mmio) ? 0xB4 : 0x80));
265 unsigned long ma = siimage_seldev(drive, 0x08);
266 unsigned long ua = siimage_seldev(drive, 0x0C);
269 scsc = hwif->INB(base + 0x4A);
270 mode = hwif->INB(base + addr_mask);
271 multi = hwif->INW(ma);
272 ultra = hwif->INW(ua);
274 pci_read_config_byte(hwif->pci_dev, 0x8A, &scsc);
275 pci_read_config_byte(hwif->pci_dev, addr_mask, &mode);
276 pci_read_config_word(hwif->pci_dev, ma, &multi);
277 pci_read_config_word(hwif->pci_dev, ua, &ultra);
280 mode &= ~((unit) ? 0x30 : 0x03);
282 scsc = ((scsc & 0x30) == 0x00) ? 0 : 1;
284 scsc = is_sata(hwif) ? 1 : scsc;
290 multi = dma[speed - XFER_MW_DMA_0];
291 mode |= ((unit) ? 0x20 : 0x02);
301 ultra |= ((scsc) ? (ultra6[speed - XFER_UDMA_0]) :
302 (ultra5[speed - XFER_UDMA_0]));
303 mode |= ((unit) ? 0x30 : 0x03);
310 hwif->OUTB(mode, base + addr_mask);
311 hwif->OUTW(multi, ma);
312 hwif->OUTW(ultra, ua);
314 pci_write_config_byte(hwif->pci_dev, addr_mask, mode);
315 pci_write_config_word(hwif->pci_dev, ma, multi);
316 pci_write_config_word(hwif->pci_dev, ua, ultra);
318 return (ide_config_drive_speed(drive, speed));
322 * siimage_configure_drive_for_dma - set up for DMA transfers
323 * @drive: drive we are going to set up
325 * Set up the drive for DMA, tune the controller and drive as
326 * required. If the drive isn't suitable for DMA or we hit
327 * other problems then we will drop down to PIO and set up
331 static int siimage_config_drive_for_dma (ide_drive_t *drive)
333 if (ide_tune_dma(drive))
336 if (ide_use_fast_pio(drive))
337 ide_set_max_pio(drive);
342 /* returns 1 if dma irq issued, 0 otherwise */
343 static int siimage_io_ide_dma_test_irq (ide_drive_t *drive)
345 ide_hwif_t *hwif = HWIF(drive);
347 unsigned long addr = siimage_selreg(hwif, 1);
349 /* return 1 if INTR asserted */
350 if ((hwif->INB(hwif->dma_status) & 4) == 4)
353 /* return 1 if Device INTR asserted */
354 pci_read_config_byte(hwif->pci_dev, addr, &dma_altstat);
356 return 0; //return 1;
361 * siimage_mmio_ide_dma_test_irq - check we caused an IRQ
362 * @drive: drive we are testing
364 * Check if we caused an IDE DMA interrupt. We may also have caused
365 * SATA status interrupts, if so we clean them up and continue.
368 static int siimage_mmio_ide_dma_test_irq (ide_drive_t *drive)
370 ide_hwif_t *hwif = HWIF(drive);
371 unsigned long base = (unsigned long)hwif->hwif_data;
372 unsigned long addr = siimage_selreg(hwif, 0x1);
374 if (SATA_ERROR_REG) {
375 u32 ext_stat = readl((void __iomem *)(base + 0x10));
377 if (ext_stat & ((hwif->channel) ? 0x40 : 0x10)) {
378 u32 sata_error = readl((void __iomem *)SATA_ERROR_REG);
379 writel(sata_error, (void __iomem *)SATA_ERROR_REG);
380 watchdog = (sata_error & 0x00680000) ? 1 : 0;
381 printk(KERN_WARNING "%s: sata_error = 0x%08x, "
382 "watchdog = %d, %s\n",
383 drive->name, sata_error, watchdog,
387 watchdog = (ext_stat & 0x8000) ? 1 : 0;
391 if (!(ext_stat & 0x0404) && !watchdog)
395 /* return 1 if INTR asserted */
396 if ((readb((void __iomem *)hwif->dma_status) & 0x04) == 0x04)
399 /* return 1 if Device INTR asserted */
400 if ((readb((void __iomem *)addr) & 8) == 8)
401 return 0; //return 1;
407 * siimage_busproc - bus isolation ioctl
408 * @drive: drive to isolate/restore
409 * @state: bus state to set
411 * Used by the SII3112 to handle bus isolation. As this is a
412 * SATA controller the work required is quite limited, we
413 * just have to clean up the statistics
416 static int siimage_busproc (ide_drive_t * drive, int state)
418 ide_hwif_t *hwif = HWIF(drive);
420 unsigned long addr = siimage_selreg(hwif, 0);
423 stat_config = readl((void __iomem *)addr);
425 pci_read_config_dword(hwif->pci_dev, addr, &stat_config);
429 hwif->drives[0].failures = 0;
430 hwif->drives[1].failures = 0;
433 hwif->drives[0].failures = hwif->drives[0].max_failures + 1;
434 hwif->drives[1].failures = hwif->drives[1].max_failures + 1;
436 case BUSSTATE_TRISTATE:
437 hwif->drives[0].failures = hwif->drives[0].max_failures + 1;
438 hwif->drives[1].failures = hwif->drives[1].max_failures + 1;
443 hwif->bus_state = state;
448 * siimage_reset_poll - wait for sata reset
449 * @drive: drive we are resetting
451 * Poll the SATA phy and see whether it has come back from the dead
455 static int siimage_reset_poll (ide_drive_t *drive)
457 if (SATA_STATUS_REG) {
458 ide_hwif_t *hwif = HWIF(drive);
460 /* SATA_STATUS_REG is valid only when in MMIO mode */
461 if ((readl((void __iomem *)SATA_STATUS_REG) & 0x03) != 0x03) {
462 printk(KERN_WARNING "%s: reset phy dead, status=0x%08x\n",
463 hwif->name, readl((void __iomem *)SATA_STATUS_REG));
464 HWGROUP(drive)->polling = 0;
474 * siimage_pre_reset - reset hook
475 * @drive: IDE device being reset
477 * For the SATA devices we need to handle recalibration/geometry
481 static void siimage_pre_reset (ide_drive_t *drive)
483 if (drive->media != ide_disk)
486 if (is_sata(HWIF(drive)))
488 drive->special.b.set_geometry = 0;
489 drive->special.b.recalibrate = 0;
494 * siimage_reset - reset a device on an siimage controller
495 * @drive: drive to reset
497 * Perform a controller level reset fo the device. For
498 * SATA we must also check the PHY.
501 static void siimage_reset (ide_drive_t *drive)
503 ide_hwif_t *hwif = HWIF(drive);
505 unsigned long addr = siimage_selreg(hwif, 0);
508 reset = hwif->INB(addr);
509 hwif->OUTB((reset|0x03), addr);
512 hwif->OUTB(reset, addr);
513 (void) hwif->INB(addr);
515 pci_read_config_byte(hwif->pci_dev, addr, &reset);
516 pci_write_config_byte(hwif->pci_dev, addr, reset|0x03);
518 pci_write_config_byte(hwif->pci_dev, addr, reset);
519 pci_read_config_byte(hwif->pci_dev, addr, &reset);
522 if (SATA_STATUS_REG) {
523 /* SATA_STATUS_REG is valid only when in MMIO mode */
524 u32 sata_stat = readl((void __iomem *)SATA_STATUS_REG);
525 printk(KERN_WARNING "%s: reset phy, status=0x%08x, %s\n",
526 hwif->name, sata_stat, __FUNCTION__);
528 printk(KERN_WARNING "%s: reset phy dead, status=0x%08x\n",
529 hwif->name, sata_stat);
537 * proc_reports_siimage - add siimage controller to proc
539 * @clocking: SCSC value
540 * @name: controller name
542 * Report the clocking mode of the controller and add it to
543 * the /proc interface layer
546 static void proc_reports_siimage (struct pci_dev *dev, u8 clocking, const char *name)
548 if (!pdev_is_sata(dev)) {
549 printk(KERN_INFO "%s: BASE CLOCK ", name);
552 case 0x03: printk("DISABLED!\n"); break;
553 case 0x02: printk("== 2X PCI\n"); break;
554 case 0x01: printk("== 133\n"); break;
555 case 0x00: printk("== 100\n"); break;
561 * setup_mmio_siimage - switch an SI controller into MMIO
562 * @dev: PCI device we are configuring
565 * Attempt to put the device into mmio mode. There are some slight
566 * complications here with certain systems where the mmio bar isnt
567 * mapped so we have to be sure we can fall back to I/O.
570 static unsigned int setup_mmio_siimage (struct pci_dev *dev, const char *name)
572 unsigned long bar5 = pci_resource_start(dev, 5);
573 unsigned long barsize = pci_resource_len(dev, 5);
575 void __iomem *ioaddr;
579 * Drop back to PIO if we can't map the mmio. Some
580 * systems seem to get terminally confused in the PCI
584 if(!request_mem_region(bar5, barsize, name))
586 printk(KERN_WARNING "siimage: IDE controller MMIO ports not available.\n");
590 ioaddr = ioremap(bar5, barsize);
594 release_mem_region(bar5, barsize);
599 pci_set_drvdata(dev, (void *) ioaddr);
601 if (pdev_is_sata(dev)) {
602 /* make sure IDE0/1 interrupts are not masked */
603 irq_mask = (1 << 22) | (1 << 23);
604 tmp = readl(ioaddr + 0x48);
605 if (tmp & irq_mask) {
607 writel(tmp, ioaddr + 0x48);
608 readl(ioaddr + 0x48); /* flush */
610 writel(0, ioaddr + 0x148);
611 writel(0, ioaddr + 0x1C8);
614 writeb(0, ioaddr + 0xB4);
615 writeb(0, ioaddr + 0xF4);
616 tmpbyte = readb(ioaddr + 0x4A);
618 switch(tmpbyte & 0x30) {
620 /* In 100 MHz clocking, try and switch to 133 */
621 writeb(tmpbyte|0x10, ioaddr + 0x4A);
624 /* On 133Mhz clocking */
627 /* On PCIx2 clocking */
630 /* Clocking is disabled */
631 /* 133 clock attempt to force it on */
632 writeb(tmpbyte & ~0x20, ioaddr + 0x4A);
636 writeb( 0x72, ioaddr + 0xA1);
637 writew( 0x328A, ioaddr + 0xA2);
638 writel(0x62DD62DD, ioaddr + 0xA4);
639 writel(0x43924392, ioaddr + 0xA8);
640 writel(0x40094009, ioaddr + 0xAC);
641 writeb( 0x72, ioaddr + 0xE1);
642 writew( 0x328A, ioaddr + 0xE2);
643 writel(0x62DD62DD, ioaddr + 0xE4);
644 writel(0x43924392, ioaddr + 0xE8);
645 writel(0x40094009, ioaddr + 0xEC);
647 if (pdev_is_sata(dev)) {
648 writel(0xFFFF0000, ioaddr + 0x108);
649 writel(0xFFFF0000, ioaddr + 0x188);
650 writel(0x00680000, ioaddr + 0x148);
651 writel(0x00680000, ioaddr + 0x1C8);
654 tmpbyte = readb(ioaddr + 0x4A);
656 proc_reports_siimage(dev, (tmpbyte>>4), name);
661 * init_chipset_siimage - set up an SI device
665 * Perform the initial PCI set up for this device. Attempt to switch
666 * to 133MHz clocking if the system isn't already set up to do it.
669 static unsigned int __devinit init_chipset_siimage(struct pci_dev *dev, const char *name)
675 pci_read_config_dword(dev, PCI_CLASS_REVISION, &class_rev);
677 pci_write_config_byte(dev, PCI_CACHE_LINE_SIZE, (class_rev) ? 1 : 255);
679 pci_read_config_byte(dev, 0x8A, &BA5_EN);
680 if ((BA5_EN & 0x01) || (pci_resource_start(dev, 5))) {
681 if (setup_mmio_siimage(dev, name)) {
686 pci_write_config_byte(dev, 0x80, 0x00);
687 pci_write_config_byte(dev, 0x84, 0x00);
688 pci_read_config_byte(dev, 0x8A, &tmpbyte);
689 switch(tmpbyte & 0x30) {
691 /* 133 clock attempt to force it on */
692 pci_write_config_byte(dev, 0x8A, tmpbyte|0x10);
694 /* if clocking is disabled */
695 /* 133 clock attempt to force it on */
696 pci_write_config_byte(dev, 0x8A, tmpbyte & ~0x20);
701 /* BIOS set PCI x2 clocking */
705 pci_read_config_byte(dev, 0x8A, &tmpbyte);
707 pci_write_config_byte(dev, 0xA1, 0x72);
708 pci_write_config_word(dev, 0xA2, 0x328A);
709 pci_write_config_dword(dev, 0xA4, 0x62DD62DD);
710 pci_write_config_dword(dev, 0xA8, 0x43924392);
711 pci_write_config_dword(dev, 0xAC, 0x40094009);
712 pci_write_config_byte(dev, 0xB1, 0x72);
713 pci_write_config_word(dev, 0xB2, 0x328A);
714 pci_write_config_dword(dev, 0xB4, 0x62DD62DD);
715 pci_write_config_dword(dev, 0xB8, 0x43924392);
716 pci_write_config_dword(dev, 0xBC, 0x40094009);
718 proc_reports_siimage(dev, (tmpbyte>>4), name);
723 * init_mmio_iops_siimage - set up the iops for MMIO
724 * @hwif: interface to set up
726 * The basic setup here is fairly simple, we can use standard MMIO
727 * operations. However we do have to set the taskfile register offsets
728 * by hand as there isnt a standard defined layout for them this
731 * The hardware supports buffered taskfiles and also some rather nice
732 * extended PRD tables. For better SI3112 support use the libata driver
735 static void __devinit init_mmio_iops_siimage(ide_hwif_t *hwif)
737 struct pci_dev *dev = hwif->pci_dev;
738 void *addr = pci_get_drvdata(dev);
739 u8 ch = hwif->channel;
744 * Fill in the basic HWIF bits
747 default_hwif_mmiops(hwif);
748 hwif->hwif_data = addr;
751 * Now set up the hw. We have to do this ourselves as
752 * the MMIO layout isnt the same as the standard port
756 memset(&hw, 0, sizeof(hw_regs_t));
758 base = (unsigned long)addr;
765 * The buffered task file doesn't have status/control
766 * so we can't currently use it sanely since we want to
769 hw.io_ports[IDE_DATA_OFFSET] = base;
770 hw.io_ports[IDE_ERROR_OFFSET] = base + 1;
771 hw.io_ports[IDE_NSECTOR_OFFSET] = base + 2;
772 hw.io_ports[IDE_SECTOR_OFFSET] = base + 3;
773 hw.io_ports[IDE_LCYL_OFFSET] = base + 4;
774 hw.io_ports[IDE_HCYL_OFFSET] = base + 5;
775 hw.io_ports[IDE_SELECT_OFFSET] = base + 6;
776 hw.io_ports[IDE_STATUS_OFFSET] = base + 7;
777 hw.io_ports[IDE_CONTROL_OFFSET] = base + 10;
779 hw.io_ports[IDE_IRQ_OFFSET] = 0;
781 if (pdev_is_sata(dev)) {
782 base = (unsigned long)addr;
785 hwif->sata_scr[SATA_STATUS_OFFSET] = base + 0x104;
786 hwif->sata_scr[SATA_ERROR_OFFSET] = base + 0x108;
787 hwif->sata_scr[SATA_CONTROL_OFFSET] = base + 0x100;
788 hwif->sata_misc[SATA_MISC_OFFSET] = base + 0x140;
789 hwif->sata_misc[SATA_PHY_OFFSET] = base + 0x144;
790 hwif->sata_misc[SATA_IEN_OFFSET] = base + 0x148;
793 hw.irq = hwif->pci_dev->irq;
795 memcpy(&hwif->hw, &hw, sizeof(hw));
796 memcpy(hwif->io_ports, hwif->hw.io_ports, sizeof(hwif->hw.io_ports));
800 base = (unsigned long) addr;
802 hwif->dma_base = base + (ch ? 0x08 : 0x00);
807 static int is_dev_seagate_sata(ide_drive_t *drive)
809 const char *s = &drive->id->model[0];
815 len = strnlen(s, sizeof(drive->id->model));
817 if ((len > 4) && (!memcmp(s, "ST", 2))) {
818 if ((!memcmp(s + len - 2, "AS", 2)) ||
819 (!memcmp(s + len - 3, "ASL", 3))) {
820 printk(KERN_INFO "%s: applying pessimistic Seagate "
821 "errata fix\n", drive->name);
829 * siimage_fixup - post probe fixups
830 * @hwif: interface to fix up
832 * Called after drive probe we use this to decide whether the
833 * Seagate fixup must be applied. This used to be in init_iops but
834 * that can occur before we know what drives are present.
837 static void __devinit siimage_fixup(ide_hwif_t *hwif)
839 /* Try and raise the rqsize */
840 if (!is_sata(hwif) || !is_dev_seagate_sata(&hwif->drives[0]))
845 * init_iops_siimage - set up iops
846 * @hwif: interface to set up
848 * Do the basic setup for the SIIMAGE hardware interface
849 * and then do the MMIO setup if we can. This is the first
850 * look in we get for setting up the hwif so that we
851 * can get the iops right before using them.
854 static void __devinit init_iops_siimage(ide_hwif_t *hwif)
856 struct pci_dev *dev = hwif->pci_dev;
859 pci_read_config_dword(dev, PCI_CLASS_REVISION, &class_rev);
862 hwif->hwif_data = NULL;
864 /* Pessimal until we finish probing */
867 if (pci_get_drvdata(dev) == NULL)
869 init_mmio_iops_siimage(hwif);
873 * ata66_siimage - check for 80 pin cable
874 * @hwif: interface to check
876 * Check for the presence of an ATA66 capable cable on the
880 static u8 __devinit ata66_siimage(ide_hwif_t *hwif)
882 unsigned long addr = siimage_selreg(hwif, 0);
885 if (pci_get_drvdata(hwif->pci_dev) == NULL)
886 pci_read_config_byte(hwif->pci_dev, addr, &ata66);
888 ata66 = hwif->INB(addr);
890 return (ata66 & 0x01) ? ATA_CBL_PATA80 : ATA_CBL_PATA40;
894 * init_hwif_siimage - set up hwif structs
895 * @hwif: interface to set up
897 * We do the basic set up of the interface structure. The SIIMAGE
898 * requires several custom handlers so we override the default
899 * ide DMA handlers appropriately
902 static void __devinit init_hwif_siimage(ide_hwif_t *hwif)
906 hwif->resetproc = &siimage_reset;
907 hwif->speedproc = &siimage_tune_chipset;
908 hwif->set_pio_mode = &sil_set_pio_mode;
909 hwif->reset_poll = &siimage_reset_poll;
910 hwif->pre_reset = &siimage_pre_reset;
911 hwif->udma_filter = &sil_udma_filter;
914 static int first = 1;
916 hwif->busproc = &siimage_busproc;
919 printk(KERN_INFO "siimage: For full SATA support you should use the libata sata_sil module.\n");
924 hwif->drives[0].autotune = hwif->drives[1].autotune = 1;
926 if (hwif->dma_base == 0)
929 hwif->ultra_mask = 0x7f;
930 hwif->mwdma_mask = 0x07;
935 hwif->ide_dma_check = &siimage_config_drive_for_dma;
937 if (hwif->cbl != ATA_CBL_PATA40_SHORT)
938 hwif->cbl = ata66_siimage(hwif);
941 hwif->ide_dma_test_irq = &siimage_mmio_ide_dma_test_irq;
943 hwif->ide_dma_test_irq = & siimage_io_ide_dma_test_irq;
947 * The BIOS often doesn't set up DMA on this controller
948 * so we always do it.
952 hwif->drives[0].autodma = hwif->autodma;
953 hwif->drives[1].autodma = hwif->autodma;
956 #define DECLARE_SII_DEV(name_str) \
959 .init_chipset = init_chipset_siimage, \
960 .init_iops = init_iops_siimage, \
961 .init_hwif = init_hwif_siimage, \
962 .fixup = siimage_fixup, \
963 .autodma = AUTODMA, \
964 .bootable = ON_BOARD, \
965 .pio_mask = ATA_PIO4, \
968 static ide_pci_device_t siimage_chipsets[] __devinitdata = {
969 /* 0 */ DECLARE_SII_DEV("SiI680"),
970 /* 1 */ DECLARE_SII_DEV("SiI3112 Serial ATA"),
971 /* 2 */ DECLARE_SII_DEV("Adaptec AAR-1210SA")
975 * siimage_init_one - pci layer discovery entry
977 * @id: ident table entry
979 * Called by the PCI code when it finds an SI680 or SI3112 controller.
980 * We then use the IDE PCI generic helper to do most of the work.
983 static int __devinit siimage_init_one(struct pci_dev *dev, const struct pci_device_id *id)
985 return ide_setup_pci_device(dev, &siimage_chipsets[id->driver_data]);
988 static struct pci_device_id siimage_pci_tbl[] = {
989 { PCI_VENDOR_ID_CMD, PCI_DEVICE_ID_SII_680, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
990 #ifdef CONFIG_BLK_DEV_IDE_SATA
991 { PCI_VENDOR_ID_CMD, PCI_DEVICE_ID_SII_3112, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 1},
992 { PCI_VENDOR_ID_CMD, PCI_DEVICE_ID_SII_1210SA, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 2},
996 MODULE_DEVICE_TABLE(pci, siimage_pci_tbl);
998 static struct pci_driver driver = {
1000 .id_table = siimage_pci_tbl,
1001 .probe = siimage_init_one,
1004 static int __init siimage_ide_init(void)
1006 return ide_pci_register_driver(&driver);
1009 module_init(siimage_ide_init);
1011 MODULE_AUTHOR("Andre Hedrick, Alan Cox");
1012 MODULE_DESCRIPTION("PCI driver module for SiI IDE");
1013 MODULE_LICENSE("GPL");