Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | #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 | |
| 24 | /* |
| 25 | * IDE library routines. These are plug in code that most |
| 26 | * drivers can use but occasionally may be weird enough |
| 27 | * to want to do their own thing with |
| 28 | * |
| 29 | * Add common non I/O op stuff here. Make sure it has proper |
| 30 | * kernel-doc function headers or your patch will be rejected |
| 31 | */ |
| 32 | |
| 33 | |
| 34 | /** |
| 35 | * ide_xfer_verbose - return IDE mode names |
| 36 | * @xfer_rate: rate to name |
| 37 | * |
| 38 | * Returns a constant string giving the name of the mode |
| 39 | * requested. |
| 40 | */ |
| 41 | |
| 42 | char *ide_xfer_verbose (u8 xfer_rate) |
| 43 | { |
| 44 | switch(xfer_rate) { |
| 45 | case XFER_UDMA_7: return("UDMA 7"); |
| 46 | case XFER_UDMA_6: return("UDMA 6"); |
| 47 | case XFER_UDMA_5: return("UDMA 5"); |
| 48 | case XFER_UDMA_4: return("UDMA 4"); |
| 49 | case XFER_UDMA_3: return("UDMA 3"); |
| 50 | case XFER_UDMA_2: return("UDMA 2"); |
| 51 | case XFER_UDMA_1: return("UDMA 1"); |
| 52 | case XFER_UDMA_0: return("UDMA 0"); |
| 53 | case XFER_MW_DMA_2: return("MW DMA 2"); |
| 54 | case XFER_MW_DMA_1: return("MW DMA 1"); |
| 55 | case XFER_MW_DMA_0: return("MW DMA 0"); |
| 56 | case XFER_SW_DMA_2: return("SW DMA 2"); |
| 57 | case XFER_SW_DMA_1: return("SW DMA 1"); |
| 58 | case XFER_SW_DMA_0: return("SW DMA 0"); |
| 59 | case XFER_PIO_4: return("PIO 4"); |
| 60 | case XFER_PIO_3: return("PIO 3"); |
| 61 | case XFER_PIO_2: return("PIO 2"); |
| 62 | case XFER_PIO_1: return("PIO 1"); |
| 63 | case XFER_PIO_0: return("PIO 0"); |
| 64 | case XFER_PIO_SLOW: return("PIO SLOW"); |
| 65 | default: return("XFER ERROR"); |
| 66 | } |
| 67 | } |
| 68 | |
| 69 | EXPORT_SYMBOL(ide_xfer_verbose); |
| 70 | |
| 71 | /** |
Bartlomiej Zolnierkiewicz | 2d5eaa6 | 2007-05-10 00:01:08 +0200 | [diff] [blame] | 72 | * ide_rate_filter - filter transfer mode |
| 73 | * @drive: IDE device |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 74 | * @speed: desired speed |
| 75 | * |
Bartlomiej Zolnierkiewicz | 2d5eaa6 | 2007-05-10 00:01:08 +0200 | [diff] [blame] | 76 | * Given the available transfer modes this function returns |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 77 | * the best available speed at or below the speed requested. |
Bartlomiej Zolnierkiewicz | 2d5eaa6 | 2007-05-10 00:01:08 +0200 | [diff] [blame] | 78 | * |
Bartlomiej Zolnierkiewicz | 7670df7 | 2007-10-11 23:53:59 +0200 | [diff] [blame] | 79 | * TODO: check device PIO capabilities |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 80 | */ |
| 81 | |
Bartlomiej Zolnierkiewicz | f212ff2 | 2007-10-11 23:53:59 +0200 | [diff] [blame] | 82 | static u8 ide_rate_filter(ide_drive_t *drive, u8 speed) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 83 | { |
Bartlomiej Zolnierkiewicz | 2d5eaa6 | 2007-05-10 00:01:08 +0200 | [diff] [blame] | 84 | ide_hwif_t *hwif = drive->hwif; |
Bartlomiej Zolnierkiewicz | 7670df7 | 2007-10-11 23:53:59 +0200 | [diff] [blame] | 85 | u8 mode = ide_find_dma_mode(drive, speed); |
Bartlomiej Zolnierkiewicz | 2d5eaa6 | 2007-05-10 00:01:08 +0200 | [diff] [blame] | 86 | |
Bartlomiej Zolnierkiewicz | 7670df7 | 2007-10-11 23:53:59 +0200 | [diff] [blame] | 87 | if (mode == 0) { |
| 88 | if (hwif->pio_mask) |
| 89 | mode = fls(hwif->pio_mask) - 1 + XFER_PIO_0; |
| 90 | else |
| 91 | mode = XFER_PIO_4; |
Bartlomiej Zolnierkiewicz | 7f8f48a | 2007-05-10 00:01:10 +0200 | [diff] [blame] | 92 | } |
Bartlomiej Zolnierkiewicz | 2d5eaa6 | 2007-05-10 00:01:08 +0200 | [diff] [blame] | 93 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 94 | // printk("%s: mode 0x%02x, speed 0x%02x\n", __FUNCTION__, mode, speed); |
| 95 | |
Bartlomiej Zolnierkiewicz | 2d5eaa6 | 2007-05-10 00:01:08 +0200 | [diff] [blame] | 96 | return min(speed, mode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 97 | } |
| 98 | |
Bartlomiej Zolnierkiewicz | 7569e8d | 2007-02-17 02:40:25 +0100 | [diff] [blame] | 99 | int ide_use_fast_pio(ide_drive_t *drive) |
| 100 | { |
| 101 | struct hd_driveid *id = drive->id; |
| 102 | |
| 103 | if ((id->capability & 1) && drive->autodma) |
| 104 | return 1; |
| 105 | |
| 106 | if ((id->capability & 8) || (id->field_valid & 2)) |
| 107 | return 1; |
| 108 | |
| 109 | return 0; |
| 110 | } |
| 111 | |
| 112 | EXPORT_SYMBOL_GPL(ide_use_fast_pio); |
| 113 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 114 | /* |
| 115 | * Standard (generic) timings for PIO modes, from ATA2 specification. |
| 116 | * These timings are for access to the IDE data port register *only*. |
| 117 | * Some drives may specify a mode, while also specifying a different |
| 118 | * value for cycle_time (from drive identification data). |
| 119 | */ |
| 120 | const ide_pio_timings_t ide_pio_timings[6] = { |
| 121 | { 70, 165, 600 }, /* PIO Mode 0 */ |
| 122 | { 50, 125, 383 }, /* PIO Mode 1 */ |
| 123 | { 30, 100, 240 }, /* PIO Mode 2 */ |
| 124 | { 30, 80, 180 }, /* PIO Mode 3 with IORDY */ |
| 125 | { 25, 70, 120 }, /* PIO Mode 4 with IORDY */ |
| 126 | { 20, 50, 100 } /* PIO Mode 5 with IORDY (nonstandard) */ |
| 127 | }; |
| 128 | |
| 129 | EXPORT_SYMBOL_GPL(ide_pio_timings); |
| 130 | |
| 131 | /* |
| 132 | * Shared data/functions for determining best PIO mode for an IDE drive. |
| 133 | * Most of this stuff originally lived in cmd640.c, and changes to the |
| 134 | * ide_pio_blacklist[] table should be made with EXTREME CAUTION to avoid |
| 135 | * breaking the fragile cmd640.c support. |
| 136 | */ |
| 137 | |
| 138 | /* |
| 139 | * Black list. Some drives incorrectly report their maximal PIO mode, |
| 140 | * at least in respect to CMD640. Here we keep info on some known drives. |
| 141 | */ |
| 142 | static struct ide_pio_info { |
| 143 | const char *name; |
| 144 | int pio; |
| 145 | } ide_pio_blacklist [] = { |
| 146 | /* { "Conner Peripherals 1275MB - CFS1275A", 4 }, */ |
| 147 | { "Conner Peripherals 540MB - CFS540A", 3 }, |
| 148 | |
| 149 | { "WDC AC2700", 3 }, |
| 150 | { "WDC AC2540", 3 }, |
| 151 | { "WDC AC2420", 3 }, |
| 152 | { "WDC AC2340", 3 }, |
| 153 | { "WDC AC2250", 0 }, |
| 154 | { "WDC AC2200", 0 }, |
| 155 | { "WDC AC21200", 4 }, |
| 156 | { "WDC AC2120", 0 }, |
| 157 | { "WDC AC2850", 3 }, |
| 158 | { "WDC AC1270", 3 }, |
| 159 | { "WDC AC1170", 1 }, |
| 160 | { "WDC AC1210", 1 }, |
| 161 | { "WDC AC280", 0 }, |
| 162 | /* { "WDC AC21000", 4 }, */ |
| 163 | { "WDC AC31000", 3 }, |
| 164 | { "WDC AC31200", 3 }, |
| 165 | /* { "WDC AC31600", 4 }, */ |
| 166 | |
| 167 | { "Maxtor 7131 AT", 1 }, |
| 168 | { "Maxtor 7171 AT", 1 }, |
| 169 | { "Maxtor 7213 AT", 1 }, |
| 170 | { "Maxtor 7245 AT", 1 }, |
| 171 | { "Maxtor 7345 AT", 1 }, |
| 172 | { "Maxtor 7546 AT", 3 }, |
| 173 | { "Maxtor 7540 AV", 3 }, |
| 174 | |
| 175 | { "SAMSUNG SHD-3121A", 1 }, |
| 176 | { "SAMSUNG SHD-3122A", 1 }, |
| 177 | { "SAMSUNG SHD-3172A", 1 }, |
| 178 | |
| 179 | /* { "ST51080A", 4 }, |
| 180 | * { "ST51270A", 4 }, |
| 181 | * { "ST31220A", 4 }, |
| 182 | * { "ST31640A", 4 }, |
| 183 | * { "ST32140A", 4 }, |
| 184 | * { "ST3780A", 4 }, |
| 185 | */ |
| 186 | { "ST5660A", 3 }, |
| 187 | { "ST3660A", 3 }, |
| 188 | { "ST3630A", 3 }, |
| 189 | { "ST3655A", 3 }, |
| 190 | { "ST3391A", 3 }, |
| 191 | { "ST3390A", 1 }, |
| 192 | { "ST3600A", 1 }, |
| 193 | { "ST3290A", 0 }, |
| 194 | { "ST3144A", 0 }, |
| 195 | { "ST3491A", 1 }, /* reports 3, should be 1 or 2 (depending on */ |
| 196 | /* drive) according to Seagates FIND-ATA program */ |
| 197 | |
| 198 | { "QUANTUM ELS127A", 0 }, |
| 199 | { "QUANTUM ELS170A", 0 }, |
| 200 | { "QUANTUM LPS240A", 0 }, |
| 201 | { "QUANTUM LPS210A", 3 }, |
| 202 | { "QUANTUM LPS270A", 3 }, |
| 203 | { "QUANTUM LPS365A", 3 }, |
| 204 | { "QUANTUM LPS540A", 3 }, |
| 205 | { "QUANTUM LIGHTNING 540A", 3 }, |
| 206 | { "QUANTUM LIGHTNING 730A", 3 }, |
| 207 | |
| 208 | { "QUANTUM FIREBALL_540", 3 }, /* Older Quantum Fireballs don't work */ |
| 209 | { "QUANTUM FIREBALL_640", 3 }, |
| 210 | { "QUANTUM FIREBALL_1080", 3 }, |
| 211 | { "QUANTUM FIREBALL_1280", 3 }, |
| 212 | { NULL, 0 } |
| 213 | }; |
| 214 | |
| 215 | /** |
| 216 | * ide_scan_pio_blacklist - check for a blacklisted drive |
| 217 | * @model: Drive model string |
| 218 | * |
| 219 | * This routine searches the ide_pio_blacklist for an entry |
| 220 | * matching the start/whole of the supplied model name. |
| 221 | * |
| 222 | * Returns -1 if no match found. |
| 223 | * Otherwise returns the recommended PIO mode from ide_pio_blacklist[]. |
| 224 | */ |
| 225 | |
| 226 | static int ide_scan_pio_blacklist (char *model) |
| 227 | { |
| 228 | struct ide_pio_info *p; |
| 229 | |
| 230 | for (p = ide_pio_blacklist; p->name != NULL; p++) { |
| 231 | if (strncmp(p->name, model, strlen(p->name)) == 0) |
| 232 | return p->pio; |
| 233 | } |
| 234 | return -1; |
| 235 | } |
| 236 | |
Bartlomiej Zolnierkiewicz | 7dd0008 | 2007-07-20 01:11:56 +0200 | [diff] [blame] | 237 | unsigned int ide_pio_cycle_time(ide_drive_t *drive, u8 pio) |
| 238 | { |
| 239 | struct hd_driveid *id = drive->id; |
| 240 | int cycle_time = 0; |
| 241 | |
| 242 | if (id->field_valid & 2) { |
| 243 | if (id->capability & 8) |
| 244 | cycle_time = id->eide_pio_iordy; |
| 245 | else |
| 246 | cycle_time = id->eide_pio; |
| 247 | } |
| 248 | |
| 249 | /* conservative "downgrade" for all pre-ATA2 drives */ |
| 250 | if (pio < 3) { |
| 251 | if (cycle_time && cycle_time < ide_pio_timings[pio].cycle_time) |
| 252 | cycle_time = 0; /* use standard timing */ |
| 253 | } |
| 254 | |
| 255 | return cycle_time ? cycle_time : ide_pio_timings[pio].cycle_time; |
| 256 | } |
| 257 | |
| 258 | EXPORT_SYMBOL_GPL(ide_pio_cycle_time); |
| 259 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 260 | /** |
| 261 | * ide_get_best_pio_mode - get PIO mode from drive |
Sergei Shtylyov | 81d368e | 2007-03-03 17:48:53 +0100 | [diff] [blame] | 262 | * @drive: drive to consider |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 263 | * @mode_wanted: preferred mode |
Sergei Shtylyov | 81d368e | 2007-03-03 17:48:53 +0100 | [diff] [blame] | 264 | * @max_mode: highest allowed mode |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 265 | * |
| 266 | * This routine returns the recommended PIO settings for a given drive, |
| 267 | * based on the drive->id information and the ide_pio_blacklist[]. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 268 | * |
Sergei Shtylyov | 81d368e | 2007-03-03 17:48:53 +0100 | [diff] [blame] | 269 | * Drive PIO mode is auto-selected if 255 is passed as mode_wanted. |
| 270 | * This is used by most chipset support modules when "auto-tuning". |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 271 | */ |
| 272 | |
Bartlomiej Zolnierkiewicz | 2134758 | 2007-07-20 01:11:58 +0200 | [diff] [blame] | 273 | u8 ide_get_best_pio_mode (ide_drive_t *drive, u8 mode_wanted, u8 max_mode) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 274 | { |
| 275 | int pio_mode; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 276 | struct hd_driveid* id = drive->id; |
| 277 | int overridden = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 278 | |
Bartlomiej Zolnierkiewicz | 6a824c9 | 2007-07-20 01:11:58 +0200 | [diff] [blame] | 279 | if (mode_wanted != 255) |
| 280 | return min_t(u8, mode_wanted, max_mode); |
| 281 | |
| 282 | if ((drive->hwif->host_flags & IDE_HFLAG_PIO_NO_BLACKLIST) == 0 && |
| 283 | (pio_mode = ide_scan_pio_blacklist(id->model)) != -1) { |
Bartlomiej Zolnierkiewicz | 342cdb6 | 2007-07-20 01:11:55 +0200 | [diff] [blame] | 284 | printk(KERN_INFO "%s: is on PIO blacklist\n", drive->name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 285 | } else { |
| 286 | pio_mode = id->tPIO; |
| 287 | if (pio_mode > 2) { /* 2 is maximum allowed tPIO value */ |
| 288 | pio_mode = 2; |
| 289 | overridden = 1; |
| 290 | } |
| 291 | if (id->field_valid & 2) { /* drive implements ATA2? */ |
Bartlomiej Zolnierkiewicz | 2229833 | 2007-07-20 01:11:55 +0200 | [diff] [blame] | 292 | if (id->capability & 8) { /* IORDY supported? */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 293 | if (id->eide_pio_modes & 7) { |
| 294 | overridden = 0; |
| 295 | if (id->eide_pio_modes & 4) |
| 296 | pio_mode = 5; |
| 297 | else if (id->eide_pio_modes & 2) |
| 298 | pio_mode = 4; |
| 299 | else |
| 300 | pio_mode = 3; |
| 301 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 302 | } |
| 303 | } |
| 304 | |
Bartlomiej Zolnierkiewicz | 342cdb6 | 2007-07-20 01:11:55 +0200 | [diff] [blame] | 305 | if (overridden) |
| 306 | printk(KERN_INFO "%s: tPIO > 2, assuming tPIO = 2\n", |
| 307 | drive->name); |
| 308 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 309 | /* |
| 310 | * Conservative "downgrade" for all pre-ATA2 drives |
| 311 | */ |
Bartlomiej Zolnierkiewicz | 6a824c9 | 2007-07-20 01:11:58 +0200 | [diff] [blame] | 312 | if ((drive->hwif->host_flags & IDE_HFLAG_PIO_NO_DOWNGRADE) == 0 && |
| 313 | pio_mode && pio_mode < 4) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 314 | pio_mode--; |
Bartlomiej Zolnierkiewicz | 342cdb6 | 2007-07-20 01:11:55 +0200 | [diff] [blame] | 315 | printk(KERN_INFO "%s: applying conservative " |
| 316 | "PIO \"downgrade\"\n", drive->name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 317 | } |
| 318 | } |
Bartlomiej Zolnierkiewicz | 7dd0008 | 2007-07-20 01:11:56 +0200 | [diff] [blame] | 319 | |
| 320 | if (pio_mode > max_mode) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 321 | pio_mode = max_mode; |
Bartlomiej Zolnierkiewicz | 7dd0008 | 2007-07-20 01:11:56 +0200 | [diff] [blame] | 322 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 323 | return pio_mode; |
| 324 | } |
| 325 | |
| 326 | EXPORT_SYMBOL_GPL(ide_get_best_pio_mode); |
| 327 | |
Bartlomiej Zolnierkiewicz | 26bcb87 | 2007-10-11 23:54:00 +0200 | [diff] [blame^] | 328 | /* req_pio == "255" for auto-tune */ |
| 329 | void ide_set_pio(ide_drive_t *drive, u8 req_pio) |
| 330 | { |
| 331 | ide_hwif_t *hwif = drive->hwif; |
| 332 | u8 host_pio, pio; |
| 333 | |
| 334 | if (hwif->set_pio_mode == NULL) |
| 335 | return; |
| 336 | |
| 337 | BUG_ON(hwif->pio_mask == 0x00); |
| 338 | |
| 339 | host_pio = fls(hwif->pio_mask) - 1; |
| 340 | |
| 341 | pio = ide_get_best_pio_mode(drive, req_pio, host_pio); |
| 342 | |
| 343 | /* |
| 344 | * TODO: |
| 345 | * - report device max PIO mode |
| 346 | * - check req_pio != 255 against device max PIO mode |
| 347 | */ |
| 348 | printk(KERN_DEBUG "%s: host max PIO%d wanted PIO%d%s selected PIO%d\n", |
| 349 | drive->name, host_pio, req_pio, |
| 350 | req_pio == 255 ? "(auto-tune)" : "", pio); |
| 351 | |
| 352 | hwif->set_pio_mode(drive, pio); |
| 353 | } |
| 354 | |
| 355 | EXPORT_SYMBOL_GPL(ide_set_pio); |
| 356 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 357 | /** |
| 358 | * ide_toggle_bounce - handle bounce buffering |
| 359 | * @drive: drive to update |
| 360 | * @on: on/off boolean |
| 361 | * |
| 362 | * Enable or disable bounce buffering for the device. Drives move |
| 363 | * between PIO and DMA and that changes the rules we need. |
| 364 | */ |
| 365 | |
| 366 | void ide_toggle_bounce(ide_drive_t *drive, int on) |
| 367 | { |
| 368 | u64 addr = BLK_BOUNCE_HIGH; /* dma64_addr_t */ |
| 369 | |
James Bottomley | 6593178 | 2005-11-18 23:13:33 +0100 | [diff] [blame] | 370 | if (!PCI_DMA_BUS_IS_PHYS) { |
| 371 | addr = BLK_BOUNCE_ANY; |
| 372 | } else if (on && drive->media == ide_disk) { |
| 373 | if (HWIF(drive)->pci_dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 374 | addr = HWIF(drive)->pci_dev->dma_mask; |
| 375 | } |
| 376 | |
| 377 | if (drive->queue) |
| 378 | blk_queue_bounce_limit(drive->queue, addr); |
| 379 | } |
| 380 | |
| 381 | /** |
| 382 | * ide_set_xfer_rate - set transfer rate |
| 383 | * @drive: drive to set |
| 384 | * @speed: speed to attempt to set |
| 385 | * |
| 386 | * General helper for setting the speed of an IDE device. This |
| 387 | * function knows about user enforced limits from the configuration |
| 388 | * which speedproc() does not. High level drivers should never |
| 389 | * invoke speedproc() directly. |
| 390 | */ |
| 391 | |
| 392 | int ide_set_xfer_rate(ide_drive_t *drive, u8 rate) |
| 393 | { |
Bartlomiej Zolnierkiewicz | f212ff2 | 2007-10-11 23:53:59 +0200 | [diff] [blame] | 394 | ide_hwif_t *hwif = drive->hwif; |
| 395 | |
| 396 | if (hwif->speedproc == NULL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 397 | return -1; |
Bartlomiej Zolnierkiewicz | f212ff2 | 2007-10-11 23:53:59 +0200 | [diff] [blame] | 398 | |
| 399 | rate = ide_rate_filter(drive, rate); |
| 400 | |
| 401 | return hwif->speedproc(drive, rate); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 402 | } |
| 403 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 404 | static void ide_dump_opcode(ide_drive_t *drive) |
| 405 | { |
| 406 | struct request *rq; |
| 407 | u8 opcode = 0; |
| 408 | int found = 0; |
| 409 | |
| 410 | spin_lock(&ide_lock); |
| 411 | rq = NULL; |
| 412 | if (HWGROUP(drive)) |
| 413 | rq = HWGROUP(drive)->rq; |
| 414 | spin_unlock(&ide_lock); |
| 415 | if (!rq) |
| 416 | return; |
Jens Axboe | 4aff5e2 | 2006-08-10 08:44:47 +0200 | [diff] [blame] | 417 | if (rq->cmd_type == REQ_TYPE_ATA_CMD || |
| 418 | rq->cmd_type == REQ_TYPE_ATA_TASK) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 419 | char *args = rq->buffer; |
| 420 | if (args) { |
| 421 | opcode = args[0]; |
| 422 | found = 1; |
| 423 | } |
Jens Axboe | 4aff5e2 | 2006-08-10 08:44:47 +0200 | [diff] [blame] | 424 | } else if (rq->cmd_type == REQ_TYPE_ATA_TASKFILE) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 425 | ide_task_t *args = rq->special; |
| 426 | if (args) { |
| 427 | task_struct_t *tf = (task_struct_t *) args->tfRegister; |
| 428 | opcode = tf->command; |
| 429 | found = 1; |
| 430 | } |
| 431 | } |
| 432 | |
| 433 | printk("ide: failed opcode was: "); |
| 434 | if (!found) |
| 435 | printk("unknown\n"); |
| 436 | else |
| 437 | printk("0x%02x\n", opcode); |
| 438 | } |
| 439 | |
| 440 | static u8 ide_dump_ata_status(ide_drive_t *drive, const char *msg, u8 stat) |
| 441 | { |
| 442 | ide_hwif_t *hwif = HWIF(drive); |
| 443 | unsigned long flags; |
| 444 | u8 err = 0; |
| 445 | |
Ingo Molnar | 3d1c1cc | 2006-06-26 00:26:17 -0700 | [diff] [blame] | 446 | local_irq_save(flags); |
Denis Vlasenko | 13bbbf2 | 2005-07-03 17:09:13 +0200 | [diff] [blame] | 447 | printk("%s: %s: status=0x%02x { ", drive->name, msg, stat); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 448 | if (stat & BUSY_STAT) |
| 449 | printk("Busy "); |
| 450 | else { |
| 451 | if (stat & READY_STAT) printk("DriveReady "); |
| 452 | if (stat & WRERR_STAT) printk("DeviceFault "); |
| 453 | if (stat & SEEK_STAT) printk("SeekComplete "); |
| 454 | if (stat & DRQ_STAT) printk("DataRequest "); |
| 455 | if (stat & ECC_STAT) printk("CorrectedError "); |
| 456 | if (stat & INDEX_STAT) printk("Index "); |
| 457 | if (stat & ERR_STAT) printk("Error "); |
| 458 | } |
Denis Vlasenko | 13bbbf2 | 2005-07-03 17:09:13 +0200 | [diff] [blame] | 459 | printk("}\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 460 | if ((stat & (BUSY_STAT|ERR_STAT)) == ERR_STAT) { |
| 461 | err = hwif->INB(IDE_ERROR_REG); |
Denis Vlasenko | 13bbbf2 | 2005-07-03 17:09:13 +0200 | [diff] [blame] | 462 | printk("%s: %s: error=0x%02x { ", drive->name, msg, err); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 463 | if (err & ABRT_ERR) printk("DriveStatusError "); |
| 464 | if (err & ICRC_ERR) |
Denis Vlasenko | 13bbbf2 | 2005-07-03 17:09:13 +0200 | [diff] [blame] | 465 | printk((err & ABRT_ERR) ? "BadCRC " : "BadSector "); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 466 | if (err & ECC_ERR) printk("UncorrectableError "); |
| 467 | if (err & ID_ERR) printk("SectorIdNotFound "); |
| 468 | if (err & TRK0_ERR) printk("TrackZeroNotFound "); |
| 469 | if (err & MARK_ERR) printk("AddrMarkNotFound "); |
| 470 | printk("}"); |
| 471 | if ((err & (BBD_ERR | ABRT_ERR)) == BBD_ERR || |
| 472 | (err & (ECC_ERR|ID_ERR|MARK_ERR))) { |
| 473 | if (drive->addressing == 1) { |
| 474 | __u64 sectors = 0; |
| 475 | u32 low = 0, high = 0; |
| 476 | low = ide_read_24(drive); |
| 477 | hwif->OUTB(drive->ctl|0x80, IDE_CONTROL_REG); |
| 478 | high = ide_read_24(drive); |
| 479 | sectors = ((__u64)high << 24) | low; |
| 480 | printk(", LBAsect=%llu, high=%d, low=%d", |
| 481 | (unsigned long long) sectors, |
| 482 | high, low); |
| 483 | } else { |
| 484 | u8 cur = hwif->INB(IDE_SELECT_REG); |
| 485 | if (cur & 0x40) { /* using LBA? */ |
| 486 | printk(", LBAsect=%ld", (unsigned long) |
| 487 | ((cur&0xf)<<24) |
| 488 | |(hwif->INB(IDE_HCYL_REG)<<16) |
| 489 | |(hwif->INB(IDE_LCYL_REG)<<8) |
| 490 | | hwif->INB(IDE_SECTOR_REG)); |
| 491 | } else { |
| 492 | printk(", CHS=%d/%d/%d", |
| 493 | (hwif->INB(IDE_HCYL_REG)<<8) + |
| 494 | hwif->INB(IDE_LCYL_REG), |
| 495 | cur & 0xf, |
| 496 | hwif->INB(IDE_SECTOR_REG)); |
| 497 | } |
| 498 | } |
| 499 | if (HWGROUP(drive) && HWGROUP(drive)->rq) |
| 500 | printk(", sector=%llu", |
| 501 | (unsigned long long)HWGROUP(drive)->rq->sector); |
| 502 | } |
Denis Vlasenko | 13bbbf2 | 2005-07-03 17:09:13 +0200 | [diff] [blame] | 503 | printk("\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 504 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 505 | ide_dump_opcode(drive); |
| 506 | local_irq_restore(flags); |
| 507 | return err; |
| 508 | } |
| 509 | |
| 510 | /** |
| 511 | * ide_dump_atapi_status - print human readable atapi status |
| 512 | * @drive: drive that status applies to |
| 513 | * @msg: text message to print |
| 514 | * @stat: status byte to decode |
| 515 | * |
| 516 | * Error reporting, in human readable form (luxurious, but a memory hog). |
| 517 | */ |
| 518 | |
| 519 | static u8 ide_dump_atapi_status(ide_drive_t *drive, const char *msg, u8 stat) |
| 520 | { |
| 521 | unsigned long flags; |
| 522 | |
| 523 | atapi_status_t status; |
| 524 | atapi_error_t error; |
| 525 | |
| 526 | status.all = stat; |
| 527 | error.all = 0; |
Ingo Molnar | 3d1c1cc | 2006-06-26 00:26:17 -0700 | [diff] [blame] | 528 | local_irq_save(flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 529 | printk("%s: %s: status=0x%02x { ", drive->name, msg, stat); |
| 530 | if (status.b.bsy) |
| 531 | printk("Busy "); |
| 532 | else { |
| 533 | if (status.b.drdy) printk("DriveReady "); |
| 534 | if (status.b.df) printk("DeviceFault "); |
| 535 | if (status.b.dsc) printk("SeekComplete "); |
| 536 | if (status.b.drq) printk("DataRequest "); |
| 537 | if (status.b.corr) printk("CorrectedError "); |
| 538 | if (status.b.idx) printk("Index "); |
| 539 | if (status.b.check) printk("Error "); |
| 540 | } |
| 541 | printk("}\n"); |
| 542 | if (status.b.check && !status.b.bsy) { |
| 543 | error.all = HWIF(drive)->INB(IDE_ERROR_REG); |
| 544 | printk("%s: %s: error=0x%02x { ", drive->name, msg, error.all); |
| 545 | if (error.b.ili) printk("IllegalLengthIndication "); |
| 546 | if (error.b.eom) printk("EndOfMedia "); |
| 547 | if (error.b.abrt) printk("AbortedCommand "); |
| 548 | if (error.b.mcr) printk("MediaChangeRequested "); |
| 549 | if (error.b.sense_key) printk("LastFailedSense=0x%02x ", |
| 550 | error.b.sense_key); |
| 551 | printk("}\n"); |
| 552 | } |
| 553 | ide_dump_opcode(drive); |
| 554 | local_irq_restore(flags); |
| 555 | return error.all; |
| 556 | } |
| 557 | |
| 558 | /** |
| 559 | * ide_dump_status - translate ATA/ATAPI error |
| 560 | * @drive: drive the error occured on |
| 561 | * @msg: information string |
| 562 | * @stat: status byte |
| 563 | * |
| 564 | * Error reporting, in human readable form (luxurious, but a memory hog). |
| 565 | * Combines the drive name, message and status byte to provide a |
| 566 | * user understandable explanation of the device error. |
| 567 | */ |
| 568 | |
| 569 | u8 ide_dump_status(ide_drive_t *drive, const char *msg, u8 stat) |
| 570 | { |
| 571 | if (drive->media == ide_disk) |
| 572 | return ide_dump_ata_status(drive, msg, stat); |
| 573 | return ide_dump_atapi_status(drive, msg, stat); |
| 574 | } |
| 575 | |
| 576 | EXPORT_SYMBOL(ide_dump_status); |