[PULL 00/23] ppc queue

Daniel Henrique Barboza posted 23 patches 2 years ago
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/qemu tags/patchew/20220420221329.169755-1-danielhb413@gmail.com
Maintainers: Aurelien Jarno <aurelien@aurel32.net>, Peter Maydell <peter.maydell@linaro.org>, "Alex Bennée" <alex.bennee@linaro.org>, "Cédric Le Goater" <clg@kaod.org>, "Michael S. Tsirkin" <mst@redhat.com>, Marcel Apfelbaum <marcel.apfelbaum@gmail.com>, Daniel Henrique Barboza <danielhb413@gmail.com>, David Gibson <david@gibson.dropbear.id.au>, Greg Kurz <groug@kaod.org>, Alexey Kardashevskiy <aik@ozlabs.ru>, Paolo Bonzini <pbonzini@redhat.com>
There is a newer version of this series
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(-)
[PULL 00/23] ppc queue
Posted by Daniel Henrique Barboza 2 years ago
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(-)

Re: [PULL 00/23] ppc queue
Posted by Richard Henderson 2 years ago
On 4/20/22 15:13, Daniel Henrique Barboza wrote:
> 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

Applied, thanks.  Please update the wiki changelog for 7.1 as appropriate.


r~

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


Re: [PULL 00/23] ppc queue
Posted by Peter Maydell 2 years ago
On Thu, 21 Apr 2022 at 14:53, Richard Henderson
<richard.henderson@linaro.org> wrote:
>
> On 4/20/22 15:13, Daniel Henrique Barboza wrote:
> > 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
>
> Applied, thanks.  Please update the wiki changelog for 7.1 as appropriate.

I created the wiki page last week, incidentally, so you can directly
quote the URL in these applied-thanks notes:
https://wiki.qemu.org/ChangeLog/7.1

-- PMM