[PULL 00/26] ppc queue

Cédric Le Goater posted 26 patches 2 years, 3 months ago
Failed in applying to current master (apply log)
There is a newer version of this series
include/hw/pci-host/pnv_phb4.h          |   2 -
target/ppc/cpu.h                        |   5 +
target/ppc/helper.h                     |   2 +
target/ppc/mmu-radix64.h                |   1 +
target/ppc/power8-pmu.h                 |  14 +-
target/ppc/spr_tcg.h                    |   3 +
hw/pci-host/pnv_phb3.c                  |   3 +-
hw/pci-host/pnv_phb4.c                  |  16 +--
hw/pci-host/pnv_phb4_pec.c              |   3 -
hw/ppc/mpc8544_guts.c                   |   9 +-
hw/ppc/pnv.c                            |   2 +-
hw/ppc/ppc.c                            |  67 ++++++---
hw/ppc/ppc405_uc.c                      |   2 -
hw/ppc/ppc4xx_devs.c                    |  39 ++----
hw/ppc/ppc4xx_pci.c                     |  11 +-
target/ppc/cpu_init.c                   |  34 +++--
target/ppc/excp_helper.c                | 187 ++++++++++++++++---------
target/ppc/fpu_helper.c                 |   5 +-
target/ppc/helper_regs.c                |   2 +-
target/ppc/machine.c                    |   2 +
target/ppc/mmu-radix64.c                |  60 +++++++-
target/ppc/mmu_common.c                 | 164 +++++++++++-----------
target/ppc/mmu_helper.c                 |  97 ++++++-------
target/ppc/power8-pmu.c                 | 238 ++++++++++++++------------------
target/ppc/timebase_helper.c            |  10 ++
target/ppc/translate.c                  |  20 +++
tests/tcg/ppc64le/non_signalling_xscv.c |  37 +++++
hw/ppc/trace-events                     |   7 +
tests/tcg/ppc64/Makefile.target         |   4 +-
tests/tcg/ppc64le/Makefile.target       |   4 +-
30 files changed, 604 insertions(+), 446 deletions(-)
create mode 100644 tests/tcg/ppc64le/non_signalling_xscv.c
[PULL 00/26] ppc queue
Posted by Cédric Le Goater 2 years, 3 months ago
The following changes since commit b5a3d8bc9146ba22a25116cb748c97341bf99737:

  Merge tag 'pull-misc-20220103' of https://gitlab.com/rth7680/qemu into staging (2022-01-03 09:34:41 -0800)

are available in the Git repository at:

  https://github.com/legoater/qemu/ tags/pull-ppc-20220104

for you to fetch changes up to 0625c7760d5451d7436ef0738f763c6bb5141919:

  target/ppc: do not call hreg_compute_hflags() in helper_store_mmcr0() (2022-01-04 07:55:35 +0100)

----------------------------------------------------------------
ppc 7.0 queue:

* Cleanup of PowerNV PHBs (Daniel and Cedric)
* Cleanup and fixes for PPC405 machine (Cedric)
* Fix for xscvspdpn (Matheus)
* Rework of powerpc exception handling 1/n (Fabiano)
* Optimisation for PMU (Richard and Daniel)

----------------------------------------------------------------
Cédric Le Goater (14):
      ppc/pnv: Change the maximum of PHB3 devices for Power8NVL
      ppc/pnv: Remove PHB4 reset handler
      ppc/pnv: Remove the PHB4 "device-id" property
      target/ppc: Improve logging in Radix MMU
      target/ppc: Check effective address validity
      target/ppc: Remove static inline
      target/ppc: Print out literal exception names in logs
      ppc/ppc4xx: Convert printfs()
      ppc/ppc405: Activate MMU logs
      ppc/ppc405: Restore TCR and STR write handlers
      ppc/ppc405: Rework ppc_40x_timers_init() to use a PowerPCCPU
      ppc/ppc405: Fix timer initialization
      ppc/ppc405: Introduce a store helper for SPR_40x_PID
      ppc/ppc405: Dump specific registers

Daniel Henrique Barboza (3):
      pnv_phb3.c: do not set 'root-bus' as bus name
      pnv_phb4.c: do not set 'root-bus' as bus name
      target/ppc: do not call hreg_compute_hflags() in helper_store_mmcr0()

Fabiano Rosas (5):
      target/ppc: powerpc_excp: Set alternate SRRs directly
      target/ppc: powerpc_excp: Add excp_vectors bounds check
      target/ppc: powerpc_excp: Set vector earlier
      target/ppc: powerpc_excp: Move system call vectored code together
      target/ppc: powerpc_excp: Stop passing excp_model around

Matheus Ferst (1):
      target/ppc: do not silence snan in xscvspdpn

Richard Henderson (3):
      target/ppc: Cache per-pmc insn and cycle count settings
      target/ppc: Rewrite pmu_increment_insns
      target/ppc: Use env->pnc_cyc_cnt

 include/hw/pci-host/pnv_phb4.h          |   2 -
 target/ppc/cpu.h                        |   5 +
 target/ppc/helper.h                     |   2 +
 target/ppc/mmu-radix64.h                |   1 +
 target/ppc/power8-pmu.h                 |  14 +-
 target/ppc/spr_tcg.h                    |   3 +
 hw/pci-host/pnv_phb3.c                  |   3 +-
 hw/pci-host/pnv_phb4.c                  |  16 +--
 hw/pci-host/pnv_phb4_pec.c              |   3 -
 hw/ppc/mpc8544_guts.c                   |   9 +-
 hw/ppc/pnv.c                            |   2 +-
 hw/ppc/ppc.c                            |  67 ++++++---
 hw/ppc/ppc405_uc.c                      |   2 -
 hw/ppc/ppc4xx_devs.c                    |  39 ++----
 hw/ppc/ppc4xx_pci.c                     |  11 +-
 target/ppc/cpu_init.c                   |  34 +++--
 target/ppc/excp_helper.c                | 187 ++++++++++++++++---------
 target/ppc/fpu_helper.c                 |   5 +-
 target/ppc/helper_regs.c                |   2 +-
 target/ppc/machine.c                    |   2 +
 target/ppc/mmu-radix64.c                |  60 +++++++-
 target/ppc/mmu_common.c                 | 164 +++++++++++-----------
 target/ppc/mmu_helper.c                 |  97 ++++++-------
 target/ppc/power8-pmu.c                 | 238 ++++++++++++++------------------
 target/ppc/timebase_helper.c            |  10 ++
 target/ppc/translate.c                  |  20 +++
 tests/tcg/ppc64le/non_signalling_xscv.c |  37 +++++
 hw/ppc/trace-events                     |   7 +
 tests/tcg/ppc64/Makefile.target         |   4 +-
 tests/tcg/ppc64le/Makefile.target       |   4 +-
 30 files changed, 604 insertions(+), 446 deletions(-)
 create mode 100644 tests/tcg/ppc64le/non_signalling_xscv.c

Re: [PULL 00/26] ppc queue
Posted by Richard Henderson 2 years, 3 months ago
On 1/3/22 11:30 PM, Cédric Le Goater wrote:
> The following changes since commit b5a3d8bc9146ba22a25116cb748c97341bf99737:
> 
>    Merge tag 'pull-misc-20220103' of https://gitlab.com/rth7680/qemu into staging (2022-01-03 09:34:41 -0800)
> 
> are available in the Git repository at:
> 
>    https://github.com/legoater/qemu/ tags/pull-ppc-20220104
> 
> for you to fetch changes up to 0625c7760d5451d7436ef0738f763c6bb5141919:
> 
>    target/ppc: do not call hreg_compute_hflags() in helper_store_mmcr0() (2022-01-04 07:55:35 +0100)
> 
> ----------------------------------------------------------------
> ppc 7.0 queue:
> 
> * Cleanup of PowerNV PHBs (Daniel and Cedric)
> * Cleanup and fixes for PPC405 machine (Cedric)
> * Fix for xscvspdpn (Matheus)
> * Rework of powerpc exception handling 1/n (Fabiano)
> * Optimisation for PMU (Richard and Daniel)
> 
> ----------------------------------------------------------------
> Cédric Le Goater (14):
>        ppc/pnv: Change the maximum of PHB3 devices for Power8NVL
>        ppc/pnv: Remove PHB4 reset handler
>        ppc/pnv: Remove the PHB4 "device-id" property
>        target/ppc: Improve logging in Radix MMU
>        target/ppc: Check effective address validity
>        target/ppc: Remove static inline
>        target/ppc: Print out literal exception names in logs
>        ppc/ppc4xx: Convert printfs()
>        ppc/ppc405: Activate MMU logs
>        ppc/ppc405: Restore TCR and STR write handlers
>        ppc/ppc405: Rework ppc_40x_timers_init() to use a PowerPCCPU
>        ppc/ppc405: Fix timer initialization
>        ppc/ppc405: Introduce a store helper for SPR_40x_PID
>        ppc/ppc405: Dump specific registers
> 
> Daniel Henrique Barboza (3):
>        pnv_phb3.c: do not set 'root-bus' as bus name
>        pnv_phb4.c: do not set 'root-bus' as bus name
>        target/ppc: do not call hreg_compute_hflags() in helper_store_mmcr0()
> 
> Fabiano Rosas (5):
>        target/ppc: powerpc_excp: Set alternate SRRs directly
>        target/ppc: powerpc_excp: Add excp_vectors bounds check
>        target/ppc: powerpc_excp: Set vector earlier
>        target/ppc: powerpc_excp: Move system call vectored code together
>        target/ppc: powerpc_excp: Stop passing excp_model around
> 
> Matheus Ferst (1):
>        target/ppc: do not silence snan in xscvspdpn
> 
> Richard Henderson (3):
>        target/ppc: Cache per-pmc insn and cycle count settings
>        target/ppc: Rewrite pmu_increment_insns
>        target/ppc: Use env->pnc_cyc_cnt
> 
>   include/hw/pci-host/pnv_phb4.h          |   2 -
>   target/ppc/cpu.h                        |   5 +
>   target/ppc/helper.h                     |   2 +
>   target/ppc/mmu-radix64.h                |   1 +
>   target/ppc/power8-pmu.h                 |  14 +-
>   target/ppc/spr_tcg.h                    |   3 +
>   hw/pci-host/pnv_phb3.c                  |   3 +-
>   hw/pci-host/pnv_phb4.c                  |  16 +--
>   hw/pci-host/pnv_phb4_pec.c              |   3 -
>   hw/ppc/mpc8544_guts.c                   |   9 +-
>   hw/ppc/pnv.c                            |   2 +-
>   hw/ppc/ppc.c                            |  67 ++++++---
>   hw/ppc/ppc405_uc.c                      |   2 -
>   hw/ppc/ppc4xx_devs.c                    |  39 ++----
>   hw/ppc/ppc4xx_pci.c                     |  11 +-
>   target/ppc/cpu_init.c                   |  34 +++--
>   target/ppc/excp_helper.c                | 187 ++++++++++++++++---------
>   target/ppc/fpu_helper.c                 |   5 +-
>   target/ppc/helper_regs.c                |   2 +-
>   target/ppc/machine.c                    |   2 +
>   target/ppc/mmu-radix64.c                |  60 +++++++-
>   target/ppc/mmu_common.c                 | 164 +++++++++++-----------
>   target/ppc/mmu_helper.c                 |  97 ++++++-------
>   target/ppc/power8-pmu.c                 | 238 ++++++++++++++------------------
>   target/ppc/timebase_helper.c            |  10 ++
>   target/ppc/translate.c                  |  20 +++
>   tests/tcg/ppc64le/non_signalling_xscv.c |  37 +++++
>   hw/ppc/trace-events                     |   7 +
>   tests/tcg/ppc64/Makefile.target         |   4 +-
>   tests/tcg/ppc64le/Makefile.target       |   4 +-
>   30 files changed, 604 insertions(+), 446 deletions(-)
>   create mode 100644 tests/tcg/ppc64le/non_signalling_xscv.c

Applied, thanks.

r~