From 4a6435639781214a14f3c6054955e5ef16298d72 Mon Sep 17 00:00:00 2001 From: Blue Swirl Date: Sat, 7 Nov 2009 14:13:05 +0000 Subject: IDE: Fix reset handling Problem: x86 systems could not survive a few system_resets. Clear most of IDE state when reset. Implement the missing reset handlers. Signed-off-by: Blue Swirl --- hw/ide/piix.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'hw/ide/piix.c') diff --git a/hw/ide/piix.c b/hw/ide/piix.c index 60b37a36a5..8958d56a5c 100644 --- a/hw/ide/piix.c +++ b/hw/ide/piix.c @@ -101,8 +101,10 @@ static void piix3_reset(void *opaque) uint8_t *pci_conf = d->dev.config; int i; - for (i = 0; i < 2; i++) - ide_dma_cancel(&d->bmdma[i]); + for (i = 0; i < 2; i++) { + ide_bus_reset(&d->bus[i]); + ide_dma_reset(&d->bmdma[i]); + } pci_conf[0x04] = 0x00; pci_conf[0x05] = 0x00; -- cgit v1.2.1