qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 0/8] edk2: update to edk2-stable202511
@ 2025-11-26 14:21 Gerd Hoffmann
  2025-11-26 14:21 ` [PATCH 1/8] tests/acpi: enable updates Gerd Hoffmann
                   ` (6 more replies)
  0 siblings, 7 replies; 11+ messages in thread
From: Gerd Hoffmann @ 2025-11-26 14:21 UTC (permalink / raw)
  To: qemu-devel
  Cc: Michael S. Tsirkin, Gerd Hoffmann, Igor Mammedov, Ani Sinha,
	Philippe Mathieu-Daudé

Update edk2 firmware images to latest upstream release.

Noteworthy edk2 upstream change is that 32-bit architectures (ia32 and
arm) are not supported any more, so the qemu builds of these are removed
too.

Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>

Gerd Hoffmann (8):
  tests/acpi: enable updates
  edk2: update build script
  edk2: update submodule to edk2-stable202511
  edk2: drop 32-bit build config (ia32 and arm), update aarch64 vars
  edk2: drop 32-bit binaries (ia32 and arm)
  edk2: update binaries to edk2-stable202511
  tests/acpi: update expected data files
  tests/acpi: disable updates

 roms/edk2-build.py                            |  21 +++++++--
 tests/qtest/bios-tables-test.c                |  28 +++++------
 pc-bios/descriptors/50-edk2-i386-secure.json  |  34 --------------
 pc-bios/descriptors/60-edk2-aarch64.json      |   2 +-
 pc-bios/descriptors/60-edk2-arm.json          |  31 ------------
 pc-bios/descriptors/60-edk2-i386.json         |  33 -------------
 pc-bios/descriptors/meson.build               |   3 --
 pc-bios/edk2-aarch64-code.fd.bz2              | Bin 1565763 -> 1662423 bytes
 ...m-vars.fd.bz2 => edk2-aarch64-vars.fd.bz2} | Bin
 pc-bios/edk2-arm-code.fd.bz2                  | Bin 1570311 -> 0 bytes
 pc-bios/edk2-i386-code.fd.bz2                 | Bin 1780004 -> 0 bytes
 pc-bios/edk2-i386-secure-code.fd.bz2          | Bin 1858666 -> 0 bytes
 pc-bios/edk2-i386-vars.fd.bz2                 | Bin 190 -> 0 bytes
 pc-bios/edk2-loongarch64-code.fd.bz2          | Bin 1148383 -> 1178146 bytes
 pc-bios/edk2-riscv-code.fd.bz2                | Bin 1296526 -> 1252448 bytes
 pc-bios/edk2-x86_64-code.fd.bz2               | Bin 1907255 -> 2138026 bytes
 pc-bios/edk2-x86_64-microvm.fd.bz2            | Bin 1787244 -> 1996414 bytes
 pc-bios/edk2-x86_64-secure-code.fd.bz2        | Bin 1962992 -> 2293816 bytes
 pc-bios/meson.build                           |   6 +--
 roms/edk2                                     |   2 +-
 roms/edk2-build.config                        |  44 ++----------------
 roms/edk2-version                             |   4 +-
 tests/data/acpi/aarch64/virt/HEST             | Bin 224 -> 224 bytes
 tests/data/acpi/aarch64/virt/SSDT.memhp       | Bin 1817 -> 1817 bytes
 24 files changed, 39 insertions(+), 169 deletions(-)
 delete mode 100644 pc-bios/descriptors/50-edk2-i386-secure.json
 delete mode 100644 pc-bios/descriptors/60-edk2-arm.json
 delete mode 100644 pc-bios/descriptors/60-edk2-i386.json
 rename pc-bios/{edk2-arm-vars.fd.bz2 => edk2-aarch64-vars.fd.bz2} (100%)
 delete mode 100644 pc-bios/edk2-arm-code.fd.bz2
 delete mode 100644 pc-bios/edk2-i386-code.fd.bz2
 delete mode 100644 pc-bios/edk2-i386-secure-code.fd.bz2
 delete mode 100644 pc-bios/edk2-i386-vars.fd.bz2

-- 
2.52.0



^ permalink raw reply	[flat|nested] 11+ messages in thread
* [PATCH 0/8] arm/virt: add usb support
@ 2020-10-23  7:10 Gerd Hoffmann
  2020-10-23  7:10 ` [PATCH 7/8] tests/acpi: update expected data files Gerd Hoffmann
  0 siblings, 1 reply; 11+ messages in thread
From: Gerd Hoffmann @ 2020-10-23  7:10 UTC (permalink / raw)
  To: qemu-devel
  Cc: Laurent Vivier, Peter Maydell, Thomas Huth, Eduardo Habkost,
	Sergio Lopez, Michael S. Tsirkin, Sai Pavan Boddu, Shannon Zhao,
	qemu-arm, Gerd Hoffmann, Paolo Bonzini, Igor Mammedov,
	Richard Henderson

Bring new microvm goodies to arm virt too.  Wire up
-machine usb=on, add sysbus-xhci in case it is enabled.

Gerd Hoffmann (8):
  tests/acpi: allow updates for expected data files
  tests/acpi: add empty tests/data/acpi/virt/DSDT.usb file
  arm/virt: add support for -machine usb=on
  arm/virt: add device tree node for xhci
  arm/virt: add acpi dsdt entry for xhci
  tests/acpi: add usb testcase for virt
  tests/acpi: update expected data files
  tests/acpi: disallow updates for expected data files

 include/hw/arm/virt.h            |   1 +
 hw/arm/virt-acpi-build.c         |   6 ++++++
 hw/arm/virt.c                    |  36 +++++++++++++++++++++++++++++++
 hw/usb/hcd-xhci-sysbus.c         |   2 ++
 tests/qtest/bios-tables-test.c   |  18 ++++++++++++++++
 hw/arm/Kconfig                   |   1 +
 tests/data/acpi/microvm/DSDT.usb | Bin 414 -> 426 bytes
 tests/data/acpi/virt/DSDT.usb    | Bin 0 -> 5257 bytes
 8 files changed, 64 insertions(+)
 create mode 100644 tests/data/acpi/virt/DSDT.usb

-- 
2.27.0




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

end of thread, other threads:[~2025-11-26 22:28 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-11-26 14:21 [PATCH 0/8] edk2: update to edk2-stable202511 Gerd Hoffmann
2025-11-26 14:21 ` [PATCH 1/8] tests/acpi: enable updates Gerd Hoffmann
2025-11-26 14:21 ` [PATCH 2/8] edk2: update build script Gerd Hoffmann
2025-11-26 14:21 ` [PATCH 3/8] edk2: update submodule to edk2-stable202511 Gerd Hoffmann
2025-11-26 14:21 ` [PATCH 4/8] edk2: drop 32-bit build config (ia32 and arm), update aarch64 vars Gerd Hoffmann
2025-11-26 15:08   ` Philippe Mathieu-Daudé
2025-11-26 14:21 ` [PATCH 7/8] tests/acpi: update expected data files Gerd Hoffmann
2025-11-26 22:28   ` Michael S. Tsirkin
2025-11-26 14:21 ` [PATCH 8/8] tests/acpi: disable updates Gerd Hoffmann
2025-11-26 15:11 ` [PATCH 0/8] edk2: update to edk2-stable202511 Philippe Mathieu-Daudé
  -- strict thread matches above, loose matches on Subject: below --
2020-10-23  7:10 [PATCH 0/8] arm/virt: add usb support Gerd Hoffmann
2020-10-23  7:10 ` [PATCH 7/8] tests/acpi: update expected data files Gerd Hoffmann

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