diff mbox

piix: use pci_config_set_prog_interface()

Message ID 1292879881$2997@local
State New
Headers show

Commit Message

Sebastian Herbszt Dec. 20, 2010, 9:18 p.m. UTC
Use pci_config_set_prog_interface().

Signed-off-by: Sebastian Herbszt <herbszt@gmx.de>

Comments

Michael S. Tsirkin Dec. 27, 2010, 2:01 p.m. UTC | #1
On Mon, Dec 20, 2010 at 10:18:01PM +0100, Sebastian Herbszt wrote:
> Use pci_config_set_prog_interface().
> 
> Signed-off-by: Sebastian Herbszt <herbszt@gmx.de>

Since I was asked explicitly - I don't have a problem
with these changes: both class and prog interface.
However, they aren't all that useful in themselves.

For class, what I would like to see is a system where
the device class is put in the qdev info table,
and where -device ?
(and hopefully the legacy -help, -nic etc as well)
use this information.
pci_config_set_prog_interface can then have an assert to
verify that value.
Maybe we can even make e.g. -device nic work.

In a similar way, pci_config_set_prog_interface
would really become useful if we put the handling
for the legacy classes in a central place
(e.g. pci_class.c)

Any chance of doing something like the above?
I'd be happy to apply such patches.

> diff --git a/hw/ide/piix.c b/hw/ide/piix.c
> index 1cad906..2772e08 100644
> --- a/hw/ide/piix.c
> +++ b/hw/ide/piix.c
> @@ -135,7 +135,7 @@ static int pci_piix_ide_initfn(PCIIDEState *d)
>  {
>      uint8_t *pci_conf = d->dev.config;
>  
> -    pci_conf[PCI_CLASS_PROG] = 0x80; // legacy ATA mode
> +    pci_config_set_prog_interface(pci_conf, 0x80); // legacy ATA mode
>      pci_config_set_class(pci_conf, PCI_CLASS_STORAGE_IDE);
>  
>      qemu_register_reset(piix3_reset, d);
>
diff mbox

Patch

diff --git a/hw/ide/piix.c b/hw/ide/piix.c
index 1cad906..2772e08 100644
--- a/hw/ide/piix.c
+++ b/hw/ide/piix.c
@@ -135,7 +135,7 @@  static int pci_piix_ide_initfn(PCIIDEState *d)
 {
     uint8_t *pci_conf = d->dev.config;
 
-    pci_conf[PCI_CLASS_PROG] = 0x80; // legacy ATA mode
+    pci_config_set_prog_interface(pci_conf, 0x80); // legacy ATA mode
     pci_config_set_class(pci_conf, PCI_CLASS_STORAGE_IDE);
 
     qemu_register_reset(piix3_reset, d);