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>
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>
19 #include <asm/byteorder.h>
21 #include <asm/uaccess.h>
24 static const char *udma_str
[] =
25 { "UDMA/16", "UDMA/25", "UDMA/33", "UDMA/44",
26 "UDMA/66", "UDMA/100", "UDMA/133", "UDMA7" };
27 static const char *mwdma_str
[] =
28 { "MWDMA0", "MWDMA1", "MWDMA2" };
29 static const char *swdma_str
[] =
30 { "SWDMA0", "SWDMA1", "SWDMA2" };
31 static const char *pio_str
[] =
32 { "PIO0", "PIO1", "PIO2", "PIO3", "PIO4", "PIO5" };
35 * ide_xfer_verbose - return IDE mode names
36 * @mode: transfer mode
38 * Returns a constant string giving the name of the mode
42 const char *ide_xfer_verbose(u8 mode
)
47 if (mode
>= XFER_UDMA_0
&& mode
<= XFER_UDMA_7
)
49 else if (mode
>= XFER_MW_DMA_0
&& mode
<= XFER_MW_DMA_2
)
51 else if (mode
>= XFER_SW_DMA_0
&& mode
<= XFER_SW_DMA_2
)
53 else if (mode
>= XFER_PIO_0
&& mode
<= XFER_PIO_5
)
55 else if (mode
== XFER_PIO_SLOW
)
63 EXPORT_SYMBOL(ide_xfer_verbose
);
66 * ide_rate_filter - filter transfer mode
68 * @speed: desired speed
70 * Given the available transfer modes this function returns
71 * the best available speed at or below the speed requested.
73 * TODO: check device PIO capabilities
76 static u8
ide_rate_filter(ide_drive_t
*drive
, u8 speed
)
78 ide_hwif_t
*hwif
= drive
->hwif
;
79 u8 mode
= ide_find_dma_mode(drive
, speed
);
83 mode
= fls(hwif
->pio_mask
) - 1 + XFER_PIO_0
;
88 // printk("%s: mode 0x%02x, speed 0x%02x\n", __FUNCTION__, mode, speed);
90 return min(speed
, mode
);
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).
99 const 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) */
108 EXPORT_SYMBOL_GPL(ide_pio_timings
);
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.
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.
121 static struct ide_pio_info
{
124 } ide_pio_blacklist
[] = {
125 /* { "Conner Peripherals 1275MB - CFS1275A", 4 }, */
126 { "Conner Peripherals 540MB - CFS540A", 3 },
134 { "WDC AC21200", 4 },
141 /* { "WDC AC21000", 4 }, */
142 { "WDC AC31000", 3 },
143 { "WDC AC31200", 3 },
144 /* { "WDC AC31600", 4 }, */
146 { "Maxtor 7131 AT", 1 },
147 { "Maxtor 7171 AT", 1 },
148 { "Maxtor 7213 AT", 1 },
149 { "Maxtor 7245 AT", 1 },
150 { "Maxtor 7345 AT", 1 },
151 { "Maxtor 7546 AT", 3 },
152 { "Maxtor 7540 AV", 3 },
154 { "SAMSUNG SHD-3121A", 1 },
155 { "SAMSUNG SHD-3122A", 1 },
156 { "SAMSUNG SHD-3172A", 1 },
158 /* { "ST51080A", 4 },
174 { "ST3491A", 1 }, /* reports 3, should be 1 or 2 (depending on */
175 /* drive) according to Seagates FIND-ATA program */
177 { "QUANTUM ELS127A", 0 },
178 { "QUANTUM ELS170A", 0 },
179 { "QUANTUM LPS240A", 0 },
180 { "QUANTUM LPS210A", 3 },
181 { "QUANTUM LPS270A", 3 },
182 { "QUANTUM LPS365A", 3 },
183 { "QUANTUM LPS540A", 3 },
184 { "QUANTUM LIGHTNING 540A", 3 },
185 { "QUANTUM LIGHTNING 730A", 3 },
187 { "QUANTUM FIREBALL_540", 3 }, /* Older Quantum Fireballs don't work */
188 { "QUANTUM FIREBALL_640", 3 },
189 { "QUANTUM FIREBALL_1080", 3 },
190 { "QUANTUM FIREBALL_1280", 3 },
195 * ide_scan_pio_blacklist - check for a blacklisted drive
196 * @model: Drive model string
198 * This routine searches the ide_pio_blacklist for an entry
199 * matching the start/whole of the supplied model name.
201 * Returns -1 if no match found.
202 * Otherwise returns the recommended PIO mode from ide_pio_blacklist[].
205 static int ide_scan_pio_blacklist (char *model
)
207 struct ide_pio_info
*p
;
209 for (p
= ide_pio_blacklist
; p
->name
!= NULL
; p
++) {
210 if (strncmp(p
->name
, model
, strlen(p
->name
)) == 0)
216 unsigned int ide_pio_cycle_time(ide_drive_t
*drive
, u8 pio
)
218 struct hd_driveid
*id
= drive
->id
;
221 if (id
->field_valid
& 2) {
222 if (id
->capability
& 8)
223 cycle_time
= id
->eide_pio_iordy
;
225 cycle_time
= id
->eide_pio
;
228 /* conservative "downgrade" for all pre-ATA2 drives */
230 if (cycle_time
&& cycle_time
< ide_pio_timings
[pio
].cycle_time
)
231 cycle_time
= 0; /* use standard timing */
234 return cycle_time
? cycle_time
: ide_pio_timings
[pio
].cycle_time
;
237 EXPORT_SYMBOL_GPL(ide_pio_cycle_time
);
240 * ide_get_best_pio_mode - get PIO mode from drive
241 * @drive: drive to consider
242 * @mode_wanted: preferred mode
243 * @max_mode: highest allowed mode
245 * This routine returns the recommended PIO settings for a given drive,
246 * based on the drive->id information and the ide_pio_blacklist[].
248 * Drive PIO mode is auto-selected if 255 is passed as mode_wanted.
249 * This is used by most chipset support modules when "auto-tuning".
252 u8
ide_get_best_pio_mode (ide_drive_t
*drive
, u8 mode_wanted
, u8 max_mode
)
255 struct hd_driveid
* id
= drive
->id
;
258 if (mode_wanted
!= 255)
259 return min_t(u8
, mode_wanted
, max_mode
);
261 if ((drive
->hwif
->host_flags
& IDE_HFLAG_PIO_NO_BLACKLIST
) == 0 &&
262 (pio_mode
= ide_scan_pio_blacklist(id
->model
)) != -1) {
263 printk(KERN_INFO
"%s: is on PIO blacklist\n", drive
->name
);
266 if (pio_mode
> 2) { /* 2 is maximum allowed tPIO value */
270 if (id
->field_valid
& 2) { /* drive implements ATA2? */
271 if (id
->capability
& 8) { /* IORDY supported? */
272 if (id
->eide_pio_modes
& 7) {
274 if (id
->eide_pio_modes
& 4)
276 else if (id
->eide_pio_modes
& 2)
285 printk(KERN_INFO
"%s: tPIO > 2, assuming tPIO = 2\n",
289 * Conservative "downgrade" for all pre-ATA2 drives
291 if ((drive
->hwif
->host_flags
& IDE_HFLAG_PIO_NO_DOWNGRADE
) == 0 &&
292 pio_mode
&& pio_mode
< 4) {
294 printk(KERN_INFO
"%s: applying conservative "
295 "PIO \"downgrade\"\n", drive
->name
);
299 if (pio_mode
> max_mode
)
305 EXPORT_SYMBOL_GPL(ide_get_best_pio_mode
);
307 /* req_pio == "255" for auto-tune */
308 void ide_set_pio(ide_drive_t
*drive
, u8 req_pio
)
310 ide_hwif_t
*hwif
= drive
->hwif
;
313 if (hwif
->set_pio_mode
== NULL
)
316 BUG_ON(hwif
->pio_mask
== 0x00);
318 host_pio
= fls(hwif
->pio_mask
) - 1;
320 pio
= ide_get_best_pio_mode(drive
, req_pio
, host_pio
);
324 * - report device max PIO mode
325 * - check req_pio != 255 against device max PIO mode
327 printk(KERN_DEBUG
"%s: host max PIO%d wanted PIO%d%s selected PIO%d\n",
328 drive
->name
, host_pio
, req_pio
,
329 req_pio
== 255 ? "(auto-tune)" : "", pio
);
331 (void)ide_set_pio_mode(drive
, XFER_PIO_0
+ pio
);
334 EXPORT_SYMBOL_GPL(ide_set_pio
);
337 * ide_toggle_bounce - handle bounce buffering
338 * @drive: drive to update
339 * @on: on/off boolean
341 * Enable or disable bounce buffering for the device. Drives move
342 * between PIO and DMA and that changes the rules we need.
345 void ide_toggle_bounce(ide_drive_t
*drive
, int on
)
347 u64 addr
= BLK_BOUNCE_HIGH
; /* dma64_addr_t */
349 if (!PCI_DMA_BUS_IS_PHYS
) {
350 addr
= BLK_BOUNCE_ANY
;
351 } else if (on
&& drive
->media
== ide_disk
) {
352 struct device
*dev
= drive
->hwif
->dev
;
354 if (dev
&& dev
->dma_mask
)
355 addr
= *dev
->dma_mask
;
359 blk_queue_bounce_limit(drive
->queue
, addr
);
362 int ide_set_pio_mode(ide_drive_t
*drive
, const u8 mode
)
364 ide_hwif_t
*hwif
= drive
->hwif
;
366 if (hwif
->set_pio_mode
== NULL
)
370 * TODO: temporary hack for some legacy host drivers that didn't
371 * set transfer mode on the device in ->set_pio_mode method...
373 if (hwif
->set_dma_mode
== NULL
) {
374 hwif
->set_pio_mode(drive
, mode
- XFER_PIO_0
);
378 if (hwif
->host_flags
& IDE_HFLAG_POST_SET_MODE
) {
379 if (ide_config_drive_speed(drive
, mode
))
381 hwif
->set_pio_mode(drive
, mode
- XFER_PIO_0
);
384 hwif
->set_pio_mode(drive
, mode
- XFER_PIO_0
);
385 return ide_config_drive_speed(drive
, mode
);
389 int ide_set_dma_mode(ide_drive_t
*drive
, const u8 mode
)
391 ide_hwif_t
*hwif
= drive
->hwif
;
393 if (hwif
->set_dma_mode
== NULL
)
396 if (hwif
->host_flags
& IDE_HFLAG_POST_SET_MODE
) {
397 if (ide_config_drive_speed(drive
, mode
))
399 hwif
->set_dma_mode(drive
, mode
);
402 hwif
->set_dma_mode(drive
, mode
);
403 return ide_config_drive_speed(drive
, mode
);
407 EXPORT_SYMBOL_GPL(ide_set_dma_mode
);
410 * ide_set_xfer_rate - set transfer rate
411 * @drive: drive to set
412 * @rate: speed to attempt to set
414 * General helper for setting the speed of an IDE device. This
415 * function knows about user enforced limits from the configuration
416 * which ->set_pio_mode/->set_dma_mode does not.
419 int ide_set_xfer_rate(ide_drive_t
*drive
, u8 rate
)
421 ide_hwif_t
*hwif
= drive
->hwif
;
423 if (hwif
->set_dma_mode
== NULL
)
426 rate
= ide_rate_filter(drive
, rate
);
428 if (rate
>= XFER_PIO_0
&& rate
<= XFER_PIO_5
)
429 return ide_set_pio_mode(drive
, rate
);
432 * TODO: transfer modes 0x00-0x07 passed from the user-space are
433 * currently handled here which needs fixing (please note that such
434 * case could happen iff the transfer mode has already been set on
435 * the device by ide-proc.c::set_xfer_rate()).
437 if (rate
< XFER_PIO_0
) {
438 if (hwif
->host_flags
& IDE_HFLAG_ABUSE_SET_DMA_MODE
)
439 return ide_set_dma_mode(drive
, rate
);
441 return ide_config_drive_speed(drive
, rate
);
444 return ide_set_dma_mode(drive
, rate
);
447 static void ide_dump_opcode(ide_drive_t
*drive
)
450 ide_task_t
*task
= NULL
;
452 spin_lock(&ide_lock
);
455 rq
= HWGROUP(drive
)->rq
;
456 spin_unlock(&ide_lock
);
460 if (rq
->cmd_type
== REQ_TYPE_ATA_TASKFILE
)
463 printk("ide: failed opcode was: ");
465 printk(KERN_CONT
"unknown\n");
467 printk(KERN_CONT
"0x%02x\n", task
->tf
.command
);
470 u64
ide_get_lba_addr(struct ide_taskfile
*tf
, int lba48
)
475 high
= (tf
->hob_lbah
<< 16) | (tf
->hob_lbam
<< 8) |
478 high
= tf
->device
& 0xf;
479 low
= (tf
->lbah
<< 16) | (tf
->lbam
<< 8) | tf
->lbal
;
481 return ((u64
)high
<< 24) | low
;
483 EXPORT_SYMBOL_GPL(ide_get_lba_addr
);
485 static void ide_dump_sector(ide_drive_t
*drive
)
488 struct ide_taskfile
*tf
= &task
.tf
;
489 int lba48
= (drive
->addressing
== 1) ? 1 : 0;
491 memset(&task
, 0, sizeof(task
));
493 task
.tf_flags
= IDE_TFLAG_IN_LBA
| IDE_TFLAG_IN_HOB_LBA
|
496 task
.tf_flags
= IDE_TFLAG_IN_LBA
| IDE_TFLAG_IN_DEVICE
;
498 ide_tf_read(drive
, &task
);
500 if (lba48
|| (tf
->device
& ATA_LBA
))
501 printk(", LBAsect=%llu",
502 (unsigned long long)ide_get_lba_addr(tf
, lba48
));
504 printk(", CHS=%d/%d/%d", (tf
->lbah
<< 8) + tf
->lbam
,
505 tf
->device
& 0xf, tf
->lbal
);
508 static void ide_dump_ata_error(ide_drive_t
*drive
, u8 err
)
511 if (err
& ABRT_ERR
) printk("DriveStatusError ");
513 printk((err
& ABRT_ERR
) ? "BadCRC " : "BadSector ");
514 if (err
& ECC_ERR
) printk("UncorrectableError ");
515 if (err
& ID_ERR
) printk("SectorIdNotFound ");
516 if (err
& TRK0_ERR
) printk("TrackZeroNotFound ");
517 if (err
& MARK_ERR
) printk("AddrMarkNotFound ");
519 if ((err
& (BBD_ERR
| ABRT_ERR
)) == BBD_ERR
||
520 (err
& (ECC_ERR
|ID_ERR
|MARK_ERR
))) {
521 ide_dump_sector(drive
);
522 if (HWGROUP(drive
) && HWGROUP(drive
)->rq
)
523 printk(", sector=%llu",
524 (unsigned long long)HWGROUP(drive
)->rq
->sector
);
529 static void ide_dump_atapi_error(ide_drive_t
*drive
, u8 err
)
532 if (err
& ILI_ERR
) printk("IllegalLengthIndication ");
533 if (err
& EOM_ERR
) printk("EndOfMedia ");
534 if (err
& ABRT_ERR
) printk("AbortedCommand ");
535 if (err
& MCR_ERR
) printk("MediaChangeRequested ");
536 if (err
& LFS_ERR
) printk("LastFailedSense=0x%02x ",
537 (err
& LFS_ERR
) >> 4);
542 * ide_dump_status - translate ATA/ATAPI error
543 * @drive: drive that status applies to
544 * @msg: text message to print
545 * @stat: status byte to decode
547 * Error reporting, in human readable form (luxurious, but a memory hog).
548 * Combines the drive name, message and status byte to provide a
549 * user understandable explanation of the device error.
552 u8
ide_dump_status(ide_drive_t
*drive
, const char *msg
, u8 stat
)
557 local_irq_save(flags
);
558 printk("%s: %s: status=0x%02x { ", drive
->name
, msg
, stat
);
559 if (stat
& BUSY_STAT
)
562 if (stat
& READY_STAT
) printk("DriveReady ");
563 if (stat
& WRERR_STAT
) printk("DeviceFault ");
564 if (stat
& SEEK_STAT
) printk("SeekComplete ");
565 if (stat
& DRQ_STAT
) printk("DataRequest ");
566 if (stat
& ECC_STAT
) printk("CorrectedError ");
567 if (stat
& INDEX_STAT
) printk("Index ");
568 if (stat
& ERR_STAT
) printk("Error ");
571 if ((stat
& (BUSY_STAT
|ERR_STAT
)) == ERR_STAT
) {
572 err
= ide_read_error(drive
);
573 printk("%s: %s: error=0x%02x ", drive
->name
, msg
, err
);
574 if (drive
->media
== ide_disk
)
575 ide_dump_ata_error(drive
, err
);
577 ide_dump_atapi_error(drive
, err
);
579 ide_dump_opcode(drive
);
580 local_irq_restore(flags
);
584 EXPORT_SYMBOL(ide_dump_status
);