| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 |  * Copyright (C) 2001-2002	Andre Hedrick <andre@linux-ide.org> | 
 | 3 |  * Copyright (C) 2003		Red Hat <alan@redhat.com> | 
| Sergei Shtylyov | 075cb65 | 2007-02-17 02:40:22 +0100 | [diff] [blame] | 4 |  * Copyright (C) 2007		MontaVista Software, Inc. | 
| Bartlomiej Zolnierkiewicz | 328dcbb | 2007-07-20 01:11:54 +0200 | [diff] [blame] | 5 |  * Copyright (C) 2007		Bartlomiej Zolnierkiewicz | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6 |  * | 
 | 7 |  *  May be copied or modified under the terms of the GNU General Public License | 
 | 8 |  * | 
| Jeff Garzik | bf4c796 | 2005-11-18 22:55:47 +0100 | [diff] [blame] | 9 |  *  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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 16 |  * | 
 | 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. Day | 3a4fa0a | 2007-10-19 23:10:43 +0200 | [diff] [blame] | 27 |  *	if necessary | 
| Alan Cox | 8693d3e | 2007-03-03 17:48:54 +0100 | [diff] [blame] | 28 |  * | 
 | 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 Zolnierkiewicz | 328dcbb | 2007-07-20 01:11:54 +0200 | [diff] [blame] | 33 |  * | 
 | 34 |  * TODO: | 
 | 35 |  * - IORDY fixes | 
 | 36 |  * - VDMA support | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 |  */ | 
 | 38 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 | #include <linux/types.h> | 
 | 40 | #include <linux/module.h> | 
 | 41 | #include <linux/pci.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 42 | #include <linux/hdreg.h> | 
 | 43 | #include <linux/ide.h> | 
 | 44 | #include <linux/init.h> | 
 | 45 |  | 
 | 46 | #include <asm/io.h> | 
 | 47 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 48 | /** | 
 | 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 |   | 
 | 55 | static int pdev_is_sata(struct pci_dev *pdev) | 
 | 56 | { | 
| Bartlomiej Zolnierkiewicz | 438c470 | 2007-10-20 00:32:31 +0200 | [diff] [blame] | 57 | #ifdef CONFIG_BLK_DEV_IDE_SATA | 
 | 58 | 	switch(pdev->device) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 59 | 		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 Zolnierkiewicz | 438c470 | 2007-10-20 00:32:31 +0200 | [diff] [blame] | 66 | #endif | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 67 | 	return 0; | 
 | 68 | } | 
| Bartlomiej Zolnierkiewicz | 438c470 | 2007-10-20 00:32:31 +0200 | [diff] [blame] | 69 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 70 | /** | 
 | 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 |   | 
 | 77 | static inline int is_sata(ide_hwif_t *hwif) | 
 | 78 | { | 
| Bartlomiej Zolnierkiewicz | 3650165 | 2008-02-01 23:09:31 +0100 | [diff] [blame] | 79 | 	return pdev_is_sata(to_pci_dev(hwif->dev)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 80 | } | 
 | 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 |   | 
 | 93 | static 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 |   | 
 | 114 | static 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 Zolnierkiewicz | 2d5eaa6 | 2007-05-10 00:01:08 +0200 | [diff] [blame] | 128 |  *	sil_udma_filter		-	compute UDMA mask | 
 | 129 |  *	@drive: IDE device | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 130 |  * | 
| Bartlomiej Zolnierkiewicz | 2d5eaa6 | 2007-05-10 00:01:08 +0200 | [diff] [blame] | 131 |  *	Compute the available UDMA speeds for the device on the interface. | 
 | 132 |  * | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 133 |  *	For the CMD680 this depends on the clocking mode (scsc), for the | 
| Bartlomiej Zolnierkiewicz | 2d5eaa6 | 2007-05-10 00:01:08 +0200 | [diff] [blame] | 134 |  *	SI3112 SATA controller life is a bit simpler. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 135 |  */ | 
| Bartlomiej Zolnierkiewicz | 2d5eaa6 | 2007-05-10 00:01:08 +0200 | [diff] [blame] | 136 |  | 
| Bartlomiej Zolnierkiewicz | 438c470 | 2007-10-20 00:32:31 +0200 | [diff] [blame] | 137 | static u8 sil_pata_udma_filter(ide_drive_t *drive) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 138 | { | 
| Bartlomiej Zolnierkiewicz | 2d5eaa6 | 2007-05-10 00:01:08 +0200 | [diff] [blame] | 139 | 	ide_hwif_t *hwif = drive->hwif; | 
| Bartlomiej Zolnierkiewicz | 3650165 | 2008-02-01 23:09:31 +0100 | [diff] [blame] | 140 | 	struct pci_dev *dev = to_pci_dev(hwif->dev); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 141 | 	unsigned long base = (unsigned long) hwif->hwif_data; | 
| Bartlomiej Zolnierkiewicz | 2d5eaa6 | 2007-05-10 00:01:08 +0200 | [diff] [blame] | 142 | 	u8 mask = 0, scsc = 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 143 |  | 
 | 144 | 	if (hwif->mmio) | 
 | 145 | 		scsc = hwif->INB(base + 0x4A); | 
 | 146 | 	else | 
| Bartlomiej Zolnierkiewicz | 3650165 | 2008-02-01 23:09:31 +0100 | [diff] [blame] | 147 | 		pci_read_config_byte(dev, 0x8A, &scsc); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 148 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 149 | 	if ((scsc & 0x30) == 0x10)	/* 133 */ | 
| Bartlomiej Zolnierkiewicz | 438c470 | 2007-10-20 00:32:31 +0200 | [diff] [blame] | 150 | 		mask = ATA_UDMA6; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 151 | 	else if ((scsc & 0x30) == 0x20)	/* 2xPCI */ | 
| Bartlomiej Zolnierkiewicz | 438c470 | 2007-10-20 00:32:31 +0200 | [diff] [blame] | 152 | 		mask = ATA_UDMA6; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 153 | 	else if ((scsc & 0x30) == 0x00)	/* 100 */ | 
| Bartlomiej Zolnierkiewicz | 438c470 | 2007-10-20 00:32:31 +0200 | [diff] [blame] | 154 | 		mask = ATA_UDMA5; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 155 | 	else 	/* Disabled ? */ | 
 | 156 | 		BUG(); | 
| Bartlomiej Zolnierkiewicz | 438c470 | 2007-10-20 00:32:31 +0200 | [diff] [blame] | 157 |  | 
| Bartlomiej Zolnierkiewicz | 2d5eaa6 | 2007-05-10 00:01:08 +0200 | [diff] [blame] | 158 | 	return mask; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 159 | } | 
 | 160 |  | 
| Bartlomiej Zolnierkiewicz | 438c470 | 2007-10-20 00:32:31 +0200 | [diff] [blame] | 161 | static u8 sil_sata_udma_filter(ide_drive_t *drive) | 
 | 162 | { | 
 | 163 | 	return strstr(drive->id->model, "Maxtor") ? ATA_UDMA5 : ATA_UDMA6; | 
 | 164 | } | 
 | 165 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 166 | /** | 
| Bartlomiej Zolnierkiewicz | 88b2b32 | 2007-10-13 17:47:51 +0200 | [diff] [blame] | 167 |  *	sil_set_pio_mode	-	set host controller for PIO mode | 
 | 168 |  *	@drive: drive | 
 | 169 |  *	@pio: PIO mode number | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 170 |  * | 
 | 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 Zolnierkiewicz | 328dcbb | 2007-07-20 01:11:54 +0200 | [diff] [blame] | 175 |  | 
| Bartlomiej Zolnierkiewicz | 88b2b32 | 2007-10-13 17:47:51 +0200 | [diff] [blame] | 176 | static void sil_set_pio_mode(ide_drive_t *drive, u8 pio) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 177 | { | 
| Bartlomiej Zolnierkiewicz | 328dcbb | 2007-07-20 01:11:54 +0200 | [diff] [blame] | 178 | 	const u16 tf_speed[]	= { 0x328a, 0x2283, 0x1281, 0x10c3, 0x10c1 }; | 
 | 179 | 	const u16 data_speed[]	= { 0x328a, 0x2283, 0x1104, 0x10c3, 0x10c1 }; | 
 | 180 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 181 | 	ide_hwif_t *hwif	= HWIF(drive); | 
| Benjamin Herrenschmidt | a87a87c | 2007-10-19 00:30:05 +0200 | [diff] [blame] | 182 | 	ide_drive_t *pair	= ide_get_paired_drive(drive); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 183 | 	u32 speedt		= 0; | 
 | 184 | 	u16 speedp		= 0; | 
 | 185 | 	unsigned long addr	= siimage_seldev(drive, 0x04); | 
 | 186 | 	unsigned long tfaddr	= siimage_selreg(hwif, 0x02); | 
| Bartlomiej Zolnierkiewicz | ffe5415 | 2007-10-11 23:54:01 +0200 | [diff] [blame] | 187 | 	unsigned long base	= (unsigned long)hwif->hwif_data; | 
| Bartlomiej Zolnierkiewicz | 328dcbb | 2007-07-20 01:11:54 +0200 | [diff] [blame] | 188 | 	u8 tf_pio		= pio; | 
| Bartlomiej Zolnierkiewicz | ffe5415 | 2007-10-11 23:54:01 +0200 | [diff] [blame] | 189 | 	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 Zolnierkiewicz | 328dcbb | 2007-07-20 01:11:54 +0200 | [diff] [blame] | 193 |  | 
 | 194 | 	/* trim *taskfile* PIO to the slowest of the master/slave */ | 
 | 195 | 	if (pair->present) { | 
| Bartlomiej Zolnierkiewicz | 2134758 | 2007-07-20 01:11:58 +0200 | [diff] [blame] | 196 | 		u8 pair_pio = ide_get_best_pio_mode(pair, 255, 4); | 
| Bartlomiej Zolnierkiewicz | 328dcbb | 2007-07-20 01:11:54 +0200 | [diff] [blame] | 197 |  | 
 | 198 | 		if (pair_pio < tf_pio) | 
 | 199 | 			tf_pio = pair_pio; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 200 | 	} | 
| Sergei Shtylyov | 075cb65 | 2007-02-17 02:40:22 +0100 | [diff] [blame] | 201 |  | 
| Bartlomiej Zolnierkiewicz | 328dcbb | 2007-07-20 01:11:54 +0200 | [diff] [blame] | 202 | 	/* cheat for now and use the docs */ | 
 | 203 | 	speedp = data_speed[pio]; | 
 | 204 | 	speedt = tf_speed[tf_pio]; | 
 | 205 |  | 
| Sergei Shtylyov | 075cb65 | 2007-02-17 02:40:22 +0100 | [diff] [blame] | 206 | 	if (hwif->mmio) { | 
 | 207 | 		hwif->OUTW(speedp, addr); | 
 | 208 | 		hwif->OUTW(speedt, tfaddr); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 209 | 		/* Now set up IORDY */ | 
| Bartlomiej Zolnierkiewicz | 328dcbb | 2007-07-20 01:11:54 +0200 | [diff] [blame] | 210 | 		if (pio > 2) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 211 | 			hwif->OUTW(hwif->INW(tfaddr-2)|0x200, tfaddr-2); | 
 | 212 | 		else | 
 | 213 | 			hwif->OUTW(hwif->INW(tfaddr-2)&~0x200, tfaddr-2); | 
| Bartlomiej Zolnierkiewicz | ffe5415 | 2007-10-11 23:54:01 +0200 | [diff] [blame] | 214 |  | 
 | 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 Shtylyov | 075cb65 | 2007-02-17 02:40:22 +0100 | [diff] [blame] | 219 | 	} else { | 
| Bartlomiej Zolnierkiewicz | 3650165 | 2008-02-01 23:09:31 +0100 | [diff] [blame] | 220 | 		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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 225 | 		speedp &= ~0x200; | 
 | 226 | 		/* Set IORDY for mode 3 or 4 */ | 
| Bartlomiej Zolnierkiewicz | 328dcbb | 2007-07-20 01:11:54 +0200 | [diff] [blame] | 227 | 		if (pio > 2) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 228 | 			speedp |= 0x200; | 
| Bartlomiej Zolnierkiewicz | 3650165 | 2008-02-01 23:09:31 +0100 | [diff] [blame] | 229 | 		pci_write_config_word(dev, tfaddr - 2, speedp); | 
| Bartlomiej Zolnierkiewicz | ffe5415 | 2007-10-11 23:54:01 +0200 | [diff] [blame] | 230 |  | 
| Bartlomiej Zolnierkiewicz | 3650165 | 2008-02-01 23:09:31 +0100 | [diff] [blame] | 231 | 		pci_read_config_byte(dev, addr_mask, &mode); | 
| Bartlomiej Zolnierkiewicz | ffe5415 | 2007-10-11 23:54:01 +0200 | [diff] [blame] | 232 | 		mode &= ~(unit ? 0x30 : 0x03); | 
 | 233 | 		mode |= (unit ? 0x10 : 0x01); | 
| Bartlomiej Zolnierkiewicz | 3650165 | 2008-02-01 23:09:31 +0100 | [diff] [blame] | 234 | 		pci_write_config_byte(dev, addr_mask, mode); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 235 | 	} | 
 | 236 | } | 
 | 237 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 238 | /** | 
| Bartlomiej Zolnierkiewicz | 88b2b32 | 2007-10-13 17:47:51 +0200 | [diff] [blame] | 239 |  *	sil_set_dma_mode	-	set host controller for DMA mode | 
 | 240 |  *	@drive: drive | 
 | 241 |  *	@speed: DMA mode | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 242 |  * | 
| Bartlomiej Zolnierkiewicz | 88b2b32 | 2007-10-13 17:47:51 +0200 | [diff] [blame] | 243 |  *	Tune the SiI chipset for the desired DMA mode. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 244 |  */ | 
| Bartlomiej Zolnierkiewicz | f212ff2 | 2007-10-11 23:53:59 +0200 | [diff] [blame] | 245 |  | 
| Bartlomiej Zolnierkiewicz | 88b2b32 | 2007-10-13 17:47:51 +0200 | [diff] [blame] | 246 | static void sil_set_dma_mode(ide_drive_t *drive, const u8 speed) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 247 | { | 
 | 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 Zolnierkiewicz | 3650165 | 2008-02-01 23:09:31 +0100 | [diff] [blame] | 253 | 	struct pci_dev *dev	= to_pci_dev(hwif->dev); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 254 | 	u16 ultra = 0, multi	= 0; | 
 | 255 | 	u8 mode = 0, unit	= drive->select.b.unit; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 256 | 	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 Zolnierkiewicz | 3650165 | 2008-02-01 23:09:31 +0100 | [diff] [blame] | 270 | 		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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 274 | 	} | 
 | 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 Zolnierkiewicz | 4db90a1 | 2008-01-25 22:17:18 +0100 | [diff] [blame] | 282 | 	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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 290 | 	} | 
 | 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 Zolnierkiewicz | 3650165 | 2008-02-01 23:09:31 +0100 | [diff] [blame] | 297 | 		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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 300 | 	} | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 301 | } | 
 | 302 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 303 | /* returns 1 if dma irq issued, 0 otherwise */ | 
 | 304 | static int siimage_io_ide_dma_test_irq (ide_drive_t *drive) | 
 | 305 | { | 
 | 306 | 	ide_hwif_t *hwif	= HWIF(drive); | 
| Bartlomiej Zolnierkiewicz | 3650165 | 2008-02-01 23:09:31 +0100 | [diff] [blame] | 307 | 	struct pci_dev *dev	= to_pci_dev(hwif->dev); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 308 | 	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 Zolnierkiewicz | 3650165 | 2008-02-01 23:09:31 +0100 | [diff] [blame] | 316 | 	pci_read_config_byte(dev, addr, &dma_altstat); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 317 | 	if (dma_altstat & 8) | 
 | 318 | 		return 0;	//return 1; | 
 | 319 | 	return 0; | 
 | 320 | } | 
 | 321 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 322 | /** | 
 | 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 |   | 
 | 330 | static int siimage_mmio_ide_dma_test_irq (ide_drive_t *drive) | 
 | 331 | { | 
 | 332 | 	ide_hwif_t *hwif	= HWIF(drive); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 333 | 	unsigned long addr	= siimage_selreg(hwif, 0x1); | 
| Bartlomiej Zolnierkiewicz | 835457d | 2008-02-02 19:56:45 +0100 | [diff] [blame] | 334 | 	void __iomem *sata_error_addr | 
 | 335 | 		= (void __iomem *)hwif->sata_scr[SATA_ERROR_OFFSET]; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 336 |  | 
| Bartlomiej Zolnierkiewicz | 835457d | 2008-02-02 19:56:45 +0100 | [diff] [blame] | 337 | 	if (sata_error_addr) { | 
| Bartlomiej Zolnierkiewicz | 438c470 | 2007-10-20 00:32:31 +0200 | [diff] [blame] | 338 | 		unsigned long base = (unsigned long)hwif->hwif_data; | 
| Bartlomiej Zolnierkiewicz | 0ecdca2 | 2007-02-17 02:40:25 +0100 | [diff] [blame] | 339 | 		u32 ext_stat = readl((void __iomem *)(base + 0x10)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 340 | 		u8 watchdog = 0; | 
| Bartlomiej Zolnierkiewicz | 835457d | 2008-02-02 19:56:45 +0100 | [diff] [blame] | 341 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 342 | 		if (ext_stat & ((hwif->channel) ? 0x40 : 0x10)) { | 
| Bartlomiej Zolnierkiewicz | 835457d | 2008-02-02 19:56:45 +0100 | [diff] [blame] | 343 | 			u32 sata_error = readl(sata_error_addr); | 
 | 344 |  | 
 | 345 | 			writel(sata_error, sata_error_addr); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 346 | 			watchdog = (sata_error & 0x00680000) ? 1 : 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 347 | 			printk(KERN_WARNING "%s: sata_error = 0x%08x, " | 
 | 348 | 				"watchdog = %d, %s\n", | 
 | 349 | 				drive->name, sata_error, watchdog, | 
 | 350 | 				__FUNCTION__); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 351 |  | 
 | 352 | 		} else { | 
 | 353 | 			watchdog = (ext_stat & 0x8000) ? 1 : 0; | 
 | 354 | 		} | 
 | 355 | 		ext_stat >>= 16; | 
 | 356 |  | 
 | 357 | 		if (!(ext_stat & 0x0404) && !watchdog) | 
 | 358 | 			return 0; | 
 | 359 | 	} | 
 | 360 |  | 
 | 361 | 	/* return 1 if INTR asserted */ | 
| Bartlomiej Zolnierkiewicz | 0ecdca2 | 2007-02-17 02:40:25 +0100 | [diff] [blame] | 362 | 	if ((readb((void __iomem *)hwif->dma_status) & 0x04) == 0x04) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 363 | 		return 1; | 
 | 364 |  | 
 | 365 | 	/* return 1 if Device INTR asserted */ | 
| Bartlomiej Zolnierkiewicz | 0ecdca2 | 2007-02-17 02:40:25 +0100 | [diff] [blame] | 366 | 	if ((readb((void __iomem *)addr) & 8) == 8) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 367 | 		return 0;	//return 1; | 
 | 368 |  | 
 | 369 | 	return 0; | 
 | 370 | } | 
 | 371 |  | 
 | 372 | /** | 
| Bartlomiej Zolnierkiewicz | 438c470 | 2007-10-20 00:32:31 +0200 | [diff] [blame] | 373 |  *	sil_sata_reset_poll	-	wait for SATA reset | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 374 |  *	@drive: drive we are resetting | 
 | 375 |  * | 
 | 376 |  *	Poll the SATA phy and see whether it has come back from the dead | 
 | 377 |  *	yet. | 
 | 378 |  */ | 
| Bartlomiej Zolnierkiewicz | 438c470 | 2007-10-20 00:32:31 +0200 | [diff] [blame] | 379 |  | 
 | 380 | static int sil_sata_reset_poll(ide_drive_t *drive) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 381 | { | 
| Bartlomiej Zolnierkiewicz | 835457d | 2008-02-02 19:56:45 +0100 | [diff] [blame] | 382 | 	ide_hwif_t *hwif = drive->hwif; | 
 | 383 | 	void __iomem *sata_status_addr | 
 | 384 | 		= (void __iomem *)hwif->sata_scr[SATA_STATUS_OFFSET]; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 385 |  | 
| Bartlomiej Zolnierkiewicz | 835457d | 2008-02-02 19:56:45 +0100 | [diff] [blame] | 386 | 	if (sata_status_addr) { | 
 | 387 | 		/* SATA Status is available only when in MMIO mode */ | 
 | 388 | 		u32 sata_stat = readl(sata_status_addr); | 
 | 389 |  | 
 | 390 | 		if ((sata_stat & 0x03) != 0x03) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 391 | 			printk(KERN_WARNING "%s: reset phy dead, status=0x%08x\n", | 
| Bartlomiej Zolnierkiewicz | 835457d | 2008-02-02 19:56:45 +0100 | [diff] [blame] | 392 | 					    hwif->name, sata_stat); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 393 | 			HWGROUP(drive)->polling = 0; | 
 | 394 | 			return ide_started; | 
 | 395 | 		} | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 396 | 	} | 
| Bartlomiej Zolnierkiewicz | 438c470 | 2007-10-20 00:32:31 +0200 | [diff] [blame] | 397 |  | 
 | 398 | 	return 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 399 | } | 
 | 400 |  | 
 | 401 | /** | 
| Bartlomiej Zolnierkiewicz | 438c470 | 2007-10-20 00:32:31 +0200 | [diff] [blame] | 402 |  *	sil_sata_pre_reset	-	reset hook | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 403 |  *	@drive: IDE device being reset | 
 | 404 |  * | 
 | 405 |  *	For the SATA devices we need to handle recalibration/geometry | 
 | 406 |  *	differently | 
 | 407 |  */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 408 |  | 
| Bartlomiej Zolnierkiewicz | 438c470 | 2007-10-20 00:32:31 +0200 | [diff] [blame] | 409 | static void sil_sata_pre_reset(ide_drive_t *drive) | 
 | 410 | { | 
 | 411 | 	if (drive->media == ide_disk) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 412 | 		drive->special.b.set_geometry = 0; | 
 | 413 | 		drive->special.b.recalibrate = 0; | 
 | 414 | 	} | 
 | 415 | } | 
 | 416 |  | 
 | 417 | /** | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 418 |  *	proc_reports_siimage		-	add siimage controller to proc | 
 | 419 |  *	@dev: PCI device | 
 | 420 |  *	@clocking: SCSC value | 
 | 421 |  *	@name: controller name | 
 | 422 |  * | 
 | 423 |  *	Report the clocking mode of the controller and add it to | 
 | 424 |  *	the /proc interface layer | 
 | 425 |  */ | 
 | 426 |   | 
 | 427 | static void proc_reports_siimage (struct pci_dev *dev, u8 clocking, const char *name) | 
 | 428 | { | 
 | 429 | 	if (!pdev_is_sata(dev)) { | 
 | 430 | 		printk(KERN_INFO "%s: BASE CLOCK ", name); | 
 | 431 | 		clocking &= 0x03; | 
 | 432 | 		switch (clocking) { | 
 | 433 | 			case 0x03: printk("DISABLED!\n"); break; | 
 | 434 | 			case 0x02: printk("== 2X PCI\n"); break; | 
 | 435 | 			case 0x01: printk("== 133\n"); break; | 
 | 436 | 			case 0x00: printk("== 100\n"); break; | 
 | 437 | 		} | 
 | 438 | 	} | 
 | 439 | } | 
 | 440 |  | 
 | 441 | /** | 
 | 442 |  *	setup_mmio_siimage	-	switch an SI controller into MMIO | 
 | 443 |  *	@dev: PCI device we are configuring | 
 | 444 |  *	@name: device name | 
 | 445 |  * | 
 | 446 |  *	Attempt to put the device into mmio mode. There are some slight | 
 | 447 |  *	complications here with certain systems where the mmio bar isnt | 
 | 448 |  *	mapped so we have to be sure we can fall back to I/O. | 
 | 449 |  */ | 
 | 450 |   | 
 | 451 | static unsigned int setup_mmio_siimage (struct pci_dev *dev, const char *name) | 
 | 452 | { | 
| Sergei Shtylyov | c976816 | 2008-04-07 23:30:10 +0200 | [diff] [blame] | 453 | 	resource_size_t bar5	= pci_resource_start(dev, 5); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 454 | 	unsigned long barsize	= pci_resource_len(dev, 5); | 
 | 455 | 	u8 tmpbyte	= 0; | 
 | 456 | 	void __iomem *ioaddr; | 
| John W. Linville | d868dd1 | 2005-11-10 00:19:14 +0100 | [diff] [blame] | 457 | 	u32 tmp, irq_mask; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 458 |  | 
 | 459 | 	/* | 
 | 460 | 	 *	Drop back to PIO if we can't map the mmio. Some | 
 | 461 | 	 *	systems seem to get terminally confused in the PCI | 
 | 462 | 	 *	spaces. | 
 | 463 | 	 */ | 
 | 464 | 	  | 
 | 465 | 	if(!request_mem_region(bar5, barsize, name)) | 
 | 466 | 	{ | 
 | 467 | 		printk(KERN_WARNING "siimage: IDE controller MMIO ports not available.\n"); | 
 | 468 | 		return 0; | 
 | 469 | 	} | 
 | 470 | 		 | 
 | 471 | 	ioaddr = ioremap(bar5, barsize); | 
 | 472 |  | 
 | 473 | 	if (ioaddr == NULL) | 
 | 474 | 	{ | 
 | 475 | 		release_mem_region(bar5, barsize); | 
 | 476 | 		return 0; | 
 | 477 | 	} | 
 | 478 |  | 
 | 479 | 	pci_set_master(dev); | 
 | 480 | 	pci_set_drvdata(dev, (void *) ioaddr); | 
 | 481 |  | 
 | 482 | 	if (pdev_is_sata(dev)) { | 
| John W. Linville | d868dd1 | 2005-11-10 00:19:14 +0100 | [diff] [blame] | 483 | 		/* make sure IDE0/1 interrupts are not masked */ | 
 | 484 | 		irq_mask = (1 << 22) | (1 << 23); | 
 | 485 | 		tmp = readl(ioaddr + 0x48); | 
 | 486 | 		if (tmp & irq_mask) { | 
 | 487 | 			tmp &= ~irq_mask; | 
 | 488 | 			writel(tmp, ioaddr + 0x48); | 
 | 489 | 			readl(ioaddr + 0x48); /* flush */ | 
 | 490 | 		} | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 491 | 		writel(0, ioaddr + 0x148); | 
 | 492 | 		writel(0, ioaddr + 0x1C8); | 
 | 493 | 	} | 
 | 494 |  | 
 | 495 | 	writeb(0, ioaddr + 0xB4); | 
 | 496 | 	writeb(0, ioaddr + 0xF4); | 
 | 497 | 	tmpbyte = readb(ioaddr + 0x4A); | 
 | 498 |  | 
 | 499 | 	switch(tmpbyte & 0x30) { | 
 | 500 | 		case 0x00: | 
 | 501 | 			/* In 100 MHz clocking, try and switch to 133 */ | 
 | 502 | 			writeb(tmpbyte|0x10, ioaddr + 0x4A); | 
 | 503 | 			break; | 
 | 504 | 		case 0x10: | 
 | 505 | 			/* On 133Mhz clocking */ | 
 | 506 | 			break; | 
 | 507 | 		case 0x20: | 
 | 508 | 			/* On PCIx2 clocking */ | 
 | 509 | 			break; | 
 | 510 | 		case 0x30: | 
 | 511 | 			/* Clocking is disabled */ | 
 | 512 | 			/* 133 clock attempt to force it on */ | 
 | 513 | 			writeb(tmpbyte & ~0x20, ioaddr + 0x4A); | 
 | 514 | 			break; | 
 | 515 | 	} | 
 | 516 | 	 | 
 | 517 | 	writeb(      0x72, ioaddr + 0xA1); | 
 | 518 | 	writew(    0x328A, ioaddr + 0xA2); | 
 | 519 | 	writel(0x62DD62DD, ioaddr + 0xA4); | 
 | 520 | 	writel(0x43924392, ioaddr + 0xA8); | 
 | 521 | 	writel(0x40094009, ioaddr + 0xAC); | 
 | 522 | 	writeb(      0x72, ioaddr + 0xE1); | 
 | 523 | 	writew(    0x328A, ioaddr + 0xE2); | 
 | 524 | 	writel(0x62DD62DD, ioaddr + 0xE4); | 
 | 525 | 	writel(0x43924392, ioaddr + 0xE8); | 
 | 526 | 	writel(0x40094009, ioaddr + 0xEC); | 
 | 527 |  | 
 | 528 | 	if (pdev_is_sata(dev)) { | 
 | 529 | 		writel(0xFFFF0000, ioaddr + 0x108); | 
 | 530 | 		writel(0xFFFF0000, ioaddr + 0x188); | 
 | 531 | 		writel(0x00680000, ioaddr + 0x148); | 
 | 532 | 		writel(0x00680000, ioaddr + 0x1C8); | 
 | 533 | 	} | 
 | 534 |  | 
 | 535 | 	tmpbyte = readb(ioaddr + 0x4A); | 
 | 536 |  | 
 | 537 | 	proc_reports_siimage(dev, (tmpbyte>>4), name); | 
 | 538 | 	return 1; | 
 | 539 | } | 
 | 540 |  | 
 | 541 | /** | 
 | 542 |  *	init_chipset_siimage	-	set up an SI device | 
 | 543 |  *	@dev: PCI device | 
 | 544 |  *	@name: device name | 
 | 545 |  * | 
 | 546 |  *	Perform the initial PCI set up for this device. Attempt to switch | 
 | 547 |  *	to 133MHz clocking if the system isn't already set up to do it. | 
 | 548 |  */ | 
 | 549 |  | 
 | 550 | static unsigned int __devinit init_chipset_siimage(struct pci_dev *dev, const char *name) | 
 | 551 | { | 
| Bartlomiej Zolnierkiewicz | fc212bb | 2007-10-19 00:30:08 +0200 | [diff] [blame] | 552 | 	u8 rev = dev->revision, tmpbyte = 0, BA5_EN = 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 553 |  | 
| Bartlomiej Zolnierkiewicz | fc212bb | 2007-10-19 00:30:08 +0200 | [diff] [blame] | 554 | 	pci_write_config_byte(dev, PCI_CACHE_LINE_SIZE, rev ? 1 : 255); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 555 |  | 
 | 556 | 	pci_read_config_byte(dev, 0x8A, &BA5_EN); | 
 | 557 | 	if ((BA5_EN & 0x01) || (pci_resource_start(dev, 5))) { | 
 | 558 | 		if (setup_mmio_siimage(dev, name)) { | 
 | 559 | 			return 0; | 
 | 560 | 		} | 
 | 561 | 	} | 
 | 562 |  | 
 | 563 | 	pci_write_config_byte(dev, 0x80, 0x00); | 
 | 564 | 	pci_write_config_byte(dev, 0x84, 0x00); | 
 | 565 | 	pci_read_config_byte(dev, 0x8A, &tmpbyte); | 
 | 566 | 	switch(tmpbyte & 0x30) { | 
 | 567 | 		case 0x00: | 
 | 568 | 			/* 133 clock attempt to force it on */ | 
 | 569 | 			pci_write_config_byte(dev, 0x8A, tmpbyte|0x10); | 
 | 570 | 		case 0x30: | 
 | 571 | 			/* if clocking is disabled */ | 
 | 572 | 			/* 133 clock attempt to force it on */ | 
 | 573 | 			pci_write_config_byte(dev, 0x8A, tmpbyte & ~0x20); | 
 | 574 | 		case 0x10: | 
 | 575 | 			/* 133 already */ | 
 | 576 | 			break; | 
 | 577 | 		case 0x20: | 
 | 578 | 			/* BIOS set PCI x2 clocking */ | 
 | 579 | 			break; | 
 | 580 | 	} | 
 | 581 |  | 
 | 582 | 	pci_read_config_byte(dev,   0x8A, &tmpbyte); | 
 | 583 |  | 
 | 584 | 	pci_write_config_byte(dev,  0xA1, 0x72); | 
 | 585 | 	pci_write_config_word(dev,  0xA2, 0x328A); | 
 | 586 | 	pci_write_config_dword(dev, 0xA4, 0x62DD62DD); | 
 | 587 | 	pci_write_config_dword(dev, 0xA8, 0x43924392); | 
 | 588 | 	pci_write_config_dword(dev, 0xAC, 0x40094009); | 
 | 589 | 	pci_write_config_byte(dev,  0xB1, 0x72); | 
 | 590 | 	pci_write_config_word(dev,  0xB2, 0x328A); | 
 | 591 | 	pci_write_config_dword(dev, 0xB4, 0x62DD62DD); | 
 | 592 | 	pci_write_config_dword(dev, 0xB8, 0x43924392); | 
 | 593 | 	pci_write_config_dword(dev, 0xBC, 0x40094009); | 
 | 594 |  | 
 | 595 | 	proc_reports_siimage(dev, (tmpbyte>>4), name); | 
 | 596 | 	return 0; | 
 | 597 | } | 
 | 598 |  | 
 | 599 | /** | 
 | 600 |  *	init_mmio_iops_siimage	-	set up the iops for MMIO | 
 | 601 |  *	@hwif: interface to set up | 
 | 602 |  * | 
 | 603 |  *	The basic setup here is fairly simple, we can use standard MMIO | 
 | 604 |  *	operations. However we do have to set the taskfile register offsets | 
 | 605 |  *	by hand as there isnt a standard defined layout for them this | 
 | 606 |  *	time. | 
 | 607 |  * | 
 | 608 |  *	The hardware supports buffered taskfiles and also some rather nice | 
| Alan Cox | 19c1ef5 | 2006-06-28 04:26:59 -0700 | [diff] [blame] | 609 |  *	extended PRD tables. For better SI3112 support use the libata driver | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 610 |  */ | 
 | 611 |  | 
 | 612 | static void __devinit init_mmio_iops_siimage(ide_hwif_t *hwif) | 
 | 613 | { | 
| Bartlomiej Zolnierkiewicz | 3650165 | 2008-02-01 23:09:31 +0100 | [diff] [blame] | 614 | 	struct pci_dev *dev	= to_pci_dev(hwif->dev); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 615 | 	void *addr		= pci_get_drvdata(dev); | 
 | 616 | 	u8 ch			= hwif->channel; | 
 | 617 | 	hw_regs_t		hw; | 
 | 618 | 	unsigned long		base; | 
 | 619 |  | 
 | 620 | 	/* | 
 | 621 | 	 *	Fill in the basic HWIF bits | 
 | 622 | 	 */ | 
 | 623 |  | 
 | 624 | 	default_hwif_mmiops(hwif); | 
 | 625 | 	hwif->hwif_data			= addr; | 
 | 626 |  | 
 | 627 | 	/* | 
 | 628 | 	 *	Now set up the hw. We have to do this ourselves as | 
| Michael Opdenacker | 59c5159 | 2007-05-09 08:57:56 +0200 | [diff] [blame] | 629 | 	 *	the MMIO layout isnt the same as the standard port | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 630 | 	 *	based I/O | 
 | 631 | 	 */ | 
 | 632 |  | 
 | 633 | 	memset(&hw, 0, sizeof(hw_regs_t)); | 
 | 634 |  | 
 | 635 | 	base = (unsigned long)addr; | 
 | 636 | 	if (ch) | 
 | 637 | 		base += 0xC0; | 
 | 638 | 	else | 
 | 639 | 		base += 0x80; | 
 | 640 |  | 
 | 641 | 	/* | 
 | 642 | 	 *	The buffered task file doesn't have status/control | 
 | 643 | 	 *	so we can't currently use it sanely since we want to | 
 | 644 | 	 *	use LBA48 mode. | 
 | 645 | 	 */	 | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 646 | 	hw.io_ports[IDE_DATA_OFFSET]	= base; | 
 | 647 | 	hw.io_ports[IDE_ERROR_OFFSET]	= base + 1; | 
 | 648 | 	hw.io_ports[IDE_NSECTOR_OFFSET]	= base + 2; | 
 | 649 | 	hw.io_ports[IDE_SECTOR_OFFSET]	= base + 3; | 
 | 650 | 	hw.io_ports[IDE_LCYL_OFFSET]	= base + 4; | 
 | 651 | 	hw.io_ports[IDE_HCYL_OFFSET]	= base + 5; | 
 | 652 | 	hw.io_ports[IDE_SELECT_OFFSET]	= base + 6; | 
 | 653 | 	hw.io_ports[IDE_STATUS_OFFSET]	= base + 7; | 
 | 654 | 	hw.io_ports[IDE_CONTROL_OFFSET]	= base + 10; | 
 | 655 |  | 
 | 656 | 	hw.io_ports[IDE_IRQ_OFFSET]	= 0; | 
 | 657 |  | 
 | 658 | 	if (pdev_is_sata(dev)) { | 
 | 659 | 		base = (unsigned long)addr; | 
 | 660 | 		if (ch) | 
 | 661 | 			base += 0x80; | 
 | 662 | 		hwif->sata_scr[SATA_STATUS_OFFSET]	= base + 0x104; | 
 | 663 | 		hwif->sata_scr[SATA_ERROR_OFFSET]	= base + 0x108; | 
 | 664 | 		hwif->sata_scr[SATA_CONTROL_OFFSET]	= base + 0x100; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 665 | 	} | 
 | 666 |  | 
| Bartlomiej Zolnierkiewicz | 9239b33 | 2007-10-20 00:32:33 +0200 | [diff] [blame] | 667 | 	memcpy(hwif->io_ports, hw.io_ports, sizeof(hwif->io_ports)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 668 |  | 
| Bartlomiej Zolnierkiewicz | 9239b33 | 2007-10-20 00:32:33 +0200 | [diff] [blame] | 669 | 	hwif->irq = dev->irq; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 670 |  | 
| Bartlomiej Zolnierkiewicz | 9239b33 | 2007-10-20 00:32:33 +0200 | [diff] [blame] | 671 | 	hwif->dma_base = (unsigned long)addr + (ch ? 0x08 : 0x00); | 
| Bartlomiej Zolnierkiewicz | 2ad1e55 | 2007-02-17 02:40:25 +0100 | [diff] [blame] | 672 |  | 
 | 673 | 	hwif->mmio = 1; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 674 | } | 
 | 675 |  | 
 | 676 | static int is_dev_seagate_sata(ide_drive_t *drive) | 
 | 677 | { | 
 | 678 | 	const char *s = &drive->id->model[0]; | 
 | 679 | 	unsigned len; | 
 | 680 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 681 | 	len = strnlen(s, sizeof(drive->id->model)); | 
 | 682 |  | 
 | 683 | 	if ((len > 4) && (!memcmp(s, "ST", 2))) { | 
 | 684 | 		if ((!memcmp(s + len - 2, "AS", 2)) || | 
 | 685 | 		    (!memcmp(s + len - 3, "ASL", 3))) { | 
 | 686 | 			printk(KERN_INFO "%s: applying pessimistic Seagate " | 
 | 687 | 					 "errata fix\n", drive->name); | 
 | 688 | 			return 1; | 
 | 689 | 		} | 
 | 690 | 	} | 
 | 691 | 	return 0; | 
 | 692 | } | 
 | 693 |  | 
 | 694 | /** | 
| Bartlomiej Zolnierkiewicz | f01393e | 2008-01-26 20:13:03 +0100 | [diff] [blame] | 695 |  *	sil_quirkproc		-	post probe fixups | 
 | 696 |  *	@drive: drive | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 697 |  * | 
 | 698 |  *	Called after drive probe we use this to decide whether the | 
 | 699 |  *	Seagate fixup must be applied. This used to be in init_iops but | 
 | 700 |  *	that can occur before we know what drives are present. | 
 | 701 |  */ | 
 | 702 |  | 
| Bartlomiej Zolnierkiewicz | f01393e | 2008-01-26 20:13:03 +0100 | [diff] [blame] | 703 | static void __devinit sil_quirkproc(ide_drive_t *drive) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 704 | { | 
| Bartlomiej Zolnierkiewicz | f01393e | 2008-01-26 20:13:03 +0100 | [diff] [blame] | 705 | 	ide_hwif_t *hwif = drive->hwif; | 
 | 706 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 707 | 	/* Try and raise the rqsize */ | 
| Bartlomiej Zolnierkiewicz | f01393e | 2008-01-26 20:13:03 +0100 | [diff] [blame] | 708 | 	if (!is_sata(hwif) || !is_dev_seagate_sata(drive)) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 709 | 		hwif->rqsize = 128; | 
 | 710 | } | 
 | 711 |  | 
 | 712 | /** | 
 | 713 |  *	init_iops_siimage	-	set up iops | 
 | 714 |  *	@hwif: interface to set up | 
 | 715 |  * | 
 | 716 |  *	Do the basic setup for the SIIMAGE hardware interface | 
 | 717 |  *	and then do the MMIO setup if we can. This is the first | 
 | 718 |  *	look in we get for setting up the hwif so that we | 
 | 719 |  *	can get the iops right before using them. | 
 | 720 |  */ | 
 | 721 |  | 
 | 722 | static void __devinit init_iops_siimage(ide_hwif_t *hwif) | 
 | 723 | { | 
| Bartlomiej Zolnierkiewicz | 3650165 | 2008-02-01 23:09:31 +0100 | [diff] [blame] | 724 | 	struct pci_dev *dev = to_pci_dev(hwif->dev); | 
 | 725 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 726 | 	hwif->hwif_data = NULL; | 
 | 727 |  | 
 | 728 | 	/* Pessimal until we finish probing */ | 
 | 729 | 	hwif->rqsize = 15; | 
 | 730 |  | 
| Bartlomiej Zolnierkiewicz | 3650165 | 2008-02-01 23:09:31 +0100 | [diff] [blame] | 731 | 	if (pci_get_drvdata(dev) == NULL) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 732 | 		return; | 
| Bartlomiej Zolnierkiewicz | fc212bb | 2007-10-19 00:30:08 +0200 | [diff] [blame] | 733 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 734 | 	init_mmio_iops_siimage(hwif); | 
 | 735 | } | 
 | 736 |  | 
 | 737 | /** | 
 | 738 |  *	ata66_siimage	-	check for 80 pin cable | 
 | 739 |  *	@hwif: interface to check | 
 | 740 |  * | 
 | 741 |  *	Check for the presence of an ATA66 capable cable on the | 
 | 742 |  *	interface. | 
 | 743 |  */ | 
 | 744 |  | 
| Bartlomiej Zolnierkiewicz | 49521f9 | 2007-07-09 23:17:58 +0200 | [diff] [blame] | 745 | static u8 __devinit ata66_siimage(ide_hwif_t *hwif) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 746 | { | 
| Bartlomiej Zolnierkiewicz | 3650165 | 2008-02-01 23:09:31 +0100 | [diff] [blame] | 747 | 	struct pci_dev *dev = to_pci_dev(hwif->dev); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 748 | 	unsigned long addr = siimage_selreg(hwif, 0); | 
| Bartlomiej Zolnierkiewicz | 49521f9 | 2007-07-09 23:17:58 +0200 | [diff] [blame] | 749 | 	u8 ata66 = 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 750 |  | 
| Bartlomiej Zolnierkiewicz | 3650165 | 2008-02-01 23:09:31 +0100 | [diff] [blame] | 751 | 	if (pci_get_drvdata(dev) == NULL) | 
 | 752 | 		pci_read_config_byte(dev, addr, &ata66); | 
| Bartlomiej Zolnierkiewicz | 49521f9 | 2007-07-09 23:17:58 +0200 | [diff] [blame] | 753 | 	else | 
 | 754 | 		ata66 = hwif->INB(addr); | 
 | 755 |  | 
 | 756 | 	return (ata66 & 0x01) ? ATA_CBL_PATA80 : ATA_CBL_PATA40; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 757 | } | 
 | 758 |  | 
 | 759 | /** | 
 | 760 |  *	init_hwif_siimage	-	set up hwif structs | 
 | 761 |  *	@hwif: interface to set up | 
 | 762 |  * | 
 | 763 |  *	We do the basic set up of the interface structure. The SIIMAGE | 
 | 764 |  *	requires several custom handlers so we override the default | 
 | 765 |  *	ide DMA handlers appropriately | 
 | 766 |  */ | 
 | 767 |  | 
 | 768 | static void __devinit init_hwif_siimage(ide_hwif_t *hwif) | 
 | 769 | { | 
| Bartlomiej Zolnierkiewicz | 438c470 | 2007-10-20 00:32:31 +0200 | [diff] [blame] | 770 | 	u8 sata = is_sata(hwif); | 
 | 771 |  | 
| Bartlomiej Zolnierkiewicz | 26bcb87 | 2007-10-11 23:54:00 +0200 | [diff] [blame] | 772 | 	hwif->set_pio_mode = &sil_set_pio_mode; | 
| Bartlomiej Zolnierkiewicz | 88b2b32 | 2007-10-13 17:47:51 +0200 | [diff] [blame] | 773 | 	hwif->set_dma_mode = &sil_set_dma_mode; | 
| Bartlomiej Zolnierkiewicz | f01393e | 2008-01-26 20:13:03 +0100 | [diff] [blame] | 774 | 	hwif->quirkproc = &sil_quirkproc; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 775 |  | 
| Bartlomiej Zolnierkiewicz | 438c470 | 2007-10-20 00:32:31 +0200 | [diff] [blame] | 776 | 	if (sata) { | 
| Alan Cox | 19c1ef5 | 2006-06-28 04:26:59 -0700 | [diff] [blame] | 777 | 		static int first = 1; | 
 | 778 |  | 
| Bartlomiej Zolnierkiewicz | 438c470 | 2007-10-20 00:32:31 +0200 | [diff] [blame] | 779 | 		hwif->reset_poll = &sil_sata_reset_poll; | 
 | 780 | 		hwif->pre_reset = &sil_sata_pre_reset; | 
 | 781 | 		hwif->udma_filter = &sil_sata_udma_filter; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 782 |  | 
| Alan Cox | 19c1ef5 | 2006-06-28 04:26:59 -0700 | [diff] [blame] | 783 | 		if (first) { | 
 | 784 | 			printk(KERN_INFO "siimage: For full SATA support you should use the libata sata_sil module.\n"); | 
 | 785 | 			first = 0; | 
 | 786 | 		} | 
| Bartlomiej Zolnierkiewicz | 438c470 | 2007-10-20 00:32:31 +0200 | [diff] [blame] | 787 | 	} else | 
 | 788 | 		hwif->udma_filter = &sil_pata_udma_filter; | 
| Bartlomiej Zolnierkiewicz | 328dcbb | 2007-07-20 01:11:54 +0200 | [diff] [blame] | 789 |  | 
| Bartlomiej Zolnierkiewicz | bfa14b4 | 2008-02-02 19:56:31 +0100 | [diff] [blame] | 790 | 	hwif->cable_detect = ata66_siimage; | 
 | 791 |  | 
| Bartlomiej Zolnierkiewicz | 328dcbb | 2007-07-20 01:11:54 +0200 | [diff] [blame] | 792 | 	if (hwif->dma_base == 0) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 793 | 		return; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 794 |  | 
| Bartlomiej Zolnierkiewicz | 438c470 | 2007-10-20 00:32:31 +0200 | [diff] [blame] | 795 | 	if (sata) | 
| Bartlomiej Zolnierkiewicz | 33c1002 | 2007-10-19 00:30:06 +0200 | [diff] [blame] | 796 | 		hwif->host_flags |= IDE_HFLAG_NO_ATAPI_DMA; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 797 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 798 | 	if (hwif->mmio) { | 
 | 799 | 		hwif->ide_dma_test_irq = &siimage_mmio_ide_dma_test_irq; | 
 | 800 | 	} else { | 
 | 801 | 		hwif->ide_dma_test_irq = & siimage_io_ide_dma_test_irq; | 
 | 802 | 	} | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 803 | } | 
 | 804 |  | 
 | 805 | #define DECLARE_SII_DEV(name_str)			\ | 
 | 806 | 	{						\ | 
 | 807 | 		.name		= name_str,		\ | 
 | 808 | 		.init_chipset	= init_chipset_siimage,	\ | 
 | 809 | 		.init_iops	= init_iops_siimage,	\ | 
 | 810 | 		.init_hwif	= init_hwif_siimage,	\ | 
| Bartlomiej Zolnierkiewicz | 4099d14 | 2007-07-20 01:11:59 +0200 | [diff] [blame] | 811 | 		.pio_mask	= ATA_PIO4,		\ | 
| Bartlomiej Zolnierkiewicz | 5f8b6c3 | 2007-10-19 00:30:07 +0200 | [diff] [blame] | 812 | 		.mwdma_mask	= ATA_MWDMA2,		\ | 
 | 813 | 		.udma_mask	= ATA_UDMA6,		\ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 814 | 	} | 
 | 815 |  | 
| Bartlomiej Zolnierkiewicz | 8562043 | 2007-10-20 00:32:34 +0200 | [diff] [blame] | 816 | static const struct ide_port_info siimage_chipsets[] __devinitdata = { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 817 | 	/* 0 */ DECLARE_SII_DEV("SiI680"), | 
 | 818 | 	/* 1 */ DECLARE_SII_DEV("SiI3112 Serial ATA"), | 
 | 819 | 	/* 2 */ DECLARE_SII_DEV("Adaptec AAR-1210SA") | 
 | 820 | }; | 
 | 821 |  | 
 | 822 | /** | 
 | 823 |  *	siimage_init_one	-	pci layer discovery entry | 
 | 824 |  *	@dev: PCI device | 
 | 825 |  *	@id: ident table entry | 
 | 826 |  * | 
 | 827 |  *	Called by the PCI code when it finds an SI680 or SI3112 controller. | 
 | 828 |  *	We then use the IDE PCI generic helper to do most of the work. | 
 | 829 |  */ | 
 | 830 |   | 
 | 831 | static int __devinit siimage_init_one(struct pci_dev *dev, const struct pci_device_id *id) | 
 | 832 | { | 
 | 833 | 	return ide_setup_pci_device(dev, &siimage_chipsets[id->driver_data]); | 
 | 834 | } | 
 | 835 |  | 
| Bartlomiej Zolnierkiewicz | 9cbcc5e | 2007-10-16 22:29:56 +0200 | [diff] [blame] | 836 | static const struct pci_device_id siimage_pci_tbl[] = { | 
 | 837 | 	{ PCI_VDEVICE(CMD, PCI_DEVICE_ID_SII_680),    0 }, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 838 | #ifdef CONFIG_BLK_DEV_IDE_SATA | 
| Bartlomiej Zolnierkiewicz | 9cbcc5e | 2007-10-16 22:29:56 +0200 | [diff] [blame] | 839 | 	{ PCI_VDEVICE(CMD, PCI_DEVICE_ID_SII_3112),   1 }, | 
 | 840 | 	{ PCI_VDEVICE(CMD, PCI_DEVICE_ID_SII_1210SA), 2 }, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 841 | #endif | 
 | 842 | 	{ 0, }, | 
 | 843 | }; | 
 | 844 | MODULE_DEVICE_TABLE(pci, siimage_pci_tbl); | 
 | 845 |  | 
 | 846 | static struct pci_driver driver = { | 
 | 847 | 	.name		= "SiI_IDE", | 
 | 848 | 	.id_table	= siimage_pci_tbl, | 
 | 849 | 	.probe		= siimage_init_one, | 
 | 850 | }; | 
 | 851 |  | 
| Bartlomiej Zolnierkiewicz | 82ab1ee | 2007-01-27 13:46:56 +0100 | [diff] [blame] | 852 | static int __init siimage_ide_init(void) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 853 | { | 
 | 854 | 	return ide_pci_register_driver(&driver); | 
 | 855 | } | 
 | 856 |  | 
 | 857 | module_init(siimage_ide_init); | 
 | 858 |  | 
 | 859 | MODULE_AUTHOR("Andre Hedrick, Alan Cox"); | 
 | 860 | MODULE_DESCRIPTION("PCI driver module for SiI IDE"); | 
 | 861 | MODULE_LICENSE("GPL"); |