From: "Philippe Mathieu-Daudé" <philmd@linaro.org>
To: qemu-devel@nongnu.org
Cc: "Philippe Mathieu-Daudé" <philmd@linaro.org>
Subject: [PULL 00/29] Misc HW patches for 2024-12-31
Date: Tue, 31 Dec 2024 21:21:59 +0100 [thread overview]
Message-ID: <20241231202228.28819-1-philmd@linaro.org> (raw)
The following changes since commit 7c89e226f878539b633dde3fd9c9f061c34094e3:
Merge tag 'pull-request-2024-12-29' of https://gitlab.com/huth/qemu into staging (2024-12-29 03:25:41 -0500)
are available in the Git repository at:
https://github.com/philmd/qemu.git tags/hw-misc-20241231
for you to fetch changes up to c6f59e3b68abefc1f6942d4b4e3063d96d903b27:
hw/display/qxl: Do not use C99 // comments (2024-12-31 21:21:34 +0100)
Ignored checkpatch errors:
WARNING: added, moved or deleted file(s), does MAINTAINERS need updating?
(I asked Gustavo to fix that in a following patch)
----------------------------------------------------------------
Misc HW patches queue
- Allow more than 4 legacy IRQs on Generic PCI Express Bridge (Alexander)
- Add MMIO-based Inter-VM shared memory device 'ivshmem-flat' (Gustavo)
- Use UHCI register definitions (Guenter)
- Propagate CPU endianness to microblaze_load_kernel (Philippe)
- Mark x86/TriCore devices as little-endian, OpenRISC/SPARC as big (Philippe)
- Don't set callback_opaque NULL in fw_cfg_modify_bytes_read (Shameer)
- Simplify non-KVM checks on AMD IOMMU XTSup feature (Philippe)
- Trivial cleanups on xilinx_ethlite, vmcoreinfo, qxl (Philippe, Hyman)
- Move USB-HCD-XHCI msi/msix properties from NEC to superclass (Phil)
- Redesign of main thread event handling due to macOS Cocoa (Phil)
- Introduce ParavirtualizedGraphics.Framework support 'apple-gfx' (Phil)
- Pad short Ethernet frames on macOS vmnet (William)
----------------------------------------------------------------
Alexander Graf (1):
hw/pci-host/gpex: Allow more than 4 legacy IRQs
Guenter Roeck (2):
hw/usb/uhci: checkpatch cleanup
hw/usb/uhci: Introduce and use register defines
Gustavo Romero (2):
hw/misc/ivshmem-flat: Add ivshmem-flat device
hw/misc/ivshmem: Rename ivshmem to ivshmem-pci
Hyman Huang (1):
hw/display/qxl: Do not use C99 // comments
Phil Dennis-Jordan (8):
hw/block/virtio-blk: Replaces request free function with g_free
hw/usb/hcd-xhci-pci: Move msi/msix properties from NEC to superclass
hw/usb/hcd-xhci: Unimplemented/guest error logging for port MMIO
ui & main loop: Redesign of system-specific main thread event handling
hw/display/apple-gfx: Introduce ParavirtualizedGraphics.Framework
support
hw/display/apple-gfx: Adds PCI implementation
hw/display/apple-gfx: Adds configurable mode list
MAINTAINERS: Add myself as maintainer for apple-gfx, reviewer for HVF
Philippe Mathieu-Daudé (13):
hw/microblaze: Propagate CPU endianness to microblaze_load_kernel()
hw/i386: Mark devices as little-endian
hw/tricore: Mark devices as little-endian
hw/openrisc: Mark devices as big-endian
hw/sparc: Mark devices as big-endian
hw/net/xilinx_ethlite: Convert some debug logs to trace events
hw/net/xilinx_ethlite: Remove unuseful debug logs
hw/net/xilinx_ethlite: Update QOM style
hw/net/xilinx_ethlite: Correct maximum RX buffer size
hw/net/xilinx_ethlite: Rename rxbuf -> port_index
hw/misc/vmcoreinfo: Declare QOM type using DEFINE_TYPES macro
hw/misc/vmcoreinfo: Rename opaque pointer as 'opaque'
hw/i386/amd_iommu: Simplify non-KVM checks on XTSup feature
Shameer Kolothum (1):
fw_cfg: Don't set callback_opaque NULL in fw_cfg_modify_bytes_read()
William Hooper (1):
net/vmnet: Pad short Ethernet frames
MAINTAINERS | 7 +
docs/system/device-emulation.rst | 1 +
docs/system/devices/ivshmem-flat.rst | 33 +
meson.build | 4 +
hw/display/apple-gfx.h | 74 ++
hw/microblaze/boot.h | 4 +-
include/hw/misc/ivshmem-flat.h | 85 +++
include/hw/pci-host/gpex.h | 7 +-
include/hw/usb/uhci-regs.h | 11 +
include/qemu-main.h | 14 +-
hw/arm/sbsa-ref.c | 2 +-
hw/arm/virt.c | 2 +-
hw/block/virtio-blk.c | 43 +-
hw/display/qxl.c | 2 +-
hw/i386/amd_iommu.c | 11 +-
hw/i386/kvm/apic.c | 2 +-
hw/i386/microvm.c | 2 +-
hw/i386/pc.c | 4 +-
hw/i386/vapic.c | 2 +-
hw/i386/xen/xen_apic.c | 2 +-
hw/i386/xen/xen_platform.c | 2 +-
hw/loongarch/virt.c | 12 +-
hw/microblaze/boot.c | 8 +-
hw/microblaze/petalogix_ml605_mmu.c | 2 +-
hw/microblaze/petalogix_s3adsp1800_mmu.c | 2 +-
hw/microblaze/xlnx-zynqmp-pmu.c | 2 +-
hw/mips/loongson3_virt.c | 2 +-
hw/misc/ivshmem-flat.c | 459 ++++++++++++
hw/misc/{ivshmem.c => ivshmem-pci.c} | 0
hw/misc/vmcoreinfo.c | 29 +-
hw/net/xilinx_ethlite.c | 78 +-
hw/nvram/fw_cfg.c | 1 -
hw/openrisc/openrisc_sim.c | 2 +-
hw/openrisc/virt.c | 14 +-
hw/pci-host/gpex.c | 43 +-
hw/riscv/virt.c | 12 +-
hw/sparc/sun4m_iommu.c | 2 +-
hw/sparc64/sun4u.c | 2 +-
hw/tricore/tricore_testdevice.c | 2 +-
hw/usb/hcd-uhci.c | 122 ++--
hw/usb/hcd-xhci-nec.c | 2 -
hw/usb/hcd-xhci-pci.c | 6 +
hw/usb/hcd-xhci.c | 25 +-
hw/xen/xen-pvh-common.c | 2 +-
hw/xtensa/virt.c | 2 +-
system/main.c | 38 +-
tests/qtest/fuzz/fuzz.c | 1 +
ui/gtk.c | 4 +
ui/sdl2.c | 4 +
hw/display/Kconfig | 13 +
hw/display/apple-gfx-mmio.m | 285 ++++++++
hw/display/apple-gfx-pci.m | 157 ++++
hw/display/apple-gfx.m | 879 +++++++++++++++++++++++
hw/display/meson.build | 7 +
hw/display/trace-events | 30 +
hw/misc/Kconfig | 5 +
hw/misc/meson.build | 4 +-
hw/misc/trace-events | 16 +
hw/net/trace-events | 4 +
net/vmnet-common.m | 23 +-
ui/cocoa.m | 54 +-
61 files changed, 2413 insertions(+), 256 deletions(-)
create mode 100644 docs/system/devices/ivshmem-flat.rst
create mode 100644 hw/display/apple-gfx.h
create mode 100644 include/hw/misc/ivshmem-flat.h
create mode 100644 hw/misc/ivshmem-flat.c
rename hw/misc/{ivshmem.c => ivshmem-pci.c} (100%)
create mode 100644 hw/display/apple-gfx-mmio.m
create mode 100644 hw/display/apple-gfx-pci.m
create mode 100644 hw/display/apple-gfx.m
--
2.47.1
next reply other threads:[~2024-12-31 20:23 UTC|newest]
Thread overview: 38+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-12-31 20:21 Philippe Mathieu-Daudé [this message]
2024-12-31 20:22 ` [PULL 01/29] hw/pci-host/gpex: Allow more than 4 legacy IRQs Philippe Mathieu-Daudé
2024-12-31 20:22 ` [PULL 02/29] hw/misc/ivshmem-flat: Add ivshmem-flat device Philippe Mathieu-Daudé
2025-01-02 21:19 ` Philippe Mathieu-Daudé
2024-12-31 20:22 ` [PULL 03/29] hw/misc/ivshmem: Rename ivshmem to ivshmem-pci Philippe Mathieu-Daudé
2024-12-31 20:22 ` [PULL 04/29] hw/usb/uhci: checkpatch cleanup Philippe Mathieu-Daudé
2024-12-31 20:22 ` [PULL 05/29] hw/usb/uhci: Introduce and use register defines Philippe Mathieu-Daudé
2024-12-31 20:22 ` [PULL 06/29] hw/microblaze: Propagate CPU endianness to microblaze_load_kernel() Philippe Mathieu-Daudé
2024-12-31 20:22 ` [PULL 07/29] hw/i386: Mark devices as little-endian Philippe Mathieu-Daudé
2024-12-31 20:22 ` [PULL 08/29] hw/tricore: " Philippe Mathieu-Daudé
2024-12-31 20:22 ` [PULL 09/29] hw/openrisc: Mark devices as big-endian Philippe Mathieu-Daudé
2024-12-31 20:22 ` [PULL 10/29] hw/sparc: " Philippe Mathieu-Daudé
2024-12-31 20:22 ` [PULL 11/29] hw/net/xilinx_ethlite: Convert some debug logs to trace events Philippe Mathieu-Daudé
2024-12-31 20:22 ` [PULL 12/29] hw/net/xilinx_ethlite: Remove unuseful debug logs Philippe Mathieu-Daudé
2024-12-31 20:22 ` [PULL 13/29] hw/net/xilinx_ethlite: Update QOM style Philippe Mathieu-Daudé
2024-12-31 20:22 ` [PULL 14/29] hw/net/xilinx_ethlite: Correct maximum RX buffer size Philippe Mathieu-Daudé
2024-12-31 20:22 ` [PULL 15/29] hw/net/xilinx_ethlite: Rename rxbuf -> port_index Philippe Mathieu-Daudé
2024-12-31 20:22 ` [PULL 16/29] fw_cfg: Don't set callback_opaque NULL in fw_cfg_modify_bytes_read() Philippe Mathieu-Daudé
2024-12-31 20:22 ` [PULL 17/29] hw/misc/vmcoreinfo: Declare QOM type using DEFINE_TYPES macro Philippe Mathieu-Daudé
2024-12-31 20:22 ` [PULL 18/29] hw/misc/vmcoreinfo: Rename opaque pointer as 'opaque' Philippe Mathieu-Daudé
2024-12-31 20:22 ` [PULL 19/29] hw/i386/amd_iommu: Simplify non-KVM checks on XTSup feature Philippe Mathieu-Daudé
2024-12-31 20:22 ` [PULL 20/29] hw/block/virtio-blk: Replaces request free function with g_free Philippe Mathieu-Daudé
2024-12-31 20:22 ` [PULL 21/29] hw/usb/hcd-xhci-pci: Move msi/msix properties from NEC to superclass Philippe Mathieu-Daudé
2024-12-31 20:22 ` [PULL 22/29] hw/usb/hcd-xhci: Unimplemented/guest error logging for port MMIO Philippe Mathieu-Daudé
2024-12-31 20:22 ` [PULL 23/29] ui & main loop: Redesign of system-specific main thread event handling Philippe Mathieu-Daudé
2025-01-08 13:51 ` David Woodhouse
2025-04-01 11:18 ` Philippe Mathieu-Daudé
2025-04-01 11:30 ` Philippe Mathieu-Daudé
2025-04-01 11:43 ` David Woodhouse
2025-04-01 11:58 ` Philippe Mathieu-Daudé
2025-04-01 12:00 ` David Woodhouse
2024-12-31 20:22 ` [PULL 24/29] hw/display/apple-gfx: Introduce ParavirtualizedGraphics.Framework support Philippe Mathieu-Daudé
2024-12-31 20:22 ` [PULL 25/29] hw/display/apple-gfx: Adds PCI implementation Philippe Mathieu-Daudé
2024-12-31 20:22 ` [PULL 26/29] hw/display/apple-gfx: Adds configurable mode list Philippe Mathieu-Daudé
2024-12-31 20:22 ` [PULL 27/29] MAINTAINERS: Add myself as maintainer for apple-gfx, reviewer for HVF Philippe Mathieu-Daudé
2024-12-31 20:22 ` [PULL 28/29] net/vmnet: Pad short Ethernet frames Philippe Mathieu-Daudé
2024-12-31 20:22 ` [PULL 29/29] hw/display/qxl: Do not use C99 // comments Philippe Mathieu-Daudé
2025-01-01 23:41 ` [PULL 00/29] Misc HW patches for 2024-12-31 Stefan Hajnoczi
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=20241231202228.28819-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).