qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: BALATON Zoltan <balaton@eik.bme.hu>
To: "Philippe Mathieu-Daudé" <f4bug@amsat.org>
Cc: Peter Maydell <peter.maydell@linaro.org>,
	qemu-devel@nongnu.org,
	"Dr. David Alan Gilbert" <dgilbert@redhat.com>,
	qemu-ppc@nongnu.org, Paolo Bonzini <pbonzini@redhat.com>,
	David Gibson <david@gibson.dropbear.id.au>
Subject: Re: [PATCH v5 4/8] vt82c686: Introduce abstract TYPE_VIA_ISA and base vt82c686b_isa on it
Date: Thu, 4 Mar 2021 21:16:03 +0100 (CET)	[thread overview]
Message-ID: <11fb7590-89f3-62e7-48e3-d44226876e78@eik.bme.hu> (raw)
In-Reply-To: <da48a752-9b2d-6cd8-9603-4cc528fea628@amsat.org>

[-- Attachment #1: Type: text/plain, Size: 6348 bytes --]

On Thu, 4 Mar 2021, Philippe Mathieu-Daudé wrote:
> On 3/2/21 10:11 PM, BALATON Zoltan wrote:
>> To allow reusing ISA bridge emulation for vt8231_isa move the device
>> state of vt82c686b_isa emulation in an abstract via_isa class.
>>
>> Signed-off-by: BALATON Zoltan <balaton@eik.bme.hu>
>> ---
>>  hw/isa/vt82c686.c        | 70 ++++++++++++++++++++++------------------
>>  include/hw/pci/pci_ids.h |  2 +-
>>  2 files changed, 40 insertions(+), 32 deletions(-)
>>
>> diff --git a/hw/isa/vt82c686.c b/hw/isa/vt82c686.c
>> index 72234bc4d1..5137f97f37 100644
>> --- a/hw/isa/vt82c686.c
>> +++ b/hw/isa/vt82c686.c
>> @@ -609,24 +609,48 @@ static const TypeInfo vt8231_superio_info = {
>>  };
>>
>>
>> -OBJECT_DECLARE_SIMPLE_TYPE(VT82C686BISAState, VT82C686B_ISA)
>> +#define TYPE_VIA_ISA "via-isa"
>> +OBJECT_DECLARE_SIMPLE_TYPE(ViaISAState, VIA_ISA)
>>
>> -struct VT82C686BISAState {
>> +struct ViaISAState {
>>      PCIDevice dev;
>>      qemu_irq cpu_intr;
>>      ViaSuperIOState *via_sio;
>>  };
>>
>> +static const VMStateDescription vmstate_via = {
>> +    .name = "via-isa",
>
> You changed the migration stream name, so I think we have
> a problem with migration... No clue how to do that properly.

I don't think these machines support migration or state description of 
vt86c686b was not missing something before these patches that would make 
it not work anyway so I did not worry about this too much. I doubt anybody 
wants to migrate a fuloong2e machine so this should not be a problem in 
practice but maybe you can mention it in the release notes if you think 
that would be necessary.

Regards,
BALATON Zoltan

> Otherwise the rest LGTM.
>
>> +    .version_id = 1,
>> +    .minimum_version_id = 1,
>> +    .fields = (VMStateField[]) {
>> +        VMSTATE_PCI_DEVICE(dev, ViaISAState),
>> +        VMSTATE_END_OF_LIST()
>> +    }
>> +};
>> +
>> +static const TypeInfo via_isa_info = {
>> +    .name          = TYPE_VIA_ISA,
>> +    .parent        = TYPE_PCI_DEVICE,
>> +    .instance_size = sizeof(ViaISAState),
>> +    .abstract      = true,
>> +    .interfaces    = (InterfaceInfo[]) {
>> +        { INTERFACE_CONVENTIONAL_PCI_DEVICE },
>> +        { },
>> +    },
>> +};
>> +
>>  static void via_isa_request_i8259_irq(void *opaque, int irq, int level)
>>  {
>> -    VT82C686BISAState *s = opaque;
>> +    ViaISAState *s = opaque;
>>      qemu_set_irq(s->cpu_intr, level);
>>  }
>>
>> +/* TYPE_VT82C686B_ISA */
>> +
>>  static void vt82c686b_write_config(PCIDevice *d, uint32_t addr,
>>                                     uint32_t val, int len)
>>  {
>> -    VT82C686BISAState *s = VT82C686B_ISA(d);
>> +    ViaISAState *s = VIA_ISA(d);
>>
>>      trace_via_isa_write(addr, val, len);
>>      pci_default_write_config(d, addr, val, len);
>> @@ -636,19 +660,9 @@ static void vt82c686b_write_config(PCIDevice *d, uint32_t addr,
>>      }
>>  }
>>
>> -static const VMStateDescription vmstate_via = {
>> -    .name = "vt82c686b",
>> -    .version_id = 1,
>> -    .minimum_version_id = 1,
>> -    .fields = (VMStateField[]) {
>> -        VMSTATE_PCI_DEVICE(dev, VT82C686BISAState),
>> -        VMSTATE_END_OF_LIST()
>> -    }
>> -};
>> -
>>  static void vt82c686b_isa_reset(DeviceState *dev)
>>  {
>> -    VT82C686BISAState *s = VT82C686B_ISA(dev);
>> +    ViaISAState *s = VIA_ISA(dev);
>>      uint8_t *pci_conf = s->dev.config;
>>
>>      pci_set_long(pci_conf + PCI_CAPABILITY_LIST, 0x000000c0);
>> @@ -668,7 +682,7 @@ static void vt82c686b_isa_reset(DeviceState *dev)
>>
>>  static void vt82c686b_realize(PCIDevice *d, Error **errp)
>>  {
>> -    VT82C686BISAState *s = VT82C686B_ISA(d);
>> +    ViaISAState *s = VIA_ISA(d);
>>      DeviceState *dev = DEVICE(d);
>>      ISABus *isa_bus;
>>      qemu_irq *isa_irq;
>> @@ -692,7 +706,7 @@ static void vt82c686b_realize(PCIDevice *d, Error **errp)
>>      }
>>  }
>>
>> -static void via_class_init(ObjectClass *klass, void *data)
>> +static void vt82c686b_class_init(ObjectClass *klass, void *data)
>>  {
>>      DeviceClass *dc = DEVICE_CLASS(klass);
>>      PCIDeviceClass *k = PCI_DEVICE_CLASS(klass);
>> @@ -700,28 +714,21 @@ static void via_class_init(ObjectClass *klass, void *data)
>>      k->realize = vt82c686b_realize;
>>      k->config_write = vt82c686b_write_config;
>>      k->vendor_id = PCI_VENDOR_ID_VIA;
>> -    k->device_id = PCI_DEVICE_ID_VIA_ISA_BRIDGE;
>> +    k->device_id = PCI_DEVICE_ID_VIA_82C686B_ISA;
>>      k->class_id = PCI_CLASS_BRIDGE_ISA;
>>      k->revision = 0x40;
>>      dc->reset = vt82c686b_isa_reset;
>>      dc->desc = "ISA bridge";
>>      dc->vmsd = &vmstate_via;
>> -    /*
>> -     * Reason: part of VIA VT82C686 southbridge, needs to be wired up,
>> -     * e.g. by mips_fuloong2e_init()
>> -     */
>> +    /* Reason: part of VIA VT82C686 southbridge, needs to be wired up */
>>      dc->user_creatable = false;
>>  }
>>
>> -static const TypeInfo via_info = {
>> +static const TypeInfo vt82c686b_isa_info = {
>>      .name          = TYPE_VT82C686B_ISA,
>> -    .parent        = TYPE_PCI_DEVICE,
>> -    .instance_size = sizeof(VT82C686BISAState),
>> -    .class_init    = via_class_init,
>> -    .interfaces = (InterfaceInfo[]) {
>> -        { INTERFACE_CONVENTIONAL_PCI_DEVICE },
>> -        { },
>> -    },
>> +    .parent        = TYPE_VIA_ISA,
>> +    .instance_size = sizeof(ViaISAState),
>> +    .class_init    = vt82c686b_class_init,
>>  };
>>
>>
>> @@ -733,7 +740,8 @@ static void vt82c686b_register_types(void)
>>      type_register_static(&via_superio_info);
>>      type_register_static(&vt82c686b_superio_info);
>>      type_register_static(&vt8231_superio_info);
>> -    type_register_static(&via_info);
>> +    type_register_static(&via_isa_info);
>> +    type_register_static(&vt82c686b_isa_info);
>>  }
>>
>>  type_init(vt82c686b_register_types)
>> diff --git a/include/hw/pci/pci_ids.h b/include/hw/pci/pci_ids.h
>> index ea28dcc850..aa3f67eaa4 100644
>> --- a/include/hw/pci/pci_ids.h
>> +++ b/include/hw/pci/pci_ids.h
>> @@ -204,7 +204,7 @@
>>  #define PCI_VENDOR_ID_XILINX             0x10ee
>>
>>  #define PCI_VENDOR_ID_VIA                0x1106
>> -#define PCI_DEVICE_ID_VIA_ISA_BRIDGE     0x0686
>> +#define PCI_DEVICE_ID_VIA_82C686B_ISA    0x0686
>>  #define PCI_DEVICE_ID_VIA_IDE            0x0571
>>  #define PCI_DEVICE_ID_VIA_UHCI           0x3038
>>  #define PCI_DEVICE_ID_VIA_82C686B_PM     0x3057
>>
>
>

  reply	other threads:[~2021-03-04 20:21 UTC|newest]

Thread overview: 21+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-03-02 21:11 [PATCH v5 0/8] Pegasos2 emulation BALATON Zoltan
2021-03-02 21:11 ` [PATCH v5 7/8] hw/pci-host: Add emulation of Marvell MV64361 PPC system controller BALATON Zoltan
2021-03-02 21:11 ` [PATCH v5 6/8] hw/isa/Kconfig: Add missing dependency VIA VT82C686 -> APM BALATON Zoltan
2021-03-02 21:11 ` [PATCH v5 3/8] vt82c686: Add VT8231_SUPERIO based on VIA_SUPERIO BALATON Zoltan
2021-03-02 21:11 ` [PATCH v5 8/8] hw/ppc: Add emulation of Genesi/bPlan Pegasos II BALATON Zoltan
2021-03-02 21:11 ` [PATCH v5 1/8] vt82c686: Implement control of serial port io ranges via config regs BALATON Zoltan
2021-03-02 21:11 ` [PATCH v5 5/8] vt82c686: Add emulation of VT8231 south bridge BALATON Zoltan
2021-03-04 20:08   ` Philippe Mathieu-Daudé
2021-03-02 21:11 ` [PATCH v5 2/8] vt82c686: QOM-ify superio related functionality BALATON Zoltan
2021-03-02 21:11 ` [PATCH v5 4/8] vt82c686: Introduce abstract TYPE_VIA_ISA and base vt82c686b_isa on it BALATON Zoltan
2021-03-04 19:58   ` Philippe Mathieu-Daudé
2021-03-04 20:16     ` BALATON Zoltan [this message]
2021-03-04 22:42       ` Philippe Mathieu-Daudé
2021-03-05  1:02         ` David Gibson
2021-03-09  9:12           ` Philippe Mathieu-Daudé
2021-03-09 22:44             ` David Gibson
2021-03-09 16:00           ` Dr. David Alan Gilbert
2021-03-09 16:09             ` BALATON Zoltan
2021-03-09 17:03             ` Philippe Mathieu-Daudé
2021-03-09 17:05               ` Philippe Mathieu-Daudé
2021-03-10 10:17               ` Gerd Hoffmann

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=11fb7590-89f3-62e7-48e3-d44226876e78@eik.bme.hu \
    --to=balaton@eik.bme.hu \
    --cc=david@gibson.dropbear.id.au \
    --cc=dgilbert@redhat.com \
    --cc=f4bug@amsat.org \
    --cc=pbonzini@redhat.com \
    --cc=peter.maydell@linaro.org \
    --cc=qemu-devel@nongnu.org \
    --cc=qemu-ppc@nongnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).