All of lore.kernel.org
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH] ahci: properly reset PxCMD on HBA reset
@ 2012-08-23 21:09 Jason Baron
  2012-08-24  4:39 ` Alexander Graf
                   ` (2 more replies)
  0 siblings, 3 replies; 16+ messages in thread
From: Jason Baron @ 2012-08-23 21:09 UTC (permalink / raw)
  To: agraf
  Cc: kwolf, aliguori, mst, qemu-devel, jan.kiszka, armbru,
	lcapitulino, yamahata, alex.williamson, pbonzini, afaerber

While testing q35, I found that windows 7 (specifically, windows 7 ultimate
with sp1 x64), wouldn't install because it can't find the cdrom or disk drive.
The failure message is: 'A required cd/dvd device driver is missing. If you
have a driver floppy disk, CD, DVD, or USB flash drive, please insert it now.'
This can also be reproduced on piix by adding an ahci controller, and
observing that windows 7 does not see any devices behind it.

The problem is that when windows issues a HBA reset, qemu does not reset the
individual ports' PxCMD register. Windows 7 then reads back the PxCMD register
and presumably assumes that the ahci controller has already been initialized.
Windows then never sets up the PxIE register to enable interrupts, and thus it
never gets irqs back when it sends ata device inquiry commands.

I believe this change brings qemu into ahci 1.3 specification compliance.

Section 10.4.3 HBA Reset:

"
When GHC.HR is set to '1', GHC.AE, GHC.IE, the IS register, and all port
register fields (except PxFB/PxFBU/PxCLB/PxCLBU) that are not HwInit in the
HBA's register memory space are reset.
"

I've also re-tested Fedora 16 and 17 to verify that they continue to work with
this change.

Signed-off-by: Jason Baron <jbaron@redhat.com>
---
 hw/ide/ahci.c |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/hw/ide/ahci.c b/hw/ide/ahci.c
index 9fe89a5..06c236f 100644
--- a/hw/ide/ahci.c
+++ b/hw/ide/ahci.c
@@ -1199,6 +1199,7 @@ void ahci_reset(AHCIState *s)
         pr->irq_stat = 0;
         pr->irq_mask = 0;
         pr->scr_ctl = 0;
+        pr->cmd = 0;
         ahci_reset_port(s, i);
     }
 }
-- 
1.7.1

^ permalink raw reply related	[flat|nested] 16+ messages in thread

end of thread, other threads:[~2012-09-04 20:12 UTC | newest]

Thread overview: 16+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-08-23 21:09 [Qemu-devel] [PATCH] ahci: properly reset PxCMD on HBA reset Jason Baron
2012-08-24  4:39 ` Alexander Graf
2012-08-30 19:59   ` Jason Baron
2012-08-30 20:38     ` Alexander Graf
2012-08-24 14:18 ` Luiz Capitulino
2012-08-24 14:34   ` Alexander Graf
2012-08-24 15:32     ` Luiz Capitulino
2012-08-31 10:12 ` Kevin Wolf
2012-08-31 14:23   ` Jason Baron
2012-08-31 19:04     ` Alexander Graf
2012-08-31 19:15       ` Jason Baron
2012-08-31 20:29         ` Alexander Graf
2012-08-31 20:46           ` Jason Baron
2012-08-31 20:54           ` Jason Baron
2012-09-01  6:25             ` Alexander Graf
2012-09-04 20:12               ` Jason Baron

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.