qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: "Philippe Mathieu-Daudé" <philmd@linaro.org>
To: qemu-devel@nongnu.org
Cc: "Philippe Mathieu-Daudé" <philmd@linaro.org>
Subject: [PULL 00/23] Misc HW patches for 2025-10-28
Date: Tue, 28 Oct 2025 08:48:36 +0100	[thread overview]
Message-ID: <20251028074901.22062-1-philmd@linaro.org> (raw)

The following changes since commit 36076d24f04ea9dc3357c0fbe7bb14917375819c:

  Merge tag 'next-pr-pull-request' of https://gitlab.com/berrange/qemu into staging (2025-10-25 10:42:55 +0200)

are available in the Git repository at:

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

for you to fetch changes up to 7dbe2d7df094aa8af2d8fcdf08fccce70b1ca5bc:

  hw/riscv: Widen OpenSBI dynamic info struct (2025-10-28 08:19:18 +0100)

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

Various fixes and cleanups:
- Set FPCR exception flag bits for HPPA non-trapped exceptions
- Convert VirtIONet::vlans from pointer to array
  and remove VMSTATE_BUFFER_POINTER_UNSAFE()
- Remove redundant QOM typedef when OBJECT_DECLARE_SIMPLE_TYPE() is used
- Have various QDev / SysBus helpers take a const device argument
- Improve errors when loaders parse images
- Remove IntelIOMMUState::dma_translation leftover
- Remove most target_[u]long uses in hw/riscv/
- Fix DS1225Y MemoryRegion owner
- Simplification refactors on Raven PCI Host Bridge
----------------------------------------------------------------

Akihiko Odaki (1):
  nw/nvram/ds1225y: Fix nvram MemoryRegion owner

Anton Johansson (2):
  hw/riscv: Use generic hwaddr for firmware addresses
  hw/riscv: Widen OpenSBI dynamic info struct

BALATON Zoltan (5):
  hw/pci-host/raven: Simplify creating PCI facing part
  hw/pci-host/raven: Simplify PCI facing part
  hw/pci-host/raven: Simplify host bridge type declaration
  hw/pci-host/raven: Use DEFINE_TYPES macro
  hw/pci-host/raven: Simplify PCI bus creation

Clément Mathieu--Drif (1):
  hw/i386/intel_iommu: Remove an unused state field

Michael Tokarev (2):
  hw/net/virtio-net: make VirtIONet.vlans an array instead of a pointer
  migration/vmstate: remove VMSTATE_BUFFER_POINTER_UNSAFE macro

Nguyen Dinh Phi (1):
  qom: remove redundant typedef when use OBJECT_DECLARE_SIMPLE_TYPE

Peter Maydell (1):
  target/hppa: Set FPCR exception flag bits for non-trapped exceptions

Philippe Mathieu-Daudé (4):
  hw/qdev: Have qdev_get_gpio_out_connector() take const DeviceState arg
  hw/sysbus: Have various helpers take a const SysBusDevice argument
  hw/uefi: Include missing 'system/memory.h' header
  hw/int/loongarch: Include missing 'system/memory.h' header

Vishal Chourasia (6):
  hw/core/loader: Use qemu_open() instead of open() in get_image_size()
  hw/core/loader: capture Error from load_image_targphys
  hw/core/loader: improve error handling in image loading functions
  hw/core/loader: add check for zero size in load_image_targphys_as
  hw/core/loader: Pass errp to load_image_targphys_as()
  hw/ppc: Pass error_fatal to load_image_targphys()

 hw/net/fsl_etsec/etsec.h                  |   1 -
 include/hw/char/serial.h                  |   1 -
 include/hw/i386/intel_iommu.h             |   1 -
 include/hw/input/lasips2.h                |   6 +-
 include/hw/intc/loongarch_dintc.h         |   2 +-
 include/hw/intc/loongarch_extioi_common.h |   1 +
 include/hw/intc/loongarch_pch_msi.h       |   1 +
 include/hw/intc/loongarch_pic_common.h    |   1 +
 include/hw/intc/loongson_ipi_common.h     |   1 +
 include/hw/loader.h                       |   8 +-
 include/hw/misc/auxbus.h                  |   7 +-
 include/hw/misc/bcm2835_mphi.h            |   7 +-
 include/hw/misc/npcm7xx_pwm.h             |   7 +-
 include/hw/pci-host/pnv_phb3.h            |   6 +-
 include/hw/pci-host/pnv_phb4.h            |   8 +-
 include/hw/ppc/mac_dbdma.h                |   7 +-
 include/hw/qdev-core.h                    |   3 +-
 include/hw/riscv/boot.h                   |  18 ++--
 include/hw/riscv/boot_opensbi.h           |  14 +--
 include/hw/riscv/iommu.h                  |   3 -
 include/hw/scsi/scsi.h                    |   7 +-
 include/hw/sysbus.h                       |  10 +--
 include/hw/uefi/var-service.h             |   1 +
 include/hw/vfio/vfio-container-legacy.h   |   5 +-
 include/hw/virtio/virtio-net.h            |   2 +-
 include/hw/virtio/virtio-serial.h         |   5 +-
 include/migration/vmstate.h               |   9 --
 include/net/can_emu.h                     |   7 +-
 backends/cryptodev-lkcf.c                 |   1 -
 hw/alpha/dp264.c                          |   4 +-
 hw/arm/armv7m.c                           |   2 +-
 hw/arm/boot.c                             |   5 +-
 hw/arm/digic_boards.c                     |   2 +-
 hw/arm/highbank.c                         |   3 +-
 hw/arm/raspi.c                            |   2 +-
 hw/arm/vexpress.c                         |   2 +-
 hw/char/ipoctal232.c                      |   9 +-
 hw/char/xen_console.c                     |   1 -
 hw/core/generic-loader.c                  |   5 +-
 hw/core/gpio.c                            |   3 +-
 hw/core/guest-loader.c                    |   4 +-
 hw/core/loader.c                          |  42 ++++++---
 hw/core/sysbus.c                          |  10 +--
 hw/dma/pl330.c                            |   6 +-
 hw/hppa/machine.c                         |   5 +-
 hw/i386/multiboot.c                       |   2 +-
 hw/i386/x86-common.c                      |   4 +-
 hw/ipmi/ipmi_bmc_sim.c                    |   2 +-
 hw/loongarch/boot.c                       |   5 +-
 hw/m68k/an5206.c                          |   2 +-
 hw/m68k/mcf5208.c                         |   4 +-
 hw/m68k/next-cube.c                       |   2 +-
 hw/m68k/q800.c                            |   7 +-
 hw/m68k/virt.c                            |   4 +-
 hw/microblaze/boot.c                      |   5 +-
 hw/mips/boston.c                          |   2 +-
 hw/mips/fuloong2e.c                       |   9 +-
 hw/mips/jazz.c                            |   2 +-
 hw/mips/loongson3_virt.c                  |  10 ++-
 hw/mips/malta.c                           |   9 +-
 hw/net/virtio-net.c                       |   9 +-
 hw/net/xen_nic.c                          |   2 -
 hw/nubus/nubus-device.c                   |   2 +-
 hw/nvram/ds1225y.c                        |   2 +-
 hw/openrisc/boot.c                        |   5 +-
 hw/pci-host/bonito.c                      |   7 +-
 hw/pci-host/raven.c                       | 105 +++++++---------------
 hw/pci/pci.c                              |   2 +-
 hw/ppc/amigaone.c                         |  13 +--
 hw/ppc/e500.c                             |  20 +----
 hw/ppc/mac_newworld.c                     |  19 ++--
 hw/ppc/mac_oldworld.c                     |  19 ++--
 hw/ppc/pef.c                              |   1 -
 hw/ppc/pegasos2.c                         |  10 +--
 hw/ppc/pnv.c                              |  27 ++----
 hw/ppc/ppc440_bamboo.c                    |   9 +-
 hw/ppc/prep.c                             |  19 ++--
 hw/ppc/sam460ex.c                         |   8 +-
 hw/ppc/spapr.c                            |  17 +---
 hw/ppc/virtex_ml507.c                     |  11 +--
 hw/riscv/boot.c                           |  49 +++++-----
 hw/riscv/microchip_pfsoc.c                |   2 +-
 hw/riscv/sifive_u.c                       |   2 +-
 hw/riscv/spike.c                          |   4 +-
 hw/riscv/virt.c                           |   2 +-
 hw/rx/rx-gdbsim.c                         |   2 +-
 hw/s390x/ipl.c                            |   8 +-
 hw/sh4/r2d.c                              |   8 +-
 hw/smbios/smbios.c                        |   2 +-
 hw/sparc/leon3.c                          |   4 +-
 hw/sparc/sun4m.c                          |   8 +-
 hw/sparc64/sun4u.c                        |   7 +-
 hw/usb/dev-mtp.c                          |   7 +-
 hw/usb/dev-uas.c                          |   7 +-
 hw/xtensa/xtfpga.c                        |   3 +-
 system/device_tree.c                      |   2 +-
 target/hppa/fpu_helper.c                  |   7 +-
 97 files changed, 321 insertions(+), 434 deletions(-)

-- 
2.51.0



             reply	other threads:[~2025-10-28  7:50 UTC|newest]

Thread overview: 27+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-10-28  7:48 Philippe Mathieu-Daudé [this message]
2025-10-28  7:48 ` [PULL 01/23] target/hppa: Set FPCR exception flag bits for non-trapped exceptions Philippe Mathieu-Daudé
2025-10-28  7:48 ` [PULL 02/23] qom: remove redundant typedef when use OBJECT_DECLARE_SIMPLE_TYPE Philippe Mathieu-Daudé
2025-10-28  7:48 ` [PULL 03/23] hw/net/virtio-net: make VirtIONet.vlans an array instead of a pointer Philippe Mathieu-Daudé
2025-12-09 12:15   ` Fiona Ebner
2025-12-09 20:07     ` Philippe Mathieu-Daudé
2025-10-28  7:48 ` [PULL 04/23] migration/vmstate: remove VMSTATE_BUFFER_POINTER_UNSAFE macro Philippe Mathieu-Daudé
2025-10-28  7:48 ` [PULL 05/23] hw/pci-host/raven: Simplify creating PCI facing part Philippe Mathieu-Daudé
2025-10-28  7:48 ` [PULL 06/23] hw/pci-host/raven: Simplify " Philippe Mathieu-Daudé
2025-10-28  7:48 ` [PULL 07/23] hw/pci-host/raven: Simplify host bridge type declaration Philippe Mathieu-Daudé
2025-10-28  7:48 ` [PULL 08/23] hw/pci-host/raven: Use DEFINE_TYPES macro Philippe Mathieu-Daudé
2025-10-28  7:48 ` [PULL 09/23] hw/pci-host/raven: Simplify PCI bus creation Philippe Mathieu-Daudé
2025-10-28  7:48 ` [PULL 10/23] hw/qdev: Have qdev_get_gpio_out_connector() take const DeviceState arg Philippe Mathieu-Daudé
2025-10-28  7:48 ` [PULL 11/23] hw/sysbus: Have various helpers take a const SysBusDevice argument Philippe Mathieu-Daudé
2025-10-28  7:48 ` [PULL 12/23] hw/uefi: Include missing 'system/memory.h' header Philippe Mathieu-Daudé
2025-10-28  7:48 ` [PULL 13/23] hw/int/loongarch: " Philippe Mathieu-Daudé
2025-10-28  7:48 ` [PULL 14/23] hw/core/loader: Use qemu_open() instead of open() in get_image_size() Philippe Mathieu-Daudé
2025-10-28  7:48 ` [PULL 15/23] hw/core/loader: capture Error from load_image_targphys Philippe Mathieu-Daudé
2025-10-28  7:48 ` [PULL 16/23] hw/core/loader: improve error handling in image loading functions Philippe Mathieu-Daudé
2025-10-28  7:48 ` [PULL 17/23] hw/core/loader: add check for zero size in load_image_targphys_as Philippe Mathieu-Daudé
2025-10-28  7:48 ` [PULL 18/23] hw/core/loader: Pass errp to load_image_targphys_as() Philippe Mathieu-Daudé
2025-10-28  7:48 ` [PULL 19/23] hw/ppc: Pass error_fatal to load_image_targphys() Philippe Mathieu-Daudé
2025-10-28  7:48 ` [PULL 20/23] nw/nvram/ds1225y: Fix nvram MemoryRegion owner Philippe Mathieu-Daudé
2025-10-28  7:48 ` [PULL 21/23] hw/i386/intel_iommu: Remove an unused state field Philippe Mathieu-Daudé
2025-10-28  7:48 ` [PULL 22/23] hw/riscv: Use generic hwaddr for firmware addresses Philippe Mathieu-Daudé
2025-10-28  7:48 ` [PULL 23/23] hw/riscv: Widen OpenSBI dynamic info struct Philippe Mathieu-Daudé
2025-10-28 12:12 ` [PULL 00/23] Misc HW patches for 2025-10-28 Richard Henderson

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20251028074901.22062-1-philmd@linaro.org \
    --to=philmd@linaro.org \
    --cc=qemu-devel@nongnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).