ide-lib.c 4.6 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
#include <linux/types.h>
#include <linux/string.h>
#include <linux/kernel.h>
#include <linux/interrupt.h>
#include <linux/ide.h>
#include <linux/bitops.h>

/**
 *	ide_toggle_bounce	-	handle bounce buffering
 *	@drive: drive to update
 *	@on: on/off boolean
 *
 *	Enable or disable bounce buffering for the device. Drives move
 *	between PIO and DMA and that changes the rules we need.
 */
16

L
Linus Torvalds 已提交
17 18 19 20
void ide_toggle_bounce(ide_drive_t *drive, int on)
{
	u64 addr = BLK_BOUNCE_HIGH;	/* dma64_addr_t */

21 22 23
	if (!PCI_DMA_BUS_IS_PHYS) {
		addr = BLK_BOUNCE_ANY;
	} else if (on && drive->media == ide_disk) {
24 25 26 27
		struct device *dev = drive->hwif->dev;

		if (dev && dev->dma_mask)
			addr = *dev->dma_mask;
L
Linus Torvalds 已提交
28 29 30 31 32 33 34 35
	}

	if (drive->queue)
		blk_queue_bounce_limit(drive->queue, addr);
}

static void ide_dump_opcode(ide_drive_t *drive)
{
36
	struct request *rq = drive->hwif->rq;
37
	ide_task_t *task = NULL;
L
Linus Torvalds 已提交
38 39 40

	if (!rq)
		return;
41 42 43

	if (rq->cmd_type == REQ_TYPE_ATA_TASKFILE)
		task = rq->special;
L
Linus Torvalds 已提交
44

45
	printk(KERN_ERR "ide: failed opcode was: ");
46 47
	if (task == NULL)
		printk(KERN_CONT "unknown\n");
L
Linus Torvalds 已提交
48
	else
49
		printk(KERN_CONT "0x%02x\n", task->tf.command);
L
Linus Torvalds 已提交
50 51
}

52
u64 ide_get_lba_addr(struct ide_taskfile *tf, int lba48)
53 54 55 56 57 58 59 60 61 62 63 64
{
	u32 high, low;

	if (lba48)
		high = (tf->hob_lbah << 16) | (tf->hob_lbam << 8) |
			tf->hob_lbal;
	else
		high = tf->device & 0xf;
	low  = (tf->lbah << 16) | (tf->lbam << 8) | tf->lbal;

	return ((u64)high << 24) | low;
}
65
EXPORT_SYMBOL_GPL(ide_get_lba_addr);
66 67 68 69 70

static void ide_dump_sector(ide_drive_t *drive)
{
	ide_task_t task;
	struct ide_taskfile *tf = &task.tf;
B
Bartlomiej Zolnierkiewicz 已提交
71
	u8 lba48 = !!(drive->dev_flags & IDE_DFLAG_LBA48);
72 73 74 75 76 77 78 79

	memset(&task, 0, sizeof(task));
	if (lba48)
		task.tf_flags = IDE_TFLAG_IN_LBA | IDE_TFLAG_IN_HOB_LBA |
				IDE_TFLAG_LBA48;
	else
		task.tf_flags = IDE_TFLAG_IN_LBA | IDE_TFLAG_IN_DEVICE;

80
	drive->hwif->tp_ops->tf_read(drive, &task);
81 82

	if (lba48 || (tf->device & ATA_LBA))
83
		printk(KERN_CONT ", LBAsect=%llu",
A
Andrew Morton 已提交
84
			(unsigned long long)ide_get_lba_addr(tf, lba48));
85
	else
86 87
		printk(KERN_CONT ", CHS=%d/%d/%d", (tf->lbah << 8) + tf->lbam,
			tf->device & 0xf, tf->lbal);
88 89
}

90
static void ide_dump_ata_error(ide_drive_t *drive, u8 err)
L
Linus Torvalds 已提交
91
{
92 93 94
	printk(KERN_ERR "{ ");
	if (err & ATA_ABORTED)
		printk(KERN_CONT "DriveStatusError ");
95
	if (err & ATA_ICRC)
96 97 98 99 100 101 102 103 104 105 106
		printk(KERN_CONT "%s",
			(err & ATA_ABORTED) ? "BadCRC " : "BadSector ");
	if (err & ATA_UNC)
		printk(KERN_CONT "UncorrectableError ");
	if (err & ATA_IDNF)
		printk(KERN_CONT "SectorIdNotFound ");
	if (err & ATA_TRK0NF)
		printk(KERN_CONT "TrackZeroNotFound ");
	if (err & ATA_AMNF)
		printk(KERN_CONT "AddrMarkNotFound ");
	printk(KERN_CONT "}");
107 108
	if ((err & (ATA_BBK | ATA_ABORTED)) == ATA_BBK ||
	    (err & (ATA_UNC | ATA_IDNF | ATA_AMNF))) {
109 110
		struct request *rq = drive->hwif->rq;

111
		ide_dump_sector(drive);
112 113

		if (rq)
114
			printk(KERN_CONT ", sector=%llu",
115
			       (unsigned long long)rq->sector);
L
Linus Torvalds 已提交
116
	}
117
	printk(KERN_CONT "\n");
118 119 120 121
}

static void ide_dump_atapi_error(ide_drive_t *drive, u8 err)
{
122 123 124 125 126 127 128 129 130 131 132 133 134
	printk(KERN_ERR "{ ");
	if (err & ATAPI_ILI)
		printk(KERN_CONT "IllegalLengthIndication ");
	if (err & ATAPI_EOM)
		printk(KERN_CONT "EndOfMedia ");
	if (err & ATA_ABORTED)
		printk(KERN_CONT "AbortedCommand ");
	if (err & ATA_MCR)
		printk(KERN_CONT "MediaChangeRequested ");
	if (err & ATAPI_LFS)
		printk(KERN_CONT "LastFailedSense=0x%02x ",
			(err & ATAPI_LFS) >> 4);
	printk(KERN_CONT "}\n");
L
Linus Torvalds 已提交
135 136 137
}

/**
138
 *	ide_dump_status		-	translate ATA/ATAPI error
L
Linus Torvalds 已提交
139 140 141 142 143
 *	@drive: drive that status applies to
 *	@msg: text message to print
 *	@stat: status byte to decode
 *
 *	Error reporting, in human readable form (luxurious, but a memory hog).
144 145
 *	Combines the drive name, message and status byte to provide a
 *	user understandable explanation of the device error.
L
Linus Torvalds 已提交
146 147
 */

148
u8 ide_dump_status(ide_drive_t *drive, const char *msg, u8 stat)
L
Linus Torvalds 已提交
149
{
150
	u8 err = 0;
L
Linus Torvalds 已提交
151

152
	printk(KERN_ERR "%s: %s: status=0x%02x { ", drive->name, msg, stat);
153
	if (stat & ATA_BUSY)
154
		printk(KERN_CONT "Busy ");
L
Linus Torvalds 已提交
155
	else {
156 157 158 159 160 161 162 163 164 165 166 167 168 169
		if (stat & ATA_DRDY)
			printk(KERN_CONT "DriveReady ");
		if (stat & ATA_DF)
			printk(KERN_CONT "DeviceFault ");
		if (stat & ATA_DSC)
			printk(KERN_CONT "SeekComplete ");
		if (stat & ATA_DRQ)
			printk(KERN_CONT "DataRequest ");
		if (stat & ATA_CORR)
			printk(KERN_CONT "CorrectedError ");
		if (stat & ATA_IDX)
			printk(KERN_CONT "Index ");
		if (stat & ATA_ERR)
			printk(KERN_CONT "Error ");
L
Linus Torvalds 已提交
170
	}
171
	printk(KERN_CONT "}\n");
172
	if ((stat & (ATA_BUSY | ATA_ERR)) == ATA_ERR) {
173
		err = ide_read_error(drive);
174
		printk(KERN_ERR "%s: %s: error=0x%02x ", drive->name, msg, err);
175 176 177 178
		if (drive->media == ide_disk)
			ide_dump_ata_error(drive, err);
		else
			ide_dump_atapi_error(drive, err);
L
Linus Torvalds 已提交
179 180
	}
	ide_dump_opcode(drive);
181
	return err;
L
Linus Torvalds 已提交
182 183
}
EXPORT_SYMBOL(ide_dump_status);