| 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) 1999-2000	Andre Hedrick <andre@linux-ide.org> | 
 | 3 |  * Copyright (C) 2002		Lionel Bouton <Lionel.Bouton@inet6.fr>, Maintainer | 
 | 4 |  * Copyright (C) 2003		Vojtech Pavlik <vojtech@suse.cz> | 
| Bartlomiej Zolnierkiewicz | e13ee54 | 2009-10-06 14:46:05 +0000 | [diff] [blame] | 5 |  * Copyright (C) 2007-2009	Bartlomiej Zolnierkiewicz | 
| Bartlomiej Zolnierkiewicz | 6b8cf77 | 2007-05-16 00:51:42 +0200 | [diff] [blame] | 6 |  * | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7 |  * May be copied or modified under the terms of the GNU General Public License | 
 | 8 |  * | 
 | 9 |  * | 
 | 10 |  * Thanks : | 
 | 11 |  * | 
 | 12 |  * SiS Taiwan		: for direct support and hardware. | 
 | 13 |  * Daniela Engert	: for initial ATA100 advices and numerous others. | 
 | 14 |  * John Fremlin, Manfred Spraul, Dave Morgan, Peter Kjellerstedt	: | 
 | 15 |  *			  for checking code correctness, providing patches. | 
 | 16 |  * | 
 | 17 |  * | 
 | 18 |  * Original tests and design on the SiS620 chipset. | 
 | 19 |  * ATA100 tests and design on the SiS735 chipset. | 
 | 20 |  * ATA16/33 support from specs | 
 | 21 |  * ATA133 support for SiS961/962 by L.C. Chang <lcchang@sis.com.tw> | 
 | 22 |  * ATA133 961/962/963 fixes by Vojtech Pavlik <vojtech@suse.cz> | 
 | 23 |  * | 
 | 24 |  * Documentation: | 
 | 25 |  *	SiS chipset documentation available under NDA to companies only | 
 | 26 |  *      (not to individuals). | 
 | 27 |  */ | 
 | 28 |  | 
 | 29 | /* | 
 | 30 |  * The original SiS5513 comes from a SiS5511/55112/5513 chipset. The original | 
 | 31 |  * SiS5513 was also used in the SiS5596/5513 chipset. Thus if we see a SiS5511 | 
 | 32 |  * or SiS5596, we can assume we see the first MWDMA-16 capable SiS5513 chip. | 
 | 33 |  * | 
 | 34 |  * Later SiS chipsets integrated the 5513 functionality into the NorthBridge, | 
 | 35 |  * starting with SiS5571 and up to SiS745. The PCI ID didn't change, though. We | 
 | 36 |  * can figure out that we have a more modern and more capable 5513 by looking | 
 | 37 |  * for the respective NorthBridge IDs. | 
 | 38 |  * | 
 | 39 |  * Even later (96x family) SiS chipsets use the MuTIOL link and place the 5513 | 
 | 40 |  * into the SouthBrige. Here we cannot rely on looking up the NorthBridge PCI | 
 | 41 |  * ID, while the now ATA-133 capable 5513 still has the same PCI ID. | 
 | 42 |  * Fortunately the 5513 can be 'unmasked' by fiddling with some config space | 
 | 43 |  * bits, changing its device id to the true one - 5517 for 961 and 5518 for | 
 | 44 |  * 962/963. | 
 | 45 |  */ | 
 | 46 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 47 | #include <linux/types.h> | 
 | 48 | #include <linux/module.h> | 
 | 49 | #include <linux/kernel.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 50 | #include <linux/pci.h> | 
 | 51 | #include <linux/init.h> | 
 | 52 | #include <linux/ide.h> | 
 | 53 |  | 
| Bartlomiej Zolnierkiewicz | ced3ec8 | 2008-07-24 22:53:32 +0200 | [diff] [blame] | 54 | #define DRV_NAME "sis5513" | 
 | 55 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 56 | /* registers layout and init values are chipset family dependant */ | 
 | 57 |  | 
 | 58 | #define ATA_16		0x01 | 
 | 59 | #define ATA_33		0x02 | 
 | 60 | #define ATA_66		0x03 | 
| Paolo Ciarrocchi | 1eb3c2e | 2008-04-26 17:36:39 +0200 | [diff] [blame] | 61 | #define ATA_100a	0x04 /* SiS730/SiS550 is ATA100 with ATA66 layout */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 62 | #define ATA_100		0x05 | 
| Paolo Ciarrocchi | 1eb3c2e | 2008-04-26 17:36:39 +0200 | [diff] [blame] | 63 | #define ATA_133a	0x06 /* SiS961b with 133 support */ | 
 | 64 | #define ATA_133		0x07 /* SiS962/963 */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 65 |  | 
 | 66 | static u8 chipset_family; | 
 | 67 |  | 
 | 68 | /* | 
 | 69 |  * Devices supported | 
 | 70 |  */ | 
 | 71 | static const struct { | 
 | 72 | 	const char *name; | 
 | 73 | 	u16 host_id; | 
 | 74 | 	u8 chipset_family; | 
 | 75 | 	u8 flags; | 
 | 76 | } SiSHostChipInfo[] = { | 
| David Wang | 47d4b90 | 2006-09-08 09:47:51 -0700 | [diff] [blame] | 77 | 	{ "SiS968",	PCI_DEVICE_ID_SI_968,	ATA_133  }, | 
 | 78 | 	{ "SiS966",	PCI_DEVICE_ID_SI_966,	ATA_133  }, | 
| Aurelien Jarno | 14351f8 | 2005-11-19 21:43:45 +0100 | [diff] [blame] | 79 | 	{ "SiS965",	PCI_DEVICE_ID_SI_965,	ATA_133  }, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 80 | 	{ "SiS745",	PCI_DEVICE_ID_SI_745,	ATA_100  }, | 
 | 81 | 	{ "SiS735",	PCI_DEVICE_ID_SI_735,	ATA_100  }, | 
 | 82 | 	{ "SiS733",	PCI_DEVICE_ID_SI_733,	ATA_100  }, | 
 | 83 | 	{ "SiS635",	PCI_DEVICE_ID_SI_635,	ATA_100  }, | 
 | 84 | 	{ "SiS633",	PCI_DEVICE_ID_SI_633,	ATA_100  }, | 
 | 85 |  | 
 | 86 | 	{ "SiS730",	PCI_DEVICE_ID_SI_730,	ATA_100a }, | 
 | 87 | 	{ "SiS550",	PCI_DEVICE_ID_SI_550,	ATA_100a }, | 
 | 88 |  | 
 | 89 | 	{ "SiS640",	PCI_DEVICE_ID_SI_640,	ATA_66   }, | 
 | 90 | 	{ "SiS630",	PCI_DEVICE_ID_SI_630,	ATA_66   }, | 
 | 91 | 	{ "SiS620",	PCI_DEVICE_ID_SI_620,	ATA_66   }, | 
 | 92 | 	{ "SiS540",	PCI_DEVICE_ID_SI_540,	ATA_66   }, | 
 | 93 | 	{ "SiS530",	PCI_DEVICE_ID_SI_530,	ATA_66   }, | 
 | 94 |  | 
 | 95 | 	{ "SiS5600",	PCI_DEVICE_ID_SI_5600,	ATA_33   }, | 
 | 96 | 	{ "SiS5598",	PCI_DEVICE_ID_SI_5598,	ATA_33   }, | 
 | 97 | 	{ "SiS5597",	PCI_DEVICE_ID_SI_5597,	ATA_33   }, | 
 | 98 | 	{ "SiS5591/2",	PCI_DEVICE_ID_SI_5591,	ATA_33   }, | 
 | 99 | 	{ "SiS5582",	PCI_DEVICE_ID_SI_5582,	ATA_33   }, | 
 | 100 | 	{ "SiS5581",	PCI_DEVICE_ID_SI_5581,	ATA_33   }, | 
 | 101 |  | 
 | 102 | 	{ "SiS5596",	PCI_DEVICE_ID_SI_5596,	ATA_16   }, | 
 | 103 | 	{ "SiS5571",	PCI_DEVICE_ID_SI_5571,	ATA_16   }, | 
| Alan Cox | d266ab8 | 2006-03-28 01:56:31 -0800 | [diff] [blame] | 104 | 	{ "SiS5517",	PCI_DEVICE_ID_SI_5517,	ATA_16   }, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 105 | 	{ "SiS551x",	PCI_DEVICE_ID_SI_5511,	ATA_16   }, | 
 | 106 | }; | 
 | 107 |  | 
 | 108 | /* Cycle time bits and values vary across chip dma capabilities | 
 | 109 |    These three arrays hold the register layout and the values to set. | 
 | 110 |    Indexed by chipset_family and (dma_mode - XFER_UDMA_0) */ | 
 | 111 |  | 
 | 112 | /* {0, ATA_16, ATA_33, ATA_66, ATA_100a, ATA_100, ATA_133} */ | 
| Paolo Ciarrocchi | 1eb3c2e | 2008-04-26 17:36:39 +0200 | [diff] [blame] | 113 | static u8 cycle_time_offset[] = { 0, 0, 5, 4, 4, 0, 0 }; | 
 | 114 | static u8 cycle_time_range[]  = { 0, 0, 2, 3, 3, 4, 4 }; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 115 | static u8 cycle_time_value[][XFER_UDMA_6 - XFER_UDMA_0 + 1] = { | 
| Paolo Ciarrocchi | 1eb3c2e | 2008-04-26 17:36:39 +0200 | [diff] [blame] | 116 | 	{  0,  0, 0, 0, 0, 0, 0 }, /* no UDMA */ | 
 | 117 | 	{  0,  0, 0, 0, 0, 0, 0 }, /* no UDMA */ | 
 | 118 | 	{  3,  2, 1, 0, 0, 0, 0 }, /* ATA_33 */ | 
 | 119 | 	{  7,  5, 3, 2, 1, 0, 0 }, /* ATA_66 */ | 
 | 120 | 	{  7,  5, 3, 2, 1, 0, 0 }, /* ATA_100a (730 specific), | 
 | 121 | 				      different cycle_time range and offset */ | 
 | 122 | 	{ 11,  7, 5, 4, 2, 1, 0 }, /* ATA_100 */ | 
 | 123 | 	{ 15, 10, 7, 5, 3, 2, 1 }, /* ATA_133a (earliest 691 southbridges) */ | 
 | 124 | 	{ 15, 10, 7, 5, 3, 2, 1 }, /* ATA_133 */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 125 | }; | 
 | 126 | /* CRC Valid Setup Time vary across IDE clock setting 33/66/100/133 | 
 | 127 |    See SiS962 data sheet for more detail */ | 
 | 128 | static u8 cvs_time_value[][XFER_UDMA_6 - XFER_UDMA_0 + 1] = { | 
| Paolo Ciarrocchi | 1eb3c2e | 2008-04-26 17:36:39 +0200 | [diff] [blame] | 129 | 	{ 0, 0, 0, 0, 0, 0, 0 }, /* no UDMA */ | 
 | 130 | 	{ 0, 0, 0, 0, 0, 0, 0 }, /* no UDMA */ | 
 | 131 | 	{ 2, 1, 1, 0, 0, 0, 0 }, | 
 | 132 | 	{ 4, 3, 2, 1, 0, 0, 0 }, | 
 | 133 | 	{ 4, 3, 2, 1, 0, 0, 0 }, | 
 | 134 | 	{ 6, 4, 3, 1, 1, 1, 0 }, | 
 | 135 | 	{ 9, 6, 4, 2, 2, 2, 2 }, | 
 | 136 | 	{ 9, 6, 4, 2, 2, 2, 2 }, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 137 | }; | 
 | 138 | /* Initialize time, Active time, Recovery time vary across | 
 | 139 |    IDE clock settings. These 3 arrays hold the register value | 
 | 140 |    for PIO0/1/2/3/4 and DMA0/1/2 mode in order */ | 
 | 141 | static u8 ini_time_value[][8] = { | 
| Paolo Ciarrocchi | 1eb3c2e | 2008-04-26 17:36:39 +0200 | [diff] [blame] | 142 | 	{ 0, 0, 0, 0, 0, 0, 0, 0 }, | 
 | 143 | 	{ 0, 0, 0, 0, 0, 0, 0, 0 }, | 
 | 144 | 	{ 2, 1, 0, 0, 0, 1, 0, 0 }, | 
 | 145 | 	{ 4, 3, 1, 1, 1, 3, 1, 1 }, | 
 | 146 | 	{ 4, 3, 1, 1, 1, 3, 1, 1 }, | 
 | 147 | 	{ 6, 4, 2, 2, 2, 4, 2, 2 }, | 
 | 148 | 	{ 9, 6, 3, 3, 3, 6, 3, 3 }, | 
 | 149 | 	{ 9, 6, 3, 3, 3, 6, 3, 3 }, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 150 | }; | 
 | 151 | static u8 act_time_value[][8] = { | 
| Paolo Ciarrocchi | 1eb3c2e | 2008-04-26 17:36:39 +0200 | [diff] [blame] | 152 | 	{  0,  0,  0,  0, 0,  0,  0, 0 }, | 
 | 153 | 	{  0,  0,  0,  0, 0,  0,  0, 0 }, | 
 | 154 | 	{  9,  9,  9,  2, 2,  7,  2, 2 }, | 
 | 155 | 	{ 19, 19, 19,  5, 4, 14,  5, 4 }, | 
 | 156 | 	{ 19, 19, 19,  5, 4, 14,  5, 4 }, | 
 | 157 | 	{ 28, 28, 28,  7, 6, 21,  7, 6 }, | 
 | 158 | 	{ 38, 38, 38, 10, 9, 28, 10, 9 }, | 
 | 159 | 	{ 38, 38, 38, 10, 9, 28, 10, 9 }, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 160 | }; | 
 | 161 | static u8 rco_time_value[][8] = { | 
| Paolo Ciarrocchi | 1eb3c2e | 2008-04-26 17:36:39 +0200 | [diff] [blame] | 162 | 	{  0,  0, 0,  0, 0,  0,  0, 0 }, | 
 | 163 | 	{  0,  0, 0,  0, 0,  0,  0, 0 }, | 
 | 164 | 	{  9,  2, 0,  2, 0,  7,  1, 1 }, | 
 | 165 | 	{ 19,  5, 1,  5, 2, 16,  3, 2 }, | 
 | 166 | 	{ 19,  5, 1,  5, 2, 16,  3, 2 }, | 
 | 167 | 	{ 30,  9, 3,  9, 4, 25,  6, 4 }, | 
 | 168 | 	{ 40, 12, 4, 12, 5, 34, 12, 5 }, | 
 | 169 | 	{ 40, 12, 4, 12, 5, 34, 12, 5 }, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 170 | }; | 
 | 171 |  | 
 | 172 | /* | 
 | 173 |  * Printing configuration | 
 | 174 |  */ | 
 | 175 | /* Used for chipset type printing at boot time */ | 
| Paolo Ciarrocchi | 1eb3c2e | 2008-04-26 17:36:39 +0200 | [diff] [blame] | 176 | static char *chipset_capability[] = { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 177 | 	"ATA", "ATA 16", | 
 | 178 | 	"ATA 33", "ATA 66", | 
 | 179 | 	"ATA 100 (1st gen)", "ATA 100 (2nd gen)", | 
 | 180 | 	"ATA 133 (1st gen)", "ATA 133 (2nd gen)" | 
 | 181 | }; | 
 | 182 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 183 | /* | 
 | 184 |  * Configuration functions | 
 | 185 |  */ | 
| Bartlomiej Zolnierkiewicz | c77a89c | 2007-10-16 22:29:52 +0200 | [diff] [blame] | 186 |  | 
 | 187 | static u8 sis_ata133_get_base(ide_drive_t *drive) | 
 | 188 | { | 
| Bartlomiej Zolnierkiewicz | 3650165 | 2008-02-01 23:09:31 +0100 | [diff] [blame] | 189 | 	struct pci_dev *dev = to_pci_dev(drive->hwif->dev); | 
| Bartlomiej Zolnierkiewicz | c77a89c | 2007-10-16 22:29:52 +0200 | [diff] [blame] | 190 | 	u32 reg54 = 0; | 
 | 191 |  | 
 | 192 | 	pci_read_config_dword(dev, 0x54, ®54); | 
 | 193 |  | 
 | 194 | 	return ((reg54 & 0x40000000) ? 0x70 : 0x40) + drive->dn * 4; | 
 | 195 | } | 
 | 196 |  | 
 | 197 | static void sis_ata16_program_timings(ide_drive_t *drive, const u8 mode) | 
 | 198 | { | 
| Bartlomiej Zolnierkiewicz | 3650165 | 2008-02-01 23:09:31 +0100 | [diff] [blame] | 199 | 	struct pci_dev *dev = to_pci_dev(drive->hwif->dev); | 
| Bartlomiej Zolnierkiewicz | c77a89c | 2007-10-16 22:29:52 +0200 | [diff] [blame] | 200 | 	u16 t1 = 0; | 
 | 201 | 	u8 drive_pci = 0x40 + drive->dn * 2; | 
 | 202 |  | 
 | 203 | 	const u16 pio_timings[]   = { 0x000, 0x607, 0x404, 0x303, 0x301 }; | 
 | 204 | 	const u16 mwdma_timings[] = { 0x008, 0x302, 0x301 }; | 
 | 205 |  | 
 | 206 | 	pci_read_config_word(dev, drive_pci, &t1); | 
 | 207 |  | 
 | 208 | 	/* clear active/recovery timings */ | 
 | 209 | 	t1 &= ~0x070f; | 
 | 210 | 	if (mode >= XFER_MW_DMA_0) { | 
 | 211 | 		if (chipset_family > ATA_16) | 
 | 212 | 			t1 &= ~0x8000;	/* disable UDMA */ | 
 | 213 | 		t1 |= mwdma_timings[mode - XFER_MW_DMA_0]; | 
 | 214 | 	} else | 
 | 215 | 		t1 |= pio_timings[mode - XFER_PIO_0]; | 
 | 216 |  | 
 | 217 | 	pci_write_config_word(dev, drive_pci, t1); | 
 | 218 | } | 
 | 219 |  | 
 | 220 | static void sis_ata100_program_timings(ide_drive_t *drive, const u8 mode) | 
 | 221 | { | 
| Bartlomiej Zolnierkiewicz | 3650165 | 2008-02-01 23:09:31 +0100 | [diff] [blame] | 222 | 	struct pci_dev *dev = to_pci_dev(drive->hwif->dev); | 
| Bartlomiej Zolnierkiewicz | c77a89c | 2007-10-16 22:29:52 +0200 | [diff] [blame] | 223 | 	u8 t1, drive_pci = 0x40 + drive->dn * 2; | 
 | 224 |  | 
 | 225 | 	/* timing bits: 7:4 active 3:0 recovery */ | 
 | 226 | 	const u8 pio_timings[]   = { 0x00, 0x67, 0x44, 0x33, 0x31 }; | 
 | 227 | 	const u8 mwdma_timings[] = { 0x08, 0x32, 0x31 }; | 
 | 228 |  | 
 | 229 | 	if (mode >= XFER_MW_DMA_0) { | 
 | 230 | 		u8 t2 = 0; | 
 | 231 |  | 
 | 232 | 		pci_read_config_byte(dev, drive_pci, &t2); | 
 | 233 | 		t2 &= ~0x80;	/* disable UDMA */ | 
 | 234 | 		pci_write_config_byte(dev, drive_pci, t2); | 
 | 235 |  | 
 | 236 | 		t1 = mwdma_timings[mode - XFER_MW_DMA_0]; | 
 | 237 | 	} else | 
 | 238 | 		t1 = pio_timings[mode - XFER_PIO_0]; | 
 | 239 |  | 
 | 240 | 	pci_write_config_byte(dev, drive_pci + 1, t1); | 
 | 241 | } | 
 | 242 |  | 
 | 243 | static void sis_ata133_program_timings(ide_drive_t *drive, const u8 mode) | 
 | 244 | { | 
| Bartlomiej Zolnierkiewicz | 3650165 | 2008-02-01 23:09:31 +0100 | [diff] [blame] | 245 | 	struct pci_dev *dev = to_pci_dev(drive->hwif->dev); | 
| Bartlomiej Zolnierkiewicz | c77a89c | 2007-10-16 22:29:52 +0200 | [diff] [blame] | 246 | 	u32 t1 = 0; | 
 | 247 | 	u8 drive_pci = sis_ata133_get_base(drive), clk, idx; | 
 | 248 |  | 
 | 249 | 	pci_read_config_dword(dev, drive_pci, &t1); | 
 | 250 |  | 
 | 251 | 	t1 &= 0xc0c00fff; | 
 | 252 | 	clk = (t1 & 0x08) ? ATA_133 : ATA_100; | 
 | 253 | 	if (mode >= XFER_MW_DMA_0) { | 
 | 254 | 		t1 &= ~0x04;	/* disable UDMA */ | 
 | 255 | 		idx = mode - XFER_MW_DMA_0 + 5; | 
| Adrian Bunk | 3dfd643 | 2007-10-20 00:32:29 +0200 | [diff] [blame] | 256 | 	} else | 
| Bartlomiej Zolnierkiewicz | c77a89c | 2007-10-16 22:29:52 +0200 | [diff] [blame] | 257 | 		idx = mode - XFER_PIO_0; | 
 | 258 | 	t1 |= ini_time_value[clk][idx] << 12; | 
 | 259 | 	t1 |= act_time_value[clk][idx] << 16; | 
 | 260 | 	t1 |= rco_time_value[clk][idx] << 24; | 
 | 261 |  | 
 | 262 | 	pci_write_config_dword(dev, drive_pci, t1); | 
 | 263 | } | 
 | 264 |  | 
 | 265 | static void sis_program_timings(ide_drive_t *drive, const u8 mode) | 
 | 266 | { | 
 | 267 | 	if (chipset_family < ATA_100)		/* ATA_16/33/66/100a */ | 
 | 268 | 		sis_ata16_program_timings(drive, mode); | 
 | 269 | 	else if (chipset_family < ATA_133)	/* ATA_100/133a */ | 
 | 270 | 		sis_ata100_program_timings(drive, mode); | 
 | 271 | 	else					/* ATA_133 */ | 
 | 272 | 		sis_ata133_program_timings(drive, mode); | 
 | 273 | } | 
 | 274 |  | 
| Paolo Ciarrocchi | 1eb3c2e | 2008-04-26 17:36:39 +0200 | [diff] [blame] | 275 | static void config_drive_art_rwp(ide_drive_t *drive) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 276 | { | 
| Bartlomiej Zolnierkiewicz | 898ec22 | 2009-01-06 17:20:52 +0100 | [diff] [blame] | 277 | 	ide_hwif_t *hwif	= drive->hwif; | 
| Bartlomiej Zolnierkiewicz | 3650165 | 2008-02-01 23:09:31 +0100 | [diff] [blame] | 278 | 	struct pci_dev *dev	= to_pci_dev(hwif->dev); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 279 | 	u8 reg4bh		= 0; | 
| Bartlomiej Zolnierkiewicz | d83fca5 | 2007-10-16 22:29:56 +0200 | [diff] [blame] | 280 | 	u8 rw_prefetch		= 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 281 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 282 | 	pci_read_config_byte(dev, 0x4b, ®4bh); | 
 | 283 |  | 
| Bartlomiej Zolnierkiewicz | e13ee54 | 2009-10-06 14:46:05 +0000 | [diff] [blame] | 284 | 	rw_prefetch = reg4bh & ~(0x11 << drive->dn); | 
| Bartlomiej Zolnierkiewicz | d83fca5 | 2007-10-16 22:29:56 +0200 | [diff] [blame] | 285 |  | 
| Bartlomiej Zolnierkiewicz | e13ee54 | 2009-10-06 14:46:05 +0000 | [diff] [blame] | 286 | 	if (drive->media == ide_disk) | 
 | 287 | 		rw_prefetch |= 0x11 << drive->dn; | 
 | 288 |  | 
 | 289 | 	if (reg4bh != rw_prefetch) | 
 | 290 | 		pci_write_config_byte(dev, 0x4b, rw_prefetch); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 291 | } | 
 | 292 |  | 
| Bartlomiej Zolnierkiewicz | 88b2b32 | 2007-10-13 17:47:51 +0200 | [diff] [blame] | 293 | static void sis_set_pio_mode(ide_drive_t *drive, const u8 pio) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 294 | { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 295 | 	config_drive_art_rwp(drive); | 
| Bartlomiej Zolnierkiewicz | c77a89c | 2007-10-16 22:29:52 +0200 | [diff] [blame] | 296 | 	sis_program_timings(drive, XFER_PIO_0 + pio); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 297 | } | 
 | 298 |  | 
| Bartlomiej Zolnierkiewicz | 428c644 | 2008-01-25 22:17:18 +0100 | [diff] [blame] | 299 | static void sis_ata133_program_udma_timings(ide_drive_t *drive, const u8 mode) | 
 | 300 | { | 
| Bartlomiej Zolnierkiewicz | 3650165 | 2008-02-01 23:09:31 +0100 | [diff] [blame] | 301 | 	struct pci_dev *dev = to_pci_dev(drive->hwif->dev); | 
| Bartlomiej Zolnierkiewicz | 428c644 | 2008-01-25 22:17:18 +0100 | [diff] [blame] | 302 | 	u32 regdw = 0; | 
 | 303 | 	u8 drive_pci = sis_ata133_get_base(drive), clk, idx; | 
 | 304 |  | 
 | 305 | 	pci_read_config_dword(dev, drive_pci, ®dw); | 
 | 306 |  | 
 | 307 | 	regdw |= 0x04; | 
 | 308 | 	regdw &= 0xfffff00f; | 
 | 309 | 	/* check if ATA133 enable */ | 
 | 310 | 	clk = (regdw & 0x08) ? ATA_133 : ATA_100; | 
 | 311 | 	idx = mode - XFER_UDMA_0; | 
 | 312 | 	regdw |= cycle_time_value[clk][idx] << 4; | 
 | 313 | 	regdw |= cvs_time_value[clk][idx] << 8; | 
 | 314 |  | 
 | 315 | 	pci_write_config_dword(dev, drive_pci, regdw); | 
 | 316 | } | 
 | 317 |  | 
 | 318 | static void sis_ata33_program_udma_timings(ide_drive_t *drive, const u8 mode) | 
 | 319 | { | 
| Bartlomiej Zolnierkiewicz | 3650165 | 2008-02-01 23:09:31 +0100 | [diff] [blame] | 320 | 	struct pci_dev *dev = to_pci_dev(drive->hwif->dev); | 
| Bartlomiej Zolnierkiewicz | 428c644 | 2008-01-25 22:17:18 +0100 | [diff] [blame] | 321 | 	u8 drive_pci = 0x40 + drive->dn * 2, reg = 0, i = chipset_family; | 
 | 322 |  | 
 | 323 | 	pci_read_config_byte(dev, drive_pci + 1, ®); | 
 | 324 |  | 
 | 325 | 	/* force the UDMA bit on if we want to use UDMA */ | 
 | 326 | 	reg |= 0x80; | 
 | 327 | 	/* clean reg cycle time bits */ | 
 | 328 | 	reg &= ~((0xff >> (8 - cycle_time_range[i])) << cycle_time_offset[i]); | 
 | 329 | 	/* set reg cycle time bits */ | 
 | 330 | 	reg |= cycle_time_value[i][mode - XFER_UDMA_0] << cycle_time_offset[i]; | 
 | 331 |  | 
 | 332 | 	pci_write_config_byte(dev, drive_pci + 1, reg); | 
 | 333 | } | 
 | 334 |  | 
 | 335 | static void sis_program_udma_timings(ide_drive_t *drive, const u8 mode) | 
 | 336 | { | 
 | 337 | 	if (chipset_family >= ATA_133)	/* ATA_133 */ | 
 | 338 | 		sis_ata133_program_udma_timings(drive, mode); | 
 | 339 | 	else				/* ATA_33/66/100a/100/133a */ | 
 | 340 | 		sis_ata33_program_udma_timings(drive, mode); | 
 | 341 | } | 
 | 342 |  | 
| Bartlomiej Zolnierkiewicz | 88b2b32 | 2007-10-13 17:47:51 +0200 | [diff] [blame] | 343 | static void sis_set_dma_mode(ide_drive_t *drive, const u8 speed) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 344 | { | 
| Bartlomiej Zolnierkiewicz | 4db90a1 | 2008-01-25 22:17:18 +0100 | [diff] [blame] | 345 | 	if (speed >= XFER_UDMA_0) | 
 | 346 | 		sis_program_udma_timings(drive, speed); | 
 | 347 | 	else | 
 | 348 | 		sis_program_timings(drive, speed); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 349 | } | 
 | 350 |  | 
| Bartlomiej Zolnierkiewicz | ac95bee | 2008-04-26 22:25:14 +0200 | [diff] [blame] | 351 | static u8 sis_ata133_udma_filter(ide_drive_t *drive) | 
| Bartlomiej Zolnierkiewicz | 3160d54 | 2007-10-11 23:53:59 +0200 | [diff] [blame] | 352 | { | 
| Bartlomiej Zolnierkiewicz | 3650165 | 2008-02-01 23:09:31 +0100 | [diff] [blame] | 353 | 	struct pci_dev *dev = to_pci_dev(drive->hwif->dev); | 
| Bartlomiej Zolnierkiewicz | c77a89c | 2007-10-16 22:29:52 +0200 | [diff] [blame] | 354 | 	u32 regdw = 0; | 
 | 355 | 	u8 drive_pci = sis_ata133_get_base(drive); | 
| Bartlomiej Zolnierkiewicz | 3160d54 | 2007-10-11 23:53:59 +0200 | [diff] [blame] | 356 |  | 
| Bartlomiej Zolnierkiewicz | 3160d54 | 2007-10-11 23:53:59 +0200 | [diff] [blame] | 357 | 	pci_read_config_dword(dev, drive_pci, ®dw); | 
 | 358 |  | 
 | 359 | 	/* if ATA133 disable, we should not set speed above UDMA5 */ | 
 | 360 | 	return (regdw & 0x08) ? ATA_UDMA6 : ATA_UDMA5; | 
 | 361 | } | 
 | 362 |  | 
| Bartlomiej Zolnierkiewicz | 4764b68 | 2008-04-26 17:36:43 +0200 | [diff] [blame] | 363 | static int __devinit sis_find_family(struct pci_dev *dev) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 364 | { | 
 | 365 | 	struct pci_dev *host; | 
 | 366 | 	int i = 0; | 
 | 367 |  | 
 | 368 | 	chipset_family = 0; | 
 | 369 |  | 
 | 370 | 	for (i = 0; i < ARRAY_SIZE(SiSHostChipInfo) && !chipset_family; i++) { | 
 | 371 |  | 
| Alan Cox | 40cddf2 | 2006-09-30 23:27:30 -0700 | [diff] [blame] | 372 | 		host = pci_get_device(PCI_VENDOR_ID_SI, SiSHostChipInfo[i].host_id, NULL); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 373 |  | 
 | 374 | 		if (!host) | 
 | 375 | 			continue; | 
 | 376 |  | 
 | 377 | 		chipset_family = SiSHostChipInfo[i].chipset_family; | 
 | 378 |  | 
 | 379 | 		/* Special case for SiS630 : 630S/ET is ATA_100a */ | 
 | 380 | 		if (SiSHostChipInfo[i].host_id == PCI_DEVICE_ID_SI_630) { | 
| Auke Kok | 44c1013 | 2007-06-08 15:46:36 -0700 | [diff] [blame] | 381 | 			if (host->revision >= 0x30) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 382 | 				chipset_family = ATA_100a; | 
 | 383 | 		} | 
| Alan Cox | 40cddf2 | 2006-09-30 23:27:30 -0700 | [diff] [blame] | 384 | 		pci_dev_put(host); | 
| Paolo Ciarrocchi | 1eb3c2e | 2008-04-26 17:36:39 +0200 | [diff] [blame] | 385 |  | 
| Bartlomiej Zolnierkiewicz | ced3ec8 | 2008-07-24 22:53:32 +0200 | [diff] [blame] | 386 | 		printk(KERN_INFO DRV_NAME " %s: %s %s controller\n", | 
| Bartlomiej Zolnierkiewicz | 28cfd8a | 2008-07-24 22:53:31 +0200 | [diff] [blame] | 387 | 			pci_name(dev), SiSHostChipInfo[i].name, | 
 | 388 | 			chipset_capability[chipset_family]); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 389 | 	} | 
 | 390 |  | 
 | 391 | 	if (!chipset_family) { /* Belongs to pci-quirks */ | 
 | 392 |  | 
 | 393 | 			u32 idemisc; | 
 | 394 | 			u16 trueid; | 
 | 395 |  | 
 | 396 | 			/* Disable ID masking and register remapping */ | 
 | 397 | 			pci_read_config_dword(dev, 0x54, &idemisc); | 
 | 398 | 			pci_write_config_dword(dev, 0x54, (idemisc & 0x7fffffff)); | 
 | 399 | 			pci_read_config_word(dev, PCI_DEVICE_ID, &trueid); | 
 | 400 | 			pci_write_config_dword(dev, 0x54, idemisc); | 
 | 401 |  | 
 | 402 | 			if (trueid == 0x5518) { | 
| Bartlomiej Zolnierkiewicz | ced3ec8 | 2008-07-24 22:53:32 +0200 | [diff] [blame] | 403 | 				printk(KERN_INFO DRV_NAME " %s: SiS 962/963 MuTIOL IDE UDMA133 controller\n", | 
| Bartlomiej Zolnierkiewicz | 28cfd8a | 2008-07-24 22:53:31 +0200 | [diff] [blame] | 404 | 					pci_name(dev)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 405 | 				chipset_family = ATA_133; | 
 | 406 |  | 
 | 407 | 				/* Check for 5513 compability mapping | 
 | 408 | 				 * We must use this, else the port enabled code will fail, | 
 | 409 | 				 * as it expects the enablebits at 0x4a. | 
 | 410 | 				 */ | 
 | 411 | 				if ((idemisc & 0x40000000) == 0) { | 
 | 412 | 					pci_write_config_dword(dev, 0x54, idemisc | 0x40000000); | 
| Bartlomiej Zolnierkiewicz | ced3ec8 | 2008-07-24 22:53:32 +0200 | [diff] [blame] | 413 | 					printk(KERN_INFO DRV_NAME " %s: Switching to 5513 register mapping\n", | 
| Bartlomiej Zolnierkiewicz | 28cfd8a | 2008-07-24 22:53:31 +0200 | [diff] [blame] | 414 | 						pci_name(dev)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 415 | 				} | 
 | 416 | 			} | 
 | 417 | 	} | 
 | 418 |  | 
 | 419 | 	if (!chipset_family) { /* Belongs to pci-quirks */ | 
 | 420 |  | 
 | 421 | 			struct pci_dev *lpc_bridge; | 
 | 422 | 			u16 trueid; | 
 | 423 | 			u8 prefctl; | 
 | 424 | 			u8 idecfg; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 425 |  | 
 | 426 | 			pci_read_config_byte(dev, 0x4a, &idecfg); | 
 | 427 | 			pci_write_config_byte(dev, 0x4a, idecfg | 0x10); | 
 | 428 | 			pci_read_config_word(dev, PCI_DEVICE_ID, &trueid); | 
 | 429 | 			pci_write_config_byte(dev, 0x4a, idecfg); | 
 | 430 |  | 
 | 431 | 			if (trueid == 0x5517) { /* SiS 961/961B */ | 
 | 432 |  | 
| Alan Cox | b148900 | 2006-12-08 02:39:58 -0800 | [diff] [blame] | 433 | 				lpc_bridge = pci_get_slot(dev->bus, 0x10); /* Bus 0, Dev 2, Fn 0 */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 434 | 				pci_read_config_byte(dev, 0x49, &prefctl); | 
| Alan Cox | b148900 | 2006-12-08 02:39:58 -0800 | [diff] [blame] | 435 | 				pci_dev_put(lpc_bridge); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 436 |  | 
| Auke Kok | 44c1013 | 2007-06-08 15:46:36 -0700 | [diff] [blame] | 437 | 				if (lpc_bridge->revision == 0x10 && (prefctl & 0x80)) { | 
| Bartlomiej Zolnierkiewicz | ced3ec8 | 2008-07-24 22:53:32 +0200 | [diff] [blame] | 438 | 					printk(KERN_INFO DRV_NAME " %s: SiS 961B MuTIOL IDE UDMA133 controller\n", | 
| Bartlomiej Zolnierkiewicz | 28cfd8a | 2008-07-24 22:53:31 +0200 | [diff] [blame] | 439 | 						pci_name(dev)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 440 | 					chipset_family = ATA_133a; | 
 | 441 | 				} else { | 
| Bartlomiej Zolnierkiewicz | ced3ec8 | 2008-07-24 22:53:32 +0200 | [diff] [blame] | 442 | 					printk(KERN_INFO DRV_NAME " %s: SiS 961 MuTIOL IDE UDMA100 controller\n", | 
| Bartlomiej Zolnierkiewicz | 28cfd8a | 2008-07-24 22:53:31 +0200 | [diff] [blame] | 443 | 						pci_name(dev)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 444 | 					chipset_family = ATA_100; | 
 | 445 | 				} | 
 | 446 | 			} | 
 | 447 | 	} | 
 | 448 |  | 
| Bartlomiej Zolnierkiewicz | 4764b68 | 2008-04-26 17:36:43 +0200 | [diff] [blame] | 449 | 	return chipset_family; | 
 | 450 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 451 |  | 
| Bartlomiej Zolnierkiewicz | 2ed0ef5 | 2009-03-24 23:22:53 +0100 | [diff] [blame] | 452 | static int init_chipset_sis5513(struct pci_dev *dev) | 
| Bartlomiej Zolnierkiewicz | 4764b68 | 2008-04-26 17:36:43 +0200 | [diff] [blame] | 453 | { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 454 | 	/* Make general config ops here | 
 | 455 | 	   1/ tell IDE channels to operate in Compatibility mode only | 
 | 456 | 	   2/ tell old chips to allow per drive IDE timings */ | 
 | 457 |  | 
| Paolo Ciarrocchi | 1eb3c2e | 2008-04-26 17:36:39 +0200 | [diff] [blame] | 458 | 	u8 reg; | 
 | 459 | 	u16 regw; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 460 |  | 
| Paolo Ciarrocchi | 1eb3c2e | 2008-04-26 17:36:39 +0200 | [diff] [blame] | 461 | 	switch (chipset_family) { | 
 | 462 | 	case ATA_133: | 
 | 463 | 		/* SiS962 operation mode */ | 
 | 464 | 		pci_read_config_word(dev, 0x50, ®w); | 
 | 465 | 		if (regw & 0x08) | 
 | 466 | 			pci_write_config_word(dev, 0x50, regw&0xfff7); | 
 | 467 | 		pci_read_config_word(dev, 0x52, ®w); | 
 | 468 | 		if (regw & 0x08) | 
 | 469 | 			pci_write_config_word(dev, 0x52, regw&0xfff7); | 
 | 470 | 		break; | 
 | 471 | 	case ATA_133a: | 
 | 472 | 	case ATA_100: | 
 | 473 | 		/* Fixup latency */ | 
 | 474 | 		pci_write_config_byte(dev, PCI_LATENCY_TIMER, 0x80); | 
 | 475 | 		/* Set compatibility bit */ | 
 | 476 | 		pci_read_config_byte(dev, 0x49, ®); | 
 | 477 | 		if (!(reg & 0x01)) | 
 | 478 | 			pci_write_config_byte(dev, 0x49, reg|0x01); | 
 | 479 | 		break; | 
 | 480 | 	case ATA_100a: | 
 | 481 | 	case ATA_66: | 
 | 482 | 		/* Fixup latency */ | 
 | 483 | 		pci_write_config_byte(dev, PCI_LATENCY_TIMER, 0x10); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 484 |  | 
| Paolo Ciarrocchi | 1eb3c2e | 2008-04-26 17:36:39 +0200 | [diff] [blame] | 485 | 		/* On ATA_66 chips the bit was elsewhere */ | 
 | 486 | 		pci_read_config_byte(dev, 0x52, ®); | 
 | 487 | 		if (!(reg & 0x04)) | 
 | 488 | 			pci_write_config_byte(dev, 0x52, reg|0x04); | 
 | 489 | 		break; | 
 | 490 | 	case ATA_33: | 
 | 491 | 		/* On ATA_33 we didn't have a single bit to set */ | 
 | 492 | 		pci_read_config_byte(dev, 0x09, ®); | 
 | 493 | 		if ((reg & 0x0f) != 0x00) | 
 | 494 | 			pci_write_config_byte(dev, 0x09, reg&0xf0); | 
 | 495 | 	case ATA_16: | 
 | 496 | 		/* force per drive recovery and active timings | 
 | 497 | 		   needed on ATA_33 and below chips */ | 
 | 498 | 		pci_read_config_byte(dev, 0x52, ®); | 
 | 499 | 		if (!(reg & 0x08)) | 
 | 500 | 			pci_write_config_byte(dev, 0x52, reg|0x08); | 
 | 501 | 		break; | 
 | 502 | 	} | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 503 |  | 
 | 504 | 	return 0; | 
 | 505 | } | 
 | 506 |  | 
| Bartlomiej Zolnierkiewicz | f2befd9 | 2007-07-09 23:17:58 +0200 | [diff] [blame] | 507 | struct sis_laptop { | 
 | 508 | 	u16 device; | 
 | 509 | 	u16 subvendor; | 
 | 510 | 	u16 subdevice; | 
 | 511 | }; | 
 | 512 |  | 
 | 513 | static const struct sis_laptop sis_laptop[] = { | 
 | 514 | 	/* devid, subvendor, subdev */ | 
 | 515 | 	{ 0x5513, 0x1043, 0x1107 },	/* ASUS A6K */ | 
| David Lamparter | 1955f68 | 2007-08-01 23:46:44 +0200 | [diff] [blame] | 516 | 	{ 0x5513, 0x1734, 0x105f },	/* FSC Amilo A1630 */ | 
| Gabriel Craciunescu | a1d8586 | 2007-11-27 21:35:52 +0100 | [diff] [blame] | 517 | 	{ 0x5513, 0x1071, 0x8640 },     /* EasyNote K5305 */ | 
| Bartlomiej Zolnierkiewicz | f2befd9 | 2007-07-09 23:17:58 +0200 | [diff] [blame] | 518 | 	/* end marker */ | 
 | 519 | 	{ 0, } | 
 | 520 | }; | 
 | 521 |  | 
| Bartlomiej Zolnierkiewicz | f454cbe | 2008-08-05 18:17:04 +0200 | [diff] [blame] | 522 | static u8 sis_cable_detect(ide_hwif_t *hwif) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 523 | { | 
| Bartlomiej Zolnierkiewicz | 3650165 | 2008-02-01 23:09:31 +0100 | [diff] [blame] | 524 | 	struct pci_dev *pdev = to_pci_dev(hwif->dev); | 
| Bartlomiej Zolnierkiewicz | f2befd9 | 2007-07-09 23:17:58 +0200 | [diff] [blame] | 525 | 	const struct sis_laptop *lap = &sis_laptop[0]; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 526 | 	u8 ata66 = 0; | 
 | 527 |  | 
| Bartlomiej Zolnierkiewicz | f2befd9 | 2007-07-09 23:17:58 +0200 | [diff] [blame] | 528 | 	while (lap->device) { | 
 | 529 | 		if (lap->device == pdev->device && | 
 | 530 | 		    lap->subvendor == pdev->subsystem_vendor && | 
 | 531 | 		    lap->subdevice == pdev->subsystem_device) | 
 | 532 | 			return ATA_CBL_PATA40_SHORT; | 
 | 533 | 		lap++; | 
 | 534 | 	} | 
 | 535 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 536 | 	if (chipset_family >= ATA_133) { | 
 | 537 | 		u16 regw = 0; | 
 | 538 | 		u16 reg_addr = hwif->channel ? 0x52: 0x50; | 
| Bartlomiej Zolnierkiewicz | 3650165 | 2008-02-01 23:09:31 +0100 | [diff] [blame] | 539 | 		pci_read_config_word(pdev, reg_addr, ®w); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 540 | 		ata66 = (regw & 0x8000) ? 0 : 1; | 
 | 541 | 	} else if (chipset_family >= ATA_66) { | 
 | 542 | 		u8 reg48h = 0; | 
 | 543 | 		u8 mask = hwif->channel ? 0x20 : 0x10; | 
| Bartlomiej Zolnierkiewicz | 3650165 | 2008-02-01 23:09:31 +0100 | [diff] [blame] | 544 | 		pci_read_config_byte(pdev, 0x48, ®48h); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 545 | 		ata66 = (reg48h & mask) ? 0 : 1; | 
 | 546 | 	} | 
| Bartlomiej Zolnierkiewicz | 49521f9 | 2007-07-09 23:17:58 +0200 | [diff] [blame] | 547 |  | 
 | 548 | 	return ata66 ? ATA_CBL_PATA80 : ATA_CBL_PATA40; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 549 | } | 
 | 550 |  | 
| Bartlomiej Zolnierkiewicz | ac95bee | 2008-04-26 22:25:14 +0200 | [diff] [blame] | 551 | static const struct ide_port_ops sis_port_ops = { | 
 | 552 | 	.set_pio_mode		= sis_set_pio_mode, | 
 | 553 | 	.set_dma_mode		= sis_set_dma_mode, | 
 | 554 | 	.cable_detect		= sis_cable_detect, | 
 | 555 | }; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 556 |  | 
| Bartlomiej Zolnierkiewicz | ac95bee | 2008-04-26 22:25:14 +0200 | [diff] [blame] | 557 | static const struct ide_port_ops sis_ata133_port_ops = { | 
 | 558 | 	.set_pio_mode		= sis_set_pio_mode, | 
 | 559 | 	.set_dma_mode		= sis_set_dma_mode, | 
 | 560 | 	.udma_filter		= sis_ata133_udma_filter, | 
 | 561 | 	.cable_detect		= sis_cable_detect, | 
 | 562 | }; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 563 |  | 
| Bartlomiej Zolnierkiewicz | 8562043 | 2007-10-20 00:32:34 +0200 | [diff] [blame] | 564 | static const struct ide_port_info sis5513_chipset __devinitdata = { | 
| Bartlomiej Zolnierkiewicz | ced3ec8 | 2008-07-24 22:53:32 +0200 | [diff] [blame] | 565 | 	.name		= DRV_NAME, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 566 | 	.init_chipset	= init_chipset_sis5513, | 
| Paolo Ciarrocchi | 1eb3c2e | 2008-04-26 17:36:39 +0200 | [diff] [blame] | 567 | 	.enablebits	= { {0x4a, 0x02, 0x02}, {0x4a, 0x04, 0x04} }, | 
| Bartlomiej Zolnierkiewicz | 2467922 | 2009-03-24 23:22:52 +0100 | [diff] [blame] | 568 | 	.host_flags	= IDE_HFLAG_NO_AUTODMA, | 
| Bartlomiej Zolnierkiewicz | 4099d14 | 2007-07-20 01:11:59 +0200 | [diff] [blame] | 569 | 	.pio_mask	= ATA_PIO4, | 
| Bartlomiej Zolnierkiewicz | 5f8b6c3 | 2007-10-19 00:30:07 +0200 | [diff] [blame] | 570 | 	.mwdma_mask	= ATA_MWDMA2, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 571 | }; | 
 | 572 |  | 
 | 573 | static int __devinit sis5513_init_one(struct pci_dev *dev, const struct pci_device_id *id) | 
 | 574 | { | 
| Bartlomiej Zolnierkiewicz | 4764b68 | 2008-04-26 17:36:43 +0200 | [diff] [blame] | 575 | 	struct ide_port_info d = sis5513_chipset; | 
 | 576 | 	u8 udma_rates[] = { 0x00, 0x00, 0x07, 0x1f, 0x3f, 0x3f, 0x7f, 0x7f }; | 
| Bartlomiej Zolnierkiewicz | cd18f69 | 2008-06-10 20:56:36 +0200 | [diff] [blame] | 577 | 	int rc; | 
 | 578 |  | 
 | 579 | 	rc = pci_enable_device(dev); | 
 | 580 | 	if (rc) | 
 | 581 | 		return rc; | 
| Bartlomiej Zolnierkiewicz | 4764b68 | 2008-04-26 17:36:43 +0200 | [diff] [blame] | 582 |  | 
 | 583 | 	if (sis_find_family(dev) == 0) | 
 | 584 | 		return -ENOTSUPP; | 
 | 585 |  | 
| Bartlomiej Zolnierkiewicz | ac95bee | 2008-04-26 22:25:14 +0200 | [diff] [blame] | 586 | 	if (chipset_family >= ATA_133) | 
 | 587 | 		d.port_ops = &sis_ata133_port_ops; | 
 | 588 | 	else | 
 | 589 | 		d.port_ops = &sis_port_ops; | 
 | 590 |  | 
| Bartlomiej Zolnierkiewicz | 4764b68 | 2008-04-26 17:36:43 +0200 | [diff] [blame] | 591 | 	d.udma_mask = udma_rates[chipset_family]; | 
 | 592 |  | 
| Bartlomiej Zolnierkiewicz | 6cdf6eb | 2008-07-24 22:53:14 +0200 | [diff] [blame] | 593 | 	return ide_pci_init_one(dev, &d, NULL); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 594 | } | 
 | 595 |  | 
| Bartlomiej Zolnierkiewicz | 1ceb906 | 2008-07-24 22:53:25 +0200 | [diff] [blame] | 596 | static void __devexit sis5513_remove(struct pci_dev *dev) | 
 | 597 | { | 
 | 598 | 	ide_pci_remove(dev); | 
 | 599 | 	pci_disable_device(dev); | 
 | 600 | } | 
 | 601 |  | 
| Bartlomiej Zolnierkiewicz | 9cbcc5e | 2007-10-16 22:29:56 +0200 | [diff] [blame] | 602 | static const struct pci_device_id sis5513_pci_tbl[] = { | 
 | 603 | 	{ PCI_VDEVICE(SI, PCI_DEVICE_ID_SI_5513), 0 }, | 
 | 604 | 	{ PCI_VDEVICE(SI, PCI_DEVICE_ID_SI_5518), 0 }, | 
 | 605 | 	{ PCI_VDEVICE(SI, PCI_DEVICE_ID_SI_1180), 0 }, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 606 | 	{ 0, }, | 
 | 607 | }; | 
 | 608 | MODULE_DEVICE_TABLE(pci, sis5513_pci_tbl); | 
 | 609 |  | 
| Bartlomiej Zolnierkiewicz | a9ab09e | 2008-10-13 21:39:41 +0200 | [diff] [blame] | 610 | static struct pci_driver sis5513_pci_driver = { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 611 | 	.name		= "SIS_IDE", | 
 | 612 | 	.id_table	= sis5513_pci_tbl, | 
 | 613 | 	.probe		= sis5513_init_one, | 
| Adrian Bunk | a69999e | 2008-08-18 21:40:03 +0200 | [diff] [blame] | 614 | 	.remove		= __devexit_p(sis5513_remove), | 
| Bartlomiej Zolnierkiewicz | feb22b7 | 2008-10-10 22:39:32 +0200 | [diff] [blame] | 615 | 	.suspend	= ide_pci_suspend, | 
 | 616 | 	.resume		= ide_pci_resume, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 617 | }; | 
 | 618 |  | 
| Bartlomiej Zolnierkiewicz | 82ab1ee | 2007-01-27 13:46:56 +0100 | [diff] [blame] | 619 | static int __init sis5513_ide_init(void) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 620 | { | 
| Bartlomiej Zolnierkiewicz | a9ab09e | 2008-10-13 21:39:41 +0200 | [diff] [blame] | 621 | 	return ide_pci_register_driver(&sis5513_pci_driver); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 622 | } | 
 | 623 |  | 
| Bartlomiej Zolnierkiewicz | 1ceb906 | 2008-07-24 22:53:25 +0200 | [diff] [blame] | 624 | static void __exit sis5513_ide_exit(void) | 
 | 625 | { | 
| Bartlomiej Zolnierkiewicz | a9ab09e | 2008-10-13 21:39:41 +0200 | [diff] [blame] | 626 | 	pci_unregister_driver(&sis5513_pci_driver); | 
| Bartlomiej Zolnierkiewicz | 1ceb906 | 2008-07-24 22:53:25 +0200 | [diff] [blame] | 627 | } | 
 | 628 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 629 | module_init(sis5513_ide_init); | 
| Bartlomiej Zolnierkiewicz | 1ceb906 | 2008-07-24 22:53:25 +0200 | [diff] [blame] | 630 | module_exit(sis5513_ide_exit); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 631 |  | 
 | 632 | MODULE_AUTHOR("Lionel Bouton, L C Chang, Andre Hedrick, Vojtech Pavlik"); | 
 | 633 | MODULE_DESCRIPTION("PCI driver module for SIS IDE"); | 
 | 634 | MODULE_LICENSE("GPL"); | 
 | 635 |  | 
 | 636 | /* | 
 | 637 |  * TODO: | 
 | 638 |  *	- CLEANUP | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 639 |  *	- More checks in the config registers (force values instead of | 
 | 640 |  *	  relying on the BIOS setting them correctly). | 
 | 641 |  *	- Further optimisations ? | 
 | 642 |  *	  . for example ATA66+ regs 0x48 & 0x4A | 
 | 643 |  */ |