From: Daniel Henrique Barboza <danielhb413@gmail.com>
To: qemu-devel@nongnu.org
Cc: peter.maydell@linaro.org, richard.henderson@linaro.org,
danielhb413@gmail.com, qemu-ppc@nongnu.org
Subject: [PULL 00/23] ppc queue
Date: Wed, 20 Apr 2022 19:13:06 -0300 [thread overview]
Message-ID: <20220420221329.169755-1-danielhb413@gmail.com> (raw)
The following changes since commit 2d20a57453f6a206938cbbf77bed0b378c806c1f:
Merge tag 'pull-fixes-for-7.1-200422-1' of https://github.com/stsquad/qemu into staging (2022-04-20 11:13:08 -0700)
are available in the Git repository at:
https://gitlab.com/danielhb/qemu.git tags/pull-ppc-20220420-2
for you to fetch changes up to 2d94af4b16c40758eee3a8591307ae173090d4ad:
hw/ppc: change indentation to spaces from TABs (2022-04-20 18:00:30 -0300)
----------------------------------------------------------------
ppc patch queue for 2022-04-20
First batch of ppc patches for QEMU 7.1:
- skiboot firmware version bump
- pseries: add 2M DDW pagesize
- pseries: make virtual hypervisor code TCG only
- powernv: introduce GPIO lines for PSIHB device
- powernv: remove PCIE root bridge LSI
- target/ppc: alternative softfloat 128 bit integer support
- assorted fixes
----------------------------------------------------------------
Alexey Kardashevskiy (2):
ppc/spapr/ddw: Add 2M pagesize
ppc/vof: Fix uninitialized string tracing
Bernhard Beschow (1):
hw/ppc/ppc405_boards: Initialize g_autofree pointer
Cédric Le Goater (5):
ppc/pnv: Fix PSI IRQ definition
ppc/pnv: Remove PnvLpcController::psi link
ppc/pnv: Remove PnvOCC::psi link
ppc/pnv: Remove PnvPsiClas::irq_set
ppc/pnv: Remove useless checks in set_irq handlers
Fabiano Rosas (3):
spapr: Move hypercall_register_softmmu
spapr: Move nested KVM hypercalls under a TCG only config.
target/ppc: Improve KVM hypercall trace
Frederic Barrat (3):
pcie: Don't try triggering a LSI when not defined
ppc/pnv: Remove LSI on the PCIE host bridge
target/ppc: Add two missing register callbacks on POWER10
Guo Zhi (1):
hw/ppc: change indentation to spaces from TABs
Joel Stanley (1):
ppc/pnv: Update skiboot to v7.0
Matheus Ferst (7):
qemu/int128: add int128_urshift
softfloat: add uint128_to_float128
softfloat: add int128_to_float128
softfloat: add float128_to_uint128
softfloat: add float128_to_int128
target/ppc: implement xscv[su]qqp
target/ppc: implement xscvqp[su]qz
fpu/softfloat.c | 183 ++++++++++++++++++++++++++++++++++++
hw/pci-host/pnv_phb3.c | 1 +
hw/pci-host/pnv_phb4.c | 1 +
hw/pci/pcie.c | 5 +-
hw/pci/pcie_aer.c | 2 +-
hw/ppc/pnv.c | 30 +++---
hw/ppc/pnv_lpc.c | 19 +---
hw/ppc/pnv_occ.c | 16 +---
hw/ppc/pnv_psi.c | 36 +++----
hw/ppc/ppc405_boards.c | 4 +-
hw/ppc/ppc440_bamboo.c | 6 +-
hw/ppc/spapr_hcall.c | 74 +++++++++------
hw/ppc/spapr_rtas.c | 18 ++--
hw/ppc/spapr_rtas_ddw.c | 1 +
hw/ppc/vof.c | 2 +-
include/fpu/softfloat.h | 7 ++
include/hw/ppc/pnv_lpc.h | 8 +-
include/hw/ppc/pnv_occ.h | 7 +-
include/hw/ppc/pnv_psi.h | 7 +-
include/hw/ppc/ppc.h | 10 +-
include/hw/ppc/spapr.h | 1 +
include/qemu/int128.h | 21 +++++
pc-bios/skiboot.lid | Bin 2528128 -> 2527240 bytes
roms/skiboot | 2 +-
target/ppc/cpu_init.c | 2 +
target/ppc/fpu_helper.c | 33 +++++++
target/ppc/helper.h | 4 +
target/ppc/insn32.decode | 7 ++
target/ppc/kvm.c | 2 +-
target/ppc/trace-events | 2 +-
target/ppc/translate/vsx-impl.c.inc | 22 +++++
tests/unit/test-int128.c | 50 ++++++++++
32 files changed, 446 insertions(+), 137 deletions(-)
next reply other threads:[~2022-04-20 22:17 UTC|newest]
Thread overview: 26+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-04-20 22:13 Daniel Henrique Barboza [this message]
2022-04-20 22:13 ` [PULL 01/23] ppc/pnv: Update skiboot to v7.0 Daniel Henrique Barboza
2022-04-20 22:13 ` [PULL 02/23] ppc/spapr/ddw: Add 2M pagesize Daniel Henrique Barboza
2022-04-20 22:13 ` [PULL 03/23] ppc/pnv: Fix PSI IRQ definition Daniel Henrique Barboza
2022-04-20 22:13 ` [PULL 04/23] ppc/pnv: Remove PnvLpcController::psi link Daniel Henrique Barboza
2022-04-20 22:13 ` [PULL 05/23] ppc/pnv: Remove PnvOCC::psi link Daniel Henrique Barboza
2022-04-20 22:13 ` [PULL 06/23] ppc/pnv: Remove PnvPsiClas::irq_set Daniel Henrique Barboza
2022-04-20 22:13 ` [PULL 07/23] ppc/pnv: Remove useless checks in set_irq handlers Daniel Henrique Barboza
2022-04-20 22:13 ` [PULL 08/23] spapr: Move hypercall_register_softmmu Daniel Henrique Barboza
2022-04-20 22:13 ` [PULL 09/23] spapr: Move nested KVM hypercalls under a TCG only config Daniel Henrique Barboza
2022-04-20 22:13 ` [PULL 10/23] target/ppc: Improve KVM hypercall trace Daniel Henrique Barboza
2022-04-20 22:13 ` [PULL 11/23] qemu/int128: add int128_urshift Daniel Henrique Barboza
2022-04-20 22:13 ` [PULL 12/23] softfloat: add uint128_to_float128 Daniel Henrique Barboza
2022-04-20 22:13 ` [PULL 13/23] softfloat: add int128_to_float128 Daniel Henrique Barboza
2022-04-20 22:13 ` [PULL 14/23] softfloat: add float128_to_uint128 Daniel Henrique Barboza
2022-04-20 22:13 ` [PULL 15/23] softfloat: add float128_to_int128 Daniel Henrique Barboza
2022-04-20 22:13 ` [PULL 16/23] target/ppc: implement xscv[su]qqp Daniel Henrique Barboza
2022-04-20 22:13 ` [PULL 17/23] target/ppc: implement xscvqp[su]qz Daniel Henrique Barboza
2022-04-20 22:13 ` [PULL 18/23] hw/ppc/ppc405_boards: Initialize g_autofree pointer Daniel Henrique Barboza
2022-04-20 22:13 ` [PULL 19/23] ppc/vof: Fix uninitialized string tracing Daniel Henrique Barboza
2022-04-20 22:13 ` [PULL 20/23] pcie: Don't try triggering a LSI when not defined Daniel Henrique Barboza
2022-04-20 22:13 ` [PULL 21/23] ppc/pnv: Remove LSI on the PCIE host bridge Daniel Henrique Barboza
2022-04-20 22:13 ` [PULL 22/23] target/ppc: Add two missing register callbacks on POWER10 Daniel Henrique Barboza
2022-04-20 22:13 ` [PULL 23/23] hw/ppc: change indentation to spaces from TABs Daniel Henrique Barboza
2022-04-21 13:53 ` [PULL 00/23] ppc queue Richard Henderson
2022-04-21 14:21 ` Peter Maydell
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=20220420221329.169755-1-danielhb413@gmail.com \
--to=danielhb413@gmail.com \
--cc=peter.maydell@linaro.org \
--cc=qemu-devel@nongnu.org \
--cc=qemu-ppc@nongnu.org \
--cc=richard.henderson@linaro.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).