* [Qemu-devel] [PATCH] call ide_reset when resetting the piix
@ 2009-07-27 16:42 Naphtali Sprei
2009-07-27 17:17 ` Ryan Harper
2009-07-30 13:24 ` Anthony Liguori
0 siblings, 2 replies; 5+ messages in thread
From: Naphtali Sprei @ 2009-07-27 16:42 UTC (permalink / raw)
To: qemu-devel
In some cases reboot sequence fails to detect the ide device in the rombios
sequence for ata_detect, since ioport writes are ignored when the
ide device status indicates busy or data request in progres.
The ide if must be reset when system reset.
Signed-off-by: Naphtali Sprei <nsprei@redhat.com>
---
hw/ide.c | 14 ++++++++------
1 files changed, 8 insertions(+), 6 deletions(-)
diff --git a/hw/ide.c b/hw/ide.c
index f3787f2..4bf0987 100644
--- a/hw/ide.c
+++ b/hw/ide.c
@@ -3352,6 +3352,8 @@ static void piix3_reset(void *opaque)
for (i = 0; i < 2; i++)
ide_dma_cancel(&d->bmdma[i]);
+ for (i = 0; i < 4; i++)
+ ide_reset(&d->ide_if[i]);
pci_conf[0x04] = 0x00;
pci_conf[0x05] = 0x00;
@@ -3383,9 +3385,6 @@ void pci_piix3_ide_init(PCIBus *bus, BlockDriverState **hd_table, int devfn,
pci_config_set_class(pci_conf, PCI_CLASS_STORAGE_IDE);
pci_conf[PCI_HEADER_TYPE] = PCI_HEADER_TYPE_NORMAL; // header_type
- qemu_register_reset(piix3_reset, 0, d);
- piix3_reset(d);
-
pci_register_bar((PCIDevice *)d, 4, 0x10,
PCI_ADDRESS_SPACE_IO, bmdma_map);
@@ -3398,6 +3397,9 @@ void pci_piix3_ide_init(PCIBus *bus, BlockDriverState **hd_table, int devfn,
if (hd_table[i])
hd_table[i]->private = &d->dev;
+ qemu_register_reset(piix3_reset, 0, d);
+ piix3_reset(d);
+
register_savevm("ide", 0, 2, pci_ide_save, pci_ide_load, d);
}
@@ -3423,9 +3425,6 @@ void pci_piix4_ide_init(PCIBus *bus, BlockDriverState **hd_table, int devfn,
pci_config_set_class(pci_conf, PCI_CLASS_STORAGE_IDE);
pci_conf[PCI_HEADER_TYPE] = PCI_HEADER_TYPE_NORMAL; // header_type
- qemu_register_reset(piix3_reset, 0, d);
- piix3_reset(d);
-
pci_register_bar((PCIDevice *)d, 4, 0x10,
PCI_ADDRESS_SPACE_IO, bmdma_map);
@@ -3434,6 +3433,9 @@ void pci_piix4_ide_init(PCIBus *bus, BlockDriverState **hd_table, int devfn,
ide_init_ioport(&d->ide_if[0], 0x1f0, 0x3f6);
ide_init_ioport(&d->ide_if[2], 0x170, 0x376);
+ qemu_register_reset(piix3_reset, 0, d);
+ piix3_reset(d);
+
register_savevm("ide", 0, 2, pci_ide_save, pci_ide_load, d);
}
--
1.5.5.6
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [Qemu-devel] [PATCH] call ide_reset when resetting the piix
2009-07-27 16:42 [Qemu-devel] [PATCH] call ide_reset when resetting the piix Naphtali Sprei
@ 2009-07-27 17:17 ` Ryan Harper
2009-07-28 10:50 ` Naphtali Sprei
2009-07-30 13:24 ` Anthony Liguori
1 sibling, 1 reply; 5+ messages in thread
From: Ryan Harper @ 2009-07-27 17:17 UTC (permalink / raw)
To: Naphtali Sprei; +Cc: qemu-devel
* Naphtali Sprei <nsprei@redhat.com> [2009-07-27 12:13]:
> In some cases reboot sequence fails to detect the ide device in the rombios
> sequence for ata_detect, since ioport writes are ignored when the
> ide device status indicates busy or data request in progres.
> The ide if must be reset when system reset.
Does this fix any particular bugs? Is this a candidate for stable
branch?
>
> Signed-off-by: Naphtali Sprei <nsprei@redhat.com>
> ---
> hw/ide.c | 14 ++++++++------
> 1 files changed, 8 insertions(+), 6 deletions(-)
>
> diff --git a/hw/ide.c b/hw/ide.c
> index f3787f2..4bf0987 100644
> --- a/hw/ide.c
> +++ b/hw/ide.c
> @@ -3352,6 +3352,8 @@ static void piix3_reset(void *opaque)
>
> for (i = 0; i < 2; i++)
> ide_dma_cancel(&d->bmdma[i]);
> + for (i = 0; i < 4; i++)
> + ide_reset(&d->ide_if[i]);
>
> pci_conf[0x04] = 0x00;
> pci_conf[0x05] = 0x00;
> @@ -3383,9 +3385,6 @@ void pci_piix3_ide_init(PCIBus *bus, BlockDriverState **hd_table, int devfn,
> pci_config_set_class(pci_conf, PCI_CLASS_STORAGE_IDE);
> pci_conf[PCI_HEADER_TYPE] = PCI_HEADER_TYPE_NORMAL; // header_type
>
> - qemu_register_reset(piix3_reset, 0, d);
> - piix3_reset(d);
> -
> pci_register_bar((PCIDevice *)d, 4, 0x10,
> PCI_ADDRESS_SPACE_IO, bmdma_map);
>
> @@ -3398,6 +3397,9 @@ void pci_piix3_ide_init(PCIBus *bus, BlockDriverState **hd_table, int devfn,
> if (hd_table[i])
> hd_table[i]->private = &d->dev;
>
> + qemu_register_reset(piix3_reset, 0, d);
> + piix3_reset(d);
> +
> register_savevm("ide", 0, 2, pci_ide_save, pci_ide_load, d);
> }
>
> @@ -3423,9 +3425,6 @@ void pci_piix4_ide_init(PCIBus *bus, BlockDriverState **hd_table, int devfn,
> pci_config_set_class(pci_conf, PCI_CLASS_STORAGE_IDE);
> pci_conf[PCI_HEADER_TYPE] = PCI_HEADER_TYPE_NORMAL; // header_type
>
> - qemu_register_reset(piix3_reset, 0, d);
> - piix3_reset(d);
> -
> pci_register_bar((PCIDevice *)d, 4, 0x10,
> PCI_ADDRESS_SPACE_IO, bmdma_map);
>
> @@ -3434,6 +3433,9 @@ void pci_piix4_ide_init(PCIBus *bus, BlockDriverState **hd_table, int devfn,
> ide_init_ioport(&d->ide_if[0], 0x1f0, 0x3f6);
> ide_init_ioport(&d->ide_if[2], 0x170, 0x376);
>
> + qemu_register_reset(piix3_reset, 0, d);
> + piix3_reset(d);
> +
> register_savevm("ide", 0, 2, pci_ide_save, pci_ide_load, d);
> }
>
> --
> 1.5.5.6
>
>
--
Ryan Harper
Software Engineer; Linux Technology Center
IBM Corp., Austin, Tx
ryanh@us.ibm.com
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [Qemu-devel] [PATCH] call ide_reset when resetting the piix
2009-07-27 17:17 ` Ryan Harper
@ 2009-07-28 10:50 ` Naphtali Sprei
0 siblings, 0 replies; 5+ messages in thread
From: Naphtali Sprei @ 2009-07-28 10:50 UTC (permalink / raw)
To: Ryan Harper; +Cc: qemu-devel
Ryan Harper wrote:
> Does this fix any particular bugs? Is this a candidate for stable
> branch?
Yes, it fixes a particular bug, bug #508664 in redhat's bugzilla.
It's a case where the Sysmark 2007 on MS windows xp, starts running, initializes stuff and does a restart.
It fails occasionally.
Naphtali
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [Qemu-devel] [PATCH] call ide_reset when resetting the piix
2009-07-27 16:42 [Qemu-devel] [PATCH] call ide_reset when resetting the piix Naphtali Sprei
2009-07-27 17:17 ` Ryan Harper
@ 2009-07-30 13:24 ` Anthony Liguori
2009-08-02 15:29 ` Naphtali Sprei
1 sibling, 1 reply; 5+ messages in thread
From: Anthony Liguori @ 2009-07-30 13:24 UTC (permalink / raw)
To: Naphtali Sprei; +Cc: qemu-devel
Naphtali Sprei wrote:
> In some cases reboot sequence fails to detect the ide device in the rombios
> sequence for ata_detect, since ioport writes are ignored when the
> ide device status indicates busy or data request in progres.
> The ide if must be reset when system reset.
>
> Signed-off-by: Naphtali Sprei <nsprei@redhat.com>
>
What is this against?
> - qemu_register_reset(piix3_reset, 0, d);
> - piix3_reset(d);
> -
>
qemu_register_reset hasn't had this signature in a long time. I think
you need to rebase against tip.
Regards,
Anthony Liguori
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [Qemu-devel] [PATCH] call ide_reset when resetting the piix
2009-07-30 13:24 ` Anthony Liguori
@ 2009-08-02 15:29 ` Naphtali Sprei
0 siblings, 0 replies; 5+ messages in thread
From: Naphtali Sprei @ 2009-08-02 15:29 UTC (permalink / raw)
To: Anthony Liguori; +Cc: qemu-devel
Anthony Liguori wrote:
> Naphtali Sprei wrote:
>> In some cases reboot sequence fails to detect the ide device in the
>> rombios
>> sequence for ata_detect, since ioport writes are ignored when the
>> ide device status indicates busy or data request in progres.
>> The ide if must be reset when system reset.
>>
>> Signed-off-by: Naphtali Sprei <nsprei@redhat.com>
>>
>
> What is this against?
>
>> - qemu_register_reset(piix3_reset, 0, d);
>> - piix3_reset(d);
>> -
>>
>
> qemu_register_reset hasn't had this signature in a long time. I think
> you need to rebase against tip.
thanks, rebased against tip. Also added text to comment.
Naphtali
>
> Regards,
>
> Anthony Liguori
>
>
Subject: [PATCH] call ide_reset when resetting the piix
In some cases reboot sequence fails to detect the ide device in the rombios
sequence for ata_detect, since ioport writes are ignored when the
ide device status indicates busy or data request in progres.
The ide if must be reset when system reset.
Moved the location of calling piix3_reset since now it must come after
initialization: ide_init2, it eventually calls ide_dummy_transfer_stop
that uses the io_buffer.
Signed-off-by: Naphtali Sprei <nsprei@redhat.com>
---
hw/ide.c | 14 ++++++++------
1 files changed, 8 insertions(+), 6 deletions(-)
diff --git a/hw/ide.c b/hw/ide.c
index 6cf04a6..7e1b776 100644
--- a/hw/ide.c
+++ b/hw/ide.c
@@ -3368,6 +3368,8 @@ static void piix3_reset(void *opaque)
for (i = 0; i < 2; i++)
ide_dma_cancel(&d->bmdma[i]);
+ for (i = 0; i < 4; i++)
+ ide_reset(&d->ide_if[i]);
pci_conf[0x04] = 0x00;
pci_conf[0x05] = 0x00;
@@ -3399,9 +3401,6 @@ void pci_piix3_ide_init(PCIBus *bus, BlockDriverState **hd_table, int devfn,
pci_config_set_class(pci_conf, PCI_CLASS_STORAGE_IDE);
pci_conf[PCI_HEADER_TYPE] = PCI_HEADER_TYPE_NORMAL; // header_type
- qemu_register_reset(piix3_reset, d);
- piix3_reset(d);
-
pci_register_bar((PCIDevice *)d, 4, 0x10,
PCI_ADDRESS_SPACE_IO, bmdma_map);
@@ -3414,6 +3413,9 @@ void pci_piix3_ide_init(PCIBus *bus, BlockDriverState **hd_table, int devfn,
if (hd_table[i])
hd_table[i]->private = &d->dev;
+ qemu_register_reset(piix3_reset, d);
+ piix3_reset(d);
+
register_savevm("ide", 0, 2, pci_ide_save, pci_ide_load, d);
}
@@ -3439,9 +3441,6 @@ void pci_piix4_ide_init(PCIBus *bus, BlockDriverState **hd_table, int devfn,
pci_config_set_class(pci_conf, PCI_CLASS_STORAGE_IDE);
pci_conf[PCI_HEADER_TYPE] = PCI_HEADER_TYPE_NORMAL; // header_type
- qemu_register_reset(piix3_reset, d);
- piix3_reset(d);
-
pci_register_bar((PCIDevice *)d, 4, 0x10,
PCI_ADDRESS_SPACE_IO, bmdma_map);
@@ -3450,6 +3449,9 @@ void pci_piix4_ide_init(PCIBus *bus, BlockDriverState **hd_table, int devfn,
ide_init_ioport(&d->ide_if[0], 0x1f0, 0x3f6);
ide_init_ioport(&d->ide_if[2], 0x170, 0x376);
+ qemu_register_reset(piix3_reset, d);
+ piix3_reset(d);
+
register_savevm("ide", 0, 2, pci_ide_save, pci_ide_load, d);
}
--
1.5.5.6
^ permalink raw reply related [flat|nested] 5+ messages in thread
end of thread, other threads:[~2009-08-02 15:30 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-07-27 16:42 [Qemu-devel] [PATCH] call ide_reset when resetting the piix Naphtali Sprei
2009-07-27 17:17 ` Ryan Harper
2009-07-28 10:50 ` Naphtali Sprei
2009-07-30 13:24 ` Anthony Liguori
2009-08-02 15:29 ` Naphtali Sprei
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).