qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH v2] ahci: properly reset PxCMD on HBA reset
@ 2012-09-04 20:08 Jason Baron
  2012-09-05  3:28 ` Alexander Graf
  0 siblings, 1 reply; 3+ messages in thread
From: Jason Baron @ 2012-09-04 20:08 UTC (permalink / raw)
  To: kwolf, agraf
  Cc: aliguori, mst, jan.kiszka, qemu-devel, lcapitulino, yamahata,
	alex.williamson, pbonzini, afaerber, armbru

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.

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>
---

changes in v2:
    -continue to set PORT_CMD_SPIN_UP, PORT_CMD_POWER_ON on reset (Kevin Wolf)
    -drop cmd init in ahci_init() (Alexander Graf)

 hw/ide/ahci.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/hw/ide/ahci.c b/hw/ide/ahci.c
index 3d41771..97a0fa9 100644
--- a/hw/ide/ahci.c
+++ b/hw/ide/ahci.c
@@ -1175,7 +1175,6 @@ void ahci_init(AHCIState *s, DeviceState *qdev, DMAContext *dma, int ports)
         ad->port_no = i;
         ad->port.dma = &ad->dma;
         ad->port.dma->ops = &ahci_dma_ops;
-        ad->port_regs.cmd = PORT_CMD_SPIN_UP | PORT_CMD_POWER_ON;
     }
 }
 
@@ -1199,6 +1198,7 @@ void ahci_reset(AHCIState *s)
         pr->irq_stat = 0;
         pr->irq_mask = 0;
         pr->scr_ctl = 0;
+        pr->cmd = PORT_CMD_SPIN_UP | PORT_CMD_POWER_ON;
         ahci_reset_port(s, i);
     }
 }
-- 
1.7.1

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

* Re: [Qemu-devel] [PATCH v2] ahci: properly reset PxCMD on HBA reset
  2012-09-04 20:08 [Qemu-devel] [PATCH v2] ahci: properly reset PxCMD on HBA reset Jason Baron
@ 2012-09-05  3:28 ` Alexander Graf
  2012-09-07 12:42   ` Kevin Wolf
  0 siblings, 1 reply; 3+ messages in thread
From: Alexander Graf @ 2012-09-05  3:28 UTC (permalink / raw)
  To: Jason Baron
  Cc: kwolf, aliguori, mst, jan.kiszka, qemu-devel, armbru, yamahata,
	alex.williamson, pbonzini, lcapitulino, afaerber


On 04.09.2012, at 16:08, Jason Baron wrote:

> 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.
> 
> 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>

Awesome, a lot cleaner now :).

Acked-by: Alexander Graf <agraf@suse.de>

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

* Re: [Qemu-devel] [PATCH v2] ahci: properly reset PxCMD on HBA reset
  2012-09-05  3:28 ` Alexander Graf
@ 2012-09-07 12:42   ` Kevin Wolf
  0 siblings, 0 replies; 3+ messages in thread
From: Kevin Wolf @ 2012-09-07 12:42 UTC (permalink / raw)
  To: Alexander Graf
  Cc: aliguori, mst, jan.kiszka, Jason Baron, qemu-devel, armbru,
	yamahata, alex.williamson, pbonzini, lcapitulino, afaerber

Am 05.09.2012 05:28, schrieb Alexander Graf:
> 
> On 04.09.2012, at 16:08, Jason Baron wrote:
> 
>> 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.
>>
>> 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>
> 
> Awesome, a lot cleaner now :).
> 
> Acked-by: Alexander Graf <agraf@suse.de>

Thanks, applied to block-next.

Kevin

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

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

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-09-04 20:08 [Qemu-devel] [PATCH v2] ahci: properly reset PxCMD on HBA reset Jason Baron
2012-09-05  3:28 ` Alexander Graf
2012-09-07 12:42   ` Kevin Wolf

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).