diff options
author | Bernhard Beschow <shentey@gmail.com> | 2023-10-07 14:38:20 +0200 |
---|---|---|
committer | Michael S. Tsirkin <mst@redhat.com> | 2023-10-22 05:18:17 -0400 |
commit | 6fe4464c05f45e726fcfa4a7927f4ed27444a0ca (patch) | |
tree | cd670f30624899f2c54c572bcb38e99e06ff2172 /hw/isa/Kconfig | |
parent | e47e5a5b79ffd6b3ca72ea383e3c756b68402735 (diff) |
hw/isa/piix3: Create USB controller in host device
The USB controller is an integral part of PIIX3 (function 2). So create
it as part of the south bridge.
Note that the USB function is optional in QEMU. This is why it gets
object_initialize_child()'ed in realize rather than in instance_init.
Signed-off-by: Bernhard Beschow <shentey@gmail.com>
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
Message-Id: <20231007123843.127151-13-shentey@gmail.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Diffstat (limited to 'hw/isa/Kconfig')
-rw-r--r-- | hw/isa/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/hw/isa/Kconfig b/hw/isa/Kconfig index 28345edbb3..1076df69ca 100644 --- a/hw/isa/Kconfig +++ b/hw/isa/Kconfig @@ -37,6 +37,7 @@ config PIIX3 select IDE_PIIX select ISA_BUS select MC146818RTC + select USB_UHCI config PIIX4 bool |