summaryrefslogtreecommitdiffstats
path: root/hw
diff options
context:
space:
mode:
authorGuenter Roeck2020-02-17 21:48:11 +0100
committerPeter Maydell2020-02-21 17:07:02 +0100
commiteb271ae58116863b22c02582788f841a7848e1af (patch)
treeee98b5743d22210bf9a3a540ec23b0a1a9247a53 /hw
parenthw: usb: hcd-ohci: Move OHCISysBusState and TYPE_SYSBUS_OHCI to include file (diff)
downloadqemu-eb271ae58116863b22c02582788f841a7848e1af.tar.gz
qemu-eb271ae58116863b22c02582788f841a7848e1af.tar.xz
qemu-eb271ae58116863b22c02582788f841a7848e1af.zip
hcd-ehci: Introduce "companion-enable" sysbus property
We'll use this property in a follow-up patch to insantiate an EHCI bus with companion support. Reviewed-by: Gerd Hoffmann <kraxel@redhat.com> Signed-off-by: Guenter Roeck <linux@roeck-us.net> Tested-by: Niek Linnenbank <nieklinnenbank@gmail.com> Message-id: 20200217204812.9857-3-linux@roeck-us.net Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to 'hw')
-rw-r--r--hw/usb/hcd-ehci-sysbus.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/hw/usb/hcd-ehci-sysbus.c b/hw/usb/hcd-ehci-sysbus.c
index 8d4738565e..b22fb258be 100644
--- a/hw/usb/hcd-ehci-sysbus.c
+++ b/hw/usb/hcd-ehci-sysbus.c
@@ -33,6 +33,8 @@ static const VMStateDescription vmstate_ehci_sysbus = {
static Property ehci_sysbus_properties[] = {
DEFINE_PROP_UINT32("maxframes", EHCISysBusState, ehci.maxframes, 128),
+ DEFINE_PROP_BOOL("companion-enable", EHCISysBusState, ehci.companion_enable,
+ false),
DEFINE_PROP_END_OF_LIST(),
};