qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [PULL 00/45] Misc HW patches for 2025-10-21
@ 2025-10-21 20:46 Philippe Mathieu-Daudé
  2025-10-21 20:46 ` [PULL 01/45] hw/virtio/virtio-mem: Convert VIRTIO_MEM_USABLE_EXTENT to runtime Philippe Mathieu-Daudé
                   ` (45 more replies)
  0 siblings, 46 replies; 47+ messages in thread
From: Philippe Mathieu-Daudé @ 2025-10-21 20:46 UTC (permalink / raw)
  To: qemu-devel

The following changes since commit 3c0b42c68f98fb276fa248012642be8cbf2cab70:

  Merge tag 'pull-request-2025-10-21' of https://gitlab.com/thuth/qemu into staging (2025-10-21 08:59:35 -0500)

are available in the Git repository at:

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

for you to fetch changes up to 3365d7da6156d7db990490f6cae2dc89950ac920:

  docs: Update mentions of removed '-soundhw' command line option (2025-10-21 22:33:49 +0200)

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

- Replace compile-time checks by runtime ones to build virtio-mem.c once
- Cleanups in Raven PCI host bridge, audio and PC devices
- Allow machine dynamic registration of valid CPU types
- Introduce DEFINE_MACHINE_WITH_INTERFACE[_ARRAY]() macros
- Set DDR2 minimum write recovery time in EEPROM SPD
- Have PPCe500 machines abort gracefully when using invalid CPU
- Prevent buffer overflow in openrisc_sim_init()
- Pass PCI domain to Xen xc_physdev_map_pirq_msi()
- Fix register API leaks
- Simplify Xilinx CANFD model
- Unconditionally create System I/O on PReP machine
- Update documentation around '-soundhw' command line option

Various "WARNING: line over 80 characters" ignored.

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

BALATON Zoltan (6):
  hw/pci-host/raven: Simplify direct config access address decoding
  hw/pci-host/raven: Rename direct config access ops
  hw/pci-host/raven: Use correct parameter in direct access ops
  hw/boards: Extend DEFINE_MACHINE macro to cover more use cases
  hw/i2c/smbus_eeprom: Add minimum write recovery time for DDR2
  hw/ppc/prep: Always create prep-systemio

Bernhard Beschow (10):
  hw/timer/i8254: Add I/O trace events
  hw/audio/pcspk: Add I/O trace events
  hw/rtc/mc146818rtc: Convert CMOS_DPRINTF() into trace events
  hw/rtc/mc146818rtc: Use ARRAY_SIZE macro
  hw/rtc/mc146818rtc: Assert correct usage of
    mc146818rtc_set_cmos_data()
  hw/ide/ide-internal: Move dma_buf_commit() into ide "namespace"
  hw/i386/apic: Prefer APICCommonState over DeviceState
  hw/i386/apic: Ensure own APIC use in apic_msr_{read,write}
  hw/intc/apic: Pass APICCommonState to apic_register_{read,write}
  tests/qtest/ds1338-test: Reuse from_bcd()

Jan Kiszka (1):
  hw/openrisc/openrisc_sim: Avoid buffer overflow build error

Luc Michel (6):
  hw/core/register: remove the REGISTER device type
  hw/core/register: add the REGISTER_ARRAY type
  hw/core/register: remove the calls to `register_finalize_block'
  hw/core/register: remove the `register_finalize_block' function
  hw/net/can/xlnx-versal-canfd: refactor the banked registers logic
  hw/net/can/xlnx-versal-canfd: remove register API usage for banked
    regs

Marc-André Lureau (8):
  hw/audio: improve error reports
  hw/audio: rename model list function
  hw/audio: remove global pcspk
  hw/pcspk: use explicitly the required PIT types
  hw/pcspk: make 'pit' a class property
  hw/pcspk: check the "pit" is set
  hw/audio: replace AUD_log() usage
  docs: update -soundhw -> -device list

Philippe Mathieu-Daudé (10):
  hw/virtio/virtio-mem: Convert VIRTIO_MEM_USABLE_EXTENT to runtime
  hw/virtio/virtio-mem: Convert VIRTIO_MEM_HAS_LEGACY_GUESTS to runtime
  hw/virtio: Compile virtio-mem.c once
  hw/core: Filter machine list available for a particular target binary
  hw/core/machine: Allow dynamic registration of valid CPU types
  hw/core: Introduce MachineClass::get_default_cpu_type() helper
  hw/boards: Move DEFINE_MACHINE() definition closer to its doc string
  hw/boards: Introduce DEFINE_MACHINE_WITH_INTERFACE_ARRAY() macro
  qemu/target-info: Include missing 'qapi-types-common.h' header
  docs: Update mentions of removed '-soundhw' command line option

Roger Pau Monné (1):
  hw/xen: pass PCI domain to xc_physdev_map_pirq_msi()

Thomas Huth (2):
  hw/ppc/e500: Check for compatible CPU type instead of aborting
    ungracefully
  MAINTAINERS: Add missing machine name in the Alpha section

Vishal Chourasia (1):
  hw/ppc/spapr: Rename resize_hpt_err to errp

 MAINTAINERS                            |   1 +
 docs/qdev-device-use.txt               |  10 +-
 hw/ide/ide-internal.h                  |   2 +-
 include/hw/audio/soundhw.h             |   2 +-
 include/hw/boards.h                    |  60 +++-
 include/hw/i386/apic.h                 |  37 ++-
 include/hw/i386/apic_internal.h        |   7 +-
 include/hw/misc/xlnx-versal-crl.h      |   1 -
 include/hw/misc/xlnx-versal-xramc.h    |   1 -
 include/hw/misc/xlnx-zynqmp-apu-ctrl.h |   1 -
 include/hw/misc/xlnx-zynqmp-crf.h      |   1 -
 include/hw/net/xlnx-versal-canfd.h     |   8 -
 include/hw/nvram/xlnx-bbram.h          |   1 -
 include/hw/register.h                  |  25 +-
 include/hw/timer/i8254.h               |   4 +-
 include/qemu/target-info-impl.h        |   1 +
 target/i386/cpu.h                      |   5 +-
 target/i386/kvm/kvm_i386.h             |   2 +-
 target/i386/whpx/whpx-internal.h       |   4 +-
 hw/audio/ac97.c                        | 124 +++----
 hw/audio/adlib.c                       |  24 +-
 hw/audio/cs4231a.c                     |  44 +--
 hw/audio/es1370.c                      |  24 +-
 hw/audio/gus.c                         |  25 +-
 hw/audio/pcspk.c                       |  29 +-
 hw/audio/sb16.c                        | 115 ++++---
 hw/audio/soundhw.c                     |  21 +-
 hw/core/machine-qmp-cmds.c             |   4 +-
 hw/core/machine.c                      |  38 +++
 hw/core/register.c                     |  38 +--
 hw/i2c/smbus_eeprom.c                  |   1 +
 hw/i386/kvm/apic.c                     |   3 +-
 hw/i386/vapic.c                        |   2 +-
 hw/i386/x86-cpu.c                      |   2 +-
 hw/ide/ahci.c                          |   8 +-
 hw/ide/core.c                          |  10 +-
 hw/intc/apic.c                         | 126 +++----
 hw/intc/apic_common.c                  |  56 ++--
 hw/misc/xlnx-versal-crl.c              |  38 +--
 hw/misc/xlnx-versal-trng.c             |   1 -
 hw/misc/xlnx-versal-xramc.c            |  12 +-
 hw/misc/xlnx-zynqmp-apu-ctrl.c         |  12 +-
 hw/misc/xlnx-zynqmp-crf.c              |  12 +-
 hw/net/can/xlnx-versal-canfd.c         | 433 +++++++++----------------
 hw/nvram/xlnx-bbram.c                  |  13 +-
 hw/nvram/xlnx-versal-efuse-ctrl.c      |   1 -
 hw/nvram/xlnx-zynqmp-efuse.c           |   8 -
 hw/openrisc/openrisc_sim.c             |   3 +-
 hw/pci-host/raven.c                    |  40 +--
 hw/ppc/e500.c                          |   6 +-
 hw/ppc/prep.c                          |  17 +-
 hw/ppc/spapr.c                         |  16 +-
 hw/rtc/mc146818rtc.c                   |  20 +-
 hw/timer/i8254.c                       |   6 +
 hw/timer/i8254_common.c                |   6 +-
 hw/virtio/virtio-mem.c                 | 100 +++---
 hw/xen/xen_pt_msi.c                    |   1 +
 monitor/qemu-config-qmp.c              |   3 +-
 system/qdev-monitor.c                  |   4 +-
 system/vl.c                            |   7 +-
 target/i386/cpu-apic.c                 |  18 +-
 target/i386/cpu-dump.c                 |   2 +-
 target/i386/cpu.c                      |   2 +-
 target/i386/hvf/hvf.c                  |   4 +-
 target/i386/kvm/kvm.c                  |   2 +-
 target/i386/tcg/system/misc_helper.c   |   4 +-
 target/i386/whpx/whpx-apic.c           |   3 +-
 tests/qtest/ds1338-test.c              |  12 +-
 hw/audio/trace-events                  |   4 +
 hw/rtc/trace-events                    |   4 +
 hw/timer/trace-events                  |   4 +
 hw/virtio/meson.build                  |   2 +-
 72 files changed, 760 insertions(+), 927 deletions(-)

-- 
2.51.0



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

end of thread, other threads:[~2025-10-22 14:30 UTC | newest]

Thread overview: 47+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-10-21 20:46 [PULL 00/45] Misc HW patches for 2025-10-21 Philippe Mathieu-Daudé
2025-10-21 20:46 ` [PULL 01/45] hw/virtio/virtio-mem: Convert VIRTIO_MEM_USABLE_EXTENT to runtime Philippe Mathieu-Daudé
2025-10-21 20:46 ` [PULL 02/45] hw/virtio/virtio-mem: Convert VIRTIO_MEM_HAS_LEGACY_GUESTS " Philippe Mathieu-Daudé
2025-10-21 20:46 ` [PULL 03/45] hw/virtio: Compile virtio-mem.c once Philippe Mathieu-Daudé
2025-10-21 20:46 ` [PULL 04/45] hw/pci-host/raven: Simplify direct config access address decoding Philippe Mathieu-Daudé
2025-10-21 20:46 ` [PULL 05/45] hw/pci-host/raven: Rename direct config access ops Philippe Mathieu-Daudé
2025-10-21 20:46 ` [PULL 06/45] hw/pci-host/raven: Use correct parameter in direct " Philippe Mathieu-Daudé
2025-10-21 20:46 ` [PULL 07/45] hw/core: Filter machine list available for a particular target binary Philippe Mathieu-Daudé
2025-10-21 20:46 ` [PULL 08/45] hw/core/machine: Allow dynamic registration of valid CPU types Philippe Mathieu-Daudé
2025-10-21 20:46 ` [PULL 09/45] hw/core: Introduce MachineClass::get_default_cpu_type() helper Philippe Mathieu-Daudé
2025-10-21 20:46 ` [PULL 10/45] hw/boards: Move DEFINE_MACHINE() definition closer to its doc string Philippe Mathieu-Daudé
2025-10-21 20:46 ` [PULL 11/45] hw/boards: Extend DEFINE_MACHINE macro to cover more use cases Philippe Mathieu-Daudé
2025-10-21 20:46 ` [PULL 12/45] hw/boards: Introduce DEFINE_MACHINE_WITH_INTERFACE_ARRAY() macro Philippe Mathieu-Daudé
2025-10-21 20:46 ` [PULL 13/45] hw/i2c/smbus_eeprom: Add minimum write recovery time for DDR2 Philippe Mathieu-Daudé
2025-10-21 20:46 ` [PULL 14/45] hw/ppc/e500: Check for compatible CPU type instead of aborting ungracefully Philippe Mathieu-Daudé
2025-10-21 20:46 ` [PULL 15/45] hw/openrisc/openrisc_sim: Avoid buffer overflow build error Philippe Mathieu-Daudé
2025-10-21 20:46 ` [PULL 16/45] hw/xen: pass PCI domain to xc_physdev_map_pirq_msi() Philippe Mathieu-Daudé
2025-10-21 20:46 ` [PULL 17/45] hw/core/register: remove the REGISTER device type Philippe Mathieu-Daudé
2025-10-21 20:46 ` [PULL 18/45] hw/core/register: add the REGISTER_ARRAY type Philippe Mathieu-Daudé
2025-10-21 20:46 ` [PULL 19/45] hw/core/register: remove the calls to `register_finalize_block' Philippe Mathieu-Daudé
2025-10-21 20:46 ` [PULL 20/45] hw/core/register: remove the `register_finalize_block' function Philippe Mathieu-Daudé
2025-10-21 20:46 ` [PULL 21/45] hw/net/can/xlnx-versal-canfd: refactor the banked registers logic Philippe Mathieu-Daudé
2025-10-21 20:46 ` [PULL 22/45] hw/net/can/xlnx-versal-canfd: remove register API usage for banked regs Philippe Mathieu-Daudé
2025-10-21 20:46 ` [PULL 23/45] hw/ppc/prep: Always create prep-systemio Philippe Mathieu-Daudé
2025-10-21 20:46 ` [PULL 24/45] hw/timer/i8254: Add I/O trace events Philippe Mathieu-Daudé
2025-10-21 20:46 ` [PULL 25/45] hw/audio/pcspk: " Philippe Mathieu-Daudé
2025-10-21 20:46 ` [PULL 26/45] hw/rtc/mc146818rtc: Convert CMOS_DPRINTF() into " Philippe Mathieu-Daudé
2025-10-21 20:46 ` [PULL 27/45] hw/rtc/mc146818rtc: Use ARRAY_SIZE macro Philippe Mathieu-Daudé
2025-10-21 20:46 ` [PULL 28/45] hw/rtc/mc146818rtc: Assert correct usage of mc146818rtc_set_cmos_data() Philippe Mathieu-Daudé
2025-10-21 20:46 ` [PULL 29/45] hw/ide/ide-internal: Move dma_buf_commit() into ide "namespace" Philippe Mathieu-Daudé
2025-10-21 20:46 ` [PULL 30/45] hw/i386/apic: Prefer APICCommonState over DeviceState Philippe Mathieu-Daudé
2025-10-21 20:46 ` [PULL 31/45] hw/i386/apic: Ensure own APIC use in apic_msr_{read, write} Philippe Mathieu-Daudé
2025-10-21 20:46 ` [PULL 32/45] hw/intc/apic: Pass APICCommonState to apic_register_{read, write} Philippe Mathieu-Daudé
2025-10-21 20:46 ` [PULL 33/45] tests/qtest/ds1338-test: Reuse from_bcd() Philippe Mathieu-Daudé
2025-10-21 20:46 ` [PULL 34/45] hw/audio: improve error reports Philippe Mathieu-Daudé
2025-10-21 20:46 ` [PULL 35/45] hw/audio: rename model list function Philippe Mathieu-Daudé
2025-10-21 20:46 ` [PULL 36/45] hw/audio: remove global pcspk Philippe Mathieu-Daudé
2025-10-21 20:46 ` [PULL 37/45] hw/pcspk: use explicitly the required PIT types Philippe Mathieu-Daudé
2025-10-21 20:46 ` [PULL 38/45] hw/pcspk: make 'pit' a class property Philippe Mathieu-Daudé
2025-10-21 20:46 ` [PULL 39/45] hw/pcspk: check the "pit" is set Philippe Mathieu-Daudé
2025-10-21 20:46 ` [PULL 40/45] hw/audio: replace AUD_log() usage Philippe Mathieu-Daudé
2025-10-21 20:46 ` [PULL 41/45] hw/ppc/spapr: Rename resize_hpt_err to errp Philippe Mathieu-Daudé
2025-10-21 20:46 ` [PULL 42/45] qemu/target-info: Include missing 'qapi-types-common.h' header Philippe Mathieu-Daudé
2025-10-21 20:46 ` [PULL 43/45] MAINTAINERS: Add missing machine name in the Alpha section Philippe Mathieu-Daudé
2025-10-21 20:46 ` [PULL 44/45] docs: update -soundhw -> -device list Philippe Mathieu-Daudé
2025-10-21 20:46 ` [PULL 45/45] docs: Update mentions of removed '-soundhw' command line option Philippe Mathieu-Daudé
2025-10-22 14:29 ` [PULL 00/45] Misc HW patches for 2025-10-21 Richard Henderson

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