qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Richard Henderson <richard.henderson@linaro.org>
To: qemu-devel@nongnu.org
Subject: [PULL 00/19] target/arm patch queue
Date: Thu, 21 Oct 2021 08:25:22 -0700	[thread overview]
Message-ID: <20211021152541.781175-1-richard.henderson@linaro.org> (raw)

The following changes since commit afc9fcde55296b83f659de9da3cdf044812a6eeb:

  Merge remote-tracking branch 'remotes/mst/tags/for_upstream' into staging (2021-10-20 06:10:51 -0700)

are available in the Git repository at:

  https://gitlab.com/rth7680/qemu.git tags/pull-arm-20211021

for you to fetch changes up to f801789ff00f457044dcd91323316dbde42578d1:

  tests/data/acpi/virt: Update the empty expected file for PPTT (2021-10-21 08:04:15 -0700)

----------------------------------------------------------------
Introduce cpu topology support
Generate DBG2 table
Switch to ssize_t for elf loader return type
Fixed sbsa cpu type error message typo
Only initialize required submodules for edk2
Dont create device-tree node for empty NUMA node

----------------------------------------------------------------
Andrew Jones (2):
      hw/arm/virt: Add cpu-map to device tree
      hw/acpi/aml-build: Add PPTT table

Eric Auger (6):
      tests/acpi: Get prepared for IORT E.b revision upgrade
      hw/arm/virt-acpi-build: IORT upgrade up to revision E.b
      tests/acpi: Generate reference blob for IORT rev E.b
      tests/acpi: Add void table for virt/DBG2 bios-tables-test
      hw/arm/virt_acpi_build: Generate DBG2 table
      bios-tables-test: Generate reference table for virt/DBG2

Gavin Shan (1):
      hw/arm/virt: Don't create device-tree node for empty NUMA node

Luc Michel (1):
      hw/elf_ops.h: switch to ssize_t for elf loader return type

Philippe Mathieu-Daudé (2):
      roms/edk2: Only init brotli submodule to build BaseTools
      roms/edk2: Only initialize required submodules

Shuuichirou Ishii (1):
      hw/arm/sbsa-ref: Fixed cpu type error message typo.

Yanan Wang (6):
      hw/arm/virt: Only describe cpu topology since virt-6.2
      device_tree: Add qemu_fdt_add_path
      hw/acpi/aml-build: Add Processor hierarchy node structure
      tests/data/acpi/virt: Add an empty expected file for PPTT
      hw/arm/virt-acpi-build: Generate PPTT table
      tests/data/acpi/virt: Update the empty expected file for PPTT

 include/hw/acpi/aml-build.h       |   3 +
 include/hw/arm/virt.h             |   4 +-
 include/hw/elf_ops.h              |  27 ++++-----
 include/hw/loader.h               |  58 +++++++++----------
 include/sysemu/device_tree.h      |   1 +
 hw/acpi/aml-build.c               |  89 +++++++++++++++++++++++++++++
 hw/arm/boot.c                     |  13 +++++
 hw/arm/sbsa-ref.c                 |   2 +-
 hw/arm/virt-acpi-build.c          | 117 +++++++++++++++++++++++++++++++-------
 hw/arm/virt.c                     |  71 +++++++++++++++++++----
 hw/core/loader.c                  |  60 +++++++++----------
 softmmu/device_tree.c             |  44 +++++++++++++-
 .gitlab-ci.d/edk2.yml             |   6 +-
 roms/Makefile                     |   3 +-
 roms/Makefile.edk2                |   7 ++-
 scripts/make-release              |   7 ++-
 tests/data/acpi/virt/DBG2         | Bin 0 -> 87 bytes
 tests/data/acpi/virt/IORT         | Bin 124 -> 128 bytes
 tests/data/acpi/virt/IORT.memhp   | Bin 124 -> 128 bytes
 tests/data/acpi/virt/IORT.numamem | Bin 124 -> 128 bytes
 tests/data/acpi/virt/IORT.pxb     | Bin 124 -> 128 bytes
 tests/data/acpi/virt/PPTT         | Bin 0 -> 76 bytes
 22 files changed, 403 insertions(+), 109 deletions(-)
 create mode 100644 tests/data/acpi/virt/DBG2
 create mode 100644 tests/data/acpi/virt/PPTT


             reply	other threads:[~2021-10-21 15:47 UTC|newest]

Thread overview: 22+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-10-21 15:25 Richard Henderson [this message]
2021-10-21 15:25 ` [PULL 01/19] tests/acpi: Get prepared for IORT E.b revision upgrade Richard Henderson
2021-10-21 15:25 ` [PULL 02/19] hw/arm/virt-acpi-build: IORT upgrade up to revision E.b Richard Henderson
2021-10-21 15:25 ` [PULL 03/19] tests/acpi: Generate reference blob for IORT rev E.b Richard Henderson
2021-10-21 15:25 ` [PULL 04/19] hw/arm/virt: Don't create device-tree node for empty NUMA node Richard Henderson
2021-10-21 15:25 ` [PULL 05/19] roms/edk2: Only init brotli submodule to build BaseTools Richard Henderson
2021-10-21 15:25 ` [PULL 06/19] roms/edk2: Only initialize required submodules Richard Henderson
2021-10-21 15:25 ` [PULL 07/19] hw/arm/sbsa-ref: Fixed cpu type error message typo Richard Henderson
2021-10-21 15:25 ` [PULL 08/19] hw/elf_ops.h: switch to ssize_t for elf loader return type Richard Henderson
2021-10-21 15:25 ` [PULL 09/19] tests/acpi: Add void table for virt/DBG2 bios-tables-test Richard Henderson
2021-10-21 15:25 ` [PULL 10/19] hw/arm/virt_acpi_build: Generate DBG2 table Richard Henderson
2021-10-21 15:25 ` [PULL 11/19] bios-tables-test: Generate reference table for virt/DBG2 Richard Henderson
2021-10-21 15:25 ` [PULL 12/19] hw/arm/virt: Only describe cpu topology since virt-6.2 Richard Henderson
2021-10-21 15:25 ` [PULL 13/19] device_tree: Add qemu_fdt_add_path Richard Henderson
2021-10-21 15:25 ` [PULL 14/19] hw/arm/virt: Add cpu-map to device tree Richard Henderson
2021-10-21 15:25 ` [PULL 15/19] hw/acpi/aml-build: Add Processor hierarchy node structure Richard Henderson
2021-10-21 15:25 ` [PULL 16/19] hw/acpi/aml-build: Add PPTT table Richard Henderson
2021-10-21 15:25 ` [PULL 17/19] tests/data/acpi/virt: Add an empty expected file for PPTT Richard Henderson
2021-10-21 15:25 ` [PULL 18/19] hw/arm/virt-acpi-build: Generate PPTT table Richard Henderson
2021-10-21 15:25 ` [PULL 19/19] tests/data/acpi/virt: Update the empty expected file for PPTT Richard Henderson
2021-10-21 19:19 ` [PULL 00/19] target/arm patch queue Richard Henderson
  -- strict thread matches above, loose matches on Subject: below --
2021-10-21 15:22 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=20211021152541.781175-1-richard.henderson@linaro.org \
    --to=richard.henderson@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).