diff options
author | Bartlomiej Zolnierkiewicz <bzolnier@gmail.com> | 2008-10-10 16:39:23 -0400 |
---|---|---|
committer | Bartlomiej Zolnierkiewicz <bzolnier@gmail.com> | 2008-10-10 16:39:23 -0400 |
commit | b163f46d5ecf48d883ce156e5e5a21a1a9a125c7 (patch) | |
tree | 5ee79c2c30d959bc21607d4c45faecbdf2481c4f /drivers/ide/ide-iops.c | |
parent | c36a7e98846a7a4a1c09b7f148395089bce512d8 (diff) |
ide: enhance ide_busy_sleep()
* Make ide_busy_sleep() take timeout value as a parameter
and also allow use of AltStatus Register if requested with
altstatus parameter. Update existing users accordingly.
* Convert ide_driveid_update() and actual_try_to_identify()
to use ide_busy_sleep().
There should be no functional changes caused by this patch.
Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
Diffstat (limited to 'drivers/ide/ide-iops.c')
-rw-r--r-- | drivers/ide/ide-iops.c | 15 |
1 files changed, 5 insertions, 10 deletions
diff --git a/drivers/ide/ide-iops.c b/drivers/ide/ide-iops.c index 004803030f64..a940d127aae3 100644 --- a/drivers/ide/ide-iops.c +++ b/drivers/ide/ide-iops.c | |||
@@ -666,7 +666,7 @@ int ide_driveid_update(ide_drive_t *drive) | |||
666 | ide_hwif_t *hwif = drive->hwif; | 666 | ide_hwif_t *hwif = drive->hwif; |
667 | const struct ide_tp_ops *tp_ops = hwif->tp_ops; | 667 | const struct ide_tp_ops *tp_ops = hwif->tp_ops; |
668 | u16 *id; | 668 | u16 *id; |
669 | unsigned long timeout, flags; | 669 | unsigned long flags; |
670 | u8 stat; | 670 | u8 stat; |
671 | 671 | ||
672 | /* | 672 | /* |
@@ -678,16 +678,11 @@ int ide_driveid_update(ide_drive_t *drive) | |||
678 | tp_ops->set_irq(hwif, 0); | 678 | tp_ops->set_irq(hwif, 0); |
679 | msleep(50); | 679 | msleep(50); |
680 | tp_ops->exec_command(hwif, ATA_CMD_ID_ATA); | 680 | tp_ops->exec_command(hwif, ATA_CMD_ID_ATA); |
681 | timeout = jiffies + WAIT_WORSTCASE; | ||
682 | do { | ||
683 | if (time_after(jiffies, timeout)) { | ||
684 | SELECT_MASK(drive, 0); | ||
685 | return 0; /* drive timed-out */ | ||
686 | } | ||
687 | 681 | ||
688 | msleep(50); /* give drive a breather */ | 682 | if (ide_busy_sleep(hwif, WAIT_WORSTCASE, 1)) { |
689 | stat = tp_ops->read_altstatus(hwif); | 683 | SELECT_MASK(drive, 0); |
690 | } while (stat & ATA_BUSY); | 684 | return 0; |
685 | } | ||
691 | 686 | ||
692 | msleep(50); /* wait for IRQ and ATA_DRQ */ | 687 | msleep(50); /* wait for IRQ and ATA_DRQ */ |
693 | stat = tp_ops->read_status(hwif); | 688 | stat = tp_ops->read_status(hwif); |