ide-iops.c 13.3 KB
Newer Older
L
Linus Torvalds 已提交
1 2
/*
 *  Copyright (C) 2000-2002	Andre Hedrick <andre@linux-ide.org>
A
Alan Cox 已提交
3
 *  Copyright (C) 2003		Red Hat
L
Linus Torvalds 已提交
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
 *
 */

#include <linux/module.h>
#include <linux/types.h>
#include <linux/string.h>
#include <linux/kernel.h>
#include <linux/timer.h>
#include <linux/mm.h>
#include <linux/interrupt.h>
#include <linux/major.h>
#include <linux/errno.h>
#include <linux/genhd.h>
#include <linux/blkpg.h>
#include <linux/slab.h>
#include <linux/pci.h>
#include <linux/delay.h>
#include <linux/ide.h>
#include <linux/bitops.h>
23
#include <linux/nmi.h>
L
Linus Torvalds 已提交
24 25 26 27 28 29

#include <asm/byteorder.h>
#include <asm/irq.h>
#include <asm/uaccess.h>
#include <asm/io.h>

30
void SELECT_DRIVE(ide_drive_t *drive)
L
Linus Torvalds 已提交
31
{
32
	ide_hwif_t *hwif = drive->hwif;
33
	const struct ide_port_ops *port_ops = hwif->port_ops;
34
	struct ide_cmd cmd;
35

36 37
	if (port_ops && port_ops->selectproc)
		port_ops->selectproc(drive);
38

39 40
	memset(&cmd, 0, sizeof(cmd));
	cmd.tf_flags = IDE_TFLAG_OUT_DEVICE;
41

42
	drive->hwif->tp_ops->tf_load(drive, &cmd);
L
Linus Torvalds 已提交
43 44
}

45
void SELECT_MASK(ide_drive_t *drive, int mask)
L
Linus Torvalds 已提交
46
{
47 48 49 50
	const struct ide_port_ops *port_ops = drive->hwif->port_ops;

	if (port_ops && port_ops->maskproc)
		port_ops->maskproc(drive, mask);
L
Linus Torvalds 已提交
51 52
}

53 54
u8 ide_read_error(ide_drive_t *drive)
{
55
	struct ide_cmd cmd;
56

57 58
	memset(&cmd, 0, sizeof(cmd));
	cmd.tf_flags = IDE_TFLAG_IN_FEATURE;
59

60
	drive->hwif->tp_ops->tf_read(drive, &cmd);
61

62
	return cmd.tf.error;
63 64 65
}
EXPORT_SYMBOL_GPL(ide_read_error);

66
void ide_fix_driveid(u16 *id)
L
Linus Torvalds 已提交
67 68 69 70
{
#ifndef __LITTLE_ENDIAN
# ifdef __BIG_ENDIAN
	int i;
71

72
	for (i = 0; i < 256; i++)
73
		id[i] = __le16_to_cpu(id[i]);
L
Linus Torvalds 已提交
74 75 76 77 78 79
# else
#  error "Please fix <asm/byteorder.h>"
# endif
#endif
}

80 81 82 83
/*
 * ide_fixstring() cleans up and (optionally) byte-swaps a text string,
 * removing leading/trailing blanks and compressing internal blanks.
 * It is primarily used to tidy up the model name/number fields as
84
 * returned by the ATA_CMD_ID_ATA[PI] commands.
85 86
 */

87
void ide_fixstring(u8 *s, const int bytecount, const int byteswap)
L
Linus Torvalds 已提交
88
{
89
	u8 *p, *end = &s[bytecount & ~1]; /* bytecount must be even */
L
Linus Torvalds 已提交
90 91 92

	if (byteswap) {
		/* convert from big-endian to host byte order */
93 94
		for (p = s ; p != end ; p += 2)
			be16_to_cpus((u16 *) p);
L
Linus Torvalds 已提交
95
	}
96

L
Linus Torvalds 已提交
97
	/* strip leading blanks */
98
	p = s;
L
Linus Torvalds 已提交
99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115
	while (s != end && *s == ' ')
		++s;
	/* compress internal blanks and strip trailing blanks */
	while (s != end && *s) {
		if (*s++ != ' ' || (s != end && *s && *s != ' '))
			*p++ = *(s-1);
	}
	/* wipe out trailing garbage */
	while (p != end)
		*p++ = '\0';
}
EXPORT_SYMBOL(ide_fixstring);

/*
 * This routine busy-waits for the drive status to be not "busy".
 * It then checks the status for all of the "good" bits and none
 * of the "bad" bits, and if all is okay it returns 0.  All other
116
 * cases return error -- caller may then invoke ide_error().
L
Linus Torvalds 已提交
117 118 119 120 121 122
 *
 * This routine should get fixed to not hog the cpu during extra long waits..
 * That could be done by busy-waiting for the first jiffy or two, and then
 * setting a timer to wake up at half second intervals thereafter,
 * until timeout is achieved, before timing out.
 */
123 124
static int __ide_wait_stat(ide_drive_t *drive, u8 good, u8 bad,
			   unsigned long timeout, u8 *rstat)
L
Linus Torvalds 已提交
125
{
126
	ide_hwif_t *hwif = drive->hwif;
127
	const struct ide_tp_ops *tp_ops = hwif->tp_ops;
L
Linus Torvalds 已提交
128
	unsigned long flags;
129 130
	int i;
	u8 stat;
L
Linus Torvalds 已提交
131 132

	udelay(1);	/* spec allows drive 400ns to assert "BUSY" */
133
	stat = tp_ops->read_status(hwif);
134

135
	if (stat & ATA_BUSY) {
136
		local_save_flags(flags);
137
		local_irq_enable_in_hardirq();
L
Linus Torvalds 已提交
138
		timeout += jiffies;
139
		while ((stat = tp_ops->read_status(hwif)) & ATA_BUSY) {
L
Linus Torvalds 已提交
140 141 142 143 144 145
			if (time_after(jiffies, timeout)) {
				/*
				 * One last read after the timeout in case
				 * heavy interrupt load made us not make any
				 * progress during the timeout..
				 */
146
				stat = tp_ops->read_status(hwif);
147
				if ((stat & ATA_BUSY) == 0)
L
Linus Torvalds 已提交
148 149 150
					break;

				local_irq_restore(flags);
151 152
				*rstat = stat;
				return -EBUSY;
L
Linus Torvalds 已提交
153 154 155 156 157 158 159 160 161 162 163 164 165
			}
		}
		local_irq_restore(flags);
	}
	/*
	 * Allow status to settle, then read it again.
	 * A few rare drives vastly violate the 400ns spec here,
	 * so we'll wait up to 10usec for a "good" status
	 * rather than expensively fail things immediately.
	 * This fix courtesy of Matthew Faupel & Niccolo Rigacci.
	 */
	for (i = 0; i < 10; i++) {
		udelay(1);
166
		stat = tp_ops->read_status(hwif);
167 168

		if (OK_STAT(stat, good, bad)) {
169
			*rstat = stat;
L
Linus Torvalds 已提交
170
			return 0;
171
		}
L
Linus Torvalds 已提交
172
	}
173 174 175 176 177 178 179 180 181
	*rstat = stat;
	return -EFAULT;
}

/*
 * In case of error returns error value after doing "*startstop = ide_error()".
 * The caller should return the updated value of "startstop" in this case,
 * "startstop" is unchanged when the function returns 0.
 */
182 183
int ide_wait_stat(ide_startstop_t *startstop, ide_drive_t *drive, u8 good,
		  u8 bad, unsigned long timeout)
184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201
{
	int err;
	u8 stat;

	/* bail early if we've exceeded max_failures */
	if (drive->max_failures && (drive->failures > drive->max_failures)) {
		*startstop = ide_stopped;
		return 1;
	}

	err = __ide_wait_stat(drive, good, bad, timeout, &stat);

	if (err) {
		char *s = (err == -EBUSY) ? "status timeout" : "status error";
		*startstop = ide_error(drive, s, stat);
	}

	return err;
L
Linus Torvalds 已提交
202 203 204
}
EXPORT_SYMBOL(ide_wait_stat);

205 206 207
/**
 *	ide_in_drive_list	-	look for drive in black/white list
 *	@id: drive identifier
208
 *	@table: list to inspect
209 210 211 212 213
 *
 *	Look for a drive in the blacklist and the whitelist tables
 *	Returns 1 if the drive is found in the table.
 */

214
int ide_in_drive_list(u16 *id, const struct drive_list_entry *table)
215
{
216 217 218 219
	for ( ; table->id_model; table++)
		if ((!strcmp(table->id_model, (char *)&id[ATA_ID_PROD])) &&
		    (!table->id_firmware ||
		     strstr((char *)&id[ATA_ID_FW_REV], table->id_firmware)))
220 221 222
			return 1;
	return 0;
}
223 224
EXPORT_SYMBOL_GPL(ide_in_drive_list);

225 226 227
/*
 * Early UDMA66 devices don't set bit14 to 1, only bit13 is valid.
 * We list them here and depend on the device side cable detection for them.
228 229
 *
 * Some optical devices with the buggy firmwares have the same problem.
230 231 232
 */
static const struct drive_list_entry ivb_list[] = {
	{ "QUANTUM FIREBALLlct10 05"	, "A03.0900"	},
233
	{ "TSSTcorp CDDVDW SH-S202J"	, "SB00"	},
234 235 236
	{ "TSSTcorp CDDVDW SH-S202J"	, "SB01"	},
	{ "TSSTcorp CDDVDW SH-S202N"	, "SB00"	},
	{ "TSSTcorp CDDVDW SH-S202N"	, "SB01"	},
237 238
	{ "TSSTcorp CDDVDW SH-S202H"	, "SB00"	},
	{ "TSSTcorp CDDVDW SH-S202H"	, "SB01"	},
239
	{ "SAMSUNG SP0822N"		, "WA100-10"	},
240 241 242
	{ NULL				, NULL		}
};

L
Linus Torvalds 已提交
243 244 245 246
/*
 *  All hosts that use the 80c ribbon must use!
 *  The name is derived from upper byte of word 93 and the 80c ribbon.
 */
247
u8 eighty_ninty_three(ide_drive_t *drive)
L
Linus Torvalds 已提交
248
{
249
	ide_hwif_t *hwif = drive->hwif;
250
	u16 *id = drive->id;
251
	int ivb = ide_in_drive_list(id, ivb_list);
252

253 254 255
	if (hwif->cbl == ATA_CBL_PATA40_SHORT)
		return 1;

256 257 258 259
	if (ivb)
		printk(KERN_DEBUG "%s: skipping word 93 validity check\n",
				  drive->name);

260
	if (ata_id_is_sata(id) && !ivb)
261 262
		return 1;

263
	if (hwif->cbl != ATA_CBL_PATA80 && !ivb)
264
		goto no_80w;
265

266 267
	/*
	 * FIXME:
268
	 * - change master/slave IDENTIFY order
269
	 * - force bit13 (80c cable present) check also for !ivb devices
270 271
	 *   (unless the slave device is pre-ATA3)
	 */
272 273
	if ((id[ATA_ID_HW_CONFIG] & 0x4000) ||
	    (ivb && (id[ATA_ID_HW_CONFIG] & 0x2000)))
274 275 276
		return 1;

no_80w:
B
Bartlomiej Zolnierkiewicz 已提交
277
	if (drive->dev_flags & IDE_DFLAG_UDMA33_WARNED)
278 279 280 281
		return 0;

	printk(KERN_WARNING "%s: %s side 80-wire cable detection failed, "
			    "limiting max speed to UDMA33\n",
282 283
			    drive->name,
			    hwif->cbl == ATA_CBL_PATA80 ? "drive" : "host");
284

B
Bartlomiej Zolnierkiewicz 已提交
285
	drive->dev_flags |= IDE_DFLAG_UDMA33_WARNED;
286 287

	return 0;
L
Linus Torvalds 已提交
288 289
}

290
int ide_driveid_update(ide_drive_t *drive)
L
Linus Torvalds 已提交
291
{
292
	u16 *id;
293
	int rc;
294 295 296 297

	id = kmalloc(SECTOR_SIZE, GFP_ATOMIC);
	if (id == NULL)
		return 0;
L
Linus Torvalds 已提交
298 299

	SELECT_MASK(drive, 1);
300 301
	rc = ide_dev_read_id(drive, ATA_CMD_ID_ATA, id);
	SELECT_MASK(drive, 0);
302

303
	if (rc)
304
		goto out_err;
305

306 307 308
	drive->id[ATA_ID_UDMA_MODES]  = id[ATA_ID_UDMA_MODES];
	drive->id[ATA_ID_MWDMA_MODES] = id[ATA_ID_MWDMA_MODES];
	drive->id[ATA_ID_SWDMA_MODES] = id[ATA_ID_SWDMA_MODES];
309
	drive->id[ATA_ID_CFA_MODES]   = id[ATA_ID_CFA_MODES];
310 311 312 313
	/* anything more ? */

	kfree(id);

B
Bartlomiej Zolnierkiewicz 已提交
314
	if ((drive->dev_flags & IDE_DFLAG_USING_DMA) && ide_id_dma_bug(drive))
315
		ide_dma_off(drive);
L
Linus Torvalds 已提交
316 317

	return 1;
318 319 320 321 322 323
out_err:
	SELECT_MASK(drive, 0);
	if (rc == 2)
		printk(KERN_ERR "%s: %s: bad status\n", drive->name, __func__);
	kfree(id);
	return 0;
L
Linus Torvalds 已提交
324 325
}

326
int ide_config_drive_speed(ide_drive_t *drive, u8 speed)
L
Linus Torvalds 已提交
327
{
328
	ide_hwif_t *hwif = drive->hwif;
329
	const struct ide_tp_ops *tp_ops = hwif->tp_ops;
330
	u16 *id = drive->id, i;
331
	int error = 0;
L
Linus Torvalds 已提交
332
	u8 stat;
333
	struct ide_cmd cmd;
L
Linus Torvalds 已提交
334 335

#ifdef CONFIG_BLK_DEV_IDEDMA
336 337
	if (hwif->dma_ops)	/* check if host supports DMA */
		hwif->dma_ops->dma_host_set(drive, 0);
L
Linus Torvalds 已提交
338 339
#endif

340
	/* Skip setting PIO flow-control modes on pre-EIDE drives */
341
	if ((speed & 0xf8) == XFER_PIO_0 && ata_id_has_iordy(drive->id) == 0)
342 343
		goto skip;

L
Linus Torvalds 已提交
344 345 346 347 348 349
	/*
	 * Don't use ide_wait_cmd here - it will
	 * attempt to set_geometry and recalibrate,
	 * but for some reason these don't work at
	 * this point (lost interrupt).
	 */
350

L
Linus Torvalds 已提交
351 352 353 354 355 356
	/*
	 *	FIXME: we race against the running IRQ here if
	 *	this is called from non IRQ context. If we use
	 *	disable_irq() we hang on the error path. Work
	 *	is needed.
	 */
357 358
	disable_irq_nosync(hwif->irq);

L
Linus Torvalds 已提交
359 360
	udelay(1);
	SELECT_DRIVE(drive);
361
	SELECT_MASK(drive, 1);
L
Linus Torvalds 已提交
362
	udelay(1);
363
	tp_ops->set_irq(hwif, 0);
364

365 366 367 368
	memset(&cmd, 0, sizeof(cmd));
	cmd.tf_flags = IDE_TFLAG_OUT_FEATURE | IDE_TFLAG_OUT_NSECT;
	cmd.tf.feature = SETFEATURES_XFER;
	cmd.tf.nsect   = speed;
369

370
	tp_ops->tf_load(drive, &cmd);
371

372
	tp_ops->exec_command(hwif, ATA_CMD_SET_FEATURES);
373

374
	if (drive->quirk_list == 2)
375
		tp_ops->set_irq(hwif, 1);
L
Linus Torvalds 已提交
376

377
	error = __ide_wait_stat(drive, drive->ready_stat,
378
				ATA_BUSY | ATA_DRQ | ATA_ERR,
379
				WAIT_CMD, &stat);
L
Linus Torvalds 已提交
380 381 382 383 384 385 386 387 388 389

	SELECT_MASK(drive, 0);

	enable_irq(hwif->irq);

	if (error) {
		(void) ide_dump_status(drive, "set_drive_speed_status", stat);
		return error;
	}

390 391 392 393
	if (speed >= XFER_SW_DMA_0) {
		id[ATA_ID_UDMA_MODES]  &= ~0xFF00;
		id[ATA_ID_MWDMA_MODES] &= ~0x0700;
		id[ATA_ID_SWDMA_MODES] &= ~0x0700;
394 395 396 397
		if (ata_id_is_cfa(id))
			id[ATA_ID_CFA_MODES] &= ~0x0E00;
	} else	if (ata_id_is_cfa(id))
		id[ATA_ID_CFA_MODES] &= ~0x01C0;
L
Linus Torvalds 已提交
398

399
 skip:
L
Linus Torvalds 已提交
400
#ifdef CONFIG_BLK_DEV_IDEDMA
B
Bartlomiej Zolnierkiewicz 已提交
401
	if (speed >= XFER_SW_DMA_0 && (drive->dev_flags & IDE_DFLAG_USING_DMA))
402 403
		hwif->dma_ops->dma_host_set(drive, 1);
	else if (hwif->dma_ops)	/* check if host supports DMA */
404
		ide_dma_off_quietly(drive);
L
Linus Torvalds 已提交
405 406
#endif

407 408 409
	if (speed >= XFER_UDMA_0) {
		i = 1 << (speed - XFER_UDMA_0);
		id[ATA_ID_UDMA_MODES] |= (i << 8 | i);
410 411 412
	} else if (ata_id_is_cfa(id) && speed >= XFER_MW_DMA_3) {
		i = speed - XFER_MW_DMA_2;
		id[ATA_ID_CFA_MODES] |= i << 9;
413 414 415 416 417 418
	} else if (speed >= XFER_MW_DMA_0) {
		i = 1 << (speed - XFER_MW_DMA_0);
		id[ATA_ID_MWDMA_MODES] |= (i << 8 | i);
	} else if (speed >= XFER_SW_DMA_0) {
		i = 1 << (speed - XFER_SW_DMA_0);
		id[ATA_ID_SWDMA_MODES] |= (i << 8 | i);
419 420 421
	} else if (ata_id_is_cfa(id) && speed >= XFER_PIO_5) {
		i = speed - XFER_PIO_4;
		id[ATA_ID_CFA_MODES] |= i << 6;
L
Linus Torvalds 已提交
422
	}
423

L
Linus Torvalds 已提交
424 425 426 427 428 429 430 431 432 433 434 435 436 437 438
	if (!drive->init_speed)
		drive->init_speed = speed;
	drive->current_speed = speed;
	return error;
}

/*
 * This should get invoked any time we exit the driver to
 * wait for an interrupt response from a drive.  handler() points
 * at the appropriate code to handle the next interrupt, and a
 * timer is started to prevent us from waiting forever in case
 * something goes wrong (see the ide_timer_expiry() handler later on).
 *
 * See also ide_execute_command
 */
439
void __ide_set_handler(ide_drive_t *drive, ide_handler_t *handler,
440
		       unsigned int timeout)
L
Linus Torvalds 已提交
441
{
442 443 444 445 446 447 448
	ide_hwif_t *hwif = drive->hwif;

	BUG_ON(hwif->handler);
	hwif->handler		= handler;
	hwif->timer.expires	= jiffies + timeout;
	hwif->req_gen_timer	= hwif->req_gen;
	add_timer(&hwif->timer);
L
Linus Torvalds 已提交
449 450
}

451 452
void ide_set_handler(ide_drive_t *drive, ide_handler_t *handler,
		     unsigned int timeout)
L
Linus Torvalds 已提交
453
{
454
	ide_hwif_t *hwif = drive->hwif;
L
Linus Torvalds 已提交
455
	unsigned long flags;
456

457
	spin_lock_irqsave(&hwif->lock, flags);
458
	__ide_set_handler(drive, handler, timeout);
459
	spin_unlock_irqrestore(&hwif->lock, flags);
L
Linus Torvalds 已提交
460 461
}
EXPORT_SYMBOL(ide_set_handler);
462

L
Linus Torvalds 已提交
463 464 465
/**
 *	ide_execute_command	-	execute an IDE command
 *	@drive: IDE drive to issue the command against
466
 *	@cmd: command
L
Linus Torvalds 已提交
467 468 469 470
 *	@handler: handler for next phase
 *	@timeout: timeout for command
 *
 *	Helper function to issue an IDE command. This handles the
471
 *	atomicity requirements, command timing and ensures that the
L
Linus Torvalds 已提交
472 473 474
 *	handler and IRQ setup do not race. All IDE command kick off
 *	should go via this function or do equivalent locking.
 */
475

476 477
void ide_execute_command(ide_drive_t *drive, struct ide_cmd *cmd,
			 ide_handler_t *handler, unsigned timeout)
L
Linus Torvalds 已提交
478
{
479
	ide_hwif_t *hwif = drive->hwif;
L
Linus Torvalds 已提交
480
	unsigned long flags;
481

482
	spin_lock_irqsave(&hwif->lock, flags);
483 484 485 486 487
	if ((cmd->protocol != ATAPI_PROT_DMA &&
	     cmd->protocol != ATAPI_PROT_PIO) ||
	    (drive->atapi_flags & IDE_AFLAG_DRQ_INTERRUPT))
		__ide_set_handler(drive, handler, timeout);
	hwif->tp_ops->exec_command(hwif, cmd->tf.command);
488 489 490 491 492 493
	/*
	 * Drive takes 400nS to respond, we must avoid the IRQ being
	 * serviced before that.
	 *
	 * FIXME: we could skip this delay with care on non shared devices
	 */
L
Linus Torvalds 已提交
494
	ndelay(400);
495
	spin_unlock_irqrestore(&hwif->lock, flags);
L
Linus Torvalds 已提交
496 497 498 499
}

/*
 * ide_wait_not_busy() waits for the currently selected device on the hwif
500
 * to report a non-busy status, see comments in ide_probe_port().
L
Linus Torvalds 已提交
501 502 503 504 505
 */
int ide_wait_not_busy(ide_hwif_t *hwif, unsigned long timeout)
{
	u8 stat = 0;

506
	while (timeout--) {
L
Linus Torvalds 已提交
507 508 509 510 511
		/*
		 * Turn this into a schedule() sleep once I'm sure
		 * about locking issues (2.5 work ?).
		 */
		mdelay(1);
512
		stat = hwif->tp_ops->read_status(hwif);
513
		if ((stat & ATA_BUSY) == 0)
L
Linus Torvalds 已提交
514 515 516 517 518 519 520 521
			return 0;
		/*
		 * Assume a value of 0xff means nothing is connected to
		 * the interface and it doesn't implement the pull-down
		 * resistor on D7.
		 */
		if (stat == 0xff)
			return -ENODEV;
522
		touch_softlockup_watchdog();
523
		touch_nmi_watchdog();
L
Linus Torvalds 已提交
524 525 526
	}
	return -EBUSY;
}