aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/ide/ide-io.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/ide/ide-io.c')
-rw-r--r--drivers/ide/ide-io.c23
1 files changed, 23 insertions, 0 deletions
diff --git a/drivers/ide/ide-io.c b/drivers/ide/ide-io.c
index d90cf5d08142..835cf646bb07 100644
--- a/drivers/ide/ide-io.c
+++ b/drivers/ide/ide-io.c
@@ -887,6 +887,29 @@ static void ide_plug_device(ide_drive_t *drive)
887 spin_unlock_irqrestore(q->queue_lock, flags); 887 spin_unlock_irqrestore(q->queue_lock, flags);
888} 888}
889 889
890static int drive_is_ready(ide_drive_t *drive)
891{
892 ide_hwif_t *hwif = drive->hwif;
893 u8 stat = 0;
894
895 if (drive->waiting_for_dma)
896 return hwif->dma_ops->dma_test_irq(drive);
897
898 if (hwif->io_ports.ctl_addr &&
899 (hwif->host_flags & IDE_HFLAG_BROKEN_ALTSTATUS) == 0)
900 stat = hwif->tp_ops->read_altstatus(hwif);
901 else
902 /* Note: this may clear a pending IRQ!! */
903 stat = hwif->tp_ops->read_status(hwif);
904
905 if (stat & ATA_BUSY)
906 /* drive busy: definitely not interrupting */
907 return 0;
908
909 /* drive ready: *might* be interrupting */
910 return 1;
911}
912
890/** 913/**
891 * ide_timer_expiry - handle lack of an IDE interrupt 914 * ide_timer_expiry - handle lack of an IDE interrupt
892 * @data: timer callback magic (hwif) 915 * @data: timer callback magic (hwif)