qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Daniel Henrique Barboza <danielhb413@gmail.com>
To: qemu-devel@nongnu.org
Cc: qemu-ppc@nongnu.org, danielhb413@gmail.com,
	peter.maydell@linaro.org, richard.henderson@linaro.org
Subject: [PULL 00/30] ppc queue
Date: Mon, 18 Jul 2022 14:21:38 -0300	[thread overview]
Message-ID: <20220718172208.1247624-1-danielhb413@gmail.com> (raw)

The following changes since commit 782378973121addeb11b13fd12a6ac2e69faa33f:

  Merge tag 'pull-target-arm-20220718' of https://git.linaro.org/people/pmaydell/qemu-arm into staging (2022-07-18 16:29:32 +0100)

are available in the Git repository at:

  https://gitlab.com/danielhb/qemu.git tags/pull-ppc-20220718

for you to fetch changes up to d2066bc50d690a6605307eaf0e72a9cf51e6fc25:

  target/ppc: Check page dir/table base alignment (2022-07-18 13:59:43 -0300)

----------------------------------------------------------------
ppc patch queue for 2022-07-18:

This is the last ppc patch queue before the soft freeze. It contains new
TCG instructions and changes, a tricky bug fix in kvmppc_find_cpu_dt()
and other enhancements/fixes.

- tcg and target/ppc:
  - move instructions to decodetree
  - check for bad Radix configs
  - ISA 3.00 tlbie[l]
  - fix gen_*_exception error codes
  - check fortb_env != 0 when printing TBU/TBL/DECR
- fix kvmppc_find_cpu_dt() returning the wrong CPU DT path when there's a
'clock-frequency' property in the root node
- spapr, e500: pass a random seed in /chosen/rng-seed
- all boards: allocate IRQ lines with qdev_init_gpio_in()

----------------------------------------------------------------
Cédric Le Goater (5):
      ppc64: Allocate IRQ lines with qdev_init_gpio_in()
      ppc/40x: Allocate IRQ lines with qdev_init_gpio_in()
      ppc/6xx: Allocate IRQ lines with qdev_init_gpio_in()
      ppc/e500: Allocate IRQ lines with qdev_init_gpio_in()
      ppc: Remove unused irq_inputs

Jason A. Donenfeld (1):
      hw/ppc: pass random seed to fdt

Leandro Lupori (5):
      target/ppc: Move tlbie[l] to decode tree
      target/ppc: Implement ISA 3.00 tlbie[l]
      ppc: Check partition and process table alignment
      target/ppc: Improve Radix xlate level validation
      target/ppc: Check page dir/table base alignment

Lucas Coutinho (9):
      target/ppc: Move slbie to decodetree
      target/ppc: Move slbieg to decodetree
      target/ppc: Move slbia to decodetree
      target/ppc: Move slbmte to decodetree
      target/ppc: Move slbmfev to decodetree
      target/ppc: Move slbmfee to decodetree
      target/ppc: Move slbfee to decodetree
      target/ppc: Move slbsync to decodetree
      target/ppc: Implement slbiag

Matheus Ferst (9):
      target/ppc: Fix gen_priv_exception error value in mfspr/mtspr
      target/ppc: fix exception error value in slbfee
      target/ppc: remove mfdcrux and mtdcrux
      target/ppc: fix exception error code in helper_{load, store}_dcr
      target/ppc: fix PMU Group A register read/write exceptions
      target/ppc: fix exception error code in spr_write_excp_vector
      target/ppc: receive DisasContext explicitly in GEN_PRIV
      target/ppc: add macros to check privilege level
      target/ppc: check tb_env != 0 before printing TBU/TBL/DECR

Murilo Opsfelder Araujo (1):
      target/ppc/kvm: Skip current and parent directories in kvmppc_find_cpu_dt

 hw/intc/xics.c                               |  10 +-
 hw/intc/xive.c                               |   4 +-
 hw/ppc/e500.c                                |  13 +-
 hw/ppc/mac_newworld.c                        |  16 +-
 hw/ppc/mac_oldworld.c                        |   2 +-
 hw/ppc/pegasos2.c                            |   2 +-
 hw/ppc/ppc.c                                 |  30 +-
 hw/ppc/ppc405_uc.c                           |   4 +-
 hw/ppc/ppc440_bamboo.c                       |   4 +-
 hw/ppc/prep.c                                |   2 +-
 hw/ppc/prep_systemio.c                       |   2 +-
 hw/ppc/sam460ex.c                            |   4 +-
 hw/ppc/spapr.c                               |  10 +
 hw/ppc/spapr_hcall.c                         |   9 +
 hw/ppc/virtex_ml507.c                        |  10 +-
 target/ppc/cpu.h                             |   7 +-
 target/ppc/cpu_init.c                        |  27 +-
 target/ppc/helper.h                          |  19 +-
 target/ppc/insn32.decode                     |  34 ++
 target/ppc/kvm.c                             |   6 +
 target/ppc/mmu-book3s-v3.c                   |   5 +
 target/ppc/mmu-book3s-v3.h                   |  15 +
 target/ppc/mmu-hash64.c                      |  41 ++-
 target/ppc/mmu-radix64.c                     |  92 ++++-
 target/ppc/mmu_helper.c                      | 154 ++++++++
 target/ppc/monitor.c                         |   9 +
 target/ppc/power8-pmu-regs.c.inc             |  10 +-
 target/ppc/timebase_helper.c                 |   6 +-
 target/ppc/translate.c                       | 513 +++++++++------------------
 target/ppc/translate/fixedpoint-impl.c.inc   |   7 +-
 target/ppc/translate/fp-impl.c.inc           |   4 +-
 target/ppc/translate/storage-ctrl-impl.c.inc | 250 +++++++++++++
 32 files changed, 849 insertions(+), 472 deletions(-)
 create mode 100644 target/ppc/translate/storage-ctrl-impl.c.inc


             reply	other threads:[~2022-07-18 17:26 UTC|newest]

Thread overview: 36+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-07-18 17:21 Daniel Henrique Barboza [this message]
2022-07-18 17:21 ` [PULL 01/30] ppc64: Allocate IRQ lines with qdev_init_gpio_in() Daniel Henrique Barboza
2022-07-18 17:21 ` [PULL 02/30] ppc/40x: " Daniel Henrique Barboza
2022-07-18 17:21 ` [PULL 03/30] ppc/6xx: " Daniel Henrique Barboza
2022-07-18 17:21 ` [PULL 04/30] ppc/e500: " Daniel Henrique Barboza
2022-07-18 17:21 ` [PULL 05/30] ppc: Remove unused irq_inputs Daniel Henrique Barboza
2022-07-18 17:21 ` [PULL 06/30] hw/ppc: pass random seed to fdt Daniel Henrique Barboza
2022-07-18 17:21 ` [PULL 07/30] target/ppc/kvm: Skip current and parent directories in kvmppc_find_cpu_dt Daniel Henrique Barboza
2022-07-18 17:21 ` [PULL 08/30] target/ppc: Fix gen_priv_exception error value in mfspr/mtspr Daniel Henrique Barboza
2022-07-18 17:21 ` [PULL 09/30] target/ppc: fix exception error value in slbfee Daniel Henrique Barboza
2022-07-18 17:21 ` [PULL 10/30] target/ppc: remove mfdcrux and mtdcrux Daniel Henrique Barboza
2022-07-18 17:21 ` [PULL 11/30] target/ppc: fix exception error code in helper_{load, store}_dcr Daniel Henrique Barboza
2022-07-18 17:21 ` [PULL 12/30] target/ppc: fix PMU Group A register read/write exceptions Daniel Henrique Barboza
2022-07-18 17:21 ` [PULL 13/30] target/ppc: fix exception error code in spr_write_excp_vector Daniel Henrique Barboza
2022-07-18 17:21 ` [PULL 14/30] target/ppc: Move tlbie[l] to decode tree Daniel Henrique Barboza
2022-07-18 17:21 ` [PULL 15/30] target/ppc: Implement ISA 3.00 tlbie[l] Daniel Henrique Barboza
2022-07-18 17:21 ` [PULL 16/30] target/ppc: receive DisasContext explicitly in GEN_PRIV Daniel Henrique Barboza
2022-07-18 17:21 ` [PULL 17/30] target/ppc: add macros to check privilege level Daniel Henrique Barboza
2022-07-18 17:21 ` [PULL 18/30] target/ppc: Move slbie to decodetree Daniel Henrique Barboza
2022-07-18 17:21 ` [PULL 19/30] target/ppc: Move slbieg " Daniel Henrique Barboza
2022-07-18 17:21 ` [PULL 20/30] target/ppc: Move slbia " Daniel Henrique Barboza
2022-07-18 17:21 ` [PULL 21/30] target/ppc: Move slbmte " Daniel Henrique Barboza
2022-07-18 17:22 ` [PULL 22/30] target/ppc: Move slbmfev " Daniel Henrique Barboza
2022-07-18 17:22 ` [PULL 23/30] target/ppc: Move slbmfee " Daniel Henrique Barboza
2022-07-18 17:22 ` [PULL 24/30] target/ppc: Move slbfee " Daniel Henrique Barboza
2022-07-18 17:22 ` [PULL 25/30] target/ppc: Move slbsync " Daniel Henrique Barboza
2022-07-18 17:22 ` [PULL 26/30] target/ppc: Implement slbiag Daniel Henrique Barboza
2022-07-18 17:22 ` [PULL 27/30] target/ppc: check tb_env != 0 before printing TBU/TBL/DECR Daniel Henrique Barboza
2022-07-18 17:22 ` [PULL 28/30] ppc: Check partition and process table alignment Daniel Henrique Barboza
2022-07-18 17:22 ` [PULL 29/30] target/ppc: Improve Radix xlate level validation Daniel Henrique Barboza
2022-07-18 17:22 ` [PULL 30/30] target/ppc: Check page dir/table base alignment Daniel Henrique Barboza
2022-07-19  8:56 ` [PULL 00/30] ppc queue Peter Maydell
  -- strict thread matches above, loose matches on Subject: below --
2023-06-26  5:56 Cédric Le Goater
2023-06-26  8:37 ` Richard Henderson
2022-05-05 18:49 Daniel Henrique Barboza
2022-05-06  4:17 ` Richard Henderson

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