All of lore.kernel.org
 help / color / mirror / Atom feed
* [PULL 00/19] target/arm patch queue
@ 2021-10-21 15:22 Richard Henderson
  0 siblings, 0 replies; 3+ messages in thread
From: Richard Henderson @ 2021-10-21 15:22 UTC (permalink / raw)
  To: qemu-devel

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


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

* Re: [PULL 00/19] target/arm patch queue
  2021-10-21 15:25 Richard Henderson
@ 2021-10-21 19:19 ` Richard Henderson
  0 siblings, 0 replies; 3+ messages in thread
From: Richard Henderson @ 2021-10-21 19:19 UTC (permalink / raw)
  To: qemu-devel

On 10/21/21 8:25 AM, Richard Henderson wrote:
> 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

Applied, thanks.

r~



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

* [PULL 00/19] target/arm patch queue
@ 2021-10-21 15:25 Richard Henderson
  2021-10-21 19:19 ` Richard Henderson
  0 siblings, 1 reply; 3+ messages in thread
From: Richard Henderson @ 2021-10-21 15:25 UTC (permalink / raw)
  To: qemu-devel

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


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

end of thread, other threads:[~2021-10-21 19:21 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-10-21 15:22 [PULL 00/19] target/arm patch queue Richard Henderson
2021-10-21 15:25 Richard Henderson
2021-10-21 19:19 ` Richard Henderson

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.