* [PATCH] hw/usb: Convert to qdev_realize()
@ 2021-01-19 12:01 Markus Armbruster
2021-01-19 14:00 ` Philippe Mathieu-Daudé
2021-01-19 16:14 ` Gerd Hoffmann
0 siblings, 2 replies; 3+ messages in thread
From: Markus Armbruster @ 2021-01-19 12:01 UTC (permalink / raw)
To: qemu-devel; +Cc: sai.pavan.boddu, peter.maydell, kraxel
Device code shouldn't mess with QOM property "realized" since we have
proper interfaces (merge commit 6675a653). Commit 8ddab8dd3d
"usb/hcd-xhci: Split pci wrapper for xhci base model" and commit
f00ff136ee "usb: hcd-xhci-sysbus: Attach xhci to sysbus device"
reintroduced two instances. Clean them up. Note that s->xhci is
a (bus-less) TYPE_XHCI device.
Signed-off-by: Markus Armbruster <armbru@redhat.com>
---
hw/usb/hcd-xhci-pci.c | 4 +---
hw/usb/hcd-xhci-sysbus.c | 5 +----
2 files changed, 2 insertions(+), 7 deletions(-)
diff --git a/hw/usb/hcd-xhci-pci.c b/hw/usb/hcd-xhci-pci.c
index bba628d3d2..9421734d0f 100644
--- a/hw/usb/hcd-xhci-pci.c
+++ b/hw/usb/hcd-xhci-pci.c
@@ -115,9 +115,7 @@ static void usb_xhci_pci_realize(struct PCIDevice *dev, Error **errp)
object_property_set_link(OBJECT(&s->xhci), "host", OBJECT(s), NULL);
s->xhci.intr_update = xhci_pci_intr_update;
s->xhci.intr_raise = xhci_pci_intr_raise;
- object_property_set_bool(OBJECT(&s->xhci), "realized", true, &err);
- if (err) {
- error_propagate(errp, err);
+ if (!qdev_realize(DEVICE(&s->xhci), NULL, errp)) {
return;
}
if (strcmp(object_get_typename(OBJECT(dev)), TYPE_NEC_XHCI) == 0) {
diff --git a/hw/usb/hcd-xhci-sysbus.c b/hw/usb/hcd-xhci-sysbus.c
index 29185d2261..42e2574c82 100644
--- a/hw/usb/hcd-xhci-sysbus.c
+++ b/hw/usb/hcd-xhci-sysbus.c
@@ -33,12 +33,9 @@ void xhci_sysbus_reset(DeviceState *dev)
static void xhci_sysbus_realize(DeviceState *dev, Error **errp)
{
XHCISysbusState *s = XHCI_SYSBUS(dev);
- Error *err = NULL;
object_property_set_link(OBJECT(&s->xhci), "host", OBJECT(s), NULL);
- object_property_set_bool(OBJECT(&s->xhci), "realized", true, &err);
- if (err) {
- error_propagate(errp, err);
+ if (!qdev_realize(DEVICE(&s->xhci), NULL, errp)) {
return;
}
s->irq = g_new0(qemu_irq, s->xhci.numintrs);
--
2.26.2
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] hw/usb: Convert to qdev_realize()
2021-01-19 12:01 [PATCH] hw/usb: Convert to qdev_realize() Markus Armbruster
@ 2021-01-19 14:00 ` Philippe Mathieu-Daudé
2021-01-19 16:14 ` Gerd Hoffmann
1 sibling, 0 replies; 3+ messages in thread
From: Philippe Mathieu-Daudé @ 2021-01-19 14:00 UTC (permalink / raw)
To: Markus Armbruster, qemu-devel; +Cc: sai.pavan.boddu, peter.maydell, kraxel
On 1/19/21 1:01 PM, Markus Armbruster wrote:
> Device code shouldn't mess with QOM property "realized" since we have
> proper interfaces (merge commit 6675a653). Commit 8ddab8dd3d
> "usb/hcd-xhci: Split pci wrapper for xhci base model" and commit
> f00ff136ee "usb: hcd-xhci-sysbus: Attach xhci to sysbus device"
> reintroduced two instances. Clean them up. Note that s->xhci is
> a (bus-less) TYPE_XHCI device.
>
> Signed-off-by: Markus Armbruster <armbru@redhat.com>
> ---
> hw/usb/hcd-xhci-pci.c | 4 +---
> hw/usb/hcd-xhci-sysbus.c | 5 +----
> 2 files changed, 2 insertions(+), 7 deletions(-)
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] hw/usb: Convert to qdev_realize()
2021-01-19 12:01 [PATCH] hw/usb: Convert to qdev_realize() Markus Armbruster
2021-01-19 14:00 ` Philippe Mathieu-Daudé
@ 2021-01-19 16:14 ` Gerd Hoffmann
1 sibling, 0 replies; 3+ messages in thread
From: Gerd Hoffmann @ 2021-01-19 16:14 UTC (permalink / raw)
To: Markus Armbruster; +Cc: sai.pavan.boddu, peter.maydell, qemu-devel
On Tue, Jan 19, 2021 at 01:01:51PM +0100, Markus Armbruster wrote:
> Device code shouldn't mess with QOM property "realized" since we have
> proper interfaces (merge commit 6675a653). Commit 8ddab8dd3d
> "usb/hcd-xhci: Split pci wrapper for xhci base model" and commit
> f00ff136ee "usb: hcd-xhci-sysbus: Attach xhci to sysbus device"
> reintroduced two instances. Clean them up. Note that s->xhci is
> a (bus-less) TYPE_XHCI device.
Added to usb queue.
thanks,
Gerd
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2021-01-19 19:42 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-01-19 12:01 [PATCH] hw/usb: Convert to qdev_realize() Markus Armbruster
2021-01-19 14:00 ` Philippe Mathieu-Daudé
2021-01-19 16:14 ` Gerd Hoffmann
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).