All of lore.kernel.org
 help / color / mirror / Atom feed
* [PULL 00/23] ppc queue
@ 2022-04-20 22:13 Daniel Henrique Barboza
  2022-04-20 22:13 ` [PULL 01/23] ppc/pnv: Update skiboot to v7.0 Daniel Henrique Barboza
                   ` (23 more replies)
  0 siblings, 24 replies; 26+ messages in thread
From: Daniel Henrique Barboza @ 2022-04-20 22:13 UTC (permalink / raw)
  To: qemu-devel; +Cc: peter.maydell, richard.henderson, danielhb413, qemu-ppc

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


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

end of thread, other threads:[~2022-04-21 14:28 UTC | newest]

Thread overview: 26+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-04-20 22:13 [PULL 00/23] ppc queue Daniel Henrique Barboza
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

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.