Long delay on bootup with wait_hwif_ready

From: Steven Rostedt
Date: Tue May 30 2006 - 08:01:16 EST


Hi,

I got a board I'm working with which has the following IDE controller.

# lspci
...
0000:00:07.1 IDE interface: Intel Corp. 82371AB/EB/MB PIIX4 IDE (rev 01)
..

On boot up there's a 35 second delay that happens right here:

(happens on 2.6.9 - 2.6.16)

/* Now make sure both master & slave are ready */
SELECT_DRIVE(&hwif->drives[0]);
hwif->OUTB(8, hwif->io_ports[IDE_CONTROL_OFFSET]);
mdelay(2);
rc = ide_wait_not_busy(hwif, 35000);
if (rc)
return rc;
SELECT_DRIVE(&hwif->drives[1]);
hwif->OUTB(8, hwif->io_ports[IDE_CONTROL_OFFSET]);
mdelay(2);
Delaying function
|
V
rc = ide_wait_not_busy(hwif, 35000);

There is no secondary drive, but for some reason the return of the
status is 0x80 which is "busy". So on boot up, we wait every time for
this 35 second timeout.

I noticed that this was discussed before (got my CC from this thread):
http://marc.theaimsgroup.com/?l=linux-kernel&m=108890865325793&w=2
But I didn't see a solution at the end.

So my question is. Is this just a bad response from hardware, or is
there a better way to find out if the drive exists or not?

My current work around is to remove the wait for the second drive
(removed the if(rc) from above to always return there), which is not
robust, but suites my needs.

-- Steve


-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/