From: "Philippe Mathieu-Daudé" <philmd@redhat.com>
To: "Cédric Le Goater" <clg@kaod.org>,
"David Gibson" <david@gibson.dropbear.id.au>
Cc: qemu-ppc@nongnu.org, qemu-devel@nongnu.org
Subject: Re: [Qemu-devel] [PATCH 2/2] ppc4xx_pci: convert SysBus init method to a realize method
Date: Mon, 1 Oct 2018 17:06:07 +0200 [thread overview]
Message-ID: <bc2a8e71-565a-d5cd-8067-2c29ac748286@redhat.com> (raw)
In-Reply-To: <20181001114421.1377-3-clg@kaod.org>
Hi Cédric,
On 01/10/2018 13:44, Cédric Le Goater wrote:
> Signed-off-by: Cédric Le Goater <clg@kaod.org>
> ---
> hw/ppc/ppc4xx_pci.c | 14 ++++++--------
> 1 file changed, 6 insertions(+), 8 deletions(-)
>
> diff --git a/hw/ppc/ppc4xx_pci.c b/hw/ppc/ppc4xx_pci.c
> index b7642bac016b..86981be71024 100644
> --- a/hw/ppc/ppc4xx_pci.c
> +++ b/hw/ppc/ppc4xx_pci.c
> @@ -300,8 +300,9 @@ static const VMStateDescription vmstate_ppc4xx_pci = {
> };
>
> /* XXX Interrupt acknowledge cycles not supported. */
> -static int ppc4xx_pcihost_initfn(SysBusDevice *dev)
> +static void ppc4xx_pcihost_realize(DeviceState *dev, Error **errp)
> {
> + SysBusDevice *sbd = SYS_BUS_DEVICE(dev);
> PPC4xxPCIState *s;
> PCIHostState *h;
> PCIBus *b;
> @@ -311,10 +312,10 @@ static int ppc4xx_pcihost_initfn(SysBusDevice *dev)
> s = PPC4xx_PCI_HOST_BRIDGE(dev);
>
> for (i = 0; i < ARRAY_SIZE(s->irq); i++) {
> - sysbus_init_irq(dev, &s->irq[i]);
> + sysbus_init_irq(sbd, &s->irq[i]);
> }
>
> - b = pci_register_root_bus(DEVICE(dev), NULL, ppc4xx_pci_set_irq,
> + b = pci_register_root_bus(dev, NULL, ppc4xx_pci_set_irq,
> ppc4xx_pci_map_irq, s->irq, get_system_memory(),
> get_system_io(), 0, 4, TYPE_PCI_BUS);
> h->bus = b;
> @@ -332,10 +333,8 @@ static int ppc4xx_pcihost_initfn(SysBusDevice *dev)
> memory_region_add_subregion(&s->container, PCIC0_CFGADDR, &h->conf_mem);
> memory_region_add_subregion(&s->container, PCIC0_CFGDATA, &h->data_mem);
> memory_region_add_subregion(&s->container, PCI_REG_BASE, &s->iomem);
> - sysbus_init_mmio(dev, &s->container);
> + sysbus_init_mmio(sbd, &s->container);
> qemu_register_reset(ppc4xx_pci_reset, s);
While here, can you also convert to DeviceClass::reset()?
Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
> -
> - return 0;
> }
>
> static void ppc4xx_host_bridge_class_init(ObjectClass *klass, void *data)
> @@ -367,10 +366,9 @@ static const TypeInfo ppc4xx_host_bridge_info = {
>
> static void ppc4xx_pcihost_class_init(ObjectClass *klass, void *data)
> {
> - SysBusDeviceClass *k = SYS_BUS_DEVICE_CLASS(klass);
> DeviceClass *dc = DEVICE_CLASS(klass);
>
> - k->init = ppc4xx_pcihost_initfn;
> + dc->realize = ppc4xx_pcihost_realize;
> dc->vmsd = &vmstate_ppc4xx_pci;
> }
>
>
next prev parent reply other threads:[~2018-10-01 15:06 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-10-01 11:44 [Qemu-devel] [PATCH 0/2] ppc: convert SysBus init method to a realize method Cédric Le Goater
2018-10-01 11:44 ` [Qemu-devel] [PATCH 1/2] ppc440_pcix: " Cédric Le Goater
2018-10-01 14:48 ` [Qemu-devel] [Qemu-ppc] " Greg Kurz
2018-10-01 15:06 ` [Qemu-devel] " Philippe Mathieu-Daudé
2018-10-01 11:44 ` [Qemu-devel] [PATCH 2/2] ppc4xx_pci: " Cédric Le Goater
2018-10-01 14:49 ` [Qemu-devel] [Qemu-ppc] " Greg Kurz
2018-10-01 15:06 ` Philippe Mathieu-Daudé [this message]
2018-10-02 1:19 ` [Qemu-devel] [PATCH 0/2] ppc: " David Gibson
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=bc2a8e71-565a-d5cd-8067-2c29ac748286@redhat.com \
--to=philmd@redhat.com \
--cc=clg@kaod.org \
--cc=david@gibson.dropbear.id.au \
--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).