aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/ide
diff options
context:
space:
mode:
authorBartlomiej Zolnierkiewicz <bzolnier@gmail.com>2007-10-13 11:47:49 -0400
committerBartlomiej Zolnierkiewicz <bzolnier@gmail.com>2007-10-13 11:47:49 -0400
commitddf151026a293725507fedc39b18ae6edb86d775 (patch)
tree649de86d3de0bfc686ce92e94a2f46979fc2fbfc /drivers/ide
parent218ee5f364ed006403f1bbe3c1da5af51b1bdb2a (diff)
ide-pmac: use __ide_wait_stat()
* Use __ide_wait_stat() instead of wait_for_ready() in pmac_ide_do_setfeature(). While at it do following changes to match __ide_wait_stat() call in ide_config_drive_speed(): * Wait WAIT_CMD time (20 sec) instead of 2 sec for device to clear BUSY_STAT. * Check DRQ_STAT bit (shouldn't be set for good device status). Also remove no longer needed wait_for_ready() from ide-iops.c. Acked-by: Benjamin Herrenschmidt <benh@kernel.crashing.org> Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
Diffstat (limited to 'drivers/ide')
-rw-r--r--drivers/ide/ide-iops.c31
-rw-r--r--drivers/ide/ppc/pmac.c9
2 files changed, 6 insertions, 34 deletions
diff --git a/drivers/ide/ide-iops.c b/drivers/ide/ide-iops.c
index fb524cf175d5..f7e976c0c2f3 100644
--- a/drivers/ide/ide-iops.c
+++ b/drivers/ide/ide-iops.c
@@ -473,35 +473,6 @@ int drive_is_ready (ide_drive_t *drive)
473EXPORT_SYMBOL(drive_is_ready); 473EXPORT_SYMBOL(drive_is_ready);
474 474
475/* 475/*
476 * Global for All, and taken from ide-pmac.c. Can be called
477 * with spinlock held & IRQs disabled, so don't schedule !
478 */
479int wait_for_ready (ide_drive_t *drive, int timeout)
480{
481 ide_hwif_t *hwif = HWIF(drive);
482 u8 stat = 0;
483
484 while(--timeout) {
485 stat = hwif->INB(IDE_STATUS_REG);
486 if (!(stat & BUSY_STAT)) {
487 if (drive->ready_stat == 0)
488 break;
489 else if ((stat & drive->ready_stat)||(stat & ERR_STAT))
490 break;
491 }
492 mdelay(1);
493 }
494 if ((stat & ERR_STAT) || timeout <= 0) {
495 if (stat & ERR_STAT) {
496 printk(KERN_ERR "%s: wait_for_ready, "
497 "error status: %x\n", drive->name, stat);
498 }
499 return 1;
500 }
501 return 0;
502}
503
504/*
505 * This routine busy-waits for the drive status to be not "busy". 476 * This routine busy-waits for the drive status to be not "busy".
506 * It then checks the status for all of the "good" bits and none 477 * It then checks the status for all of the "good" bits and none
507 * of the "bad" bits, and if all is okay it returns 0. All other 478 * of the "bad" bits, and if all is okay it returns 0. All other
@@ -512,7 +483,7 @@ int wait_for_ready (ide_drive_t *drive, int timeout)
512 * setting a timer to wake up at half second intervals thereafter, 483 * setting a timer to wake up at half second intervals thereafter,
513 * until timeout is achieved, before timing out. 484 * until timeout is achieved, before timing out.
514 */ 485 */
515static int __ide_wait_stat(ide_drive_t *drive, u8 good, u8 bad, unsigned long timeout, u8 *rstat) 486int __ide_wait_stat(ide_drive_t *drive, u8 good, u8 bad, unsigned long timeout, u8 *rstat)
516{ 487{
517 ide_hwif_t *hwif = drive->hwif; 488 ide_hwif_t *hwif = drive->hwif;
518 unsigned long flags; 489 unsigned long flags;
diff --git a/drivers/ide/ppc/pmac.c b/drivers/ide/ppc/pmac.c
index 512452b379bd..13e26642dad7 100644
--- a/drivers/ide/ppc/pmac.c
+++ b/drivers/ide/ppc/pmac.c
@@ -541,7 +541,8 @@ static int
541pmac_ide_do_setfeature(ide_drive_t *drive, u8 command) 541pmac_ide_do_setfeature(ide_drive_t *drive, u8 command)
542{ 542{
543 ide_hwif_t *hwif = HWIF(drive); 543 ide_hwif_t *hwif = HWIF(drive);
544 int result = 1; 544 int result;
545 u8 stat;
545 546
546 disable_irq_nosync(hwif->irq); 547 disable_irq_nosync(hwif->irq);
547 udelay(1); 548 udelay(1);
@@ -552,9 +553,9 @@ pmac_ide_do_setfeature(ide_drive_t *drive, u8 command)
552 hwif->OUTB(command, IDE_NSECTOR_REG); 553 hwif->OUTB(command, IDE_NSECTOR_REG);
553 hwif->OUTB(SETFEATURES_XFER, IDE_FEATURE_REG); 554 hwif->OUTB(SETFEATURES_XFER, IDE_FEATURE_REG);
554 hwif->OUTBSYNC(drive, WIN_SETFEATURES, IDE_COMMAND_REG); 555 hwif->OUTBSYNC(drive, WIN_SETFEATURES, IDE_COMMAND_REG);
555 udelay(1); 556 result = __ide_wait_stat(drive, drive->ready_stat,
556 /* Timeout bumped for some powerbooks */ 557 BUSY_STAT|DRQ_STAT|ERR_STAT,
557 result = wait_for_ready(drive, 2000); 558 WAIT_CMD, &stat);
558 hwif->OUTB(drive->ctl, IDE_CONTROL_REG); 559 hwif->OUTB(drive->ctl, IDE_CONTROL_REG);
559 if (result) 560 if (result)
560 printk(KERN_ERR "%s: pmac_ide_do_setfeature disk not ready " 561 printk(KERN_ERR "%s: pmac_ide_do_setfeature disk not ready "