1
0
Fork 0
forked from len0rd/rockbox

Bug 1: The STANDBY mode is now explicitly disabled, since it could be set to 30s at powerup. Bug 2: set_features() wasn't called in ata_power_on().

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4307 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Linus Nielsen Feltzing 2004-02-16 23:25:01 +00:00
parent ae6e33e921
commit c3b9720ab4

View file

@ -606,7 +606,11 @@ int ata_standby(int time)
return -1; return -1;
} }
ATA_NSECTOR = ((time + 5) / 5) & 0xff; /* Round up to nearest 5 secs */ if(time)
ATA_NSECTOR = ((time + 5) / 5) & 0xff; /* Round up to nearest 5 secs */
else
ATA_NSECTOR = 0; /* Disable standby */
ATA_COMMAND = CMD_STANDBY; ATA_COMMAND = CMD_STANDBY;
if (!wait_for_rdy()) if (!wait_for_rdy())
@ -873,6 +877,8 @@ static int set_features(void)
}; };
int i; int i;
return 0;
ATA_SELECT = ata_device; ATA_SELECT = ata_device;
if (!wait_for_rdy()) { if (!wait_for_rdy()) {
@ -969,6 +975,8 @@ int ata_init(void)
if (rc) if (rc)
return -60 + rc; return -60 + rc;
ata_standby(0);
queue_init(&ata_queue); queue_init(&ata_queue);
last_disk_activity = current_tick; last_disk_activity = current_tick;