blob: 9fc4cfb2a272bd6b89a112e72158eb6e1d656b9e [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#include <linux/types.h>
2#include <linux/string.h>
3#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004#include <linux/interrupt.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005#include <linux/ide.h>
6#include <linux/bitops.h>
7
Bartlomiej Zolnierkiewicz3ab7efe2007-12-12 23:31:58 +01008static const char *udma_str[] =
9 { "UDMA/16", "UDMA/25", "UDMA/33", "UDMA/44",
10 "UDMA/66", "UDMA/100", "UDMA/133", "UDMA7" };
11static const char *mwdma_str[] =
12 { "MWDMA0", "MWDMA1", "MWDMA2" };
13static const char *swdma_str[] =
14 { "SWDMA0", "SWDMA1", "SWDMA2" };
15static const char *pio_str[] =
16 { "PIO0", "PIO1", "PIO2", "PIO3", "PIO4", "PIO5" };
Linus Torvalds1da177e2005-04-16 15:20:36 -070017
18/**
19 * ide_xfer_verbose - return IDE mode names
Bartlomiej Zolnierkiewicz3ab7efe2007-12-12 23:31:58 +010020 * @mode: transfer mode
Linus Torvalds1da177e2005-04-16 15:20:36 -070021 *
22 * Returns a constant string giving the name of the mode
23 * requested.
24 */
25
Bartlomiej Zolnierkiewicz3ab7efe2007-12-12 23:31:58 +010026const char *ide_xfer_verbose(u8 mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -070027{
Bartlomiej Zolnierkiewicz3ab7efe2007-12-12 23:31:58 +010028 const char *s;
29 u8 i = mode & 0xf;
30
31 if (mode >= XFER_UDMA_0 && mode <= XFER_UDMA_7)
32 s = udma_str[i];
33 else if (mode >= XFER_MW_DMA_0 && mode <= XFER_MW_DMA_2)
34 s = mwdma_str[i];
35 else if (mode >= XFER_SW_DMA_0 && mode <= XFER_SW_DMA_2)
36 s = swdma_str[i];
37 else if (mode >= XFER_PIO_0 && mode <= XFER_PIO_5)
38 s = pio_str[i & 0x7];
39 else if (mode == XFER_PIO_SLOW)
40 s = "PIO SLOW";
41 else
42 s = "XFER ERROR";
43
44 return s;
Linus Torvalds1da177e2005-04-16 15:20:36 -070045}
46
47EXPORT_SYMBOL(ide_xfer_verbose);
48
49/**
Bartlomiej Zolnierkiewicz2d5eaa62007-05-10 00:01:08 +020050 * ide_rate_filter - filter transfer mode
51 * @drive: IDE device
Linus Torvalds1da177e2005-04-16 15:20:36 -070052 * @speed: desired speed
53 *
Bartlomiej Zolnierkiewicz2d5eaa62007-05-10 00:01:08 +020054 * Given the available transfer modes this function returns
Linus Torvalds1da177e2005-04-16 15:20:36 -070055 * the best available speed at or below the speed requested.
Bartlomiej Zolnierkiewicz2d5eaa62007-05-10 00:01:08 +020056 *
Bartlomiej Zolnierkiewicz7670df72007-10-11 23:53:59 +020057 * TODO: check device PIO capabilities
Linus Torvalds1da177e2005-04-16 15:20:36 -070058 */
59
Bartlomiej Zolnierkiewiczf212ff22007-10-11 23:53:59 +020060static u8 ide_rate_filter(ide_drive_t *drive, u8 speed)
Linus Torvalds1da177e2005-04-16 15:20:36 -070061{
Bartlomiej Zolnierkiewicz2d5eaa62007-05-10 00:01:08 +020062 ide_hwif_t *hwif = drive->hwif;
Bartlomiej Zolnierkiewicz7670df72007-10-11 23:53:59 +020063 u8 mode = ide_find_dma_mode(drive, speed);
Bartlomiej Zolnierkiewicz2d5eaa62007-05-10 00:01:08 +020064
Bartlomiej Zolnierkiewicz7670df72007-10-11 23:53:59 +020065 if (mode == 0) {
66 if (hwif->pio_mask)
67 mode = fls(hwif->pio_mask) - 1 + XFER_PIO_0;
68 else
69 mode = XFER_PIO_4;
Bartlomiej Zolnierkiewicz7f8f48a2007-05-10 00:01:10 +020070 }
Bartlomiej Zolnierkiewicz2d5eaa62007-05-10 00:01:08 +020071
Harvey Harrisoneb639632008-04-26 22:25:20 +020072/* printk("%s: mode 0x%02x, speed 0x%02x\n", __func__, mode, speed); */
Linus Torvalds1da177e2005-04-16 15:20:36 -070073
Bartlomiej Zolnierkiewicz2d5eaa62007-05-10 00:01:08 +020074 return min(speed, mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -070075}
76
Linus Torvalds1da177e2005-04-16 15:20:36 -070077/**
78 * ide_get_best_pio_mode - get PIO mode from drive
Sergei Shtylyov81d368e2007-03-03 17:48:53 +010079 * @drive: drive to consider
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 * @mode_wanted: preferred mode
Sergei Shtylyov81d368e2007-03-03 17:48:53 +010081 * @max_mode: highest allowed mode
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 *
83 * This routine returns the recommended PIO settings for a given drive,
84 * based on the drive->id information and the ide_pio_blacklist[].
Linus Torvalds1da177e2005-04-16 15:20:36 -070085 *
Sergei Shtylyov81d368e2007-03-03 17:48:53 +010086 * Drive PIO mode is auto-selected if 255 is passed as mode_wanted.
87 * This is used by most chipset support modules when "auto-tuning".
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 */
89
Bartlomiej Zolnierkiewicz21347582007-07-20 01:11:58 +020090u8 ide_get_best_pio_mode (ide_drive_t *drive, u8 mode_wanted, u8 max_mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -070091{
Bartlomiej Zolnierkiewicz4dde4492008-10-10 22:39:19 +020092 u16 *id = drive->id;
93 int pio_mode = -1, overridden = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070094
Bartlomiej Zolnierkiewicz6a824c92007-07-20 01:11:58 +020095 if (mode_wanted != 255)
96 return min_t(u8, mode_wanted, max_mode);
97
Bartlomiej Zolnierkiewicz4dde4492008-10-10 22:39:19 +020098 if ((drive->hwif->host_flags & IDE_HFLAG_PIO_NO_BLACKLIST) == 0)
99 pio_mode = ide_scan_pio_blacklist((char *)&id[ATA_ID_PROD]);
100
101 if (pio_mode != -1) {
Bartlomiej Zolnierkiewicz342cdb62007-07-20 01:11:55 +0200102 printk(KERN_INFO "%s: is on PIO blacklist\n", drive->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 } else {
Bartlomiej Zolnierkiewicz48fb2682008-10-10 22:39:19 +0200104 pio_mode = id[ATA_ID_OLD_PIO_MODES] >> 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 if (pio_mode > 2) { /* 2 is maximum allowed tPIO value */
106 pio_mode = 2;
107 overridden = 1;
108 }
Bartlomiej Zolnierkiewicz4dde4492008-10-10 22:39:19 +0200109
110 if (id[ATA_ID_FIELD_VALID] & 2) { /* ATA2? */
Bartlomiej Zolnierkiewicz48fb2682008-10-10 22:39:19 +0200111 if (ata_id_has_iordy(id)) {
Bartlomiej Zolnierkiewicz4dde4492008-10-10 22:39:19 +0200112 if (id[ATA_ID_PIO_MODES] & 7) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 overridden = 0;
Bartlomiej Zolnierkiewicz4dde4492008-10-10 22:39:19 +0200114 if (id[ATA_ID_PIO_MODES] & 4)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 pio_mode = 5;
Bartlomiej Zolnierkiewicz4dde4492008-10-10 22:39:19 +0200116 else if (id[ATA_ID_PIO_MODES] & 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 pio_mode = 4;
118 else
119 pio_mode = 3;
120 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 }
122 }
123
Bartlomiej Zolnierkiewicz342cdb62007-07-20 01:11:55 +0200124 if (overridden)
125 printk(KERN_INFO "%s: tPIO > 2, assuming tPIO = 2\n",
126 drive->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 }
Bartlomiej Zolnierkiewicz7dd00082007-07-20 01:11:56 +0200128
129 if (pio_mode > max_mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 pio_mode = max_mode;
Bartlomiej Zolnierkiewicz7dd00082007-07-20 01:11:56 +0200131
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 return pio_mode;
133}
134
135EXPORT_SYMBOL_GPL(ide_get_best_pio_mode);
136
Bartlomiej Zolnierkiewicz26bcb872007-10-11 23:54:00 +0200137/* req_pio == "255" for auto-tune */
138void ide_set_pio(ide_drive_t *drive, u8 req_pio)
139{
140 ide_hwif_t *hwif = drive->hwif;
Bartlomiej Zolnierkiewiczac95bee2008-04-26 22:25:14 +0200141 const struct ide_port_ops *port_ops = hwif->port_ops;
Bartlomiej Zolnierkiewicz26bcb872007-10-11 23:54:00 +0200142 u8 host_pio, pio;
143
Bartlomiej Zolnierkiewiczac95bee2008-04-26 22:25:14 +0200144 if (port_ops == NULL || port_ops->set_pio_mode == NULL ||
Bartlomiej Zolnierkiewicz784506c2008-04-26 17:36:43 +0200145 (hwif->host_flags & IDE_HFLAG_NO_SET_MODE))
Bartlomiej Zolnierkiewicz26bcb872007-10-11 23:54:00 +0200146 return;
147
148 BUG_ON(hwif->pio_mask == 0x00);
149
150 host_pio = fls(hwif->pio_mask) - 1;
151
152 pio = ide_get_best_pio_mode(drive, req_pio, host_pio);
153
154 /*
155 * TODO:
156 * - report device max PIO mode
157 * - check req_pio != 255 against device max PIO mode
158 */
159 printk(KERN_DEBUG "%s: host max PIO%d wanted PIO%d%s selected PIO%d\n",
160 drive->name, host_pio, req_pio,
161 req_pio == 255 ? "(auto-tune)" : "", pio);
162
Bartlomiej Zolnierkiewicz88b2b322007-10-13 17:47:51 +0200163 (void)ide_set_pio_mode(drive, XFER_PIO_0 + pio);
Bartlomiej Zolnierkiewicz26bcb872007-10-11 23:54:00 +0200164}
165
166EXPORT_SYMBOL_GPL(ide_set_pio);
167
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168/**
169 * ide_toggle_bounce - handle bounce buffering
170 * @drive: drive to update
171 * @on: on/off boolean
172 *
173 * Enable or disable bounce buffering for the device. Drives move
174 * between PIO and DMA and that changes the rules we need.
175 */
176
177void ide_toggle_bounce(ide_drive_t *drive, int on)
178{
179 u64 addr = BLK_BOUNCE_HIGH; /* dma64_addr_t */
180
James Bottomley65931782005-11-18 23:13:33 +0100181 if (!PCI_DMA_BUS_IS_PHYS) {
182 addr = BLK_BOUNCE_ANY;
183 } else if (on && drive->media == ide_disk) {
Bartlomiej Zolnierkiewicz36501652008-02-01 23:09:31 +0100184 struct device *dev = drive->hwif->dev;
185
186 if (dev && dev->dma_mask)
187 addr = *dev->dma_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 }
189
190 if (drive->queue)
191 blk_queue_bounce_limit(drive->queue, addr);
192}
193
Bartlomiej Zolnierkiewicz88b2b322007-10-13 17:47:51 +0200194int ide_set_pio_mode(ide_drive_t *drive, const u8 mode)
195{
196 ide_hwif_t *hwif = drive->hwif;
Bartlomiej Zolnierkiewiczac95bee2008-04-26 22:25:14 +0200197 const struct ide_port_ops *port_ops = hwif->port_ops;
Bartlomiej Zolnierkiewicz88b2b322007-10-13 17:47:51 +0200198
Bartlomiej Zolnierkiewicz784506c2008-04-26 17:36:43 +0200199 if (hwif->host_flags & IDE_HFLAG_NO_SET_MODE)
200 return 0;
201
Bartlomiej Zolnierkiewiczac95bee2008-04-26 22:25:14 +0200202 if (port_ops == NULL || port_ops->set_pio_mode == NULL)
Bartlomiej Zolnierkiewicz88b2b322007-10-13 17:47:51 +0200203 return -1;
204
205 /*
206 * TODO: temporary hack for some legacy host drivers that didn't
207 * set transfer mode on the device in ->set_pio_mode method...
208 */
Bartlomiej Zolnierkiewiczac95bee2008-04-26 22:25:14 +0200209 if (port_ops->set_dma_mode == NULL) {
210 port_ops->set_pio_mode(drive, mode - XFER_PIO_0);
Bartlomiej Zolnierkiewicz88b2b322007-10-13 17:47:51 +0200211 return 0;
212 }
213
214 if (hwif->host_flags & IDE_HFLAG_POST_SET_MODE) {
215 if (ide_config_drive_speed(drive, mode))
216 return -1;
Bartlomiej Zolnierkiewiczac95bee2008-04-26 22:25:14 +0200217 port_ops->set_pio_mode(drive, mode - XFER_PIO_0);
Bartlomiej Zolnierkiewicz88b2b322007-10-13 17:47:51 +0200218 return 0;
219 } else {
Bartlomiej Zolnierkiewiczac95bee2008-04-26 22:25:14 +0200220 port_ops->set_pio_mode(drive, mode - XFER_PIO_0);
Bartlomiej Zolnierkiewicz88b2b322007-10-13 17:47:51 +0200221 return ide_config_drive_speed(drive, mode);
222 }
223}
224
225int ide_set_dma_mode(ide_drive_t *drive, const u8 mode)
226{
227 ide_hwif_t *hwif = drive->hwif;
Bartlomiej Zolnierkiewiczac95bee2008-04-26 22:25:14 +0200228 const struct ide_port_ops *port_ops = hwif->port_ops;
Bartlomiej Zolnierkiewicz88b2b322007-10-13 17:47:51 +0200229
Bartlomiej Zolnierkiewicz784506c2008-04-26 17:36:43 +0200230 if (hwif->host_flags & IDE_HFLAG_NO_SET_MODE)
231 return 0;
232
Bartlomiej Zolnierkiewiczac95bee2008-04-26 22:25:14 +0200233 if (port_ops == NULL || port_ops->set_dma_mode == NULL)
Bartlomiej Zolnierkiewicz88b2b322007-10-13 17:47:51 +0200234 return -1;
235
236 if (hwif->host_flags & IDE_HFLAG_POST_SET_MODE) {
237 if (ide_config_drive_speed(drive, mode))
238 return -1;
Bartlomiej Zolnierkiewiczac95bee2008-04-26 22:25:14 +0200239 port_ops->set_dma_mode(drive, mode);
Bartlomiej Zolnierkiewicz88b2b322007-10-13 17:47:51 +0200240 return 0;
241 } else {
Bartlomiej Zolnierkiewiczac95bee2008-04-26 22:25:14 +0200242 port_ops->set_dma_mode(drive, mode);
Bartlomiej Zolnierkiewicz88b2b322007-10-13 17:47:51 +0200243 return ide_config_drive_speed(drive, mode);
244 }
245}
246
247EXPORT_SYMBOL_GPL(ide_set_dma_mode);
248
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249/**
250 * ide_set_xfer_rate - set transfer rate
251 * @drive: drive to set
Bartlomiej Zolnierkiewicz88b2b322007-10-13 17:47:51 +0200252 * @rate: speed to attempt to set
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 *
254 * General helper for setting the speed of an IDE device. This
255 * function knows about user enforced limits from the configuration
Bartlomiej Zolnierkiewicz88b2b322007-10-13 17:47:51 +0200256 * which ->set_pio_mode/->set_dma_mode does not.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 */
Bartlomiej Zolnierkiewicz88b2b322007-10-13 17:47:51 +0200258
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259int ide_set_xfer_rate(ide_drive_t *drive, u8 rate)
260{
Bartlomiej Zolnierkiewiczf212ff22007-10-11 23:53:59 +0200261 ide_hwif_t *hwif = drive->hwif;
Bartlomiej Zolnierkiewiczac95bee2008-04-26 22:25:14 +0200262 const struct ide_port_ops *port_ops = hwif->port_ops;
Bartlomiej Zolnierkiewiczf212ff22007-10-11 23:53:59 +0200263
Bartlomiej Zolnierkiewiczac95bee2008-04-26 22:25:14 +0200264 if (port_ops == NULL || port_ops->set_dma_mode == NULL ||
Bartlomiej Zolnierkiewicz784506c2008-04-26 17:36:43 +0200265 (hwif->host_flags & IDE_HFLAG_NO_SET_MODE))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 return -1;
Bartlomiej Zolnierkiewiczf212ff22007-10-11 23:53:59 +0200267
268 rate = ide_rate_filter(drive, rate);
269
Bartlomiej Zolnierkiewicz3b2a5c72008-07-23 19:55:56 +0200270 BUG_ON(rate < XFER_PIO_0);
271
Bartlomiej Zolnierkiewicz88b2b322007-10-13 17:47:51 +0200272 if (rate >= XFER_PIO_0 && rate <= XFER_PIO_5)
273 return ide_set_pio_mode(drive, rate);
Bartlomiej Zolnierkiewicz8f4dd2e2007-10-11 23:54:02 +0200274
Bartlomiej Zolnierkiewicz88b2b322007-10-13 17:47:51 +0200275 return ide_set_dma_mode(drive, rate);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276}
277
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278static void ide_dump_opcode(ide_drive_t *drive)
279{
280 struct request *rq;
Bartlomiej Zolnierkiewicz7267c332008-01-26 20:13:13 +0100281 ide_task_t *task = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282
283 spin_lock(&ide_lock);
284 rq = NULL;
285 if (HWGROUP(drive))
286 rq = HWGROUP(drive)->rq;
287 spin_unlock(&ide_lock);
288 if (!rq)
289 return;
Bartlomiej Zolnierkiewicz7267c332008-01-26 20:13:13 +0100290
291 if (rq->cmd_type == REQ_TYPE_ATA_TASKFILE)
292 task = rq->special;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293
294 printk("ide: failed opcode was: ");
Bartlomiej Zolnierkiewicz7267c332008-01-26 20:13:13 +0100295 if (task == NULL)
296 printk(KERN_CONT "unknown\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 else
Bartlomiej Zolnierkiewicz7267c332008-01-26 20:13:13 +0100298 printk(KERN_CONT "0x%02x\n", task->tf.command);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299}
300
Bartlomiej Zolnierkiewicza5016332008-01-25 22:17:17 +0100301u64 ide_get_lba_addr(struct ide_taskfile *tf, int lba48)
Bartlomiej Zolnierkiewiczc2b57cd2008-01-25 22:17:17 +0100302{
303 u32 high, low;
304
305 if (lba48)
306 high = (tf->hob_lbah << 16) | (tf->hob_lbam << 8) |
307 tf->hob_lbal;
308 else
309 high = tf->device & 0xf;
310 low = (tf->lbah << 16) | (tf->lbam << 8) | tf->lbal;
311
312 return ((u64)high << 24) | low;
313}
Bartlomiej Zolnierkiewicza5016332008-01-25 22:17:17 +0100314EXPORT_SYMBOL_GPL(ide_get_lba_addr);
Bartlomiej Zolnierkiewiczc2b57cd2008-01-25 22:17:17 +0100315
316static void ide_dump_sector(ide_drive_t *drive)
317{
318 ide_task_t task;
319 struct ide_taskfile *tf = &task.tf;
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +0200320 u8 lba48 = !!(drive->dev_flags & IDE_DFLAG_LBA48);
Bartlomiej Zolnierkiewiczc2b57cd2008-01-25 22:17:17 +0100321
322 memset(&task, 0, sizeof(task));
323 if (lba48)
324 task.tf_flags = IDE_TFLAG_IN_LBA | IDE_TFLAG_IN_HOB_LBA |
325 IDE_TFLAG_LBA48;
326 else
327 task.tf_flags = IDE_TFLAG_IN_LBA | IDE_TFLAG_IN_DEVICE;
328
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +0200329 drive->hwif->tp_ops->tf_read(drive, &task);
Bartlomiej Zolnierkiewiczc2b57cd2008-01-25 22:17:17 +0100330
331 if (lba48 || (tf->device & ATA_LBA))
Andrew Morton1c904fc2008-01-25 22:17:17 +0100332 printk(", LBAsect=%llu",
333 (unsigned long long)ide_get_lba_addr(tf, lba48));
Bartlomiej Zolnierkiewiczc2b57cd2008-01-25 22:17:17 +0100334 else
335 printk(", CHS=%d/%d/%d", (tf->lbah << 8) + tf->lbam,
336 tf->device & 0xf, tf->lbal);
337}
338
Bartlomiej Zolnierkiewicze62925d2008-01-25 22:17:17 +0100339static void ide_dump_ata_error(ide_drive_t *drive, u8 err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340{
Bartlomiej Zolnierkiewicze62925d2008-01-25 22:17:17 +0100341 printk("{ ");
Bartlomiej Zolnierkiewicz3a7d2482008-10-10 22:39:21 +0200342 if (err & ATA_ABORTED) printk("DriveStatusError ");
343 if (err & ATA_ICRC)
344 printk((err & ATA_ABORTED) ? "BadCRC " : "BadSector ");
345 if (err & ATA_UNC) printk("UncorrectableError ");
346 if (err & ATA_IDNF) printk("SectorIdNotFound ");
347 if (err & ATA_TRK0NF) printk("TrackZeroNotFound ");
348 if (err & ATA_AMNF) printk("AddrMarkNotFound ");
Bartlomiej Zolnierkiewicze62925d2008-01-25 22:17:17 +0100349 printk("}");
Bartlomiej Zolnierkiewicz3a7d2482008-10-10 22:39:21 +0200350 if ((err & (ATA_BBK | ATA_ABORTED)) == ATA_BBK ||
351 (err & (ATA_UNC | ATA_IDNF | ATA_AMNF))) {
Bartlomiej Zolnierkiewicze62925d2008-01-25 22:17:17 +0100352 ide_dump_sector(drive);
353 if (HWGROUP(drive) && HWGROUP(drive)->rq)
354 printk(", sector=%llu",
355 (unsigned long long)HWGROUP(drive)->rq->sector);
356 }
357 printk("\n");
358}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359
Bartlomiej Zolnierkiewicze62925d2008-01-25 22:17:17 +0100360static void ide_dump_atapi_error(ide_drive_t *drive, u8 err)
361{
362 printk("{ ");
Bartlomiej Zolnierkiewicz3a7d2482008-10-10 22:39:21 +0200363 if (err & ATAPI_ILI) printk("IllegalLengthIndication ");
364 if (err & ATAPI_EOM) printk("EndOfMedia ");
365 if (err & ATA_ABORTED) printk("AbortedCommand ");
366 if (err & ATA_MCR) printk("MediaChangeRequested ");
367 if (err & ATAPI_LFS) printk("LastFailedSense=0x%02x ",
368 (err & ATAPI_LFS) >> 4);
Denis Vlasenko13bbbf22005-07-03 17:09:13 +0200369 printk("}\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370}
371
372/**
Bartlomiej Zolnierkiewicze62925d2008-01-25 22:17:17 +0100373 * ide_dump_status - translate ATA/ATAPI error
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 * @drive: drive that status applies to
375 * @msg: text message to print
376 * @stat: status byte to decode
377 *
378 * Error reporting, in human readable form (luxurious, but a memory hog).
Bartlomiej Zolnierkiewicze62925d2008-01-25 22:17:17 +0100379 * Combines the drive name, message and status byte to provide a
380 * user understandable explanation of the device error.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 */
382
Bartlomiej Zolnierkiewicze62925d2008-01-25 22:17:17 +0100383u8 ide_dump_status(ide_drive_t *drive, const char *msg, u8 stat)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384{
385 unsigned long flags;
Bartlomiej Zolnierkiewicz0e38a662008-01-25 22:17:12 +0100386 u8 err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387
Ingo Molnar3d1c1cc2006-06-26 00:26:17 -0700388 local_irq_save(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 printk("%s: %s: status=0x%02x { ", drive->name, msg, stat);
Bartlomiej Zolnierkiewicz3a7d2482008-10-10 22:39:21 +0200390 if (stat & ATA_BUSY)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 printk("Busy ");
392 else {
Bartlomiej Zolnierkiewicz3a7d2482008-10-10 22:39:21 +0200393 if (stat & ATA_DRDY) printk("DriveReady ");
394 if (stat & ATA_DF) printk("DeviceFault ");
395 if (stat & ATA_DSC) printk("SeekComplete ");
396 if (stat & ATA_DRQ) printk("DataRequest ");
397 if (stat & ATA_CORR) printk("CorrectedError ");
398 if (stat & ATA_IDX) printk("Index ");
399 if (stat & ATA_ERR) printk("Error ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 }
401 printk("}\n");
Bartlomiej Zolnierkiewicz3a7d2482008-10-10 22:39:21 +0200402 if ((stat & (ATA_BUSY | ATA_ERR)) == ATA_ERR) {
Bartlomiej Zolnierkiewicz64a57fe2008-02-06 02:57:51 +0100403 err = ide_read_error(drive);
Bartlomiej Zolnierkiewicze62925d2008-01-25 22:17:17 +0100404 printk("%s: %s: error=0x%02x ", drive->name, msg, err);
405 if (drive->media == ide_disk)
406 ide_dump_ata_error(drive, err);
407 else
408 ide_dump_atapi_error(drive, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 }
410 ide_dump_opcode(drive);
411 local_irq_restore(flags);
Bartlomiej Zolnierkiewicz0e38a662008-01-25 22:17:12 +0100412 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413}
414
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415EXPORT_SYMBOL(ide_dump_status);