blob: 47af80df68728c1ec9885fec5ced8ecd38826c3c [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#include <linux/module.h>
2#include <linux/types.h>
3#include <linux/string.h>
4#include <linux/kernel.h>
5#include <linux/timer.h>
6#include <linux/mm.h>
7#include <linux/interrupt.h>
8#include <linux/major.h>
9#include <linux/errno.h>
10#include <linux/genhd.h>
11#include <linux/blkpg.h>
12#include <linux/slab.h>
13#include <linux/pci.h>
14#include <linux/delay.h>
15#include <linux/hdreg.h>
16#include <linux/ide.h>
17#include <linux/bitops.h>
18
19#include <asm/byteorder.h>
20#include <asm/irq.h>
21#include <asm/uaccess.h>
22#include <asm/io.h>
23
Bartlomiej Zolnierkiewicz3ab7efe2007-12-12 23:31:58 +010024static const char *udma_str[] =
25 { "UDMA/16", "UDMA/25", "UDMA/33", "UDMA/44",
26 "UDMA/66", "UDMA/100", "UDMA/133", "UDMA7" };
27static const char *mwdma_str[] =
28 { "MWDMA0", "MWDMA1", "MWDMA2" };
29static const char *swdma_str[] =
30 { "SWDMA0", "SWDMA1", "SWDMA2" };
31static const char *pio_str[] =
32 { "PIO0", "PIO1", "PIO2", "PIO3", "PIO4", "PIO5" };
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
34/**
35 * ide_xfer_verbose - return IDE mode names
Bartlomiej Zolnierkiewicz3ab7efe2007-12-12 23:31:58 +010036 * @mode: transfer mode
Linus Torvalds1da177e2005-04-16 15:20:36 -070037 *
38 * Returns a constant string giving the name of the mode
39 * requested.
40 */
41
Bartlomiej Zolnierkiewicz3ab7efe2007-12-12 23:31:58 +010042const char *ide_xfer_verbose(u8 mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -070043{
Bartlomiej Zolnierkiewicz3ab7efe2007-12-12 23:31:58 +010044 const char *s;
45 u8 i = mode & 0xf;
46
47 if (mode >= XFER_UDMA_0 && mode <= XFER_UDMA_7)
48 s = udma_str[i];
49 else if (mode >= XFER_MW_DMA_0 && mode <= XFER_MW_DMA_2)
50 s = mwdma_str[i];
51 else if (mode >= XFER_SW_DMA_0 && mode <= XFER_SW_DMA_2)
52 s = swdma_str[i];
53 else if (mode >= XFER_PIO_0 && mode <= XFER_PIO_5)
54 s = pio_str[i & 0x7];
55 else if (mode == XFER_PIO_SLOW)
56 s = "PIO SLOW";
57 else
58 s = "XFER ERROR";
59
60 return s;
Linus Torvalds1da177e2005-04-16 15:20:36 -070061}
62
63EXPORT_SYMBOL(ide_xfer_verbose);
64
65/**
Bartlomiej Zolnierkiewicz2d5eaa62007-05-10 00:01:08 +020066 * ide_rate_filter - filter transfer mode
67 * @drive: IDE device
Linus Torvalds1da177e2005-04-16 15:20:36 -070068 * @speed: desired speed
69 *
Bartlomiej Zolnierkiewicz2d5eaa62007-05-10 00:01:08 +020070 * Given the available transfer modes this function returns
Linus Torvalds1da177e2005-04-16 15:20:36 -070071 * the best available speed at or below the speed requested.
Bartlomiej Zolnierkiewicz2d5eaa62007-05-10 00:01:08 +020072 *
Bartlomiej Zolnierkiewicz7670df72007-10-11 23:53:59 +020073 * TODO: check device PIO capabilities
Linus Torvalds1da177e2005-04-16 15:20:36 -070074 */
75
Bartlomiej Zolnierkiewiczf212ff22007-10-11 23:53:59 +020076static u8 ide_rate_filter(ide_drive_t *drive, u8 speed)
Linus Torvalds1da177e2005-04-16 15:20:36 -070077{
Bartlomiej Zolnierkiewicz2d5eaa62007-05-10 00:01:08 +020078 ide_hwif_t *hwif = drive->hwif;
Bartlomiej Zolnierkiewicz7670df72007-10-11 23:53:59 +020079 u8 mode = ide_find_dma_mode(drive, speed);
Bartlomiej Zolnierkiewicz2d5eaa62007-05-10 00:01:08 +020080
Bartlomiej Zolnierkiewicz7670df72007-10-11 23:53:59 +020081 if (mode == 0) {
82 if (hwif->pio_mask)
83 mode = fls(hwif->pio_mask) - 1 + XFER_PIO_0;
84 else
85 mode = XFER_PIO_4;
Bartlomiej Zolnierkiewicz7f8f48a2007-05-10 00:01:10 +020086 }
Bartlomiej Zolnierkiewicz2d5eaa62007-05-10 00:01:08 +020087
Harvey Harrisoneb639632008-04-26 22:25:20 +020088/* printk("%s: mode 0x%02x, speed 0x%02x\n", __func__, mode, speed); */
Linus Torvalds1da177e2005-04-16 15:20:36 -070089
Bartlomiej Zolnierkiewicz2d5eaa62007-05-10 00:01:08 +020090 return min(speed, mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -070091}
92
Linus Torvalds1da177e2005-04-16 15:20:36 -070093/*
94 * Standard (generic) timings for PIO modes, from ATA2 specification.
95 * These timings are for access to the IDE data port register *only*.
96 * Some drives may specify a mode, while also specifying a different
97 * value for cycle_time (from drive identification data).
98 */
99const ide_pio_timings_t ide_pio_timings[6] = {
100 { 70, 165, 600 }, /* PIO Mode 0 */
101 { 50, 125, 383 }, /* PIO Mode 1 */
102 { 30, 100, 240 }, /* PIO Mode 2 */
103 { 30, 80, 180 }, /* PIO Mode 3 with IORDY */
104 { 25, 70, 120 }, /* PIO Mode 4 with IORDY */
105 { 20, 50, 100 } /* PIO Mode 5 with IORDY (nonstandard) */
106};
107
108EXPORT_SYMBOL_GPL(ide_pio_timings);
109
110/*
111 * Shared data/functions for determining best PIO mode for an IDE drive.
112 * Most of this stuff originally lived in cmd640.c, and changes to the
113 * ide_pio_blacklist[] table should be made with EXTREME CAUTION to avoid
114 * breaking the fragile cmd640.c support.
115 */
116
117/*
118 * Black list. Some drives incorrectly report their maximal PIO mode,
119 * at least in respect to CMD640. Here we keep info on some known drives.
120 */
121static struct ide_pio_info {
122 const char *name;
123 int pio;
124} ide_pio_blacklist [] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 { "Conner Peripherals 540MB - CFS540A", 3 },
126
127 { "WDC AC2700", 3 },
128 { "WDC AC2540", 3 },
129 { "WDC AC2420", 3 },
130 { "WDC AC2340", 3 },
131 { "WDC AC2250", 0 },
132 { "WDC AC2200", 0 },
133 { "WDC AC21200", 4 },
134 { "WDC AC2120", 0 },
135 { "WDC AC2850", 3 },
136 { "WDC AC1270", 3 },
137 { "WDC AC1170", 1 },
138 { "WDC AC1210", 1 },
139 { "WDC AC280", 0 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 { "WDC AC31000", 3 },
141 { "WDC AC31200", 3 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142
143 { "Maxtor 7131 AT", 1 },
144 { "Maxtor 7171 AT", 1 },
145 { "Maxtor 7213 AT", 1 },
146 { "Maxtor 7245 AT", 1 },
147 { "Maxtor 7345 AT", 1 },
148 { "Maxtor 7546 AT", 3 },
149 { "Maxtor 7540 AV", 3 },
150
151 { "SAMSUNG SHD-3121A", 1 },
152 { "SAMSUNG SHD-3122A", 1 },
153 { "SAMSUNG SHD-3172A", 1 },
154
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 { "ST5660A", 3 },
156 { "ST3660A", 3 },
157 { "ST3630A", 3 },
158 { "ST3655A", 3 },
159 { "ST3391A", 3 },
160 { "ST3390A", 1 },
161 { "ST3600A", 1 },
162 { "ST3290A", 0 },
163 { "ST3144A", 0 },
164 { "ST3491A", 1 }, /* reports 3, should be 1 or 2 (depending on */
165 /* drive) according to Seagates FIND-ATA program */
166
167 { "QUANTUM ELS127A", 0 },
168 { "QUANTUM ELS170A", 0 },
169 { "QUANTUM LPS240A", 0 },
170 { "QUANTUM LPS210A", 3 },
171 { "QUANTUM LPS270A", 3 },
172 { "QUANTUM LPS365A", 3 },
173 { "QUANTUM LPS540A", 3 },
174 { "QUANTUM LIGHTNING 540A", 3 },
175 { "QUANTUM LIGHTNING 730A", 3 },
176
177 { "QUANTUM FIREBALL_540", 3 }, /* Older Quantum Fireballs don't work */
178 { "QUANTUM FIREBALL_640", 3 },
179 { "QUANTUM FIREBALL_1080", 3 },
180 { "QUANTUM FIREBALL_1280", 3 },
181 { NULL, 0 }
182};
183
184/**
185 * ide_scan_pio_blacklist - check for a blacklisted drive
186 * @model: Drive model string
187 *
188 * This routine searches the ide_pio_blacklist for an entry
189 * matching the start/whole of the supplied model name.
190 *
191 * Returns -1 if no match found.
192 * Otherwise returns the recommended PIO mode from ide_pio_blacklist[].
193 */
194
195static int ide_scan_pio_blacklist (char *model)
196{
197 struct ide_pio_info *p;
198
199 for (p = ide_pio_blacklist; p->name != NULL; p++) {
200 if (strncmp(p->name, model, strlen(p->name)) == 0)
201 return p->pio;
202 }
203 return -1;
204}
205
Bartlomiej Zolnierkiewicz7dd00082007-07-20 01:11:56 +0200206unsigned int ide_pio_cycle_time(ide_drive_t *drive, u8 pio)
207{
208 struct hd_driveid *id = drive->id;
209 int cycle_time = 0;
210
211 if (id->field_valid & 2) {
212 if (id->capability & 8)
213 cycle_time = id->eide_pio_iordy;
214 else
215 cycle_time = id->eide_pio;
216 }
217
218 /* conservative "downgrade" for all pre-ATA2 drives */
219 if (pio < 3) {
220 if (cycle_time && cycle_time < ide_pio_timings[pio].cycle_time)
221 cycle_time = 0; /* use standard timing */
222 }
223
224 return cycle_time ? cycle_time : ide_pio_timings[pio].cycle_time;
225}
226
227EXPORT_SYMBOL_GPL(ide_pio_cycle_time);
228
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229/**
230 * ide_get_best_pio_mode - get PIO mode from drive
Sergei Shtylyov81d368e2007-03-03 17:48:53 +0100231 * @drive: drive to consider
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 * @mode_wanted: preferred mode
Sergei Shtylyov81d368e2007-03-03 17:48:53 +0100233 * @max_mode: highest allowed mode
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 *
235 * This routine returns the recommended PIO settings for a given drive,
236 * based on the drive->id information and the ide_pio_blacklist[].
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 *
Sergei Shtylyov81d368e2007-03-03 17:48:53 +0100238 * Drive PIO mode is auto-selected if 255 is passed as mode_wanted.
239 * This is used by most chipset support modules when "auto-tuning".
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 */
241
Bartlomiej Zolnierkiewicz21347582007-07-20 01:11:58 +0200242u8 ide_get_best_pio_mode (ide_drive_t *drive, u8 mode_wanted, u8 max_mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243{
244 int pio_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 struct hd_driveid* id = drive->id;
246 int overridden = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247
Bartlomiej Zolnierkiewicz6a824c92007-07-20 01:11:58 +0200248 if (mode_wanted != 255)
249 return min_t(u8, mode_wanted, max_mode);
250
251 if ((drive->hwif->host_flags & IDE_HFLAG_PIO_NO_BLACKLIST) == 0 &&
252 (pio_mode = ide_scan_pio_blacklist(id->model)) != -1) {
Bartlomiej Zolnierkiewicz342cdb62007-07-20 01:11:55 +0200253 printk(KERN_INFO "%s: is on PIO blacklist\n", drive->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 } else {
255 pio_mode = id->tPIO;
256 if (pio_mode > 2) { /* 2 is maximum allowed tPIO value */
257 pio_mode = 2;
258 overridden = 1;
259 }
260 if (id->field_valid & 2) { /* drive implements ATA2? */
Bartlomiej Zolnierkiewicz22298332007-07-20 01:11:55 +0200261 if (id->capability & 8) { /* IORDY supported? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 if (id->eide_pio_modes & 7) {
263 overridden = 0;
264 if (id->eide_pio_modes & 4)
265 pio_mode = 5;
266 else if (id->eide_pio_modes & 2)
267 pio_mode = 4;
268 else
269 pio_mode = 3;
270 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 }
272 }
273
Bartlomiej Zolnierkiewicz342cdb62007-07-20 01:11:55 +0200274 if (overridden)
275 printk(KERN_INFO "%s: tPIO > 2, assuming tPIO = 2\n",
276 drive->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 }
Bartlomiej Zolnierkiewicz7dd00082007-07-20 01:11:56 +0200278
279 if (pio_mode > max_mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 pio_mode = max_mode;
Bartlomiej Zolnierkiewicz7dd00082007-07-20 01:11:56 +0200281
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 return pio_mode;
283}
284
285EXPORT_SYMBOL_GPL(ide_get_best_pio_mode);
286
Bartlomiej Zolnierkiewicz26bcb872007-10-11 23:54:00 +0200287/* req_pio == "255" for auto-tune */
288void ide_set_pio(ide_drive_t *drive, u8 req_pio)
289{
290 ide_hwif_t *hwif = drive->hwif;
Bartlomiej Zolnierkiewiczac95bee2008-04-26 22:25:14 +0200291 const struct ide_port_ops *port_ops = hwif->port_ops;
Bartlomiej Zolnierkiewicz26bcb872007-10-11 23:54:00 +0200292 u8 host_pio, pio;
293
Bartlomiej Zolnierkiewiczac95bee2008-04-26 22:25:14 +0200294 if (port_ops == NULL || port_ops->set_pio_mode == NULL ||
Bartlomiej Zolnierkiewicz784506c2008-04-26 17:36:43 +0200295 (hwif->host_flags & IDE_HFLAG_NO_SET_MODE))
Bartlomiej Zolnierkiewicz26bcb872007-10-11 23:54:00 +0200296 return;
297
298 BUG_ON(hwif->pio_mask == 0x00);
299
300 host_pio = fls(hwif->pio_mask) - 1;
301
302 pio = ide_get_best_pio_mode(drive, req_pio, host_pio);
303
304 /*
305 * TODO:
306 * - report device max PIO mode
307 * - check req_pio != 255 against device max PIO mode
308 */
309 printk(KERN_DEBUG "%s: host max PIO%d wanted PIO%d%s selected PIO%d\n",
310 drive->name, host_pio, req_pio,
311 req_pio == 255 ? "(auto-tune)" : "", pio);
312
Bartlomiej Zolnierkiewicz88b2b322007-10-13 17:47:51 +0200313 (void)ide_set_pio_mode(drive, XFER_PIO_0 + pio);
Bartlomiej Zolnierkiewicz26bcb872007-10-11 23:54:00 +0200314}
315
316EXPORT_SYMBOL_GPL(ide_set_pio);
317
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318/**
319 * ide_toggle_bounce - handle bounce buffering
320 * @drive: drive to update
321 * @on: on/off boolean
322 *
323 * Enable or disable bounce buffering for the device. Drives move
324 * between PIO and DMA and that changes the rules we need.
325 */
326
327void ide_toggle_bounce(ide_drive_t *drive, int on)
328{
329 u64 addr = BLK_BOUNCE_HIGH; /* dma64_addr_t */
330
James Bottomley65931782005-11-18 23:13:33 +0100331 if (!PCI_DMA_BUS_IS_PHYS) {
332 addr = BLK_BOUNCE_ANY;
333 } else if (on && drive->media == ide_disk) {
Bartlomiej Zolnierkiewicz36501652008-02-01 23:09:31 +0100334 struct device *dev = drive->hwif->dev;
335
336 if (dev && dev->dma_mask)
337 addr = *dev->dma_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 }
339
340 if (drive->queue)
341 blk_queue_bounce_limit(drive->queue, addr);
342}
343
Bartlomiej Zolnierkiewicz88b2b322007-10-13 17:47:51 +0200344int ide_set_pio_mode(ide_drive_t *drive, const u8 mode)
345{
346 ide_hwif_t *hwif = drive->hwif;
Bartlomiej Zolnierkiewiczac95bee2008-04-26 22:25:14 +0200347 const struct ide_port_ops *port_ops = hwif->port_ops;
Bartlomiej Zolnierkiewicz88b2b322007-10-13 17:47:51 +0200348
Bartlomiej Zolnierkiewicz784506c2008-04-26 17:36:43 +0200349 if (hwif->host_flags & IDE_HFLAG_NO_SET_MODE)
350 return 0;
351
Bartlomiej Zolnierkiewiczac95bee2008-04-26 22:25:14 +0200352 if (port_ops == NULL || port_ops->set_pio_mode == NULL)
Bartlomiej Zolnierkiewicz88b2b322007-10-13 17:47:51 +0200353 return -1;
354
355 /*
356 * TODO: temporary hack for some legacy host drivers that didn't
357 * set transfer mode on the device in ->set_pio_mode method...
358 */
Bartlomiej Zolnierkiewiczac95bee2008-04-26 22:25:14 +0200359 if (port_ops->set_dma_mode == NULL) {
360 port_ops->set_pio_mode(drive, mode - XFER_PIO_0);
Bartlomiej Zolnierkiewicz88b2b322007-10-13 17:47:51 +0200361 return 0;
362 }
363
364 if (hwif->host_flags & IDE_HFLAG_POST_SET_MODE) {
365 if (ide_config_drive_speed(drive, mode))
366 return -1;
Bartlomiej Zolnierkiewiczac95bee2008-04-26 22:25:14 +0200367 port_ops->set_pio_mode(drive, mode - XFER_PIO_0);
Bartlomiej Zolnierkiewicz88b2b322007-10-13 17:47:51 +0200368 return 0;
369 } else {
Bartlomiej Zolnierkiewiczac95bee2008-04-26 22:25:14 +0200370 port_ops->set_pio_mode(drive, mode - XFER_PIO_0);
Bartlomiej Zolnierkiewicz88b2b322007-10-13 17:47:51 +0200371 return ide_config_drive_speed(drive, mode);
372 }
373}
374
375int ide_set_dma_mode(ide_drive_t *drive, const u8 mode)
376{
377 ide_hwif_t *hwif = drive->hwif;
Bartlomiej Zolnierkiewiczac95bee2008-04-26 22:25:14 +0200378 const struct ide_port_ops *port_ops = hwif->port_ops;
Bartlomiej Zolnierkiewicz88b2b322007-10-13 17:47:51 +0200379
Bartlomiej Zolnierkiewicz784506c2008-04-26 17:36:43 +0200380 if (hwif->host_flags & IDE_HFLAG_NO_SET_MODE)
381 return 0;
382
Bartlomiej Zolnierkiewiczac95bee2008-04-26 22:25:14 +0200383 if (port_ops == NULL || port_ops->set_dma_mode == NULL)
Bartlomiej Zolnierkiewicz88b2b322007-10-13 17:47:51 +0200384 return -1;
385
386 if (hwif->host_flags & IDE_HFLAG_POST_SET_MODE) {
387 if (ide_config_drive_speed(drive, mode))
388 return -1;
Bartlomiej Zolnierkiewiczac95bee2008-04-26 22:25:14 +0200389 port_ops->set_dma_mode(drive, mode);
Bartlomiej Zolnierkiewicz88b2b322007-10-13 17:47:51 +0200390 return 0;
391 } else {
Bartlomiej Zolnierkiewiczac95bee2008-04-26 22:25:14 +0200392 port_ops->set_dma_mode(drive, mode);
Bartlomiej Zolnierkiewicz88b2b322007-10-13 17:47:51 +0200393 return ide_config_drive_speed(drive, mode);
394 }
395}
396
397EXPORT_SYMBOL_GPL(ide_set_dma_mode);
398
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399/**
400 * ide_set_xfer_rate - set transfer rate
401 * @drive: drive to set
Bartlomiej Zolnierkiewicz88b2b322007-10-13 17:47:51 +0200402 * @rate: speed to attempt to set
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 *
404 * General helper for setting the speed of an IDE device. This
405 * function knows about user enforced limits from the configuration
Bartlomiej Zolnierkiewicz88b2b322007-10-13 17:47:51 +0200406 * which ->set_pio_mode/->set_dma_mode does not.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 */
Bartlomiej Zolnierkiewicz88b2b322007-10-13 17:47:51 +0200408
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409int ide_set_xfer_rate(ide_drive_t *drive, u8 rate)
410{
Bartlomiej Zolnierkiewiczf212ff22007-10-11 23:53:59 +0200411 ide_hwif_t *hwif = drive->hwif;
Bartlomiej Zolnierkiewiczac95bee2008-04-26 22:25:14 +0200412 const struct ide_port_ops *port_ops = hwif->port_ops;
Bartlomiej Zolnierkiewiczf212ff22007-10-11 23:53:59 +0200413
Bartlomiej Zolnierkiewiczac95bee2008-04-26 22:25:14 +0200414 if (port_ops == NULL || port_ops->set_dma_mode == NULL ||
Bartlomiej Zolnierkiewicz784506c2008-04-26 17:36:43 +0200415 (hwif->host_flags & IDE_HFLAG_NO_SET_MODE))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 return -1;
Bartlomiej Zolnierkiewiczf212ff22007-10-11 23:53:59 +0200417
418 rate = ide_rate_filter(drive, rate);
419
Bartlomiej Zolnierkiewicz88b2b322007-10-13 17:47:51 +0200420 if (rate >= XFER_PIO_0 && rate <= XFER_PIO_5)
421 return ide_set_pio_mode(drive, rate);
Bartlomiej Zolnierkiewicz8f4dd2e2007-10-11 23:54:02 +0200422
Bartlomiej Zolnierkiewicz88b2b322007-10-13 17:47:51 +0200423 /*
424 * TODO: transfer modes 0x00-0x07 passed from the user-space are
425 * currently handled here which needs fixing (please note that such
426 * case could happen iff the transfer mode has already been set on
427 * the device by ide-proc.c::set_xfer_rate()).
428 */
Bartlomiej Zolnierkiewicz4db90a12008-01-25 22:17:18 +0100429 if (rate < XFER_PIO_0) {
430 if (hwif->host_flags & IDE_HFLAG_ABUSE_SET_DMA_MODE)
431 return ide_set_dma_mode(drive, rate);
432 else
433 return ide_config_drive_speed(drive, rate);
434 }
Bartlomiej Zolnierkiewicz8f4dd2e2007-10-11 23:54:02 +0200435
Bartlomiej Zolnierkiewicz88b2b322007-10-13 17:47:51 +0200436 return ide_set_dma_mode(drive, rate);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437}
438
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439static void ide_dump_opcode(ide_drive_t *drive)
440{
441 struct request *rq;
Bartlomiej Zolnierkiewicz7267c332008-01-26 20:13:13 +0100442 ide_task_t *task = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443
444 spin_lock(&ide_lock);
445 rq = NULL;
446 if (HWGROUP(drive))
447 rq = HWGROUP(drive)->rq;
448 spin_unlock(&ide_lock);
449 if (!rq)
450 return;
Bartlomiej Zolnierkiewicz7267c332008-01-26 20:13:13 +0100451
452 if (rq->cmd_type == REQ_TYPE_ATA_TASKFILE)
453 task = rq->special;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454
455 printk("ide: failed opcode was: ");
Bartlomiej Zolnierkiewicz7267c332008-01-26 20:13:13 +0100456 if (task == NULL)
457 printk(KERN_CONT "unknown\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 else
Bartlomiej Zolnierkiewicz7267c332008-01-26 20:13:13 +0100459 printk(KERN_CONT "0x%02x\n", task->tf.command);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460}
461
Bartlomiej Zolnierkiewicza5016332008-01-25 22:17:17 +0100462u64 ide_get_lba_addr(struct ide_taskfile *tf, int lba48)
Bartlomiej Zolnierkiewiczc2b57cd2008-01-25 22:17:17 +0100463{
464 u32 high, low;
465
466 if (lba48)
467 high = (tf->hob_lbah << 16) | (tf->hob_lbam << 8) |
468 tf->hob_lbal;
469 else
470 high = tf->device & 0xf;
471 low = (tf->lbah << 16) | (tf->lbam << 8) | tf->lbal;
472
473 return ((u64)high << 24) | low;
474}
Bartlomiej Zolnierkiewicza5016332008-01-25 22:17:17 +0100475EXPORT_SYMBOL_GPL(ide_get_lba_addr);
Bartlomiej Zolnierkiewiczc2b57cd2008-01-25 22:17:17 +0100476
477static void ide_dump_sector(ide_drive_t *drive)
478{
479 ide_task_t task;
480 struct ide_taskfile *tf = &task.tf;
481 int lba48 = (drive->addressing == 1) ? 1 : 0;
482
483 memset(&task, 0, sizeof(task));
484 if (lba48)
485 task.tf_flags = IDE_TFLAG_IN_LBA | IDE_TFLAG_IN_HOB_LBA |
486 IDE_TFLAG_LBA48;
487 else
488 task.tf_flags = IDE_TFLAG_IN_LBA | IDE_TFLAG_IN_DEVICE;
489
Bartlomiej Zolnierkiewicz94cd5b62008-04-28 23:44:40 +0200490 drive->hwif->tf_read(drive, &task);
Bartlomiej Zolnierkiewiczc2b57cd2008-01-25 22:17:17 +0100491
492 if (lba48 || (tf->device & ATA_LBA))
Andrew Morton1c904fc2008-01-25 22:17:17 +0100493 printk(", LBAsect=%llu",
494 (unsigned long long)ide_get_lba_addr(tf, lba48));
Bartlomiej Zolnierkiewiczc2b57cd2008-01-25 22:17:17 +0100495 else
496 printk(", CHS=%d/%d/%d", (tf->lbah << 8) + tf->lbam,
497 tf->device & 0xf, tf->lbal);
498}
499
Bartlomiej Zolnierkiewicze62925d2008-01-25 22:17:17 +0100500static void ide_dump_ata_error(ide_drive_t *drive, u8 err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501{
Bartlomiej Zolnierkiewicze62925d2008-01-25 22:17:17 +0100502 printk("{ ");
503 if (err & ABRT_ERR) printk("DriveStatusError ");
504 if (err & ICRC_ERR)
505 printk((err & ABRT_ERR) ? "BadCRC " : "BadSector ");
506 if (err & ECC_ERR) printk("UncorrectableError ");
507 if (err & ID_ERR) printk("SectorIdNotFound ");
508 if (err & TRK0_ERR) printk("TrackZeroNotFound ");
509 if (err & MARK_ERR) printk("AddrMarkNotFound ");
510 printk("}");
511 if ((err & (BBD_ERR | ABRT_ERR)) == BBD_ERR ||
512 (err & (ECC_ERR|ID_ERR|MARK_ERR))) {
513 ide_dump_sector(drive);
514 if (HWGROUP(drive) && HWGROUP(drive)->rq)
515 printk(", sector=%llu",
516 (unsigned long long)HWGROUP(drive)->rq->sector);
517 }
518 printk("\n");
519}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520
Bartlomiej Zolnierkiewicze62925d2008-01-25 22:17:17 +0100521static void ide_dump_atapi_error(ide_drive_t *drive, u8 err)
522{
523 printk("{ ");
524 if (err & ILI_ERR) printk("IllegalLengthIndication ");
525 if (err & EOM_ERR) printk("EndOfMedia ");
526 if (err & ABRT_ERR) printk("AbortedCommand ");
527 if (err & MCR_ERR) printk("MediaChangeRequested ");
528 if (err & LFS_ERR) printk("LastFailedSense=0x%02x ",
529 (err & LFS_ERR) >> 4);
Denis Vlasenko13bbbf22005-07-03 17:09:13 +0200530 printk("}\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531}
532
533/**
Bartlomiej Zolnierkiewicze62925d2008-01-25 22:17:17 +0100534 * ide_dump_status - translate ATA/ATAPI error
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 * @drive: drive that status applies to
536 * @msg: text message to print
537 * @stat: status byte to decode
538 *
539 * Error reporting, in human readable form (luxurious, but a memory hog).
Bartlomiej Zolnierkiewicze62925d2008-01-25 22:17:17 +0100540 * Combines the drive name, message and status byte to provide a
541 * user understandable explanation of the device error.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 */
543
Bartlomiej Zolnierkiewicze62925d2008-01-25 22:17:17 +0100544u8 ide_dump_status(ide_drive_t *drive, const char *msg, u8 stat)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545{
546 unsigned long flags;
Bartlomiej Zolnierkiewicz0e38a662008-01-25 22:17:12 +0100547 u8 err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548
Ingo Molnar3d1c1cc2006-06-26 00:26:17 -0700549 local_irq_save(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 printk("%s: %s: status=0x%02x { ", drive->name, msg, stat);
Bartlomiej Zolnierkiewicz22c525b2008-01-25 22:17:11 +0100551 if (stat & BUSY_STAT)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 printk("Busy ");
553 else {
Bartlomiej Zolnierkiewicz22c525b2008-01-25 22:17:11 +0100554 if (stat & READY_STAT) printk("DriveReady ");
555 if (stat & WRERR_STAT) printk("DeviceFault ");
556 if (stat & SEEK_STAT) printk("SeekComplete ");
557 if (stat & DRQ_STAT) printk("DataRequest ");
558 if (stat & ECC_STAT) printk("CorrectedError ");
559 if (stat & INDEX_STAT) printk("Index ");
560 if (stat & ERR_STAT) printk("Error ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 }
562 printk("}\n");
Bartlomiej Zolnierkiewicz22c525b2008-01-25 22:17:11 +0100563 if ((stat & (BUSY_STAT|ERR_STAT)) == ERR_STAT) {
Bartlomiej Zolnierkiewicz64a57fe2008-02-06 02:57:51 +0100564 err = ide_read_error(drive);
Bartlomiej Zolnierkiewicze62925d2008-01-25 22:17:17 +0100565 printk("%s: %s: error=0x%02x ", drive->name, msg, err);
566 if (drive->media == ide_disk)
567 ide_dump_ata_error(drive, err);
568 else
569 ide_dump_atapi_error(drive, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 }
571 ide_dump_opcode(drive);
572 local_irq_restore(flags);
Bartlomiej Zolnierkiewicz0e38a662008-01-25 22:17:12 +0100573 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574}
575
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576EXPORT_SYMBOL(ide_dump_status);