qd65xx.c 12.3 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
/*
 *  Copyright (C) 1996-2001  Linus Torvalds & author (see below)
 */

/*
 *  Version 0.03	Cleaned auto-tune, added probe
 *  Version 0.04	Added second channel tuning
 *  Version 0.05	Enhanced tuning ; added qd6500 support
 *  Version 0.06	Added dos driver's list
 *  Version 0.07	Second channel bug fix 
 *
 * QDI QD6500/QD6580 EIDE controller fast support
 *
 * Please set local bus speed using kernel parameter idebus
 * 	for example, "idebus=33" stands for 33Mhz VLbus
 * To activate controller support, use "ide0=qd65xx"
17 18
 * To enable tuning, use "hda=autotune hdb=autotune"
 * To enable 2nd channel tuning (qd6580 only), use "hdc=autotune hdd=autotune"
L
Linus Torvalds 已提交
19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101
 */

/*
 * Rewritten from the work of Colten Edwards <pje120@cs.usask.ca> by
 * Samuel Thibault <samuel.thibault@fnac.net>
 */

#include <linux/module.h>
#include <linux/types.h>
#include <linux/kernel.h>
#include <linux/delay.h>
#include <linux/timer.h>
#include <linux/mm.h>
#include <linux/ioport.h>
#include <linux/blkdev.h>
#include <linux/hdreg.h>
#include <linux/ide.h>
#include <linux/init.h>
#include <asm/system.h>
#include <asm/io.h>

#include "qd65xx.h"

/*
 * I/O ports are 0x30-0x31 (and 0x32-0x33 for qd6580)
 *            or 0xb0-0xb1 (and 0xb2-0xb3 for qd6580)
 *	-- qd6500 is a single IDE interface
 *	-- qd6580 is a dual IDE interface
 *
 * More research on qd6580 being done by willmore@cig.mot.com (David)
 * More Information given by Petr Soucek (petr@ryston.cz)
 * http://www.ryston.cz/petr/vlb
 */

/*
 * base: Timer1
 *
 *
 * base+0x01: Config (R/O)
 *
 * bit 0: ide baseport: 1 = 0x1f0 ; 0 = 0x170 (only useful for qd6500)
 * bit 1: qd65xx baseport: 1 = 0xb0 ; 0 = 0x30
 * bit 2: ID3: bus speed: 1 = <=33MHz ; 0 = >33MHz
 * bit 3: qd6500: 1 = disabled, 0 = enabled
 *        qd6580: 1
 * upper nibble:
 *        qd6500: 1100
 *        qd6580: either 1010 or 0101
 *
 *
 * base+0x02: Timer2 (qd6580 only)
 *
 *
 * base+0x03: Control (qd6580 only)
 *
 * bits 0-3 must always be set 1
 * bit 4 must be set 1, but is set 0 by dos driver while measuring vlb clock
 * bit 0 : 1 = Only primary port enabled : channel 0 for hda, channel 1 for hdb
 *         0 = Primary and Secondary ports enabled : channel 0 for hda & hdb
 *                                                   channel 1 for hdc & hdd
 * bit 1 : 1 = only disks on primary port
 *         0 = disks & ATAPI devices on primary port
 * bit 2-4 : always 0
 * bit 5 : status, but of what ?
 * bit 6 : always set 1 by dos driver
 * bit 7 : set 1 for non-ATAPI devices on primary port
 *	(maybe read-ahead and post-write buffer ?)
 */

static int timings[4]={-1,-1,-1,-1}; /* stores current timing for each timer */

/*
 * qd_select:
 *
 * This routine is invoked from ide.c to prepare for access to a given drive.
 */

static void qd_select (ide_drive_t *drive)
{
	u8 index = ((	(QD_TIMREG(drive)) & 0x80 ) >> 7) |
			(QD_TIMREG(drive) & 0x02);

	if (timings[index] != QD_TIMING(drive))
102
		outb(timings[index] = QD_TIMING(drive), QD_TIMREG(drive));
L
Linus Torvalds 已提交
103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204
}

/*
 * qd6500_compute_timing
 *
 * computes the timing value where
 *	lower nibble represents active time,   in count of VLB clocks
 *	upper nibble represents recovery time, in count of VLB clocks
 */

static u8 qd6500_compute_timing (ide_hwif_t *hwif, int active_time, int recovery_time)
{
	u8 active_cycle,recovery_cycle;

	if (system_bus_clock()<=33) {
		active_cycle =   9  - IDE_IN(active_time   * system_bus_clock() / 1000 + 1, 2, 9);
		recovery_cycle = 15 - IDE_IN(recovery_time * system_bus_clock() / 1000 + 1, 0, 15);
	} else {
		active_cycle =   8  - IDE_IN(active_time   * system_bus_clock() / 1000 + 1, 1, 8);
		recovery_cycle = 18 - IDE_IN(recovery_time * system_bus_clock() / 1000 + 1, 3, 18);
	}

	return((recovery_cycle<<4) | 0x08 | active_cycle);
}

/*
 * qd6580_compute_timing
 *
 * idem for qd6580
 */

static u8 qd6580_compute_timing (int active_time, int recovery_time)
{
	u8 active_cycle   = 17 - IDE_IN(active_time   * system_bus_clock() / 1000 + 1, 2, 17);
	u8 recovery_cycle = 15 - IDE_IN(recovery_time * system_bus_clock() / 1000 + 1, 2, 15);

	return((recovery_cycle<<4) | active_cycle);
}

/*
 * qd_find_disk_type
 *
 * tries to find timing from dos driver's table
 */

static int qd_find_disk_type (ide_drive_t *drive,
		int *active_time, int *recovery_time)
{
	struct qd65xx_timing_s *p;
	char model[40];

	if (!*drive->id->model) return 0;

	strncpy(model,drive->id->model,40);
	ide_fixstring(model,40,1); /* byte-swap */

	for (p = qd65xx_timing ; p->offset != -1 ; p++) {
		if (!strncmp(p->model, model+p->offset, 4)) {
			printk(KERN_DEBUG "%s: listed !\n", drive->name);
			*active_time = p->active;
			*recovery_time = p->recovery;
			return 1;
		}
	}
	return 0;
}

/*
 * qd_timing_ok:
 *
 * check whether timings don't conflict
 */

static int qd_timing_ok (ide_drive_t drives[])
{
	return (IDE_IMPLY(drives[0].present && drives[1].present,
			IDE_IMPLY(QD_TIMREG(drives) == QD_TIMREG(drives+1),
			          QD_TIMING(drives) == QD_TIMING(drives+1))));
	/* if same timing register, must be same timing */
}

/*
 * qd_set_timing:
 *
 * records the timing, and enables selectproc as needed
 */

static void qd_set_timing (ide_drive_t *drive, u8 timing)
{
	ide_hwif_t *hwif = HWIF(drive);

	drive->drive_data &= 0xff00;
	drive->drive_data |= timing;
	if (qd_timing_ok(hwif->drives)) {
		qd_select(drive); /* selects once */
		hwif->selectproc = NULL;
	} else
		hwif->selectproc = &qd_select;

	printk(KERN_DEBUG "%s: %#x\n", drive->name, timing);
}

205
static void qd6500_set_pio_mode(ide_drive_t *drive, const u8 pio)
L
Linus Torvalds 已提交
206 207 208 209
{
	int active_time   = 175;
	int recovery_time = 415; /* worst case values from the dos driver */

210 211 212
	/*
	 * FIXME: use "pio" value
	 */
L
Linus Torvalds 已提交
213 214 215 216 217 218 219 220 221 222 223 224 225
	if (drive->id && !qd_find_disk_type(drive, &active_time, &recovery_time)
		&& drive->id->tPIO && (drive->id->field_valid & 0x02)
		&& drive->id->eide_pio >= 240) {

		printk(KERN_INFO "%s: PIO mode%d\n", drive->name,
				drive->id->tPIO);
		active_time = 110;
		recovery_time = drive->id->eide_pio - 120;
	}

	qd_set_timing(drive, qd6500_compute_timing(HWIF(drive), active_time, recovery_time));
}

226
static void qd6580_set_pio_mode(ide_drive_t *drive, const u8 pio)
L
Linus Torvalds 已提交
227 228
{
	int base = HWIF(drive)->select_data;
229
	unsigned int cycle_time;
L
Linus Torvalds 已提交
230 231 232 233
	int active_time   = 175;
	int recovery_time = 415; /* worst case values from the dos driver */

	if (drive->id && !qd_find_disk_type(drive, &active_time, &recovery_time)) {
234
		cycle_time = ide_pio_cycle_time(drive, pio);
L
Linus Torvalds 已提交
235 236 237 238

		switch (pio) {
			case 0: break;
			case 3:
239
				if (cycle_time >= 110) {
L
Linus Torvalds 已提交
240
					active_time = 86;
241
					recovery_time = cycle_time - 102;
L
Linus Torvalds 已提交
242 243 244 245
				} else
					printk(KERN_WARNING "%s: Strange recovery time !\n",drive->name);
				break;
			case 4:
246
				if (cycle_time >= 69) {
L
Linus Torvalds 已提交
247
					active_time = 70;
248
					recovery_time = cycle_time - 61;
L
Linus Torvalds 已提交
249 250 251 252
				} else
					printk(KERN_WARNING "%s: Strange recovery time !\n",drive->name);
				break;
			default:
253
				if (cycle_time >= 180) {
L
Linus Torvalds 已提交
254
					active_time = 110;
255
					recovery_time = cycle_time - 120;
L
Linus Torvalds 已提交
256 257
				} else {
					active_time = ide_pio_timings[pio].active_time;
258
					recovery_time = cycle_time - active_time;
L
Linus Torvalds 已提交
259 260 261 262 263 264
				}
		}
		printk(KERN_INFO "%s: PIO mode%d\n", drive->name,pio);
	}

	if (!HWIF(drive)->channel && drive->media != ide_disk) {
265
		outb(0x5f, QD_CONTROL_PORT);
L
Linus Torvalds 已提交
266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282
		printk(KERN_WARNING "%s: ATAPI: disabled read-ahead FIFO "
			"and post-write buffer on %s.\n",
			drive->name, HWIF(drive)->name);
	}

	qd_set_timing(drive, qd6580_compute_timing(active_time, recovery_time));
}

/*
 * qd_testreg
 *
 * tests if the given port is a register
 */

static int __init qd_testreg(int port)
{
	unsigned long flags;
283
	u8 savereg, readreg;
L
Linus Torvalds 已提交
284

285
	local_irq_save(flags);
L
Linus Torvalds 已提交
286 287 288 289
	savereg = inb_p(port);
	outb_p(QD_TESTVAL, port);	/* safe value */
	readreg = inb_p(port);
	outb(savereg, port);
290
	local_irq_restore(flags);
L
Linus Torvalds 已提交
291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307

	if (savereg == QD_TESTVAL) {
		printk(KERN_ERR "Outch ! the probe for qd65xx isn't reliable !\n");
		printk(KERN_ERR "Please contact maintainers to tell about your hardware\n");
		printk(KERN_ERR "Assuming qd65xx is not present.\n");
		return 1;
	}

	return (readreg != QD_TESTVAL);
}

/*
 * qd_setup:
 *
 * called to setup an ata channel : adjusts attributes & links for tuning
 */

308
static void __init qd_setup(ide_hwif_t *hwif, int base, int config)
L
Linus Torvalds 已提交
309 310 311
{
	hwif->select_data = base;
	hwif->config_data = config;
312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334
}

static void __init qd6500_port_init_devs(ide_hwif_t *hwif)
{
	u8 base = hwif->select_data, config = QD_CONFIG(hwif);

	hwif->drives[0].drive_data = QD6500_DEF_DATA;
	hwif->drives[1].drive_data = QD6500_DEF_DATA;
}

static void __init qd6580_port_init_devs(ide_hwif_t *hwif)
{
	u16 t1, t2;
	u8 base = hwif->select_data, config = QD_CONFIG(hwif);

	if (QD_CONTROL(hwif) & QD_CONTR_SEC_DISABLED) {
		t1 = QD6580_DEF_DATA;
		t2 = QD6580_DEF_DATA2;
	} else
		t2 = t1 = hwif->channel ? QD6580_DEF_DATA2 : QD6580_DEF_DATA;

	hwif->drives[0].drive_data = t1;
	hwif->drives[1].drive_data = t2;
L
Linus Torvalds 已提交
335 336
}

337 338 339 340 341 342 343 344
static const struct ide_port_info qd65xx_port_info __initdata = {
	.chipset		= ide_qd65xx,
	.host_flags		= IDE_HFLAG_IO_32BIT |
				  IDE_HFLAG_NO_DMA |
				  IDE_HFLAG_NO_AUTOTUNE,
	.pio_mask		= ATA_PIO4,
};

L
Linus Torvalds 已提交
345 346 347 348 349 350 351 352 353 354
/*
 * qd_probe:
 *
 * looks at the specified baseport, and if qd found, registers & initialises it
 * return 1 if another qd may be probed
 */

static int __init qd_probe(int base)
{
	ide_hwif_t *hwif;
355
	u8 config, unit;
356
	u8 idx[4] = { 0xff, 0xff, 0xff, 0xff };
357
	hw_regs_t hw[2];
358
	struct ide_port_info d = qd65xx_port_info;
L
Linus Torvalds 已提交
359

360
	config = inb(QD_CONFIG_PORT);
L
Linus Torvalds 已提交
361 362

	if (! ((config & QD_CONFIG_BASEPORT) >> 1 == (base == 0xb0)) )
363
		return -ENODEV;
L
Linus Torvalds 已提交
364 365 366

	unit = ! (config & QD_CONFIG_IDE_BASEPORT);

367 368 369
	if (unit)
		d.host_flags |= IDE_HFLAG_QD_2ND_PORT;

370 371 372 373 374 375 376 377
	memset(&hw, 0, sizeof(hw));

	ide_std_init_ports(&hw[0], 0x1f0, 0x3f6);
	hw[0].irq = 14;

	ide_std_init_ports(&hw[1], 0x170, 0x376);
	hw[1].irq = 15;

L
Linus Torvalds 已提交
378 379
	if ((config & 0xf0) == QD_CONFIG_QD6500) {

380 381
		if (qd_testreg(base))
			 return -ENODEV;	/* bad register */
L
Linus Torvalds 已提交
382 383 384 385 386

		/* qd6500 found */

		if (config & QD_CONFIG_DISABLED) {
			printk(KERN_WARNING "qd6500 is disabled !\n");
387
			return -ENODEV;
L
Linus Torvalds 已提交
388 389
		}

390 391 392 393 394 395 396 397
		printk(KERN_NOTICE "qd6500 at %#x\n", base);
		printk(KERN_DEBUG "qd6500: config=%#x, ID3=%u\n",
			config, QD_ID3);

		hwif = ide_find_port_slot(&d);
		if (hwif == NULL)
			return -ENOENT;

398 399
		ide_init_port_hw(hwif, &hw[unit]);

400
		qd_setup(hwif, base, config);
401

402
		hwif->port_init_devs = qd6500_port_init_devs;
403 404
		hwif->set_pio_mode = &qd6500_set_pio_mode;

405
		idx[unit] = hwif->index;
L
Linus Torvalds 已提交
406

407
		ide_device_add(idx, &d);
L
Linus Torvalds 已提交
408 409 410 411 412 413 414 415 416

		return 1;
	}

	if (((config & 0xf0) == QD_CONFIG_QD6580_A) ||
	    ((config & 0xf0) == QD_CONFIG_QD6580_B)) {

		u8 control;

417 418
		if (qd_testreg(base) || qd_testreg(base + 0x02))
			return -ENODEV;	/* bad registers */
L
Linus Torvalds 已提交
419 420 421

		/* qd6580 found */

422
		control = inb(QD_CONTROL_PORT);
L
Linus Torvalds 已提交
423 424 425 426 427

		printk(KERN_NOTICE "qd6580 at %#x\n", base);
		printk(KERN_DEBUG "qd6580: config=%#x, control=%#x, ID3=%u\n",
			config, control, QD_ID3);

428 429
		outb(QD_DEF_CONTR, QD_CONTROL_PORT);

L
Linus Torvalds 已提交
430 431 432
		if (control & QD_CONTR_SEC_DISABLED) {
			/* secondary disabled */

433 434 435 436 437
			printk(KERN_INFO "qd6580: single IDE board\n");

			hwif = ide_find_port_slot(&d);
			if (hwif == NULL)
				return -ENOENT;
438

439 440
			ide_init_port_hw(hwif, &hw[unit]);

441 442 443
			qd_setup(hwif, base, config | (control << 8));

			hwif->port_init_devs = qd6580_port_init_devs;
444 445
			hwif->set_pio_mode = &qd6580_set_pio_mode;

446
			idx[unit] = hwif->index;
447

448
			ide_device_add(idx, &d);
L
Linus Torvalds 已提交
449 450 451 452 453 454

			return 1;
		} else {
			ide_hwif_t *mate;

			/* secondary enabled */
455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473
			printk(KERN_INFO "qd6580: dual IDE board\n");

			hwif = ide_find_port();
			if (hwif) {
				ide_init_port_hw(hwif, &hw[0]);
				qd_setup(hwif, base, config | (control << 8));
				hwif->port_init_devs = qd6580_port_init_devs;
				hwif->set_pio_mode   = qd6580_set_pio_mode;
				idx[0] = hwif->index;
			}

			mate = ide_find_port();
			if (mate) {
				ide_init_port_hw(mate, &hw[1]);
				qd_setup(mate, base, config | (control << 8));
				mate->port_init_devs = qd6580_port_init_devs;
				mate->set_pio_mode   = qd6580_set_pio_mode;
				idx[1] = mate->index;
			}
474

475
			ide_device_add(idx, &qd65xx_port_info);
L
Linus Torvalds 已提交
476 477 478 479 480

			return 0; /* no other qd65xx possible */
		}
	}
	/* no qd65xx found */
481
	return -ENODEV;
L
Linus Torvalds 已提交
482 483
}

484 485 486 487 488
int probe_qd65xx = 0;

module_param_named(probe, probe_qd65xx, bool, 0);
MODULE_PARM_DESC(probe, "probe for QD65xx chipsets");

489
static int __init qd65xx_init(void)
L
Linus Torvalds 已提交
490
{
491 492
	int rc1, rc2 = -ENODEV;

493 494 495
	if (probe_qd65xx == 0)
		return -ENODEV;

496 497 498 499 500
	rc1 = qd_probe(0x30);
	if (rc1)
		rc2 = qd_probe(0xb0);

	if (rc1 < 0 && rc2 < 0)
L
Linus Torvalds 已提交
501
		return -ENODEV;
502

L
Linus Torvalds 已提交
503 504 505 506 507 508 509 510
	return 0;
}

module_init(qd65xx_init);

MODULE_AUTHOR("Samuel Thibault");
MODULE_DESCRIPTION("support of qd65xx vlb ide chipset");
MODULE_LICENSE("GPL");