qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [PULL 00/26] ppc queue
@ 2022-01-04  7:30 Cédric Le Goater
  2022-01-04  7:30 ` [PULL 01/26] ppc/pnv: Change the maximum of PHB3 devices for Power8NVL Cédric Le Goater
                   ` (26 more replies)
  0 siblings, 27 replies; 30+ messages in thread
From: Cédric Le Goater @ 2022-01-04  7:30 UTC (permalink / raw)
  To: qemu-ppc, qemu-devel
  Cc: Peter Maydell, Richard Henderson, Cédric Le Goater

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


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

end of thread, other threads:[~2022-01-11 17:40 UTC | newest]

Thread overview: 30+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-01-04  7:30 [PULL 00/26] ppc queue Cédric Le Goater
2022-01-04  7:30 ` [PULL 01/26] ppc/pnv: Change the maximum of PHB3 devices for Power8NVL Cédric Le Goater
2022-01-04  7:30 ` [PULL 02/26] ppc/pnv: Remove PHB4 reset handler Cédric Le Goater
2022-01-04  7:30 ` [PULL 03/26] ppc/pnv: Remove the PHB4 "device-id" property Cédric Le Goater
2022-01-04  7:30 ` [PULL 04/26] pnv_phb3.c: do not set 'root-bus' as bus name Cédric Le Goater
2022-01-04  7:31 ` [PULL 05/26] pnv_phb4.c: " Cédric Le Goater
2022-01-04  7:31 ` [PULL 06/26] target/ppc: Improve logging in Radix MMU Cédric Le Goater
2022-01-11 16:51   ` Peter Maydell
2022-01-11 17:28     ` Cédric Le Goater
2022-01-04  7:31 ` [PULL 07/26] target/ppc: Check effective address validity Cédric Le Goater
2022-01-04  7:31 ` [PULL 08/26] target/ppc: Remove static inline Cédric Le Goater
2022-01-04  7:31 ` [PULL 09/26] target/ppc: Print out literal exception names in logs Cédric Le Goater
2022-01-04  7:31 ` [PULL 10/26] ppc/ppc4xx: Convert printfs() Cédric Le Goater
2022-01-04  7:31 ` [PULL 11/26] ppc/ppc405: Activate MMU logs Cédric Le Goater
2022-01-04  7:31 ` [PULL 12/26] ppc/ppc405: Restore TCR and STR write handlers Cédric Le Goater
2022-01-04  7:31 ` [PULL 13/26] ppc/ppc405: Rework ppc_40x_timers_init() to use a PowerPCCPU Cédric Le Goater
2022-01-04  7:31 ` [PULL 14/26] ppc/ppc405: Fix timer initialization Cédric Le Goater
2022-01-04  7:31 ` [PULL 15/26] ppc/ppc405: Introduce a store helper for SPR_40x_PID Cédric Le Goater
2022-01-04  7:31 ` [PULL 16/26] ppc/ppc405: Dump specific registers Cédric Le Goater
2022-01-04  7:31 ` [PULL 17/26] target/ppc: do not silence snan in xscvspdpn Cédric Le Goater
2022-01-04  7:31 ` [PULL 18/26] target/ppc: powerpc_excp: Set alternate SRRs directly Cédric Le Goater
2022-01-04  7:31 ` [PULL 19/26] target/ppc: powerpc_excp: Add excp_vectors bounds check Cédric Le Goater
2022-01-04  7:31 ` [PULL 20/26] target/ppc: powerpc_excp: Set vector earlier Cédric Le Goater
2022-01-04  7:31 ` [PULL 21/26] target/ppc: powerpc_excp: Move system call vectored code together Cédric Le Goater
2022-01-04  7:31 ` [PULL 22/26] target/ppc: powerpc_excp: Stop passing excp_model around Cédric Le Goater
2022-01-04  7:31 ` [PULL 23/26] target/ppc: Cache per-pmc insn and cycle count settings Cédric Le Goater
2022-01-04  7:31 ` [PULL 24/26] target/ppc: Rewrite pmu_increment_insns Cédric Le Goater
2022-01-04  7:31 ` [PULL 25/26] target/ppc: Use env->pnc_cyc_cnt Cédric Le Goater
2022-01-04  7:31 ` [PULL 26/26] target/ppc: do not call hreg_compute_hflags() in helper_store_mmcr0() Cédric Le Goater
2022-01-04 17:55 ` [PULL 00/26] ppc queue Richard Henderson

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