qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [PULL 00/29] Misc HW patches for 2025-02-12
@ 2025-02-12 15:54 Philippe Mathieu-Daudé
  2025-02-12 15:54 ` [PULL 28/29] hw: Declare various const data as 'const' Philippe Mathieu-Daudé
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Philippe Mathieu-Daudé @ 2025-02-12 15:54 UTC (permalink / raw)
  To: qemu-devel; +Cc: Philippe Mathieu-Daudé

The following changes since commit f9edf32ea2e18a56de5d92f57e9d10565c822367:

  Merge tag 'pull-request-2025-02-11' of https://gitlab.com/thuth/qemu into staging (2025-02-11 13:27:32 -0500)

are available in the Git repository at:

  https://github.com/philmd/qemu.git tags/hw-misc-20250212

for you to fetch changes up to b374adcae577dddfe6cfd404985014fdd2443428:

  hw: Make class data 'const' (2025-02-12 15:39:46 +0100)

Since 2025-02-10: Dropped MicroBlaze endianness patches, added constify.

----------------------------------------------------------------
Misc HW patches

- Use qemu_hexdump_line() in TPM backend (Philippe)
- Remove magic number in APIC (Phil)
- Disable thread-level cache topology (Zhao)
- Xen QOM style cleanups (Bernhard)
- Introduce TYPE_DYNAMIC_SYS_BUS_DEVICE (Philippe)
- Invert logic of machine no_sdcard flag (Philippe)
- Housekeeping in MicroBlaze functional tests (Philippe)
- Prevent out-of-bound access in SMC91C111 RX path (Peter)
- Declare more fields / arguments as const (Philippe)

----------------------------------------------------------------

Bernhard Beschow (1):
  hw/xen: Prefer QOM cast for XenLegacyDevice

Peter Maydell (1):
  hw/net/smc91c111: Ignore attempt to pop from empty RX fifo

Phil Dennis-Jordan (1):
  hw/intc/apic: Fixes magic number use, removes outdated comment

Philippe Mathieu-Daudé (25):
  backends/tpm: Use qemu_hexdump_line() to avoid sprintf()
  hw/arm/xlnx-zynqmp: Use &error_abort for programming errors
  hw/sysbus: Use sizeof(BusState) in main_system_bus_create()
  hw/sysbus: Declare QOM types using DEFINE_TYPES() macro
  hw/sysbus: Introduce TYPE_DYNAMIC_SYS_BUS_DEVICE
  hw/vfio: Have VFIO_PLATFORM devices inherit from
    DYNAMIC_SYS_BUS_DEVICE
  hw/display: Have RAMFB device inherit from DYNAMIC_SYS_BUS_DEVICE
  hw/i386: Have X86_IOMMU devices inherit from DYNAMIC_SYS_BUS_DEVICE
  hw/net: Have eTSEC device inherit from DYNAMIC_SYS_BUS_DEVICE
  hw/tpm: Have TPM TIS sysbus device inherit from DYNAMIC_SYS_BUS_DEVICE
  hw/xen: Have legacy Xen backend inherit from DYNAMIC_SYS_BUS_DEVICE
  hw/boards: Convert no_sdcard flag to OnOffAuto tri-state
  hw/boards: Explicit no_sdcard=false as ON_OFF_AUTO_OFF
  hw/boards: Rename no_sdcard -> auto_create_sdcard
  hw/boards: Do not create unusable default if=sd drives
  hw/arm: Remove all invalid uses of auto_create_sdcard=true
  hw/riscv: Remove all invalid uses of auto_create_sdcard=true
  hw/boards: Ensure machine setting auto_create_sdcard expose a SD Bus
  hw/riscv/opentitan: Include missing 'exec/address-spaces.h' header
  tests/functional: Explicit endianness of microblaze assets
  tests/functional: Allow microblaze tests to take a machine name
    argument
  tests/functional: Remove sleep() kludges from microblaze tests
  tests/functional: Have microblaze tests inherit common parent class
  hw: Declare various const data as 'const'
  hw: Make class data 'const'

Zhao Liu (1):
  hw/core/machine: Reject thread level cache

 hw/sd/sdhci-internal.h                        |  2 +-
 include/hw/boards.h                           |  2 +-
 include/hw/sysbus.h                           |  2 +
 include/hw/xen/xen_pvdev.h                    |  5 +-
 backends/tpm/tpm_util.c                       | 24 ++++----
 hw/arm/aspeed.c                               | 20 +++++++
 hw/arm/bananapi_m2u.c                         |  1 +
 hw/arm/cubieboard.c                           |  1 +
 hw/arm/exynos4_boards.c                       |  2 +
 hw/arm/fby35.c                                |  1 +
 hw/arm/imx25_pdk.c                            |  1 +
 hw/arm/integratorcp.c                         |  1 +
 hw/arm/mcimx6ul-evk.c                         |  1 +
 hw/arm/mcimx7d-sabre.c                        |  1 +
 hw/arm/npcm7xx_boards.c                       |  5 ++
 hw/arm/omap_sx1.c                             |  2 +
 hw/arm/orangepi.c                             |  1 +
 hw/arm/raspi.c                                |  5 ++
 hw/arm/raspi4b.c                              |  1 +
 hw/arm/realview.c                             |  4 ++
 hw/arm/sabrelite.c                            |  1 +
 hw/arm/stellaris.c                            |  1 +
 hw/arm/versatilepb.c                          |  2 +
 hw/arm/vexpress.c                             |  2 +
 hw/arm/xilinx_zynq.c                          |  1 -
 hw/arm/xlnx-versal-virt.c                     |  1 +
 hw/arm/xlnx-zcu102.c                          |  1 +
 hw/arm/xlnx-zynqmp.c                          | 38 ++++--------
 hw/core/machine-smp.c                         |  7 +++
 hw/core/null-machine.c                        |  1 -
 hw/core/sysbus.c                              | 54 ++++++++++-------
 hw/display/ramfb-standalone.c                 |  3 +-
 hw/i386/amd_iommu.c                           |  2 -
 hw/i386/intel_iommu.c                         |  2 -
 hw/i386/x86-iommu.c                           |  2 +-
 hw/intc/apic.c                                |  3 +-
 hw/isa/vt82c686.c                             |  2 +-
 hw/net/fsl_etsec/etsec.c                      |  4 +-
 hw/net/smc91c111.c                            |  9 +++
 hw/riscv/microchip_pfsoc.c                    |  1 +
 hw/riscv/opentitan.c                          |  1 +
 hw/riscv/sifive_u.c                           |  1 +
 hw/rtc/m48t59-isa.c                           |  2 +-
 hw/rtc/m48t59.c                               |  2 +-
 hw/s390x/s390-virtio-ccw.c                    |  1 -
 hw/sd/sdhci.c                                 |  2 +-
 hw/sensor/emc141x.c                           |  2 +-
 hw/sensor/isl_pmbus_vr.c                      |  2 +-
 hw/sensor/tmp421.c                            |  2 +-
 hw/tpm/tpm_tis_sysbus.c                       |  3 +-
 hw/usb/hcd-ehci-pci.c                         |  2 +-
 hw/usb/hcd-uhci.c                             |  2 +-
 hw/usb/xen-usb.c                              |  6 +-
 hw/vfio/amd-xgbe.c                            |  2 -
 hw/vfio/calxeda-xgmac.c                       |  2 -
 hw/vfio/platform.c                            |  4 +-
 hw/xen/xen-legacy-backend.c                   |  9 +--
 hw/xen/xen_pvdev.c                            |  2 +-
 system/vl.c                                   | 24 ++++++--
 .../functional/test_microblaze_s3adsp1800.py  | 34 +++++++++--
 .../test_microblazeel_s3adsp1800.py           | 32 ++--------
 tests/qemu-iotests/172.out                    | 60 -------------------
 62 files changed, 211 insertions(+), 205 deletions(-)

-- 
2.47.1



^ permalink raw reply	[flat|nested] 5+ messages in thread

* [PULL 28/29] hw: Declare various const data as 'const'
  2025-02-12 15:54 [PULL 00/29] Misc HW patches for 2025-02-12 Philippe Mathieu-Daudé
@ 2025-02-12 15:54 ` Philippe Mathieu-Daudé
  2025-02-12 15:54 ` [PULL 29/29] hw: Make class data 'const' Philippe Mathieu-Daudé
  2025-02-13 18:46 ` [PULL 00/29] Misc HW patches for 2025-02-12 Stefan Hajnoczi
  2 siblings, 0 replies; 5+ messages in thread
From: Philippe Mathieu-Daudé @ 2025-02-12 15:54 UTC (permalink / raw)
  To: qemu-devel; +Cc: Philippe Mathieu-Daudé, Richard Henderson

Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Message-Id: <20250210133134.90879-7-philmd@linaro.org>
---
 hw/isa/vt82c686.c     | 2 +-
 hw/rtc/m48t59-isa.c   | 2 +-
 hw/rtc/m48t59.c       | 2 +-
 hw/sensor/tmp421.c    | 2 +-
 hw/usb/hcd-ehci-pci.c | 2 +-
 hw/usb/hcd-uhci.c     | 2 +-
 6 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/hw/isa/vt82c686.c b/hw/isa/vt82c686.c
index 6f44b381a5f..43bd67eeef2 100644
--- a/hw/isa/vt82c686.c
+++ b/hw/isa/vt82c686.c
@@ -224,7 +224,7 @@ static void via_pm_class_init(ObjectClass *klass, void *data)
 {
     DeviceClass *dc = DEVICE_CLASS(klass);
     PCIDeviceClass *k = PCI_DEVICE_CLASS(klass);
-    ViaPMInitInfo *info = data;
+    const ViaPMInitInfo *info = data;
 
     k->realize = via_pm_realize;
     k->config_write = pm_write_config;
diff --git a/hw/rtc/m48t59-isa.c b/hw/rtc/m48t59-isa.c
index 38bc8dcf100..9c3855a3ef1 100644
--- a/hw/rtc/m48t59-isa.c
+++ b/hw/rtc/m48t59-isa.c
@@ -129,7 +129,7 @@ static void m48txx_isa_class_init(ObjectClass *klass, void *data)
 static void m48txx_isa_concrete_class_init(ObjectClass *klass, void *data)
 {
     M48txxISADeviceClass *u = M48TXX_ISA_CLASS(klass);
-    M48txxInfo *info = data;
+    const M48txxInfo *info = data;
 
     u->info = *info;
 }
diff --git a/hw/rtc/m48t59.c b/hw/rtc/m48t59.c
index c9bd6f878fe..3fb2f27d9d1 100644
--- a/hw/rtc/m48t59.c
+++ b/hw/rtc/m48t59.c
@@ -639,7 +639,7 @@ static void m48txx_sysbus_class_init(ObjectClass *klass, void *data)
 static void m48txx_sysbus_concrete_class_init(ObjectClass *klass, void *data)
 {
     M48txxSysBusDeviceClass *u = M48TXX_SYS_BUS_CLASS(klass);
-    M48txxInfo *info = data;
+    const M48txxInfo *info = data;
 
     u->info = *info;
 }
diff --git a/hw/sensor/tmp421.c b/hw/sensor/tmp421.c
index 82e604279c5..007f7cd018b 100644
--- a/hw/sensor/tmp421.c
+++ b/hw/sensor/tmp421.c
@@ -68,7 +68,7 @@ struct TMP421State {
 
 struct TMP421Class {
     I2CSlaveClass parent_class;
-    DeviceInfo *dev;
+    const DeviceInfo *dev;
 };
 
 #define TYPE_TMP421 "tmp421-generic"
diff --git a/hw/usb/hcd-ehci-pci.c b/hw/usb/hcd-ehci-pci.c
index d410c38a8a2..e00316721ac 100644
--- a/hw/usb/hcd-ehci-pci.c
+++ b/hw/usb/hcd-ehci-pci.c
@@ -182,7 +182,7 @@ static void ehci_data_class_init(ObjectClass *klass, void *data)
 {
     PCIDeviceClass *k = PCI_DEVICE_CLASS(klass);
     DeviceClass *dc = DEVICE_CLASS(klass);
-    EHCIPCIInfo *i = data;
+    const EHCIPCIInfo *i = data;
 
     k->vendor_id = i->vendor_id;
     k->device_id = i->device_id;
diff --git a/hw/usb/hcd-uhci.c b/hw/usb/hcd-uhci.c
index 8528d493d63..0561a6d801a 100644
--- a/hw/usb/hcd-uhci.c
+++ b/hw/usb/hcd-uhci.c
@@ -1289,7 +1289,7 @@ void uhci_data_class_init(ObjectClass *klass, void *data)
     PCIDeviceClass *k = PCI_DEVICE_CLASS(klass);
     DeviceClass *dc = DEVICE_CLASS(klass);
     UHCIPCIDeviceClass *u = UHCI_CLASS(klass);
-    UHCIInfo *info = data;
+    const UHCIInfo *info = data;
 
     k->realize = info->realize ? info->realize : usb_uhci_common_realize;
     k->exit = info->unplug ? usb_uhci_exit : NULL;
-- 
2.47.1



^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [PULL 29/29] hw: Make class data 'const'
  2025-02-12 15:54 [PULL 00/29] Misc HW patches for 2025-02-12 Philippe Mathieu-Daudé
  2025-02-12 15:54 ` [PULL 28/29] hw: Declare various const data as 'const' Philippe Mathieu-Daudé
@ 2025-02-12 15:54 ` Philippe Mathieu-Daudé
  2025-02-13 18:46 ` [PULL 00/29] Misc HW patches for 2025-02-12 Stefan Hajnoczi
  2 siblings, 0 replies; 5+ messages in thread
From: Philippe Mathieu-Daudé @ 2025-02-12 15:54 UTC (permalink / raw)
  To: qemu-devel; +Cc: Philippe Mathieu-Daudé, Richard Henderson

When the %data argument is not modified, we can declare it const.

Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Message-Id: <20250210133134.90879-8-philmd@linaro.org>
---
 hw/sd/sdhci-internal.h   | 2 +-
 hw/sd/sdhci.c            | 2 +-
 hw/sensor/emc141x.c      | 2 +-
 hw/sensor/isl_pmbus_vr.c | 2 +-
 4 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/hw/sd/sdhci-internal.h b/hw/sd/sdhci-internal.h
index 5f3765f12d2..9f768c418e0 100644
--- a/hw/sd/sdhci-internal.h
+++ b/hw/sd/sdhci-internal.h
@@ -322,6 +322,6 @@ void sdhci_initfn(SDHCIState *s);
 void sdhci_uninitfn(SDHCIState *s);
 void sdhci_common_realize(SDHCIState *s, Error **errp);
 void sdhci_common_unrealize(SDHCIState *s);
-void sdhci_common_class_init(ObjectClass *klass, void *data);
+void sdhci_common_class_init(ObjectClass *klass, const void *data);
 
 #endif
diff --git a/hw/sd/sdhci.c b/hw/sd/sdhci.c
index 99dd4a4e952..1f45a77566c 100644
--- a/hw/sd/sdhci.c
+++ b/hw/sd/sdhci.c
@@ -1542,7 +1542,7 @@ const VMStateDescription sdhci_vmstate = {
     },
 };
 
-void sdhci_common_class_init(ObjectClass *klass, void *data)
+void sdhci_common_class_init(ObjectClass *klass, const void *data)
 {
     DeviceClass *dc = DEVICE_CLASS(klass);
 
diff --git a/hw/sensor/emc141x.c b/hw/sensor/emc141x.c
index aeccd2a3c94..33c1bd330fd 100644
--- a/hw/sensor/emc141x.c
+++ b/hw/sensor/emc141x.c
@@ -265,7 +265,7 @@ static void emc141x_initfn(Object *obj)
                         emc141x_set_temperature, NULL, NULL);
 }
 
-static void emc141x_class_init(ObjectClass *klass, void *data)
+static void emc141x_class_init(ObjectClass *klass, const void *data)
 {
     DeviceClass *dc = DEVICE_CLASS(klass);
     I2CSlaveClass *k = I2C_SLAVE_CLASS(klass);
diff --git a/hw/sensor/isl_pmbus_vr.c b/hw/sensor/isl_pmbus_vr.c
index 304a66ea8b0..c60282cfe77 100644
--- a/hw/sensor/isl_pmbus_vr.c
+++ b/hw/sensor/isl_pmbus_vr.c
@@ -233,7 +233,7 @@ static void raa228000_init(Object *obj)
     isl_pmbus_vr_add_props(obj, flags, 1);
 }
 
-static void isl_pmbus_vr_class_init(ObjectClass *klass, void *data,
+static void isl_pmbus_vr_class_init(ObjectClass *klass, const void *data,
                                     uint8_t pages)
 {
     PMBusDeviceClass *k = PMBUS_DEVICE_CLASS(klass);
-- 
2.47.1



^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [PULL 00/29] Misc HW patches for 2025-02-12
  2025-02-12 15:54 [PULL 00/29] Misc HW patches for 2025-02-12 Philippe Mathieu-Daudé
  2025-02-12 15:54 ` [PULL 28/29] hw: Declare various const data as 'const' Philippe Mathieu-Daudé
  2025-02-12 15:54 ` [PULL 29/29] hw: Make class data 'const' Philippe Mathieu-Daudé
@ 2025-02-13 18:46 ` Stefan Hajnoczi
  2025-02-13 20:07   ` Philippe Mathieu-Daudé
  2 siblings, 1 reply; 5+ messages in thread
From: Stefan Hajnoczi @ 2025-02-13 18:46 UTC (permalink / raw)
  To: Philippe Mathieu-Daudé; +Cc: qemu-devel

On Wed, Feb 12, 2025 at 10:54 AM Philippe Mathieu-Daudé
<philmd@linaro.org> wrote:
>
> The following changes since commit f9edf32ea2e18a56de5d92f57e9d10565c822367:
>
>   Merge tag 'pull-request-2025-02-11' of https://gitlab.com/thuth/qemu into staging (2025-02-11 13:27:32 -0500)
>
> are available in the Git repository at:
>
>   https://github.com/philmd/qemu.git tags/hw-misc-20250212
>
> for you to fetch changes up to b374adcae577dddfe6cfd404985014fdd2443428:
>
>   hw: Make class data 'const' (2025-02-12 15:39:46 +0100)
>
> Since 2025-02-10: Dropped MicroBlaze endianness patches, added constify.
>
> ----------------------------------------------------------------
> Misc HW patches
>
> - Use qemu_hexdump_line() in TPM backend (Philippe)
> - Remove magic number in APIC (Phil)
> - Disable thread-level cache topology (Zhao)
> - Xen QOM style cleanups (Bernhard)
> - Introduce TYPE_DYNAMIC_SYS_BUS_DEVICE (Philippe)
> - Invert logic of machine no_sdcard flag (Philippe)
> - Housekeeping in MicroBlaze functional tests (Philippe)

Please take a look at this CI failure:
https://gitlab.com/qemu-project/qemu/-/jobs/9133190122#L949

Thanks,
Stefan

> - Prevent out-of-bound access in SMC91C111 RX path (Peter)
> - Declare more fields / arguments as const (Philippe)
>
> ----------------------------------------------------------------
>
> Bernhard Beschow (1):
>   hw/xen: Prefer QOM cast for XenLegacyDevice
>
> Peter Maydell (1):
>   hw/net/smc91c111: Ignore attempt to pop from empty RX fifo
>
> Phil Dennis-Jordan (1):
>   hw/intc/apic: Fixes magic number use, removes outdated comment
>
> Philippe Mathieu-Daudé (25):
>   backends/tpm: Use qemu_hexdump_line() to avoid sprintf()
>   hw/arm/xlnx-zynqmp: Use &error_abort for programming errors
>   hw/sysbus: Use sizeof(BusState) in main_system_bus_create()
>   hw/sysbus: Declare QOM types using DEFINE_TYPES() macro
>   hw/sysbus: Introduce TYPE_DYNAMIC_SYS_BUS_DEVICE
>   hw/vfio: Have VFIO_PLATFORM devices inherit from
>     DYNAMIC_SYS_BUS_DEVICE
>   hw/display: Have RAMFB device inherit from DYNAMIC_SYS_BUS_DEVICE
>   hw/i386: Have X86_IOMMU devices inherit from DYNAMIC_SYS_BUS_DEVICE
>   hw/net: Have eTSEC device inherit from DYNAMIC_SYS_BUS_DEVICE
>   hw/tpm: Have TPM TIS sysbus device inherit from DYNAMIC_SYS_BUS_DEVICE
>   hw/xen: Have legacy Xen backend inherit from DYNAMIC_SYS_BUS_DEVICE
>   hw/boards: Convert no_sdcard flag to OnOffAuto tri-state
>   hw/boards: Explicit no_sdcard=false as ON_OFF_AUTO_OFF
>   hw/boards: Rename no_sdcard -> auto_create_sdcard
>   hw/boards: Do not create unusable default if=sd drives
>   hw/arm: Remove all invalid uses of auto_create_sdcard=true
>   hw/riscv: Remove all invalid uses of auto_create_sdcard=true
>   hw/boards: Ensure machine setting auto_create_sdcard expose a SD Bus
>   hw/riscv/opentitan: Include missing 'exec/address-spaces.h' header
>   tests/functional: Explicit endianness of microblaze assets
>   tests/functional: Allow microblaze tests to take a machine name
>     argument
>   tests/functional: Remove sleep() kludges from microblaze tests
>   tests/functional: Have microblaze tests inherit common parent class
>   hw: Declare various const data as 'const'
>   hw: Make class data 'const'
>
> Zhao Liu (1):
>   hw/core/machine: Reject thread level cache
>
>  hw/sd/sdhci-internal.h                        |  2 +-
>  include/hw/boards.h                           |  2 +-
>  include/hw/sysbus.h                           |  2 +
>  include/hw/xen/xen_pvdev.h                    |  5 +-
>  backends/tpm/tpm_util.c                       | 24 ++++----
>  hw/arm/aspeed.c                               | 20 +++++++
>  hw/arm/bananapi_m2u.c                         |  1 +
>  hw/arm/cubieboard.c                           |  1 +
>  hw/arm/exynos4_boards.c                       |  2 +
>  hw/arm/fby35.c                                |  1 +
>  hw/arm/imx25_pdk.c                            |  1 +
>  hw/arm/integratorcp.c                         |  1 +
>  hw/arm/mcimx6ul-evk.c                         |  1 +
>  hw/arm/mcimx7d-sabre.c                        |  1 +
>  hw/arm/npcm7xx_boards.c                       |  5 ++
>  hw/arm/omap_sx1.c                             |  2 +
>  hw/arm/orangepi.c                             |  1 +
>  hw/arm/raspi.c                                |  5 ++
>  hw/arm/raspi4b.c                              |  1 +
>  hw/arm/realview.c                             |  4 ++
>  hw/arm/sabrelite.c                            |  1 +
>  hw/arm/stellaris.c                            |  1 +
>  hw/arm/versatilepb.c                          |  2 +
>  hw/arm/vexpress.c                             |  2 +
>  hw/arm/xilinx_zynq.c                          |  1 -
>  hw/arm/xlnx-versal-virt.c                     |  1 +
>  hw/arm/xlnx-zcu102.c                          |  1 +
>  hw/arm/xlnx-zynqmp.c                          | 38 ++++--------
>  hw/core/machine-smp.c                         |  7 +++
>  hw/core/null-machine.c                        |  1 -
>  hw/core/sysbus.c                              | 54 ++++++++++-------
>  hw/display/ramfb-standalone.c                 |  3 +-
>  hw/i386/amd_iommu.c                           |  2 -
>  hw/i386/intel_iommu.c                         |  2 -
>  hw/i386/x86-iommu.c                           |  2 +-
>  hw/intc/apic.c                                |  3 +-
>  hw/isa/vt82c686.c                             |  2 +-
>  hw/net/fsl_etsec/etsec.c                      |  4 +-
>  hw/net/smc91c111.c                            |  9 +++
>  hw/riscv/microchip_pfsoc.c                    |  1 +
>  hw/riscv/opentitan.c                          |  1 +
>  hw/riscv/sifive_u.c                           |  1 +
>  hw/rtc/m48t59-isa.c                           |  2 +-
>  hw/rtc/m48t59.c                               |  2 +-
>  hw/s390x/s390-virtio-ccw.c                    |  1 -
>  hw/sd/sdhci.c                                 |  2 +-
>  hw/sensor/emc141x.c                           |  2 +-
>  hw/sensor/isl_pmbus_vr.c                      |  2 +-
>  hw/sensor/tmp421.c                            |  2 +-
>  hw/tpm/tpm_tis_sysbus.c                       |  3 +-
>  hw/usb/hcd-ehci-pci.c                         |  2 +-
>  hw/usb/hcd-uhci.c                             |  2 +-
>  hw/usb/xen-usb.c                              |  6 +-
>  hw/vfio/amd-xgbe.c                            |  2 -
>  hw/vfio/calxeda-xgmac.c                       |  2 -
>  hw/vfio/platform.c                            |  4 +-
>  hw/xen/xen-legacy-backend.c                   |  9 +--
>  hw/xen/xen_pvdev.c                            |  2 +-
>  system/vl.c                                   | 24 ++++++--
>  .../functional/test_microblaze_s3adsp1800.py  | 34 +++++++++--
>  .../test_microblazeel_s3adsp1800.py           | 32 ++--------
>  tests/qemu-iotests/172.out                    | 60 -------------------
>  62 files changed, 211 insertions(+), 205 deletions(-)
>
> --
> 2.47.1
>
>


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PULL 00/29] Misc HW patches for 2025-02-12
  2025-02-13 18:46 ` [PULL 00/29] Misc HW patches for 2025-02-12 Stefan Hajnoczi
@ 2025-02-13 20:07   ` Philippe Mathieu-Daudé
  0 siblings, 0 replies; 5+ messages in thread
From: Philippe Mathieu-Daudé @ 2025-02-13 20:07 UTC (permalink / raw)
  To: Stefan Hajnoczi; +Cc: qemu-devel, Daniel P. Berrangé, Thomas Huth

On 13/2/25 19:46, Stefan Hajnoczi wrote:
> On Wed, Feb 12, 2025 at 10:54 AM Philippe Mathieu-Daudé
> <philmd@linaro.org> wrote:
>>
>> The following changes since commit f9edf32ea2e18a56de5d92f57e9d10565c822367:
>>
>>    Merge tag 'pull-request-2025-02-11' of https://gitlab.com/thuth/qemu into staging (2025-02-11 13:27:32 -0500)
>>
>> are available in the Git repository at:
>>
>>    https://github.com/philmd/qemu.git tags/hw-misc-20250212
>>
>> for you to fetch changes up to b374adcae577dddfe6cfd404985014fdd2443428:
>>
>>    hw: Make class data 'const' (2025-02-12 15:39:46 +0100)
>>
>> Since 2025-02-10: Dropped MicroBlaze endianness patches, added constify.
>>
>> ----------------------------------------------------------------
>> Misc HW patches
>>
>> - Use qemu_hexdump_line() in TPM backend (Philippe)
>> - Remove magic number in APIC (Phil)
>> - Disable thread-level cache topology (Zhao)
>> - Xen QOM style cleanups (Bernhard)
>> - Introduce TYPE_DYNAMIC_SYS_BUS_DEVICE (Philippe)
>> - Invert logic of machine no_sdcard flag (Philippe)
>> - Housekeeping in MicroBlaze functional tests (Philippe)
> 
> Please take a look at this CI failure:
> https://gitlab.com/qemu-project/qemu/-/jobs/9133190122#L949
> 
> Thanks,
> Stefan

Same error of previous PR. I'll drop the tests.

>>    tests/functional: Explicit endianness of microblaze assets
>>    tests/functional: Allow microblaze tests to take a machine name
>>      argument
>>    tests/functional: Remove sleep() kludges from microblaze tests
>>    tests/functional: Have microblaze tests inherit common parent class




^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2025-02-13 20:08 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-02-12 15:54 [PULL 00/29] Misc HW patches for 2025-02-12 Philippe Mathieu-Daudé
2025-02-12 15:54 ` [PULL 28/29] hw: Declare various const data as 'const' Philippe Mathieu-Daudé
2025-02-12 15:54 ` [PULL 29/29] hw: Make class data 'const' Philippe Mathieu-Daudé
2025-02-13 18:46 ` [PULL 00/29] Misc HW patches for 2025-02-12 Stefan Hajnoczi
2025-02-13 20:07   ` Philippe Mathieu-Daudé

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).