The following changes since commit 03d496a992d98650315af41be7c0ca6de2a28da1:
Merge tag 'pull-qapi-2024-02-26' of https://repo.or.cz/qemu/armbru into staging (2024-02-26 11:22:32 +0000) are available in the Git repository at: https://github.com/philmd/qemu.git tags/hw-misc-20240227 for you to fetch changes up to 0316482e876988f7526ebe62d579ad069f485957: hw/ide: Include 'ide-internal.h' from current path (2024-02-27 09:37:30 +0100) ---------------------------------------------------------------- Misc HW patch queue hw: Remove sysbus_address_space() (Phil) hw/nubus: Add nubus-virtio-mmio device (Mark) hw/usb: Remove usb_bus_find() (Paolo) hw/usb: Extract sysbus-ohci from ohci (Paolo) hw/nvme: Fix invalid endian conversion hw/i386: More PC machine housekeeping (Bernhard, Phil) hw/ide: Restrict "ide-internal.h" (Zoltan, Phil) qom: Expose object_resolve_type_unambiguous() (Paolo) ---------------------------------------------------------------- BALATON Zoltan (1): hw/ide: Remove last two uses of ide/internal.h outside of hw/ide/ Bernhard Beschow (5): hw/i386/x86: Let ioapic_init_gsi() take parent as pointer hw/i386/pc: Rename "bus" attribute to "pcibus" hw/i386/pc_{piix, q35}: Eliminate local pci_bus/pci_host variables hw/i386/pc: Remove unneeded class attribute "kvmclock_enabled" hw/i386/pc: Populate RTC attribute directly Klaus Jensen (1): hw/nvme: fix invalid endian conversion Mark Cave-Ayland (3): hw/nubus-device: round Declaration ROM memory region address to qemu_target_page_size() hw/nubus: increase maximum Declaration ROM size from 128k to 1Mb hw/nubus: add nubus-virtio-mmio device Paolo Bonzini (10): hw/acpi: move object_resolve_type_unambiguous to core QOM hw/ppc/sam460ex: do not use usb_bus_find() hw/sh4/r2d: do not use usb_bus_find() hw/mips/loongson3_virt: do not require CONFIG_USB hw/hppa: do not require CONFIG_USB hw/ppc/mac_newworld: do not require CONFIG_USB hw/ppc/pseries: do not require CONFIG_USB hw/usb: remove usb_bus_find hw/usb: extract sysbus-ohci to a separate file hw/usb: remove duplicate file in system_ss Philippe Mathieu-Daudé (10): hw/arm: Inline sysbus_create_simple(PL110 / PL111) hw/display/pl110: Pass frame buffer memory region as link property hw/arm/exynos4210: Inline sysbus_create_varargs(EXYNOS4210_FIMD) hw/display/exynos4210_fimd: Pass frame buffer memory region as link hw/i386/kvmvapic: Inline sysbus_address_space() hw/sysbus: Remove now unused sysbus_address_space() hw/i386/sgx: Use QDev API hw/i386/q35: Include missing 'hw/acpi/acpi.h' header hw/arm/sbsa-ref: Do not open-code ahci_ide_create_devs() hw/ide: Include 'ide-internal.h' from current path hw/ide/ahci_internal.h | 2 +- .../ide/internal.h => hw/ide/ide-internal.h | 0 include/hw/i386/pc.h | 3 +- include/hw/i386/x86.h | 2 +- include/hw/misc/macio/macio.h | 2 +- include/hw/nubus/nubus-virtio-mmio.h | 36 +++++++ include/hw/nubus/nubus.h | 2 +- include/hw/sysbus.h | 1 - include/hw/usb.h | 1 - include/qom/object.h | 13 +++ hw/arm/exynos4210.c | 14 ++- hw/arm/integratorcp.c | 7 +- hw/arm/realview.c | 7 +- hw/arm/sbsa-ref.c | 13 +-- hw/arm/versatilepb.c | 8 +- hw/arm/vexpress.c | 15 ++- hw/core/sysbus.c | 5 - hw/display/exynos4210_fimd.c | 19 +++- hw/display/pl110.c | 20 +++- hw/hppa/machine.c | 10 +- hw/i386/acpi-build.c | 22 ++-- hw/i386/amd_iommu.c | 2 +- hw/i386/intel_iommu.c | 2 +- hw/i386/kvm/xen_evtchn.c | 2 +- hw/i386/kvmvapic.c | 11 +- hw/i386/microvm.c | 2 +- hw/i386/pc.c | 17 +-- hw/i386/pc_piix.c | 42 ++++---- hw/i386/pc_q35.c | 26 +++-- hw/i386/sgx.c | 14 ++- hw/i386/x86-iommu.c | 2 +- hw/i386/x86.c | 7 +- hw/ide/ahci.c | 2 +- hw/ide/atapi.c | 2 +- hw/ide/cmd646.c | 2 +- hw/ide/core.c | 2 +- hw/ide/ide-bus.c | 2 +- hw/ide/ide-dev.c | 2 +- hw/ide/ioport.c | 2 +- hw/ide/isa.c | 2 +- hw/ide/macio.c | 2 +- hw/ide/microdrive.c | 2 +- hw/ide/mmio.c | 2 +- hw/ide/pci.c | 2 +- hw/ide/piix.c | 2 +- hw/ide/sii3112.c | 2 +- hw/ide/via.c | 2 +- hw/mips/loongson3_virt.c | 8 +- hw/nubus/nubus-device.c | 18 +++- hw/nubus/nubus-virtio-mmio.c | 102 ++++++++++++++++++ hw/nvme/ctrl.c | 2 +- hw/ppc/mac_newworld.c | 4 +- hw/ppc/sam460ex.c | 7 +- hw/ppc/spapr.c | 4 +- hw/sh4/r2d.c | 5 +- hw/usb/bus.c | 15 +-- hw/usb/hcd-ohci-sysbus.c | 88 +++++++++++++++ hw/usb/hcd-ohci.c | 58 ---------- qom/object.c | 16 +++ hw/arm/Kconfig | 12 ++- hw/display/Kconfig | 1 + hw/hppa/Kconfig | 2 +- hw/nubus/meson.build | 1 + hw/ppc/Kconfig | 5 +- hw/sh4/Kconfig | 1 - hw/usb/Kconfig | 4 + hw/usb/meson.build | 3 +- 67 files changed, 473 insertions(+), 242 deletions(-) rename include/hw/ide/internal.h => hw/ide/ide-internal.h (100%) create mode 100644 include/hw/nubus/nubus-virtio-mmio.h create mode 100644 hw/nubus/nubus-virtio-mmio.c create mode 100644 hw/usb/hcd-ohci-sysbus.c -- 2.41.0