siimage.c 21.4 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3
/*
 * Copyright (C) 2001-2002	Andre Hedrick <andre@linux-ide.org>
 * Copyright (C) 2003		Red Hat <alan@redhat.com>
4
 * Copyright (C) 2007-2008	MontaVista Software, Inc.
5
 * Copyright (C) 2007-2008	Bartlomiej Zolnierkiewicz
L
Linus Torvalds 已提交
6 7 8
 *
 *  May be copied or modified under the terms of the GNU General Public License
 *
J
Jeff Garzik 已提交
9 10 11 12 13 14 15
 *  Documentation for CMD680:
 *  http://gkernel.sourceforge.net/specs/sii/sii-0680a-v1.31.pdf.bz2
 *
 *  Documentation for SiI 3112:
 *  http://gkernel.sourceforge.net/specs/sii/3112A_SiI-DS-0095-B2.pdf.bz2
 *
 *  Errata and other documentation only available under NDA.
L
Linus Torvalds 已提交
16 17 18 19
 *
 *
 *  FAQ Items:
 *	If you are using Marvell SATA-IDE adapters with Maxtor drives
20
 *	ensure the system is set up for ATA100/UDMA5, not UDMA6.
L
Linus Torvalds 已提交
21 22
 *
 *	If you are using WD drives with SATA bridges you must set the
23
 *	drive to "Single". "Master" will hang.
L
Linus Torvalds 已提交
24 25 26
 *
 *	If you have strange problems with nVidia chipset systems please
 *	see the SI support documentation and update your system BIOS
27
 *	if necessary
A
Alan Cox 已提交
28 29 30 31 32
 *
 *  The Dell DRAC4 has some interesting features including effectively hot
 *  unplugging/replugging the virtual CD interface when the DRAC is reset.
 *  This often causes drivers/ide/siimage to panic but is ok with the rather
 *  smarter code in libata.
33 34 35 36
 *
 * TODO:
 * - IORDY fixes
 * - VDMA support
L
Linus Torvalds 已提交
37 38 39 40 41 42 43
 */

#include <linux/types.h>
#include <linux/module.h>
#include <linux/pci.h>
#include <linux/ide.h>
#include <linux/init.h>
44
#include <linux/io.h>
L
Linus Torvalds 已提交
45

46 47
#define DRV_NAME "siimage"

L
Linus Torvalds 已提交
48 49 50
/**
 *	pdev_is_sata		-	check if device is SATA
 *	@pdev:	PCI device to check
51
 *
L
Linus Torvalds 已提交
52 53
 *	Returns true if this is a SATA controller
 */
54

L
Linus Torvalds 已提交
55 56
static int pdev_is_sata(struct pci_dev *pdev)
{
57
#ifdef CONFIG_BLK_DEV_IDE_SATA
58 59 60 61 62 63
	switch (pdev->device) {
	case PCI_DEVICE_ID_SII_3112:
	case PCI_DEVICE_ID_SII_1210SA:
		return 1;
	case PCI_DEVICE_ID_SII_680:
		return 0;
L
Linus Torvalds 已提交
64 65
	}
	BUG();
66
#endif
L
Linus Torvalds 已提交
67 68
	return 0;
}
69

L
Linus Torvalds 已提交
70 71 72
/**
 *	is_sata			-	check if hwif is SATA
 *	@hwif:	interface to check
73
 *
L
Linus Torvalds 已提交
74 75
 *	Returns true if this is a SATA controller
 */
76

L
Linus Torvalds 已提交
77 78
static inline int is_sata(ide_hwif_t *hwif)
{
79
	return pdev_is_sata(to_pci_dev(hwif->dev));
L
Linus Torvalds 已提交
80 81 82 83 84 85 86 87 88
}

/**
 *	siimage_selreg		-	return register base
 *	@hwif: interface
 *	@r: config offset
 *
 *	Turn a config register offset into the right address in either
 *	PCI space or MMIO space to access the control register in question
89 90
 *	Thankfully this is a configuration operation, so isn't performance
 *	critical.
L
Linus Torvalds 已提交
91
 */
92

L
Linus Torvalds 已提交
93 94 95
static unsigned long siimage_selreg(ide_hwif_t *hwif, int r)
{
	unsigned long base = (unsigned long)hwif->hwif_data;
96

L
Linus Torvalds 已提交
97
	base += 0xA0 + r;
98
	if (hwif->host_flags & IDE_HFLAG_MMIO)
99
		base += hwif->channel << 6;
L
Linus Torvalds 已提交
100
	else
101
		base += hwif->channel << 4;
L
Linus Torvalds 已提交
102 103
	return base;
}
104

L
Linus Torvalds 已提交
105 106 107 108 109 110 111 112 113
/**
 *	siimage_seldev		-	return register base
 *	@hwif: interface
 *	@r: config offset
 *
 *	Turn a config register offset into the right address in either
 *	PCI space or MMIO space to access the control register in question
 *	including accounting for the unit shift.
 */
114

L
Linus Torvalds 已提交
115 116 117
static inline unsigned long siimage_seldev(ide_drive_t *drive, int r)
{
	ide_hwif_t *hwif	= HWIF(drive);
118
	unsigned long base	= (unsigned long)hwif->hwif_data;
119
	u8 unit			= drive->dn & 1;
120

L
Linus Torvalds 已提交
121
	base += 0xA0 + r;
122
	if (hwif->host_flags & IDE_HFLAG_MMIO)
123
		base += hwif->channel << 6;
L
Linus Torvalds 已提交
124
	else
125
		base += hwif->channel << 4;
126
	base |= unit << unit;
L
Linus Torvalds 已提交
127 128 129
	return base;
}

130 131
static u8 sil_ioread8(struct pci_dev *dev, unsigned long addr)
{
132
	struct ide_host *host = pci_get_drvdata(dev);
133 134
	u8 tmp = 0;

135
	if (host->host_priv)
136 137 138 139 140 141 142 143 144
		tmp = readb((void __iomem *)addr);
	else
		pci_read_config_byte(dev, addr, &tmp);

	return tmp;
}

static u16 sil_ioread16(struct pci_dev *dev, unsigned long addr)
{
145
	struct ide_host *host = pci_get_drvdata(dev);
146 147
	u16 tmp = 0;

148
	if (host->host_priv)
149 150 151 152 153 154 155 156 157
		tmp = readw((void __iomem *)addr);
	else
		pci_read_config_word(dev, addr, &tmp);

	return tmp;
}

static void sil_iowrite8(struct pci_dev *dev, u8 val, unsigned long addr)
{
158 159 160
	struct ide_host *host = pci_get_drvdata(dev);

	if (host->host_priv)
161 162 163 164 165 166 167
		writeb(val, (void __iomem *)addr);
	else
		pci_write_config_byte(dev, addr, val);
}

static void sil_iowrite16(struct pci_dev *dev, u16 val, unsigned long addr)
{
168 169 170
	struct ide_host *host = pci_get_drvdata(dev);

	if (host->host_priv)
171 172 173 174 175 176 177
		writew(val, (void __iomem *)addr);
	else
		pci_write_config_word(dev, addr, val);
}

static void sil_iowrite32(struct pci_dev *dev, u32 val, unsigned long addr)
{
178 179 180
	struct ide_host *host = pci_get_drvdata(dev);

	if (host->host_priv)
181 182 183 184 185
		writel(val, (void __iomem *)addr);
	else
		pci_write_config_dword(dev, addr, val);
}

L
Linus Torvalds 已提交
186
/**
187 188 189 190
 *	sil_udma_filter		-	compute UDMA mask
 *	@drive: IDE device
 *
 *	Compute the available UDMA speeds for the device on the interface.
L
Linus Torvalds 已提交
191 192
 *
 *	For the CMD680 this depends on the clocking mode (scsc), for the
193
 *	SI3112 SATA controller life is a bit simpler.
L
Linus Torvalds 已提交
194
 */
195

196
static u8 sil_pata_udma_filter(ide_drive_t *drive)
L
Linus Torvalds 已提交
197
{
198 199 200 201
	ide_hwif_t *hwif	= drive->hwif;
	struct pci_dev *dev	= to_pci_dev(hwif->dev);
	unsigned long base	= (unsigned long)hwif->hwif_data;
	u8 scsc, mask		= 0;
L
Linus Torvalds 已提交
202

203 204 205
	base += (hwif->host_flags & IDE_HFLAG_MMIO) ? 0x4A : 0x8A;

	scsc = sil_ioread8(dev, base);
L
Linus Torvalds 已提交
206

207 208
	switch (scsc & 0x30) {
	case 0x10:	/* 133 */
209
		mask = ATA_UDMA6;
210 211
		break;
	case 0x20:	/* 2xPCI */
212
		mask = ATA_UDMA6;
213 214
		break;
	case 0x00:	/* 100 */
215
		mask = ATA_UDMA5;
216 217
		break;
	default: 	/* Disabled ? */
L
Linus Torvalds 已提交
218
		BUG();
219
	}
220

221
	return mask;
L
Linus Torvalds 已提交
222 223
}

224 225
static u8 sil_sata_udma_filter(ide_drive_t *drive)
{
226 227 228
	char *m = (char *)&drive->id[ATA_ID_PROD];

	return strstr(m, "Maxtor") ? ATA_UDMA5 : ATA_UDMA6;
229 230
}

L
Linus Torvalds 已提交
231
/**
232 233 234
 *	sil_set_pio_mode	-	set host controller for PIO mode
 *	@drive: drive
 *	@pio: PIO mode number
L
Linus Torvalds 已提交
235 236 237 238 239
 *
 *	Load the timing settings for this device mode into the
 *	controller. If we are in PIO mode 3 or 4 turn on IORDY
 *	monitoring (bit 9). The TF timing is bits 31:16
 */
240

241
static void sil_set_pio_mode(ide_drive_t *drive, u8 pio)
L
Linus Torvalds 已提交
242
{
243 244
	static const u16 tf_speed[]   = { 0x328a, 0x2283, 0x1281, 0x10c3, 0x10c1 };
	static const u16 data_speed[] = { 0x328a, 0x2283, 0x1104, 0x10c3, 0x10c1 };
245

L
Linus Torvalds 已提交
246
	ide_hwif_t *hwif	= HWIF(drive);
247
	struct pci_dev *dev	= to_pci_dev(hwif->dev);
248
	ide_drive_t *pair	= ide_get_pair_dev(drive);
L
Linus Torvalds 已提交
249 250 251
	u32 speedt		= 0;
	u16 speedp		= 0;
	unsigned long addr	= siimage_seldev(drive, 0x04);
252
	unsigned long tfaddr	= siimage_selreg(hwif,	0x02);
253
	unsigned long base	= (unsigned long)hwif->hwif_data;
254
	u8 tf_pio		= pio;
255 256 257
	u8 mmio			= (hwif->host_flags & IDE_HFLAG_MMIO) ? 1 : 0;
	u8 addr_mask		= hwif->channel ? (mmio ? 0xF4 : 0x84)
						: (mmio ? 0xB4 : 0x80);
258
	u8 mode			= 0;
259
	u8 unit			= drive->dn & 1;
260 261

	/* trim *taskfile* PIO to the slowest of the master/slave */
262
	if (pair) {
263
		u8 pair_pio = ide_get_best_pio_mode(pair, 255, 4);
264 265 266

		if (pair_pio < tf_pio)
			tf_pio = pair_pio;
L
Linus Torvalds 已提交
267
	}
268

269 270 271 272
	/* cheat for now and use the docs */
	speedp = data_speed[pio];
	speedt = tf_speed[tf_pio];

273 274 275 276 277 278 279 280 281 282 283 284
	sil_iowrite16(dev, speedp, addr);
	sil_iowrite16(dev, speedt, tfaddr);

	/* now set up IORDY */
	speedp = sil_ioread16(dev, tfaddr - 2);
	speedp &= ~0x200;
	if (pio > 2)
		speedp |= 0x200;
	sil_iowrite16(dev, speedp, tfaddr - 2);

	mode = sil_ioread8(dev, base + addr_mask);
	mode &= ~(unit ? 0x30 : 0x03);
285
	mode |= unit ? 0x10 : 0x01;
286
	sil_iowrite8(dev, mode, base + addr_mask);
L
Linus Torvalds 已提交
287 288 289
}

/**
290 291 292
 *	sil_set_dma_mode	-	set host controller for DMA mode
 *	@drive: drive
 *	@speed: DMA mode
L
Linus Torvalds 已提交
293
 *
294
 *	Tune the SiI chipset for the desired DMA mode.
L
Linus Torvalds 已提交
295
 */
296

297
static void sil_set_dma_mode(ide_drive_t *drive, const u8 speed)
L
Linus Torvalds 已提交
298
{
299 300 301
	static const u8 ultra6[] = { 0x0F, 0x0B, 0x07, 0x05, 0x03, 0x02, 0x01 };
	static const u8 ultra5[] = { 0x0C, 0x07, 0x05, 0x04, 0x02, 0x01 };
	static const u16 dma[]	 = { 0x2208, 0x10C2, 0x10C1 };
L
Linus Torvalds 已提交
302 303

	ide_hwif_t *hwif	= HWIF(drive);
304
	struct pci_dev *dev	= to_pci_dev(hwif->dev);
L
Linus Torvalds 已提交
305
	unsigned long base	= (unsigned long)hwif->hwif_data;
306 307
	u16 ultra = 0, multi	= 0;
	u8 mode = 0, unit	= drive->dn & 1;
308 309 310
	u8 mmio			= (hwif->host_flags & IDE_HFLAG_MMIO) ? 1 : 0;
	u8 scsc = 0, addr_mask	= hwif->channel ? (mmio ? 0xF4 : 0x84)
						: (mmio ? 0xB4 : 0x80);
L
Linus Torvalds 已提交
311 312 313
	unsigned long ma	= siimage_seldev(drive, 0x08);
	unsigned long ua	= siimage_seldev(drive, 0x0C);

314
	scsc  = sil_ioread8 (dev, base + (mmio ? 0x4A : 0x8A));
315
	mode  = sil_ioread8 (dev, base + addr_mask);
316 317
	multi = sil_ioread16(dev, ma);
	ultra = sil_ioread16(dev, ua);
L
Linus Torvalds 已提交
318

319
	mode  &= ~(unit ? 0x30 : 0x03);
L
Linus Torvalds 已提交
320 321 322 323 324
	ultra &= ~0x3F;
	scsc = ((scsc & 0x30) == 0x00) ? 0 : 1;

	scsc = is_sata(hwif) ? 1 : scsc;

325
	if (speed >= XFER_UDMA_0) {
326 327 328 329
		multi  = dma[2];
		ultra |= scsc ? ultra6[speed - XFER_UDMA_0] :
				ultra5[speed - XFER_UDMA_0];
		mode  |= unit ? 0x30 : 0x03;
330 331
	} else {
		multi = dma[speed - XFER_MW_DMA_0];
332
		mode |= unit ? 0x20 : 0x02;
L
Linus Torvalds 已提交
333 334
	}

335
	sil_iowrite8 (dev, mode, base + addr_mask);
336 337
	sil_iowrite16(dev, multi, ma);
	sil_iowrite16(dev, ultra, ua);
L
Linus Torvalds 已提交
338 339 340
}

/* returns 1 if dma irq issued, 0 otherwise */
341
static int siimage_io_dma_test_irq(ide_drive_t *drive)
L
Linus Torvalds 已提交
342 343
{
	ide_hwif_t *hwif	= HWIF(drive);
344
	struct pci_dev *dev	= to_pci_dev(hwif->dev);
L
Linus Torvalds 已提交
345 346 347 348
	u8 dma_altstat		= 0;
	unsigned long addr	= siimage_selreg(hwif, 1);

	/* return 1 if INTR asserted */
349
	if (inb(hwif->dma_base + ATA_DMA_STATUS) & 4)
L
Linus Torvalds 已提交
350 351 352
		return 1;

	/* return 1 if Device INTR asserted */
353
	pci_read_config_byte(dev, addr, &dma_altstat);
L
Linus Torvalds 已提交
354
	if (dma_altstat & 8)
355 356
		return 0;	/* return 1; */

L
Linus Torvalds 已提交
357 358 359 360
	return 0;
}

/**
361
 *	siimage_mmio_dma_test_irq	-	check we caused an IRQ
L
Linus Torvalds 已提交
362 363 364 365 366
 *	@drive: drive we are testing
 *
 *	Check if we caused an IDE DMA interrupt. We may also have caused
 *	SATA status interrupts, if so we clean them up and continue.
 */
367 368

static int siimage_mmio_dma_test_irq(ide_drive_t *drive)
L
Linus Torvalds 已提交
369 370 371
{
	ide_hwif_t *hwif	= HWIF(drive);
	unsigned long addr	= siimage_selreg(hwif, 0x1);
372 373
	void __iomem *sata_error_addr
		= (void __iomem *)hwif->sata_scr[SATA_ERROR_OFFSET];
L
Linus Torvalds 已提交
374

375
	if (sata_error_addr) {
376 377 378
		unsigned long base	= (unsigned long)hwif->hwif_data;
		u32 ext_stat		= readl((void __iomem *)(base + 0x10));
		u8 watchdog		= 0;
379

L
Linus Torvalds 已提交
380
		if (ext_stat & ((hwif->channel) ? 0x40 : 0x10)) {
381 382 383
			u32 sata_error = readl(sata_error_addr);

			writel(sata_error, sata_error_addr);
L
Linus Torvalds 已提交
384 385 386
			watchdog = (sata_error & 0x00680000) ? 1 : 0;
			printk(KERN_WARNING "%s: sata_error = 0x%08x, "
				"watchdog = %d, %s\n",
387 388
				drive->name, sata_error, watchdog, __func__);
		} else
L
Linus Torvalds 已提交
389 390
			watchdog = (ext_stat & 0x8000) ? 1 : 0;

391
		ext_stat >>= 16;
L
Linus Torvalds 已提交
392 393 394 395 396
		if (!(ext_stat & 0x0404) && !watchdog)
			return 0;
	}

	/* return 1 if INTR asserted */
397
	if (readb((void __iomem *)(hwif->dma_base + ATA_DMA_STATUS)) & 4)
L
Linus Torvalds 已提交
398 399 400
		return 1;

	/* return 1 if Device INTR asserted */
401 402
	if (readb((void __iomem *)addr) & 8)
		return 0;	/* return 1; */
L
Linus Torvalds 已提交
403 404 405 406

	return 0;
}

407 408
static int siimage_dma_test_irq(ide_drive_t *drive)
{
409
	if (drive->hwif->host_flags & IDE_HFLAG_MMIO)
410 411 412 413 414
		return siimage_mmio_dma_test_irq(drive);
	else
		return siimage_io_dma_test_irq(drive);
}

L
Linus Torvalds 已提交
415
/**
416
 *	sil_sata_reset_poll	-	wait for SATA reset
L
Linus Torvalds 已提交
417 418 419 420 421
 *	@drive: drive we are resetting
 *
 *	Poll the SATA phy and see whether it has come back from the dead
 *	yet.
 */
422 423

static int sil_sata_reset_poll(ide_drive_t *drive)
L
Linus Torvalds 已提交
424
{
425 426 427 428 429 430 431
	ide_hwif_t *hwif = drive->hwif;
	void __iomem *sata_status_addr
		= (void __iomem *)hwif->sata_scr[SATA_STATUS_OFFSET];

	if (sata_status_addr) {
		/* SATA Status is available only when in MMIO mode */
		u32 sata_stat = readl(sata_status_addr);
L
Linus Torvalds 已提交
432

433
		if ((sata_stat & 0x03) != 0x03) {
L
Linus Torvalds 已提交
434
			printk(KERN_WARNING "%s: reset phy dead, status=0x%08x\n",
435
					    hwif->name, sata_stat);
436
			return -ENXIO;
L
Linus Torvalds 已提交
437 438
		}
	}
439 440

	return 0;
L
Linus Torvalds 已提交
441 442 443
}

/**
444
 *	sil_sata_pre_reset	-	reset hook
L
Linus Torvalds 已提交
445 446 447 448 449 450
 *	@drive: IDE device being reset
 *
 *	For the SATA devices we need to handle recalibration/geometry
 *	differently
 */

451 452 453
static void sil_sata_pre_reset(ide_drive_t *drive)
{
	if (drive->media == ide_disk) {
L
Linus Torvalds 已提交
454 455 456 457 458 459 460 461 462 463
		drive->special.b.set_geometry = 0;
		drive->special.b.recalibrate = 0;
	}
}

/**
 *	init_chipset_siimage	-	set up an SI device
 *	@dev: PCI device
 *
 *	Perform the initial PCI set up for this device. Attempt to switch
464
 *	to 133 MHz clocking if the system isn't already set up to do it.
L
Linus Torvalds 已提交
465 466
 */

467
static unsigned int init_chipset_siimage(struct pci_dev *dev)
L
Linus Torvalds 已提交
468
{
469 470
	struct ide_host *host = pci_get_drvdata(dev);
	void __iomem *ioaddr = host->host_priv;
471
	unsigned long base, scsc_addr;
472
	u8 rev = dev->revision, tmp;
L
Linus Torvalds 已提交
473

474
	pci_write_config_byte(dev, PCI_CACHE_LINE_SIZE, rev ? 1 : 255);
L
Linus Torvalds 已提交
475

476 477
	if (ioaddr)
		pci_set_master(dev);
478 479 480 481 482 483 484 485 486 487 488 489 490

	base = (unsigned long)ioaddr;

	if (ioaddr && pdev_is_sata(dev)) {
		u32 tmp32, irq_mask;

		/* make sure IDE0/1 interrupts are not masked */
		irq_mask = (1 << 22) | (1 << 23);
		tmp32 = readl(ioaddr + 0x48);
		if (tmp32 & irq_mask) {
			tmp32 &= ~irq_mask;
			writel(tmp32, ioaddr + 0x48);
			readl(ioaddr + 0x48); /* flush */
L
Linus Torvalds 已提交
491
		}
492 493
		writel(0, ioaddr + 0x148);
		writel(0, ioaddr + 0x1C8);
L
Linus Torvalds 已提交
494 495
	}

496 497 498 499 500 501 502 503
	sil_iowrite8(dev, 0, base ? (base + 0xB4) : 0x80);
	sil_iowrite8(dev, 0, base ? (base + 0xF4) : 0x84);

	scsc_addr = base ? (base + 0x4A) : 0x8A;
	tmp = sil_ioread8(dev, scsc_addr);

	switch (tmp & 0x30) {
	case 0x00:
504
		/* On 100 MHz clocking, try and switch to 133 MHz */
505 506 507 508 509 510 511 512 513 514 515
		sil_iowrite8(dev, tmp | 0x10, scsc_addr);
		break;
	case 0x30:
		/* Clocking is disabled, attempt to force 133MHz clocking. */
		sil_iowrite8(dev, tmp & ~0x20, scsc_addr);
	case 0x10:
		/* On 133Mhz clocking. */
		break;
	case 0x20:
		/* On PCIx2 clocking. */
		break;
L
Linus Torvalds 已提交
516 517
	}

518
	tmp = sil_ioread8(dev, scsc_addr);
L
Linus Torvalds 已提交
519

520
	sil_iowrite8 (dev,       0x72, base + 0xA1);
521 522 523 524
	sil_iowrite16(dev,     0x328A, base + 0xA2);
	sil_iowrite32(dev, 0x62DD62DD, base + 0xA4);
	sil_iowrite32(dev, 0x43924392, base + 0xA8);
	sil_iowrite32(dev, 0x40094009, base + 0xAC);
525
	sil_iowrite8 (dev,       0x72, base ? (base + 0xE1) : 0xB1);
526 527 528 529 530 531 532 533 534 535 536 537
	sil_iowrite16(dev,     0x328A, base ? (base + 0xE2) : 0xB2);
	sil_iowrite32(dev, 0x62DD62DD, base ? (base + 0xE4) : 0xB4);
	sil_iowrite32(dev, 0x43924392, base ? (base + 0xE8) : 0xB8);
	sil_iowrite32(dev, 0x40094009, base ? (base + 0xEC) : 0xBC);

	if (base && pdev_is_sata(dev)) {
		writel(0xFFFF0000, ioaddr + 0x108);
		writel(0xFFFF0000, ioaddr + 0x188);
		writel(0x00680000, ioaddr + 0x148);
		writel(0x00680000, ioaddr + 0x1C8);
	}

538 539 540 541 542 543
	/* report the clocking mode of the controller */
	if (!pdev_is_sata(dev)) {
		static const char *clk_str[] =
			{ "== 100", "== 133", "== 2X PCI", "DISABLED!" };

		tmp >>= 4;
544 545
		printk(KERN_INFO DRV_NAME " %s: BASE CLOCK %s\n",
			pci_name(dev), clk_str[tmp & 3]);
546
	}
L
Linus Torvalds 已提交
547 548 549 550 551 552 553 554 555 556

	return 0;
}

/**
 *	init_mmio_iops_siimage	-	set up the iops for MMIO
 *	@hwif: interface to set up
 *
 *	The basic setup here is fairly simple, we can use standard MMIO
 *	operations. However we do have to set the taskfile register offsets
557
 *	by hand as there isn't a standard defined layout for them this time.
L
Linus Torvalds 已提交
558 559
 *
 *	The hardware supports buffered taskfiles and also some rather nice
A
Alan Cox 已提交
560
 *	extended PRD tables. For better SI3112 support use the libata driver
L
Linus Torvalds 已提交
561 562 563 564
 */

static void __devinit init_mmio_iops_siimage(ide_hwif_t *hwif)
{
565
	struct pci_dev *dev	= to_pci_dev(hwif->dev);
566 567
	struct ide_host *host	= pci_get_drvdata(dev);
	void *addr		= host->host_priv;
L
Linus Torvalds 已提交
568
	u8 ch			= hwif->channel;
569
	struct ide_io_ports *io_ports = &hwif->io_ports;
570
	unsigned long base;
571

L
Linus Torvalds 已提交
572
	/*
573
	 *	Fill in the basic hwif bits
L
Linus Torvalds 已提交
574
	 */
575
	hwif->host_flags |= IDE_HFLAG_MMIO;
576

577
	hwif->hwif_data	= addr;
L
Linus Torvalds 已提交
578 579

	/*
580 581
	 *	Now set up the hw. We have to do this ourselves as the
	 *	MMIO layout isn't the same as the standard port based I/O.
L
Linus Torvalds 已提交
582
	 */
583
	memset(io_ports, 0, sizeof(*io_ports));
L
Linus Torvalds 已提交
584 585 586 587 588 589 590 591

	base = (unsigned long)addr;
	if (ch)
		base += 0xC0;
	else
		base += 0x80;

	/*
592 593 594
	 *	The buffered task file doesn't have status/control, so we
	 *	can't currently use it sanely since we want to use LBA48 mode.
	 */
595 596 597 598 599 600 601 602 603
	io_ports->data_addr	= base;
	io_ports->error_addr	= base + 1;
	io_ports->nsect_addr	= base + 2;
	io_ports->lbal_addr	= base + 3;
	io_ports->lbam_addr	= base + 4;
	io_ports->lbah_addr	= base + 5;
	io_ports->device_addr	= base + 6;
	io_ports->status_addr	= base + 7;
	io_ports->ctl_addr	= base + 10;
L
Linus Torvalds 已提交
604 605 606 607 608 609 610 611 612 613

	if (pdev_is_sata(dev)) {
		base = (unsigned long)addr;
		if (ch)
			base += 0x80;
		hwif->sata_scr[SATA_STATUS_OFFSET]	= base + 0x104;
		hwif->sata_scr[SATA_ERROR_OFFSET]	= base + 0x108;
		hwif->sata_scr[SATA_CONTROL_OFFSET]	= base + 0x100;
	}

614
	hwif->irq = dev->irq;
L
Linus Torvalds 已提交
615

616
	hwif->dma_base = (unsigned long)addr + (ch ? 0x08 : 0x00);
L
Linus Torvalds 已提交
617 618 619 620
}

static int is_dev_seagate_sata(ide_drive_t *drive)
{
621 622
	const char *s	= (const char *)&drive->id[ATA_ID_PROD];
	unsigned len	= strnlen(s, ATA_ID_PROD_LEN);
L
Linus Torvalds 已提交
623

624
	if ((len > 4) && (!memcmp(s, "ST", 2)))
L
Linus Torvalds 已提交
625 626 627 628 629 630
		if ((!memcmp(s + len - 2, "AS", 2)) ||
		    (!memcmp(s + len - 3, "ASL", 3))) {
			printk(KERN_INFO "%s: applying pessimistic Seagate "
					 "errata fix\n", drive->name);
			return 1;
		}
631

L
Linus Torvalds 已提交
632 633 634 635
	return 0;
}

/**
636 637
 *	sil_quirkproc		-	post probe fixups
 *	@drive: drive
L
Linus Torvalds 已提交
638 639 640 641 642 643
 *
 *	Called after drive probe we use this to decide whether the
 *	Seagate fixup must be applied. This used to be in init_iops but
 *	that can occur before we know what drives are present.
 */

644
static void sil_quirkproc(ide_drive_t *drive)
L
Linus Torvalds 已提交
645
{
646 647
	ide_hwif_t *hwif = drive->hwif;

648
	/* Try and rise the rqsize */
649
	if (!is_sata(hwif) || !is_dev_seagate_sata(drive))
L
Linus Torvalds 已提交
650 651 652 653 654 655 656 657 658 659 660 661 662 663 664
		hwif->rqsize = 128;
}

/**
 *	init_iops_siimage	-	set up iops
 *	@hwif: interface to set up
 *
 *	Do the basic setup for the SIIMAGE hardware interface
 *	and then do the MMIO setup if we can. This is the first
 *	look in we get for setting up the hwif so that we
 *	can get the iops right before using them.
 */

static void __devinit init_iops_siimage(ide_hwif_t *hwif)
{
665
	struct pci_dev *dev = to_pci_dev(hwif->dev);
666
	struct ide_host *host = pci_get_drvdata(dev);
667

L
Linus Torvalds 已提交
668 669 670 671 672
	hwif->hwif_data = NULL;

	/* Pessimal until we finish probing */
	hwif->rqsize = 15;

673 674
	if (host->host_priv)
		init_mmio_iops_siimage(hwif);
L
Linus Torvalds 已提交
675 676 677
}

/**
678
 *	sil_cable_detect	-	cable detection
L
Linus Torvalds 已提交
679 680
 *	@hwif: interface to check
 *
681
 *	Check for the presence of an ATA66 capable cable on the interface.
L
Linus Torvalds 已提交
682 683
 */

684
static u8 sil_cable_detect(ide_hwif_t *hwif)
L
Linus Torvalds 已提交
685
{
686 687 688
	struct pci_dev *dev	= to_pci_dev(hwif->dev);
	unsigned long addr	= siimage_selreg(hwif, 0);
	u8 ata66		= sil_ioread8(dev, addr);
L
Linus Torvalds 已提交
689

690
	return (ata66 & 0x01) ? ATA_CBL_PATA80 : ATA_CBL_PATA40;
L
Linus Torvalds 已提交
691 692
}

693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710
static const struct ide_port_ops sil_pata_port_ops = {
	.set_pio_mode		= sil_set_pio_mode,
	.set_dma_mode		= sil_set_dma_mode,
	.quirkproc		= sil_quirkproc,
	.udma_filter		= sil_pata_udma_filter,
	.cable_detect		= sil_cable_detect,
};

static const struct ide_port_ops sil_sata_port_ops = {
	.set_pio_mode		= sil_set_pio_mode,
	.set_dma_mode		= sil_set_dma_mode,
	.reset_poll		= sil_sata_reset_poll,
	.pre_reset		= sil_sata_pre_reset,
	.quirkproc		= sil_quirkproc,
	.udma_filter		= sil_sata_udma_filter,
	.cable_detect		= sil_cable_detect,
};

711 712 713 714 715
static const struct ide_dma_ops sil_dma_ops = {
	.dma_host_set		= ide_dma_host_set,
	.dma_setup		= ide_dma_setup,
	.dma_exec_cmd		= ide_dma_exec_cmd,
	.dma_start		= ide_dma_start,
716
	.dma_end		= ide_dma_end,
717
	.dma_test_irq		= siimage_dma_test_irq,
718 719
	.dma_timeout		= ide_dma_timeout,
	.dma_lost_irq		= ide_dma_lost_irq,
720 721
};

722
#define DECLARE_SII_DEV(p_ops)				\
L
Linus Torvalds 已提交
723
	{						\
724
		.name		= DRV_NAME,		\
L
Linus Torvalds 已提交
725 726
		.init_chipset	= init_chipset_siimage,	\
		.init_iops	= init_iops_siimage,	\
727
		.port_ops	= p_ops,		\
728
		.dma_ops	= &sil_dma_ops,		\
B
Bartlomiej Zolnierkiewicz 已提交
729
		.pio_mask	= ATA_PIO4,		\
730 731
		.mwdma_mask	= ATA_MWDMA2,		\
		.udma_mask	= ATA_UDMA6,		\
L
Linus Torvalds 已提交
732 733
	}

734
static const struct ide_port_info siimage_chipsets[] __devinitdata = {
735 736
	/* 0: SiI680 */  DECLARE_SII_DEV(&sil_pata_port_ops),
	/* 1: SiI3112 */ DECLARE_SII_DEV(&sil_sata_port_ops)
L
Linus Torvalds 已提交
737 738 739
};

/**
740
 *	siimage_init_one	-	PCI layer discovery entry
L
Linus Torvalds 已提交
741 742 743
 *	@dev: PCI device
 *	@id: ident table entry
 *
744
 *	Called by the PCI code when it finds an SiI680 or SiI3112 controller.
L
Linus Torvalds 已提交
745 746
 *	We then use the IDE PCI generic helper to do most of the work.
 */
747 748 749

static int __devinit siimage_init_one(struct pci_dev *dev,
				      const struct pci_device_id *id)
L
Linus Torvalds 已提交
750
{
751 752 753 754
	void __iomem *ioaddr = NULL;
	resource_size_t bar5 = pci_resource_start(dev, 5);
	unsigned long barsize = pci_resource_len(dev, 5);
	int rc;
755 756
	struct ide_port_info d;
	u8 idx = id->driver_data;
757
	u8 BA5_EN;
758 759 760 761 762 763 764

	d = siimage_chipsets[idx];

	if (idx) {
		static int first = 1;

		if (first) {
765
			printk(KERN_INFO DRV_NAME ": For full SATA support you "
766 767 768 769 770 771 772
				"should use the libata sata_sil module.\n");
			first = 0;
		}

		d.host_flags |= IDE_HFLAG_NO_ATAPI_DMA;
	}

773 774 775 776 777 778 779 780 781 782 783
	rc = pci_enable_device(dev);
	if (rc)
		return rc;

	pci_read_config_byte(dev, 0x8A, &BA5_EN);
	if ((BA5_EN & 0x01) || bar5) {
		/*
		* Drop back to PIO if we can't map the MMIO. Some systems
		* seem to get terminally confused in the PCI spaces.
		*/
		if (!request_mem_region(bar5, barsize, d.name)) {
784
			printk(KERN_WARNING DRV_NAME " %s: MMIO ports not "
785
				"available\n", pci_name(dev));
786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802
		} else {
			ioaddr = ioremap(bar5, barsize);
			if (ioaddr == NULL)
				release_mem_region(bar5, barsize);
		}
	}

	rc = ide_pci_init_one(dev, &d, ioaddr);
	if (rc) {
		if (ioaddr) {
			iounmap(ioaddr);
			release_mem_region(bar5, barsize);
		}
		pci_disable_device(dev);
	}

	return rc;
L
Linus Torvalds 已提交
803 804
}

805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822
static void __devexit siimage_remove(struct pci_dev *dev)
{
	struct ide_host *host = pci_get_drvdata(dev);
	void __iomem *ioaddr = host->host_priv;

	ide_pci_remove(dev);

	if (ioaddr) {
		resource_size_t bar5 = pci_resource_start(dev, 5);
		unsigned long barsize = pci_resource_len(dev, 5);

		iounmap(ioaddr);
		release_mem_region(bar5, barsize);
	}

	pci_disable_device(dev);
}

823 824
static const struct pci_device_id siimage_pci_tbl[] = {
	{ PCI_VDEVICE(CMD, PCI_DEVICE_ID_SII_680),    0 },
L
Linus Torvalds 已提交
825
#ifdef CONFIG_BLK_DEV_IDE_SATA
826
	{ PCI_VDEVICE(CMD, PCI_DEVICE_ID_SII_3112),   1 },
827
	{ PCI_VDEVICE(CMD, PCI_DEVICE_ID_SII_1210SA), 1 },
L
Linus Torvalds 已提交
828 829 830 831 832
#endif
	{ 0, },
};
MODULE_DEVICE_TABLE(pci, siimage_pci_tbl);

833
static struct pci_driver siimage_pci_driver = {
L
Linus Torvalds 已提交
834 835 836
	.name		= "SiI_IDE",
	.id_table	= siimage_pci_tbl,
	.probe		= siimage_init_one,
837
	.remove		= __devexit_p(siimage_remove),
838 839
	.suspend	= ide_pci_suspend,
	.resume		= ide_pci_resume,
L
Linus Torvalds 已提交
840 841
};

842
static int __init siimage_ide_init(void)
L
Linus Torvalds 已提交
843
{
844
	return ide_pci_register_driver(&siimage_pci_driver);
L
Linus Torvalds 已提交
845 846
}

847 848
static void __exit siimage_ide_exit(void)
{
849
	pci_unregister_driver(&siimage_pci_driver);
850 851
}

L
Linus Torvalds 已提交
852
module_init(siimage_ide_init);
853
module_exit(siimage_ide_exit);
L
Linus Torvalds 已提交
854 855 856 857

MODULE_AUTHOR("Andre Hedrick, Alan Cox");
MODULE_DESCRIPTION("PCI driver module for SiI IDE");
MODULE_LICENSE("GPL");