From: Richard Henderson <richard.henderson@linaro.org>
To: David Gibson <david@gibson.dropbear.id.au>, peter.maydell@linaro.org
Cc: clg@kaod.org, danielhb413@gmail.com, qemu-ppc@nongnu.org,
qemu-devel@nongnu.org, groug@kaod.org
Subject: Re: [PULL 00/25] ppc-for-6.2 queue 20211021
Date: Thu, 21 Oct 2021 09:53:04 -0700 [thread overview]
Message-ID: <186f0556-f0b5-ee87-892e-448b4531cc8d@linaro.org> (raw)
In-Reply-To: <20211021042027.345405-1-david@gibson.dropbear.id.au>
On 10/20/21 9:20 PM, David Gibson 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/dgibson/qemu.git tags/ppc-for-6.2-20211021
>
> for you to fetch changes up to 6f9e8515c106650fbba7222c8f66234c8546c025:
>
> hw/ppc/ppc4xx_pci: Fix ppc4xx_pci_map_irq() for recent Linux kernels (2021-10-21 11:42:47 +1100)
>
> ----------------------------------------------------------------
> ppc patch queue 2021-10-21
>
> Here's the next batch of ppc target related patches for qemu-6.2.
> Highlights are:
> * Some fixes and minimal tests for old embedded ppc platforms
> * The beginnings of PMU emulation in TCG from Daniel Barboza
> * Some improvements to the pegasos2 platform
> * A number of TCG bugfixes from the folks at the El Dorado Institute
> * A few other assorted bugfixes and cleanups
>
> ----------------------------------------------------------------
> BALATON Zoltan (6):
> ppc/pegasos2: Restrict memory to 2 gigabytes
> ppc/pegasos2: Warn when using VOF but no kernel is specified
> ppc/pegasos2: Implement get-time-of-day RTAS function with VOF
> ppc/pegasos2: Access MV64361 registers via their memory region
> ppc/pegasos2: Add constants for PCI config addresses
> ppc/pegasos2: Implement power-off RTAS function with VOF
>
> Cédric Le Goater (3):
> spapr/xive: Add source status helpers
> target/ppc: Fix the test raising the decrementer exception
> spapr/xive: Use xive_esb_rw() to trigger interrupts
>
> Daniel Henrique Barboza (3):
> target/ppc: add MMCR0 PMCC bits to hflags
> target/ppc: add user read/write functions for MMCR2
> target/ppc: adding user read/write functions for PMCs
>
> Gustavo Romero (1):
> target/ppc: add user read/write functions for MMCR0
>
> Matheus Ferst (5):
> linux-user/ppc: Fix XER access in save/restore_user_regs
> target/ppc: Fix XER access in gdbstub
> linux-user: Fix XER access in ppc version of elf_core_copy_regs
> target/ppc: Fix XER access in monitor
> target/ppc: Filter mtmsr[d] input before setting MSR
>
> Philippe Mathieu-Daudé (3):
> target/ppc: Use tcg_constant_i32() in gen_setb()
> target/ppc: Use tcg_constant_i64() in gen_brh()
> hw/ppc/spapr_softmmu: Reduce include list
>
> Thomas Huth (4):
> hw/ppc: Fix iothread locking in the 405 code
> tests/acceptance: Add tests for the ppc405 boards
> tests/acceptance: Add a test for the bamboo ppc board
> hw/ppc/ppc4xx_pci: Fix ppc4xx_pci_map_irq() for recent Linux kernels
>
> MAINTAINERS | 1 +
> hw/intc/spapr_xive.c | 2 +-
> hw/intc/spapr_xive_kvm.c | 14 +-
> hw/intc/xive.c | 8 +-
> hw/pci-host/mv64361.c | 1 +
> hw/ppc/pegasos2.c | 162 ++++++++++-------
> hw/ppc/ppc.c | 6 +-
> hw/ppc/ppc4xx_pci.c | 8 +-
> hw/ppc/spapr_softmmu.c | 15 --
> include/hw/ppc/xive.h | 24 +++
> linux-user/elfload.c | 2 +-
> linux-user/ppc/signal.c | 9 +-
> target/ppc/cpu.c | 2 +-
> target/ppc/cpu.h | 25 ++-
> target/ppc/cpu_init.c | 16 +-
> target/ppc/gdbstub.c | 8 +-
> target/ppc/helper_regs.c | 6 +
> target/ppc/monitor.c | 9 +-
> target/ppc/power8-pmu-regs.c.inc | 262 ++++++++++++++++++++++++++++
> target/ppc/spr_tcg.h | 8 +
> target/ppc/translate.c | 95 +++++-----
> tests/acceptance/ppc_405.py | 42 +++++
> tests/acceptance/ppc_bamboo.py | 39 +++++
> tests/tcg/ppc64/Makefile.target | 2 +
> tests/tcg/ppc64le/Makefile.target | 2 +
> tests/tcg/ppc64le/signal_save_restore_xer.c | 42 +++++
> 26 files changed, 651 insertions(+), 159 deletions(-)
> create mode 100644 target/ppc/power8-pmu-regs.c.inc
> create mode 100644 tests/acceptance/ppc_405.py
> create mode 100644 tests/acceptance/ppc_bamboo.py
> create mode 100644 tests/tcg/ppc64le/signal_save_restore_xer.c
Applied, thanks.
r~
prev parent reply other threads:[~2021-10-21 16:59 UTC|newest]
Thread overview: 28+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-10-21 4:20 [PULL 00/25] ppc-for-6.2 queue 20211021 David Gibson
2021-10-21 4:20 ` [PULL 01/25] spapr/xive: Add source status helpers David Gibson
2021-10-21 4:20 ` [PULL 02/25] target/ppc: Use tcg_constant_i32() in gen_setb() David Gibson
2021-10-21 4:20 ` [PULL 03/25] target/ppc: Use tcg_constant_i64() in gen_brh() David Gibson
2021-10-21 4:20 ` [PULL 04/25] target/ppc: Fix the test raising the decrementer exception David Gibson
2021-10-21 4:20 ` [PULL 05/25] hw/ppc/spapr_softmmu: Reduce include list David Gibson
2021-10-21 4:20 ` [PULL 06/25] spapr/xive: Use xive_esb_rw() to trigger interrupts David Gibson
2021-10-21 4:20 ` [PULL 07/25] hw/ppc: Fix iothread locking in the 405 code David Gibson
2021-10-21 4:20 ` [PULL 08/25] tests/acceptance: Add tests for the ppc405 boards David Gibson
2021-10-21 4:20 ` [PULL 09/25] linux-user/ppc: Fix XER access in save/restore_user_regs David Gibson
2021-10-21 4:20 ` [PULL 10/25] target/ppc: Fix XER access in gdbstub David Gibson
2021-10-21 4:20 ` [PULL 11/25] linux-user: Fix XER access in ppc version of elf_core_copy_regs David Gibson
2021-10-21 4:20 ` [PULL 12/25] target/ppc: Fix XER access in monitor David Gibson
2021-10-21 4:20 ` [PULL 13/25] ppc/pegasos2: Restrict memory to 2 gigabytes David Gibson
2021-10-21 4:20 ` [PULL 14/25] ppc/pegasos2: Warn when using VOF but no kernel is specified David Gibson
2021-11-01 14:23 ` Peter Maydell
2021-10-21 4:20 ` [PULL 15/25] ppc/pegasos2: Implement get-time-of-day RTAS function with VOF David Gibson
2021-10-21 4:20 ` [PULL 16/25] ppc/pegasos2: Access MV64361 registers via their memory region David Gibson
2021-10-21 4:20 ` [PULL 17/25] ppc/pegasos2: Add constants for PCI config addresses David Gibson
2021-10-21 4:20 ` [PULL 18/25] ppc/pegasos2: Implement power-off RTAS function with VOF David Gibson
2021-10-21 4:20 ` [PULL 19/25] tests/acceptance: Add a test for the bamboo ppc board David Gibson
2021-10-21 4:20 ` [PULL 20/25] target/ppc: Filter mtmsr[d] input before setting MSR David Gibson
2021-10-21 4:20 ` [PULL 21/25] target/ppc: add MMCR0 PMCC bits to hflags David Gibson
2021-10-21 4:20 ` [PULL 22/25] target/ppc: add user read/write functions for MMCR0 David Gibson
2021-10-21 4:20 ` [PULL 23/25] target/ppc: add user read/write functions for MMCR2 David Gibson
2021-10-21 4:20 ` [PULL 24/25] target/ppc: adding user read/write functions for PMCs David Gibson
2021-10-21 4:20 ` [PULL 25/25] hw/ppc/ppc4xx_pci: Fix ppc4xx_pci_map_irq() for recent Linux kernels David Gibson
2021-10-21 16:53 ` Richard Henderson [this message]
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=186f0556-f0b5-ee87-892e-448b4531cc8d@linaro.org \
--to=richard.henderson@linaro.org \
--cc=clg@kaod.org \
--cc=danielhb413@gmail.com \
--cc=david@gibson.dropbear.id.au \
--cc=groug@kaod.org \
--cc=peter.maydell@linaro.org \
--cc=qemu-devel@nongnu.org \
--cc=qemu-ppc@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).