Made the IDE RESET BUSY status setting only apply when IDE is in ATA-3 mode.

This commit is contained in:
OBattler
2021-04-07 00:52:28 +02:00
parent 695ebbb512
commit bc2fd285c4

View File

@@ -1365,16 +1365,18 @@ ide_write_devctl(uint16_t addr, uint8_t val, void *priv)
/* We must set set the status to busy in reset mode or
some 286 and 386 machines error out. */
if (ide->type != IDE_NONE) {
ide->atastat = BSY_STAT;
if (ide->type == IDE_ATAPI)
ide->sc->status = BSY_STAT;
}
if (ide_boards[ide->board]->force_ata3 || ide_bm[ide->board]) {
if (ide->type != IDE_NONE) {
ide->atastat = BSY_STAT;
if (ide->type == IDE_ATAPI)
ide->sc->status = BSY_STAT;
}
if (ide_other->type != IDE_NONE) {
ide_other->atastat = BSY_STAT;
if (ide_other->type == IDE_ATAPI)
ide_other->sc->status = BSY_STAT;
if (ide_other->type != IDE_NONE) {
ide_other->atastat = BSY_STAT;
if (ide_other->type == IDE_ATAPI)
ide_other->sc->status = BSY_STAT;
}
}
} else if (!(val & 4) && (ide->fdisk & 4)) {
/* Reset toggled from 1 to 0. */