From: Marcel Apfelbaum <marcel@redhat.com>
To: "Philippe Mathieu-Daudé" <f4bug@amsat.org>,
"Michael S. Tsirkin" <mst@redhat.com>,
"Eduardo Habkost" <ehabkost@redhat.com>,
"Paul Burton" <paul.burton@mips.com>,
"Yongbok Kim" <yongbok.kim@mips.com>,
"Edgar E . Iglesias" <edgar.iglesias@gmail.com>,
"Alistair Francis" <alistair.francis@xilinx.com>
Cc: qemu-devel@nongnu.org, James Hogan <jhogan@kernel.org>
Subject: Re: [Qemu-devel] [PATCH v2 3/4] hw/pci-host/xilinx: QOM'ify the AXI-PCIe host bridge
Date: Mon, 18 Dec 2017 17:43:08 +0200 [thread overview]
Message-ID: <00f65d06-fcb4-ac56-2247-727891546b9a@redhat.com> (raw)
In-Reply-To: <20171218151244.9975-4-f4bug@amsat.org>
On 18/12/2017 17:12, Philippe Mathieu-Daudé wrote:
> Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
> ---
> v2: use 'pci_dev' variable, replaced hw_error() -> error_setg()
>
> hw/pci-host/xilinx-pcie.c | 20 +++++++++-----------
> 1 file changed, 9 insertions(+), 11 deletions(-)
>
> diff --git a/hw/pci-host/xilinx-pcie.c b/hw/pci-host/xilinx-pcie.c
> index 7659253090..681fdf486a 100644
> --- a/hw/pci-host/xilinx-pcie.c
> +++ b/hw/pci-host/xilinx-pcie.c
> @@ -267,24 +267,22 @@ static void xilinx_pcie_root_config_write(PCIDevice *d, uint32_t address,
> }
> }
>
> -static int xilinx_pcie_root_init(PCIDevice *dev)
> +static void xilinx_pcie_root_realize(PCIDevice *pci_dev, Error **errp)
> {
> - BusState *bus = qdev_get_parent_bus(DEVICE(dev));
> + BusState *bus = qdev_get_parent_bus(DEVICE(pci_dev));
> XilinxPCIEHost *s = XILINX_PCIE_HOST(bus->parent);
>
> - pci_set_word(dev->config + PCI_COMMAND,
> + pci_set_word(pci_dev->config + PCI_COMMAND,
> PCI_COMMAND_MEMORY | PCI_COMMAND_MASTER);
> - pci_set_word(dev->config + PCI_MEMORY_BASE, s->mmio_base >> 16);
> - pci_set_word(dev->config + PCI_MEMORY_LIMIT,
> + pci_set_word(pci_dev->config + PCI_MEMORY_BASE, s->mmio_base >> 16);
> + pci_set_word(pci_dev->config + PCI_MEMORY_LIMIT,
> ((s->mmio_base + s->mmio_size - 1) >> 16) & 0xfff0);
>
> - pci_bridge_initfn(dev, TYPE_PCI_BUS);
> + pci_bridge_initfn(pci_dev, TYPE_PCI_BUS);
>
> - if (pcie_endpoint_cap_v1_init(dev, 0x80) < 0) {
> - hw_error("Failed to initialize PCIe capability");
> + if (pcie_endpoint_cap_v1_init(pci_dev, 0x80) < 0) {
> + error_setg(errp, "Failed to initialize PCIe capability");
> }
> -
> - return 0;
> }
>
> static void xilinx_pcie_root_class_init(ObjectClass *klass, void *data)
> @@ -300,7 +298,7 @@ static void xilinx_pcie_root_class_init(ObjectClass *klass, void *data)
> k->class_id = PCI_CLASS_BRIDGE_HOST;
> k->is_express = true;
> k->is_bridge = true;
> - k->init = xilinx_pcie_root_init;
> + k->realize = xilinx_pcie_root_realize;
> k->exit = pci_bridge_exitfn;
> dc->reset = pci_bridge_reset;
> k->config_read = xilinx_pcie_root_config_read;
>
Reviewed-by: Marcel Apfelbaum <marcel@redhat.com>
Thanks,
Marcel
next prev parent reply other threads:[~2017-12-18 15:43 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-12-18 15:12 [Qemu-devel] [PATCH v2 0/4] QOM'ify PCIDevices Philippe Mathieu-Daudé
2017-12-18 15:12 ` [Qemu-devel] [PATCH v2 1/4] hw/block/nvme: QOM'ify PCI NVME Philippe Mathieu-Daudé
2017-12-18 15:12 ` [Qemu-devel] [PATCH v2 2/4] hw/pci-host/piix: QOM'ify the IGD Passthrough host bridge Philippe Mathieu-Daudé
2017-12-18 15:41 ` Marcel Apfelbaum
2017-12-18 15:12 ` [Qemu-devel] [PATCH v2 3/4] hw/pci-host/xilinx: QOM'ify the AXI-PCIe " Philippe Mathieu-Daudé
2017-12-18 15:43 ` Marcel Apfelbaum [this message]
2017-12-21 14:20 ` Michael S. Tsirkin
2017-12-21 17:04 ` Philippe Mathieu-Daudé
2017-12-18 15:12 ` [Qemu-devel] [PATCH v2 4/4] hw/pci: remove obsolete PCIDevice->init() Philippe Mathieu-Daudé
2017-12-18 17:45 ` [Qemu-devel] [PATCH v2 0/4] QOM'ify PCIDevices no-reply
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=00f65d06-fcb4-ac56-2247-727891546b9a@redhat.com \
--to=marcel@redhat.com \
--cc=alistair.francis@xilinx.com \
--cc=edgar.iglesias@gmail.com \
--cc=ehabkost@redhat.com \
--cc=f4bug@amsat.org \
--cc=jhogan@kernel.org \
--cc=mst@redhat.com \
--cc=paul.burton@mips.com \
--cc=qemu-devel@nongnu.org \
--cc=yongbok.kim@mips.com \
/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).