| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* | 
 | 2 |  * linux/drivers/ide/pci/serverworks.c		Version 0.8	 25 Ebr 2003 | 
 | 3 |  * | 
 | 4 |  * Copyright (C) 1998-2000 Michel Aubry | 
 | 5 |  * Copyright (C) 1998-2000 Andrzej Krzysztofowicz | 
 | 6 |  * Copyright (C) 1998-2000 Andre Hedrick <andre@linux-ide.org> | 
 | 7 |  * Portions copyright (c) 2001 Sun Microsystems | 
 | 8 |  * | 
 | 9 |  * | 
 | 10 |  * RCC/ServerWorks IDE driver for Linux | 
 | 11 |  * | 
 | 12 |  *   OSB4: `Open South Bridge' IDE Interface (fn 1) | 
 | 13 |  *         supports UDMA mode 2 (33 MB/s) | 
 | 14 |  * | 
 | 15 |  *   CSB5: `Champion South Bridge' IDE Interface (fn 1) | 
 | 16 |  *         all revisions support UDMA mode 4 (66 MB/s) | 
 | 17 |  *         revision A2.0 and up support UDMA mode 5 (100 MB/s) | 
 | 18 |  * | 
 | 19 |  *         *** The CSB5 does not provide ANY register *** | 
 | 20 |  *         *** to detect 80-conductor cable presence. *** | 
 | 21 |  * | 
 | 22 |  *   CSB6: `Champion South Bridge' IDE Interface (optional: third channel) | 
 | 23 |  * | 
| Narendra Sankar | 84f57fb | 2005-08-18 22:30:35 +0200 | [diff] [blame] | 24 |  *   HT1000: AKA BCM5785 - Hypertransport Southbridge for Opteron systems. IDE | 
 | 25 |  *   controller same as the CSB6. Single channel ATA100 only. | 
 | 26 |  * | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 27 |  * Documentation: | 
 | 28 |  *	Available under NDA only. Errata info very hard to get. | 
 | 29 |  * | 
 | 30 |  */ | 
 | 31 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | #include <linux/types.h> | 
 | 33 | #include <linux/module.h> | 
 | 34 | #include <linux/kernel.h> | 
 | 35 | #include <linux/ioport.h> | 
 | 36 | #include <linux/pci.h> | 
 | 37 | #include <linux/hdreg.h> | 
 | 38 | #include <linux/ide.h> | 
 | 39 | #include <linux/init.h> | 
 | 40 | #include <linux/delay.h> | 
 | 41 |  | 
 | 42 | #include <asm/io.h> | 
 | 43 |  | 
 | 44 | #define SVWKS_CSB5_REVISION_NEW	0x92 /* min PCI_REVISION_ID for UDMA5 (A2.0) */ | 
 | 45 | #define SVWKS_CSB6_REVISION	0xa0 /* min PCI_REVISION_ID for UDMA4 (A1.0) */ | 
 | 46 |  | 
 | 47 | /* Seagate Barracuda ATA IV Family drives in UDMA mode 5 | 
 | 48 |  * can overrun their FIFOs when used with the CSB5 */ | 
 | 49 | static const char *svwks_bad_ata100[] = { | 
 | 50 | 	"ST320011A", | 
 | 51 | 	"ST340016A", | 
 | 52 | 	"ST360021A", | 
 | 53 | 	"ST380021A", | 
 | 54 | 	NULL | 
 | 55 | }; | 
 | 56 |  | 
 | 57 | static u8 svwks_revision = 0; | 
 | 58 | static struct pci_dev *isa_dev; | 
 | 59 |  | 
 | 60 | static int check_in_drive_lists (ide_drive_t *drive, const char **list) | 
 | 61 | { | 
 | 62 | 	while (*list) | 
 | 63 | 		if (!strcmp(*list++, drive->id->model)) | 
 | 64 | 			return 1; | 
 | 65 | 	return 0; | 
 | 66 | } | 
 | 67 |  | 
 | 68 | static u8 svwks_ratemask (ide_drive_t *drive) | 
 | 69 | { | 
 | 70 | 	struct pci_dev *dev     = HWIF(drive)->pci_dev; | 
| David Howells | 6d524ae | 2006-01-08 01:01:26 -0800 | [diff] [blame] | 71 | 	u8 mode = 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 72 |  | 
 | 73 | 	if (!svwks_revision) | 
 | 74 | 		pci_read_config_byte(dev, PCI_REVISION_ID, &svwks_revision); | 
 | 75 |  | 
| Narendra Sankar | 84f57fb | 2005-08-18 22:30:35 +0200 | [diff] [blame] | 76 | 	if (dev->device == PCI_DEVICE_ID_SERVERWORKS_HT1000IDE) | 
 | 77 | 		return 2; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 78 | 	if (dev->device == PCI_DEVICE_ID_SERVERWORKS_OSB4IDE) { | 
 | 79 | 		u32 reg = 0; | 
 | 80 | 		if (isa_dev) | 
 | 81 | 			pci_read_config_dword(isa_dev, 0x64, ®); | 
 | 82 | 			 | 
 | 83 | 		/* | 
 | 84 | 		 *	Don't enable UDMA on disk devices for the moment | 
 | 85 | 		 */ | 
 | 86 | 		if(drive->media == ide_disk) | 
 | 87 | 			return 0; | 
 | 88 | 		/* Check the OSB4 DMA33 enable bit */ | 
 | 89 | 		return ((reg & 0x00004000) == 0x00004000) ? 1 : 0; | 
 | 90 | 	} else if (svwks_revision < SVWKS_CSB5_REVISION_NEW) { | 
 | 91 | 		return 1; | 
 | 92 | 	} else if (svwks_revision >= SVWKS_CSB5_REVISION_NEW) { | 
 | 93 | 		u8 btr = 0; | 
 | 94 | 		pci_read_config_byte(dev, 0x5A, &btr); | 
 | 95 | 		mode = btr & 0x3; | 
 | 96 | 		if (!eighty_ninty_three(drive)) | 
 | 97 | 			mode = min(mode, (u8)1); | 
 | 98 | 		/* If someone decides to do UDMA133 on CSB5 the same | 
 | 99 | 		   issue will bite so be inclusive */ | 
 | 100 | 		if (mode > 2 && check_in_drive_lists(drive, svwks_bad_ata100)) | 
 | 101 | 			mode = 2; | 
 | 102 | 	} | 
 | 103 | 	if (((dev->device == PCI_DEVICE_ID_SERVERWORKS_CSB6IDE) || | 
 | 104 | 	     (dev->device == PCI_DEVICE_ID_SERVERWORKS_CSB6IDE2)) && | 
 | 105 | 	    (!(PCI_FUNC(dev->devfn) & 1))) | 
 | 106 | 		mode = 2; | 
 | 107 | 	return mode; | 
 | 108 | } | 
 | 109 |  | 
 | 110 | static u8 svwks_csb_check (struct pci_dev *dev) | 
 | 111 | { | 
 | 112 | 	switch (dev->device) { | 
 | 113 | 		case PCI_DEVICE_ID_SERVERWORKS_CSB5IDE: | 
 | 114 | 		case PCI_DEVICE_ID_SERVERWORKS_CSB6IDE: | 
 | 115 | 		case PCI_DEVICE_ID_SERVERWORKS_CSB6IDE2: | 
| Narendra Sankar | 84f57fb | 2005-08-18 22:30:35 +0200 | [diff] [blame] | 116 | 		case PCI_DEVICE_ID_SERVERWORKS_HT1000IDE: | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 117 | 			return 1; | 
 | 118 | 		default: | 
 | 119 | 			break; | 
 | 120 | 	} | 
 | 121 | 	return 0; | 
 | 122 | } | 
 | 123 | static int svwks_tune_chipset (ide_drive_t *drive, u8 xferspeed) | 
 | 124 | { | 
| Alan Cox | f201f50 | 2006-06-28 04:27:02 -0700 | [diff] [blame] | 125 | 	static const u8 udma_modes[]		= { 0x00, 0x01, 0x02, 0x03, 0x04, 0x05 }; | 
 | 126 | 	static const u8 dma_modes[]		= { 0x77, 0x21, 0x20 }; | 
 | 127 | 	static const u8 pio_modes[]		= { 0x5d, 0x47, 0x34, 0x22, 0x20 }; | 
 | 128 | 	static const u8 drive_pci[]		= { 0x41, 0x40, 0x43, 0x42 }; | 
 | 129 | 	static const u8 drive_pci2[]		= { 0x45, 0x44, 0x47, 0x46 }; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 130 |  | 
 | 131 | 	ide_hwif_t *hwif	= HWIF(drive); | 
 | 132 | 	struct pci_dev *dev	= hwif->pci_dev; | 
 | 133 | 	u8 speed; | 
 | 134 | 	u8 pio			= ide_get_best_pio_mode(drive, 255, 5, NULL); | 
 | 135 | 	u8 unit			= (drive->select.b.unit & 0x01); | 
 | 136 | 	u8 csb5			= svwks_csb_check(dev); | 
 | 137 | 	u8 ultra_enable		= 0, ultra_timing = 0; | 
 | 138 | 	u8 dma_timing		= 0, pio_timing = 0; | 
 | 139 | 	u16 csb5_pio		= 0; | 
 | 140 |  | 
 | 141 | 	if (xferspeed == 255)	/* PIO auto-tuning */ | 
 | 142 | 		speed = XFER_PIO_0 + pio; | 
 | 143 | 	else | 
 | 144 | 		speed = ide_rate_filter(svwks_ratemask(drive), xferspeed); | 
 | 145 |  | 
 | 146 | 	/* If we are about to put a disk into UDMA mode we screwed up. | 
 | 147 | 	   Our code assumes we never _ever_ do this on an OSB4 */ | 
 | 148 | 	    | 
 | 149 | 	if(dev->device == PCI_DEVICE_ID_SERVERWORKS_OSB4 && | 
 | 150 | 		drive->media == ide_disk && speed >= XFER_UDMA_0) | 
 | 151 | 			BUG(); | 
 | 152 | 			 | 
 | 153 | 	pci_read_config_byte(dev, drive_pci[drive->dn], &pio_timing); | 
 | 154 | 	pci_read_config_byte(dev, drive_pci2[drive->dn], &dma_timing); | 
 | 155 | 	pci_read_config_byte(dev, (0x56|hwif->channel), &ultra_timing); | 
 | 156 | 	pci_read_config_word(dev, 0x4A, &csb5_pio); | 
 | 157 | 	pci_read_config_byte(dev, 0x54, &ultra_enable); | 
 | 158 |  | 
 | 159 | 	/* Per Specified Design by OEM, and ASIC Architect */ | 
 | 160 | 	if ((dev->device == PCI_DEVICE_ID_SERVERWORKS_CSB6IDE) || | 
 | 161 | 	    (dev->device == PCI_DEVICE_ID_SERVERWORKS_CSB6IDE2)) { | 
 | 162 | 		if (!drive->init_speed) { | 
 | 163 | 			u8 dma_stat = hwif->INB(hwif->dma_status); | 
 | 164 |  | 
 | 165 | dma_pio: | 
 | 166 | 			if (((ultra_enable << (7-drive->dn) & 0x80) == 0x80) && | 
 | 167 | 			    ((dma_stat & (1<<(5+unit))) == (1<<(5+unit)))) { | 
 | 168 | 				drive->current_speed = drive->init_speed = XFER_UDMA_0 + udma_modes[(ultra_timing >> (4*unit)) & ~(0xF0)]; | 
 | 169 | 				return 0; | 
 | 170 | 			} else if ((dma_timing) && | 
 | 171 | 				   ((dma_stat&(1<<(5+unit)))==(1<<(5+unit)))) { | 
 | 172 | 				u8 dmaspeed = dma_timing; | 
 | 173 |  | 
 | 174 | 				dma_timing &= ~0xFF; | 
 | 175 | 				if ((dmaspeed & 0x20) == 0x20) | 
 | 176 | 					dmaspeed = XFER_MW_DMA_2; | 
 | 177 | 				else if ((dmaspeed & 0x21) == 0x21) | 
 | 178 | 					dmaspeed = XFER_MW_DMA_1; | 
 | 179 | 				else if ((dmaspeed & 0x77) == 0x77) | 
 | 180 | 					dmaspeed = XFER_MW_DMA_0; | 
 | 181 | 				else | 
 | 182 | 					goto dma_pio; | 
 | 183 | 				drive->current_speed = drive->init_speed = dmaspeed; | 
 | 184 | 				return 0; | 
 | 185 | 			} else if (pio_timing) { | 
 | 186 | 				u8 piospeed = pio_timing; | 
 | 187 |  | 
 | 188 | 				pio_timing &= ~0xFF; | 
 | 189 | 				if ((piospeed & 0x20) == 0x20) | 
 | 190 | 					piospeed = XFER_PIO_4; | 
 | 191 | 				else if ((piospeed & 0x22) == 0x22) | 
 | 192 | 					piospeed = XFER_PIO_3; | 
 | 193 | 				else if ((piospeed & 0x34) == 0x34) | 
 | 194 | 					piospeed = XFER_PIO_2; | 
 | 195 | 				else if ((piospeed & 0x47) == 0x47) | 
 | 196 | 					piospeed = XFER_PIO_1; | 
 | 197 | 				else if ((piospeed & 0x5d) == 0x5d) | 
 | 198 | 					piospeed = XFER_PIO_0; | 
 | 199 | 				else | 
 | 200 | 					goto oem_setup_failed; | 
 | 201 | 				drive->current_speed = drive->init_speed = piospeed; | 
 | 202 | 				return 0; | 
 | 203 | 			} | 
 | 204 | 		} | 
 | 205 | 	} | 
 | 206 |  | 
 | 207 | oem_setup_failed: | 
 | 208 |  | 
 | 209 | 	pio_timing	&= ~0xFF; | 
 | 210 | 	dma_timing	&= ~0xFF; | 
 | 211 | 	ultra_timing	&= ~(0x0F << (4*unit)); | 
 | 212 | 	ultra_enable	&= ~(0x01 << drive->dn); | 
 | 213 | 	csb5_pio	&= ~(0x0F << (4*drive->dn)); | 
 | 214 |  | 
 | 215 | 	switch(speed) { | 
 | 216 | 		case XFER_PIO_4: | 
 | 217 | 		case XFER_PIO_3: | 
 | 218 | 		case XFER_PIO_2: | 
 | 219 | 		case XFER_PIO_1: | 
 | 220 | 		case XFER_PIO_0: | 
 | 221 | 			pio_timing |= pio_modes[speed - XFER_PIO_0]; | 
 | 222 | 			csb5_pio   |= ((speed - XFER_PIO_0) << (4*drive->dn)); | 
 | 223 | 			break; | 
 | 224 |  | 
 | 225 | 		case XFER_MW_DMA_2: | 
 | 226 | 		case XFER_MW_DMA_1: | 
 | 227 | 		case XFER_MW_DMA_0: | 
 | 228 | 			pio_timing |= pio_modes[pio]; | 
 | 229 | 			csb5_pio   |= (pio << (4*drive->dn)); | 
 | 230 | 			dma_timing |= dma_modes[speed - XFER_MW_DMA_0]; | 
 | 231 | 			break; | 
 | 232 |  | 
 | 233 | 		case XFER_UDMA_5: | 
 | 234 | 		case XFER_UDMA_4: | 
 | 235 | 		case XFER_UDMA_3: | 
 | 236 | 		case XFER_UDMA_2: | 
 | 237 | 		case XFER_UDMA_1: | 
 | 238 | 		case XFER_UDMA_0: | 
 | 239 | 			pio_timing   |= pio_modes[pio]; | 
 | 240 | 			csb5_pio     |= (pio << (4*drive->dn)); | 
 | 241 | 			dma_timing   |= dma_modes[2]; | 
 | 242 | 			ultra_timing |= ((udma_modes[speed - XFER_UDMA_0]) << (4*unit)); | 
 | 243 | 			ultra_enable |= (0x01 << drive->dn); | 
 | 244 | 		default: | 
 | 245 | 			break; | 
 | 246 | 	} | 
 | 247 |  | 
 | 248 | 	pci_write_config_byte(dev, drive_pci[drive->dn], pio_timing); | 
 | 249 | 	if (csb5) | 
 | 250 | 		pci_write_config_word(dev, 0x4A, csb5_pio); | 
 | 251 |  | 
 | 252 | 	pci_write_config_byte(dev, drive_pci2[drive->dn], dma_timing); | 
 | 253 | 	pci_write_config_byte(dev, (0x56|hwif->channel), ultra_timing); | 
 | 254 | 	pci_write_config_byte(dev, 0x54, ultra_enable); | 
 | 255 |  | 
 | 256 | 	return (ide_config_drive_speed(drive, speed)); | 
 | 257 | } | 
 | 258 |  | 
 | 259 | static void config_chipset_for_pio (ide_drive_t *drive) | 
 | 260 | { | 
 | 261 | 	u16 eide_pio_timing[6] = {960, 480, 240, 180, 120, 90}; | 
 | 262 | 	u16 xfer_pio = drive->id->eide_pio_modes; | 
 | 263 | 	u8 timing, speed, pio; | 
 | 264 |  | 
 | 265 | 	pio = ide_get_best_pio_mode(drive, 255, 5, NULL); | 
 | 266 |  | 
 | 267 | 	if (xfer_pio > 4) | 
 | 268 | 		xfer_pio = 0; | 
 | 269 |  | 
 | 270 | 	if (drive->id->eide_pio_iordy > 0) | 
 | 271 | 		for (xfer_pio = 5; | 
 | 272 | 			xfer_pio>0 && | 
 | 273 | 			drive->id->eide_pio_iordy>eide_pio_timing[xfer_pio]; | 
 | 274 | 			xfer_pio--); | 
 | 275 | 	else | 
 | 276 | 		xfer_pio = (drive->id->eide_pio_modes & 4) ? 0x05 : | 
 | 277 | 			   (drive->id->eide_pio_modes & 2) ? 0x04 : | 
 | 278 | 			   (drive->id->eide_pio_modes & 1) ? 0x03 : | 
 | 279 | 			   (drive->id->tPIO & 2) ? 0x02 : | 
 | 280 | 			   (drive->id->tPIO & 1) ? 0x01 : xfer_pio; | 
 | 281 |  | 
 | 282 | 	timing = (xfer_pio >= pio) ? xfer_pio : pio; | 
 | 283 |  | 
 | 284 | 	switch(timing) { | 
 | 285 | 		case 4: speed = XFER_PIO_4;break; | 
 | 286 | 		case 3: speed = XFER_PIO_3;break; | 
 | 287 | 		case 2: speed = XFER_PIO_2;break; | 
 | 288 | 		case 1: speed = XFER_PIO_1;break; | 
 | 289 | 		default: | 
 | 290 | 			speed = (!drive->id->tPIO) ? XFER_PIO_0 : XFER_PIO_SLOW; | 
 | 291 | 			break; | 
 | 292 | 	} | 
 | 293 | 	(void) svwks_tune_chipset(drive, speed); | 
 | 294 | 	drive->current_speed = speed; | 
 | 295 | } | 
 | 296 |  | 
 | 297 | static void svwks_tune_drive (ide_drive_t *drive, u8 pio) | 
 | 298 | { | 
 | 299 | 	if(pio == 255) | 
 | 300 | 		(void) svwks_tune_chipset(drive, 255); | 
 | 301 | 	else | 
 | 302 | 		(void) svwks_tune_chipset(drive, (XFER_PIO_0 + pio)); | 
 | 303 | } | 
 | 304 |  | 
 | 305 | static int config_chipset_for_dma (ide_drive_t *drive) | 
 | 306 | { | 
 | 307 | 	u8 speed = ide_dma_speed(drive, svwks_ratemask(drive)); | 
 | 308 |  | 
 | 309 | 	if (!(speed)) | 
 | 310 | 		speed = XFER_PIO_0 + ide_get_best_pio_mode(drive, 255, 5, NULL); | 
 | 311 |  | 
 | 312 | 	(void) svwks_tune_chipset(drive, speed); | 
 | 313 | 	return ide_dma_enable(drive); | 
 | 314 | } | 
 | 315 |  | 
 | 316 | static int svwks_config_drive_xfer_rate (ide_drive_t *drive) | 
 | 317 | { | 
 | 318 | 	ide_hwif_t *hwif	= HWIF(drive); | 
 | 319 | 	struct hd_driveid *id	= drive->id; | 
 | 320 |  | 
 | 321 | 	drive->init_speed = 0; | 
 | 322 |  | 
 | 323 | 	if ((id->capability & 1) && drive->autodma) { | 
 | 324 |  | 
 | 325 | 		if (ide_use_dma(drive)) { | 
 | 326 | 			if (config_chipset_for_dma(drive)) | 
 | 327 | 				return hwif->ide_dma_on(drive); | 
 | 328 | 		} | 
 | 329 |  | 
 | 330 | 		goto fast_ata_pio; | 
 | 331 |  | 
 | 332 | 	} else if ((id->capability & 8) || (id->field_valid & 2)) { | 
 | 333 | fast_ata_pio: | 
 | 334 | 		config_chipset_for_pio(drive); | 
 | 335 | 		//	hwif->tuneproc(drive, 5); | 
 | 336 | 		return hwif->ide_dma_off_quietly(drive); | 
 | 337 | 	} | 
 | 338 | 	/* IORDY not supported */ | 
 | 339 | 	return 0; | 
 | 340 | } | 
 | 341 |  | 
 | 342 | /* This can go soon */ | 
 | 343 |  | 
 | 344 | static int svwks_ide_dma_end (ide_drive_t *drive) | 
 | 345 | { | 
 | 346 | 	return __ide_dma_end(drive); | 
 | 347 | } | 
 | 348 |  | 
 | 349 | static unsigned int __devinit init_chipset_svwks (struct pci_dev *dev, const char *name) | 
 | 350 | { | 
 | 351 | 	unsigned int reg; | 
 | 352 | 	u8 btr; | 
 | 353 |  | 
 | 354 | 	/* save revision id to determine DMA capability */ | 
 | 355 | 	pci_read_config_byte(dev, PCI_REVISION_ID, &svwks_revision); | 
 | 356 |  | 
 | 357 | 	/* force Master Latency Timer value to 64 PCICLKs */ | 
 | 358 | 	pci_write_config_byte(dev, PCI_LATENCY_TIMER, 0x40); | 
 | 359 |  | 
 | 360 | 	/* OSB4 : South Bridge and IDE */ | 
 | 361 | 	if (dev->device == PCI_DEVICE_ID_SERVERWORKS_OSB4IDE) { | 
 | 362 | 		isa_dev = pci_find_device(PCI_VENDOR_ID_SERVERWORKS, | 
 | 363 | 			  PCI_DEVICE_ID_SERVERWORKS_OSB4, NULL); | 
 | 364 | 		if (isa_dev) { | 
 | 365 | 			pci_read_config_dword(isa_dev, 0x64, ®); | 
 | 366 | 			reg &= ~0x00002000; /* disable 600ns interrupt mask */ | 
 | 367 | 			if(!(reg & 0x00004000)) | 
 | 368 | 				printk(KERN_DEBUG "%s: UDMA not BIOS enabled.\n", name); | 
 | 369 | 			reg |=  0x00004000; /* enable UDMA/33 support */ | 
 | 370 | 			pci_write_config_dword(isa_dev, 0x64, reg); | 
 | 371 | 		} | 
 | 372 | 	} | 
 | 373 |  | 
 | 374 | 	/* setup CSB5/CSB6 : South Bridge and IDE option RAID */ | 
 | 375 | 	else if ((dev->device == PCI_DEVICE_ID_SERVERWORKS_CSB5IDE) || | 
 | 376 | 		 (dev->device == PCI_DEVICE_ID_SERVERWORKS_CSB6IDE) || | 
 | 377 | 		 (dev->device == PCI_DEVICE_ID_SERVERWORKS_CSB6IDE2)) { | 
 | 378 |  | 
 | 379 | 		/* Third Channel Test */ | 
 | 380 | 		if (!(PCI_FUNC(dev->devfn) & 1)) { | 
 | 381 | 			struct pci_dev * findev = NULL; | 
 | 382 | 			u32 reg4c = 0; | 
 | 383 | 			findev = pci_find_device(PCI_VENDOR_ID_SERVERWORKS, | 
 | 384 | 				PCI_DEVICE_ID_SERVERWORKS_CSB5, NULL); | 
 | 385 | 			if (findev) { | 
 | 386 | 				pci_read_config_dword(findev, 0x4C, ®4c); | 
 | 387 | 				reg4c &= ~0x000007FF; | 
 | 388 | 				reg4c |=  0x00000040; | 
 | 389 | 				reg4c |=  0x00000020; | 
 | 390 | 				pci_write_config_dword(findev, 0x4C, reg4c); | 
 | 391 | 			} | 
 | 392 | 			outb_p(0x06, 0x0c00); | 
 | 393 | 			dev->irq = inb_p(0x0c01); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 394 | 		} else { | 
 | 395 | 			struct pci_dev * findev = NULL; | 
 | 396 | 			u8 reg41 = 0; | 
 | 397 |  | 
 | 398 | 			findev = pci_find_device(PCI_VENDOR_ID_SERVERWORKS, | 
 | 399 | 					PCI_DEVICE_ID_SERVERWORKS_CSB6, NULL); | 
 | 400 | 			if (findev) { | 
 | 401 | 				pci_read_config_byte(findev, 0x41, ®41); | 
 | 402 | 				reg41 &= ~0x40; | 
 | 403 | 				pci_write_config_byte(findev, 0x41, reg41); | 
 | 404 | 			} | 
 | 405 | 			/* | 
 | 406 | 			 * This is a device pin issue on CSB6. | 
 | 407 | 			 * Since there will be a future raid mode, | 
 | 408 | 			 * early versions of the chipset require the | 
 | 409 | 			 * interrupt pin to be set, and it is a compatibility | 
 | 410 | 			 * mode issue. | 
 | 411 | 			 */ | 
 | 412 | 			if ((dev->class >> 8) == PCI_CLASS_STORAGE_IDE) | 
 | 413 | 				dev->irq = 0; | 
 | 414 | 		} | 
 | 415 | //		pci_read_config_dword(dev, 0x40, &pioreg) | 
 | 416 | //		pci_write_config_dword(dev, 0x40, 0x99999999); | 
 | 417 | //		pci_read_config_dword(dev, 0x44, &dmareg); | 
 | 418 | //		pci_write_config_dword(dev, 0x44, 0xFFFFFFFF); | 
 | 419 | 		/* setup the UDMA Control register | 
 | 420 | 		 * | 
 | 421 | 		 * 1. clear bit 6 to enable DMA | 
 | 422 | 		 * 2. enable DMA modes with bits 0-1 | 
 | 423 | 		 * 	00 : legacy | 
 | 424 | 		 * 	01 : udma2 | 
 | 425 | 		 * 	10 : udma2/udma4 | 
 | 426 | 		 * 	11 : udma2/udma4/udma5 | 
 | 427 | 		 */ | 
 | 428 | 		pci_read_config_byte(dev, 0x5A, &btr); | 
 | 429 | 		btr &= ~0x40; | 
 | 430 | 		if (!(PCI_FUNC(dev->devfn) & 1)) | 
 | 431 | 			btr |= 0x2; | 
 | 432 | 		else | 
 | 433 | 			btr |= (svwks_revision >= SVWKS_CSB5_REVISION_NEW) ? 0x3 : 0x2; | 
 | 434 | 		pci_write_config_byte(dev, 0x5A, btr); | 
 | 435 | 	} | 
| Narendra Sankar | 84f57fb | 2005-08-18 22:30:35 +0200 | [diff] [blame] | 436 | 	/* Setup HT1000 SouthBridge Controller - Single Channel Only */ | 
 | 437 | 	else if (dev->device == PCI_DEVICE_ID_SERVERWORKS_HT1000IDE) { | 
 | 438 | 		pci_read_config_byte(dev, 0x5A, &btr); | 
 | 439 | 		btr &= ~0x40; | 
 | 440 | 		btr |= 0x3; | 
 | 441 | 		pci_write_config_byte(dev, 0x5A, btr); | 
 | 442 | 	} | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 443 |  | 
| Alan Cox | f201f50 | 2006-06-28 04:27:02 -0700 | [diff] [blame] | 444 | 	return dev->irq; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 445 | } | 
 | 446 |  | 
| Alan Cox | bb732d7 | 2005-06-27 15:24:29 -0700 | [diff] [blame] | 447 | static unsigned int __devinit ata66_svwks_svwks (ide_hwif_t *hwif) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 448 | { | 
 | 449 | 	return 1; | 
 | 450 | } | 
 | 451 |  | 
 | 452 | /* On Dell PowerEdge servers with a CSB5/CSB6, the top two bits | 
 | 453 |  * of the subsystem device ID indicate presence of an 80-pin cable. | 
 | 454 |  * Bit 15 clear = secondary IDE channel does not have 80-pin cable. | 
 | 455 |  * Bit 15 set   = secondary IDE channel has 80-pin cable. | 
 | 456 |  * Bit 14 clear = primary IDE channel does not have 80-pin cable. | 
 | 457 |  * Bit 14 set   = primary IDE channel has 80-pin cable. | 
 | 458 |  */ | 
| Alan Cox | bb732d7 | 2005-06-27 15:24:29 -0700 | [diff] [blame] | 459 | static unsigned int __devinit ata66_svwks_dell (ide_hwif_t *hwif) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 460 | { | 
 | 461 | 	struct pci_dev *dev = hwif->pci_dev; | 
 | 462 | 	if (dev->subsystem_vendor == PCI_VENDOR_ID_DELL && | 
 | 463 | 	    dev->vendor	== PCI_VENDOR_ID_SERVERWORKS && | 
 | 464 | 	    (dev->device == PCI_DEVICE_ID_SERVERWORKS_CSB5IDE || | 
 | 465 | 	     dev->device == PCI_DEVICE_ID_SERVERWORKS_CSB6IDE)) | 
 | 466 | 		return ((1 << (hwif->channel + 14)) & | 
 | 467 | 			dev->subsystem_device) ? 1 : 0; | 
 | 468 | 	return 0; | 
 | 469 | } | 
 | 470 |  | 
 | 471 | /* Sun Cobalt Alpine hardware avoids the 80-pin cable | 
 | 472 |  * detect issue by attaching the drives directly to the board. | 
 | 473 |  * This check follows the Dell precedent (how scary is that?!) | 
 | 474 |  * | 
 | 475 |  * WARNING: this only works on Alpine hardware! | 
 | 476 |  */ | 
| Alan Cox | bb732d7 | 2005-06-27 15:24:29 -0700 | [diff] [blame] | 477 | static unsigned int __devinit ata66_svwks_cobalt (ide_hwif_t *hwif) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 478 | { | 
 | 479 | 	struct pci_dev *dev = hwif->pci_dev; | 
 | 480 | 	if (dev->subsystem_vendor == PCI_VENDOR_ID_SUN && | 
 | 481 | 	    dev->vendor	== PCI_VENDOR_ID_SERVERWORKS && | 
 | 482 | 	    dev->device == PCI_DEVICE_ID_SERVERWORKS_CSB5IDE) | 
 | 483 | 		return ((1 << (hwif->channel + 14)) & | 
 | 484 | 			dev->subsystem_device) ? 1 : 0; | 
 | 485 | 	return 0; | 
 | 486 | } | 
 | 487 |  | 
| Alan Cox | bb732d7 | 2005-06-27 15:24:29 -0700 | [diff] [blame] | 488 | static unsigned int __devinit ata66_svwks (ide_hwif_t *hwif) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 489 | { | 
 | 490 | 	struct pci_dev *dev = hwif->pci_dev; | 
 | 491 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 492 | 	/* Server Works */ | 
 | 493 | 	if (dev->subsystem_vendor == PCI_VENDOR_ID_SERVERWORKS) | 
 | 494 | 		return ata66_svwks_svwks (hwif); | 
 | 495 | 	 | 
 | 496 | 	/* Dell PowerEdge */ | 
 | 497 | 	if (dev->subsystem_vendor == PCI_VENDOR_ID_DELL) | 
 | 498 | 		return ata66_svwks_dell (hwif); | 
 | 499 |  | 
 | 500 | 	/* Cobalt Alpine */ | 
 | 501 | 	if (dev->subsystem_vendor == PCI_VENDOR_ID_SUN) | 
 | 502 | 		return ata66_svwks_cobalt (hwif); | 
 | 503 |  | 
| Alan Cox | f201f50 | 2006-06-28 04:27:02 -0700 | [diff] [blame] | 504 | 	/* Per Specified Design by OEM, and ASIC Architect */ | 
 | 505 | 	if ((dev->device == PCI_DEVICE_ID_SERVERWORKS_CSB6IDE) || | 
 | 506 | 	    (dev->device == PCI_DEVICE_ID_SERVERWORKS_CSB6IDE2)) | 
 | 507 | 		return 1; | 
 | 508 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 509 | 	return 0; | 
 | 510 | } | 
 | 511 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 512 | static void __devinit init_hwif_svwks (ide_hwif_t *hwif) | 
 | 513 | { | 
 | 514 | 	u8 dma_stat = 0; | 
 | 515 |  | 
 | 516 | 	if (!hwif->irq) | 
 | 517 | 		hwif->irq = hwif->channel ? 15 : 14; | 
 | 518 |  | 
 | 519 | 	hwif->tuneproc = &svwks_tune_drive; | 
 | 520 | 	hwif->speedproc = &svwks_tune_chipset; | 
 | 521 |  | 
 | 522 | 	hwif->atapi_dma = 1; | 
 | 523 |  | 
 | 524 | 	if (hwif->pci_dev->device != PCI_DEVICE_ID_SERVERWORKS_OSB4IDE) | 
 | 525 | 		hwif->ultra_mask = 0x3f; | 
 | 526 |  | 
 | 527 | 	hwif->mwdma_mask = 0x07; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 528 |  | 
 | 529 | 	hwif->autodma = 0; | 
 | 530 |  | 
 | 531 | 	if (!hwif->dma_base) { | 
 | 532 | 		hwif->drives[0].autotune = 1; | 
 | 533 | 		hwif->drives[1].autotune = 1; | 
 | 534 | 		return; | 
 | 535 | 	} | 
 | 536 |  | 
 | 537 | 	hwif->ide_dma_check = &svwks_config_drive_xfer_rate; | 
 | 538 | 	if (hwif->pci_dev->device == PCI_DEVICE_ID_SERVERWORKS_OSB4IDE) | 
 | 539 | 		hwif->ide_dma_end = &svwks_ide_dma_end; | 
 | 540 | 	else if (!(hwif->udma_four)) | 
 | 541 | 		hwif->udma_four = ata66_svwks(hwif); | 
 | 542 | 	if (!noautodma) | 
 | 543 | 		hwif->autodma = 1; | 
 | 544 |  | 
 | 545 | 	dma_stat = hwif->INB(hwif->dma_status); | 
 | 546 | 	hwif->drives[0].autodma = (dma_stat & 0x20); | 
 | 547 | 	hwif->drives[1].autodma = (dma_stat & 0x40); | 
 | 548 | 	hwif->drives[0].autotune = (!(dma_stat & 0x20)); | 
 | 549 | 	hwif->drives[1].autotune = (!(dma_stat & 0x40)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 550 | } | 
 | 551 |  | 
 | 552 | /* | 
 | 553 |  * We allow the BM-DMA driver to only work on enabled interfaces. | 
 | 554 |  */ | 
 | 555 | static void __devinit init_dma_svwks (ide_hwif_t *hwif, unsigned long dmabase) | 
 | 556 | { | 
 | 557 | 	struct pci_dev *dev = hwif->pci_dev; | 
 | 558 |  | 
 | 559 | 	if (((dev->device == PCI_DEVICE_ID_SERVERWORKS_CSB6IDE) || | 
 | 560 | 	     (dev->device == PCI_DEVICE_ID_SERVERWORKS_CSB6IDE2)) && | 
 | 561 | 	    (!(PCI_FUNC(dev->devfn) & 1)) && (hwif->channel)) | 
 | 562 | 		return; | 
 | 563 |  | 
 | 564 | 	ide_setup_dma(hwif, dmabase, 8); | 
 | 565 | } | 
 | 566 |  | 
 | 567 | static int __devinit init_setup_svwks (struct pci_dev *dev, ide_pci_device_t *d) | 
 | 568 | { | 
 | 569 | 	return ide_setup_pci_device(dev, d); | 
 | 570 | } | 
 | 571 |  | 
| Alan Cox | bb732d7 | 2005-06-27 15:24:29 -0700 | [diff] [blame] | 572 | static int __devinit init_setup_csb6 (struct pci_dev *dev, ide_pci_device_t *d) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 573 | { | 
 | 574 | 	if (!(PCI_FUNC(dev->devfn) & 1)) { | 
 | 575 | 		d->bootable = NEVER_BOARD; | 
 | 576 | 		if (dev->resource[0].start == 0x01f1) | 
 | 577 | 			d->bootable = ON_BOARD; | 
 | 578 | 	} | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 579 |  | 
 | 580 | 	d->channels = ((dev->device == PCI_DEVICE_ID_SERVERWORKS_CSB6IDE || | 
 | 581 | 			dev->device == PCI_DEVICE_ID_SERVERWORKS_CSB6IDE2) && | 
 | 582 | 		       (!(PCI_FUNC(dev->devfn) & 1))) ? 1 : 2; | 
 | 583 |  | 
 | 584 | 	return ide_setup_pci_device(dev, d); | 
 | 585 | } | 
 | 586 |  | 
 | 587 | static ide_pci_device_t serverworks_chipsets[] __devinitdata = { | 
 | 588 | 	{	/* 0 */ | 
 | 589 | 		.name		= "SvrWks OSB4", | 
 | 590 | 		.init_setup	= init_setup_svwks, | 
 | 591 | 		.init_chipset	= init_chipset_svwks, | 
 | 592 | 		.init_hwif	= init_hwif_svwks, | 
 | 593 | 		.channels	= 2, | 
 | 594 | 		.autodma	= AUTODMA, | 
 | 595 | 		.bootable	= ON_BOARD, | 
 | 596 | 	},{	/* 1 */ | 
 | 597 | 		.name		= "SvrWks CSB5", | 
 | 598 | 		.init_setup	= init_setup_svwks, | 
 | 599 | 		.init_chipset	= init_chipset_svwks, | 
 | 600 | 		.init_hwif	= init_hwif_svwks, | 
 | 601 | 		.init_dma	= init_dma_svwks, | 
 | 602 | 		.channels	= 2, | 
 | 603 | 		.autodma	= AUTODMA, | 
 | 604 | 		.bootable	= ON_BOARD, | 
 | 605 | 	},{	/* 2 */ | 
 | 606 | 		.name		= "SvrWks CSB6", | 
 | 607 | 		.init_setup	= init_setup_csb6, | 
 | 608 | 		.init_chipset	= init_chipset_svwks, | 
 | 609 | 		.init_hwif	= init_hwif_svwks, | 
 | 610 | 		.init_dma	= init_dma_svwks, | 
 | 611 | 		.channels	= 2, | 
 | 612 | 		.autodma	= AUTODMA, | 
 | 613 | 		.bootable	= ON_BOARD, | 
 | 614 | 	},{	/* 3 */ | 
 | 615 | 		.name		= "SvrWks CSB6", | 
 | 616 | 		.init_setup	= init_setup_csb6, | 
 | 617 | 		.init_chipset	= init_chipset_svwks, | 
 | 618 | 		.init_hwif	= init_hwif_svwks, | 
 | 619 | 		.init_dma	= init_dma_svwks, | 
 | 620 | 		.channels	= 1,	/* 2 */ | 
 | 621 | 		.autodma	= AUTODMA, | 
 | 622 | 		.bootable	= ON_BOARD, | 
| Narendra Sankar | 84f57fb | 2005-08-18 22:30:35 +0200 | [diff] [blame] | 623 | 	},{	/* 4 */ | 
 | 624 | 		.name		= "SvrWks HT1000", | 
 | 625 | 		.init_setup	= init_setup_svwks, | 
 | 626 | 		.init_chipset	= init_chipset_svwks, | 
 | 627 | 		.init_hwif	= init_hwif_svwks, | 
 | 628 | 		.init_dma	= init_dma_svwks, | 
 | 629 | 		.channels	= 1,	/* 2 */ | 
 | 630 | 		.autodma	= AUTODMA, | 
 | 631 | 		.bootable	= ON_BOARD, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 632 | 	} | 
 | 633 | }; | 
 | 634 |  | 
 | 635 | /** | 
 | 636 |  *	svwks_init_one	-	called when a OSB/CSB is found | 
 | 637 |  *	@dev: the svwks device | 
 | 638 |  *	@id: the matching pci id | 
 | 639 |  * | 
 | 640 |  *	Called when the PCI registration layer (or the IDE initialization) | 
 | 641 |  *	finds a device matching our IDE device tables. | 
 | 642 |  */ | 
 | 643 |   | 
 | 644 | static int __devinit svwks_init_one(struct pci_dev *dev, const struct pci_device_id *id) | 
 | 645 | { | 
 | 646 | 	ide_pci_device_t *d = &serverworks_chipsets[id->driver_data]; | 
 | 647 |  | 
 | 648 | 	return d->init_setup(dev, d); | 
 | 649 | } | 
 | 650 |  | 
 | 651 | static struct pci_device_id svwks_pci_tbl[] = { | 
| Alan Cox | f201f50 | 2006-06-28 04:27:02 -0700 | [diff] [blame] | 652 | 	{ PCI_DEVICE(PCI_VENDOR_ID_SERVERWORKS, PCI_DEVICE_ID_SERVERWORKS_OSB4IDE), 0}, | 
 | 653 | 	{ PCI_DEVICE(PCI_VENDOR_ID_SERVERWORKS, PCI_DEVICE_ID_SERVERWORKS_CSB5IDE), 1}, | 
 | 654 | 	{ PCI_DEVICE(PCI_VENDOR_ID_SERVERWORKS, PCI_DEVICE_ID_SERVERWORKS_CSB6IDE), 2}, | 
 | 655 | 	{ PCI_DEVICE(PCI_VENDOR_ID_SERVERWORKS, PCI_DEVICE_ID_SERVERWORKS_CSB6IDE2), 3}, | 
 | 656 | 	{ PCI_DEVICE(PCI_VENDOR_ID_SERVERWORKS, PCI_DEVICE_ID_SERVERWORKS_HT1000IDE), 4}, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 657 | 	{ 0, }, | 
 | 658 | }; | 
 | 659 | MODULE_DEVICE_TABLE(pci, svwks_pci_tbl); | 
 | 660 |  | 
 | 661 | static struct pci_driver driver = { | 
 | 662 | 	.name		= "Serverworks_IDE", | 
 | 663 | 	.id_table	= svwks_pci_tbl, | 
 | 664 | 	.probe		= svwks_init_one, | 
 | 665 | }; | 
 | 666 |  | 
 | 667 | static int svwks_ide_init(void) | 
 | 668 | { | 
 | 669 | 	return ide_pci_register_driver(&driver); | 
 | 670 | } | 
 | 671 |  | 
 | 672 | module_init(svwks_ide_init); | 
 | 673 |  | 
 | 674 | MODULE_AUTHOR("Michael Aubry. Andrzej Krzysztofowicz, Andre Hedrick"); | 
 | 675 | MODULE_DESCRIPTION("PCI driver module for Serverworks OSB4/CSB5/CSB6 IDE"); | 
 | 676 | MODULE_LICENSE("GPL"); |