blob: 1932119dfa00b99f1d32c478c7d22a543aaabc11 [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{
Bartlomiej Zolnierkiewicz1d0bf582008-12-29 20:27:30 +0100280 struct request *rq = drive->hwif->hwgroup->rq;
Bartlomiej Zolnierkiewicz7267c332008-01-26 20:13:13 +0100281 ide_task_t *task = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 if (!rq)
284 return;
Bartlomiej Zolnierkiewicz7267c332008-01-26 20:13:13 +0100285
286 if (rq->cmd_type == REQ_TYPE_ATA_TASKFILE)
287 task = rq->special;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288
289 printk("ide: failed opcode was: ");
Bartlomiej Zolnierkiewicz7267c332008-01-26 20:13:13 +0100290 if (task == NULL)
291 printk(KERN_CONT "unknown\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 else
Bartlomiej Zolnierkiewicz7267c332008-01-26 20:13:13 +0100293 printk(KERN_CONT "0x%02x\n", task->tf.command);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294}
295
Bartlomiej Zolnierkiewicza5016332008-01-25 22:17:17 +0100296u64 ide_get_lba_addr(struct ide_taskfile *tf, int lba48)
Bartlomiej Zolnierkiewiczc2b57cd2008-01-25 22:17:17 +0100297{
298 u32 high, low;
299
300 if (lba48)
301 high = (tf->hob_lbah << 16) | (tf->hob_lbam << 8) |
302 tf->hob_lbal;
303 else
304 high = tf->device & 0xf;
305 low = (tf->lbah << 16) | (tf->lbam << 8) | tf->lbal;
306
307 return ((u64)high << 24) | low;
308}
Bartlomiej Zolnierkiewicza5016332008-01-25 22:17:17 +0100309EXPORT_SYMBOL_GPL(ide_get_lba_addr);
Bartlomiej Zolnierkiewiczc2b57cd2008-01-25 22:17:17 +0100310
311static void ide_dump_sector(ide_drive_t *drive)
312{
313 ide_task_t task;
314 struct ide_taskfile *tf = &task.tf;
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +0200315 u8 lba48 = !!(drive->dev_flags & IDE_DFLAG_LBA48);
Bartlomiej Zolnierkiewiczc2b57cd2008-01-25 22:17:17 +0100316
317 memset(&task, 0, sizeof(task));
318 if (lba48)
319 task.tf_flags = IDE_TFLAG_IN_LBA | IDE_TFLAG_IN_HOB_LBA |
320 IDE_TFLAG_LBA48;
321 else
322 task.tf_flags = IDE_TFLAG_IN_LBA | IDE_TFLAG_IN_DEVICE;
323
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +0200324 drive->hwif->tp_ops->tf_read(drive, &task);
Bartlomiej Zolnierkiewiczc2b57cd2008-01-25 22:17:17 +0100325
326 if (lba48 || (tf->device & ATA_LBA))
Andrew Morton1c904fc2008-01-25 22:17:17 +0100327 printk(", LBAsect=%llu",
328 (unsigned long long)ide_get_lba_addr(tf, lba48));
Bartlomiej Zolnierkiewiczc2b57cd2008-01-25 22:17:17 +0100329 else
330 printk(", CHS=%d/%d/%d", (tf->lbah << 8) + tf->lbam,
331 tf->device & 0xf, tf->lbal);
332}
333
Bartlomiej Zolnierkiewicze62925d2008-01-25 22:17:17 +0100334static void ide_dump_ata_error(ide_drive_t *drive, u8 err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335{
Bartlomiej Zolnierkiewicze62925d2008-01-25 22:17:17 +0100336 printk("{ ");
Bartlomiej Zolnierkiewicz3a7d2482008-10-10 22:39:21 +0200337 if (err & ATA_ABORTED) printk("DriveStatusError ");
338 if (err & ATA_ICRC)
339 printk((err & ATA_ABORTED) ? "BadCRC " : "BadSector ");
340 if (err & ATA_UNC) printk("UncorrectableError ");
341 if (err & ATA_IDNF) printk("SectorIdNotFound ");
342 if (err & ATA_TRK0NF) printk("TrackZeroNotFound ");
343 if (err & ATA_AMNF) printk("AddrMarkNotFound ");
Bartlomiej Zolnierkiewicze62925d2008-01-25 22:17:17 +0100344 printk("}");
Bartlomiej Zolnierkiewicz3a7d2482008-10-10 22:39:21 +0200345 if ((err & (ATA_BBK | ATA_ABORTED)) == ATA_BBK ||
346 (err & (ATA_UNC | ATA_IDNF | ATA_AMNF))) {
Bartlomiej Zolnierkiewicze62925d2008-01-25 22:17:17 +0100347 ide_dump_sector(drive);
348 if (HWGROUP(drive) && HWGROUP(drive)->rq)
349 printk(", sector=%llu",
350 (unsigned long long)HWGROUP(drive)->rq->sector);
351 }
352 printk("\n");
353}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354
Bartlomiej Zolnierkiewicze62925d2008-01-25 22:17:17 +0100355static void ide_dump_atapi_error(ide_drive_t *drive, u8 err)
356{
357 printk("{ ");
Bartlomiej Zolnierkiewicz3a7d2482008-10-10 22:39:21 +0200358 if (err & ATAPI_ILI) printk("IllegalLengthIndication ");
359 if (err & ATAPI_EOM) printk("EndOfMedia ");
360 if (err & ATA_ABORTED) printk("AbortedCommand ");
361 if (err & ATA_MCR) printk("MediaChangeRequested ");
362 if (err & ATAPI_LFS) printk("LastFailedSense=0x%02x ",
363 (err & ATAPI_LFS) >> 4);
Denis Vlasenko13bbbf22005-07-03 17:09:13 +0200364 printk("}\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365}
366
367/**
Bartlomiej Zolnierkiewicze62925d2008-01-25 22:17:17 +0100368 * ide_dump_status - translate ATA/ATAPI error
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 * @drive: drive that status applies to
370 * @msg: text message to print
371 * @stat: status byte to decode
372 *
373 * Error reporting, in human readable form (luxurious, but a memory hog).
Bartlomiej Zolnierkiewicze62925d2008-01-25 22:17:17 +0100374 * Combines the drive name, message and status byte to provide a
375 * user understandable explanation of the device error.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 */
377
Bartlomiej Zolnierkiewicze62925d2008-01-25 22:17:17 +0100378u8 ide_dump_status(ide_drive_t *drive, const char *msg, u8 stat)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379{
380 unsigned long flags;
Bartlomiej Zolnierkiewicz0e38a662008-01-25 22:17:12 +0100381 u8 err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382
Ingo Molnar3d1c1cc2006-06-26 00:26:17 -0700383 local_irq_save(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 printk("%s: %s: status=0x%02x { ", drive->name, msg, stat);
Bartlomiej Zolnierkiewicz3a7d2482008-10-10 22:39:21 +0200385 if (stat & ATA_BUSY)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 printk("Busy ");
387 else {
Bartlomiej Zolnierkiewicz3a7d2482008-10-10 22:39:21 +0200388 if (stat & ATA_DRDY) printk("DriveReady ");
389 if (stat & ATA_DF) printk("DeviceFault ");
390 if (stat & ATA_DSC) printk("SeekComplete ");
391 if (stat & ATA_DRQ) printk("DataRequest ");
392 if (stat & ATA_CORR) printk("CorrectedError ");
393 if (stat & ATA_IDX) printk("Index ");
394 if (stat & ATA_ERR) printk("Error ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 }
396 printk("}\n");
Bartlomiej Zolnierkiewicz3a7d2482008-10-10 22:39:21 +0200397 if ((stat & (ATA_BUSY | ATA_ERR)) == ATA_ERR) {
Bartlomiej Zolnierkiewicz64a57fe2008-02-06 02:57:51 +0100398 err = ide_read_error(drive);
Bartlomiej Zolnierkiewicze62925d2008-01-25 22:17:17 +0100399 printk("%s: %s: error=0x%02x ", drive->name, msg, err);
400 if (drive->media == ide_disk)
401 ide_dump_ata_error(drive, err);
402 else
403 ide_dump_atapi_error(drive, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 }
405 ide_dump_opcode(drive);
406 local_irq_restore(flags);
Bartlomiej Zolnierkiewicz0e38a662008-01-25 22:17:12 +0100407 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408}
409
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410EXPORT_SYMBOL(ide_dump_status);