All of lore.kernel.org
 help / color / mirror / Atom feed
From: Richard Henderson <richard.henderson@linaro.org>
To: Daniel Henrique Barboza <danielhb413@gmail.com>, qemu-devel@nongnu.org
Cc: qemu-ppc@nongnu.org, peter.maydell@linaro.org
Subject: Re: [PULL 00/30] ppc queue
Date: Thu, 5 May 2022 23:17:20 -0500	[thread overview]
Message-ID: <5fe9a894-1bd4-c2b2-1500-20b9ee7e125c@linaro.org> (raw)
In-Reply-To: <20220505184938.351866-1-danielhb413@gmail.com>

On 5/5/22 13:49, Daniel Henrique Barboza wrote:
> The following changes since commit e91b8994115d2f093e7556c9af2d051a26a98cfb:
> 
>    Merge tag 'pull-target-arm-20220505' of https://git.linaro.org/people/pmaydell/qemu-arm into staging (2022-05-05 11:30:33 -0500)
> 
> are available in the Git repository at:
> 
>    https://gitlab.com/danielhb/qemu.git tags/pull-ppc-20220505
> 
> for you to fetch changes up to bf3dd1e6d0d7c5c4906f89776e15dddc22af784b:
> 
>    target/ppc: Change MSR_* to follow POWER ISA numbering convention (2022-05-05 15:36:17 -0300)
> 
> ----------------------------------------------------------------
> ppc patch queue for 2022-05-05:
> 
> The star of the show in this PR is the 'Remove hidden usages of *env'
> work done by Víctor, which impacts a lot of target/ppc code and we want
> to get it landed ASAP so future target/ppc contributions can be based on
> it.
> 
> Other changes:
> 
> - XIVE fixes in guest interrupt handling
> - BookE debug interrupt fix
> - vhost-user TARGET_PPC64 macro fix
> - valgrind fixes in kvmppc functions

Applied, thanks.  Please update https://wiki.qemu.org/ChangeLog/7.1 as appropriate.


r~


> 
> ----------------------------------------------------------------
> Bin Meng (1):
>        target/ppc: Fix BookE debug interrupt generation
> 
> Daniel Henrique Barboza (4):
>        target/ppc: initialize 'val' union in kvm_get_one_spr()
>        target/ppc: init 'lpcr' in kvmppc_enable_cap_large_decr()
>        target/ppc: init 'sregs' in kvmppc_put_books_sregs()
>        target/ppc: init 'rmmu_info' in kvm_get_radix_page_info()
> 
> Frederic Barrat (2):
>        ppc/xive: Always recompute the PIPR when pushing an OS context
>        ppc/xive: Update the state of the External interrupt signal
> 
> Murilo Opsfelder Araujo (1):
>        vhost-user: Use correct macro name TARGET_PPC64
> 
> Víctor Colombo (22):
>        target/ppc: Remove fpscr_* macros from cpu.h
>        target/ppc: Remove unused msr_* macros
>        target/ppc: Remove msr_pr macro
>        target/ppc: Remove msr_le macro
>        target/ppc: Remove msr_ds macro
>        target/ppc: Remove msr_ile macro
>        target/ppc: Remove msr_ee macro
>        target/ppc: Remove msr_ce macro
>        target/ppc: Remove msr_pow macro
>        target/ppc: Remove msr_me macro
>        target/ppc: Remove msr_gs macro
>        target/ppc: Remove msr_fp macro
>        target/ppc: Remove msr_cm macro
>        target/ppc: Remove msr_ir macro
>        target/ppc: Remove msr_dr macro
>        target/ppc: Remove msr_ep macro
>        target/ppc: Remove msr_fe0 and msr_fe1 macros
>        target/ppc: Remove msr_ts macro
>        target/ppc: Remove msr_hv macro
>        target/ppc: Remove msr_de macro
>        target/ppc: Add unused msr bits FIELDs
>        target/ppc: Change MSR_* to follow POWER ISA numbering convention
> 
>   hw/intc/xive.c           |  25 +++++-
>   hw/intc/xive2.c          |  18 ++--
>   hw/ppc/pegasos2.c        |   2 +-
>   hw/ppc/spapr.c           |   2 +-
>   hw/virtio/vhost-user.c   |   2 +-
>   include/hw/ppc/xive.h    |   1 +
>   target/ppc/cpu.c         |   2 +-
>   target/ppc/cpu.h         | 220 ++++++++++++++++++++++-------------------------
>   target/ppc/cpu_init.c    |  23 +++--
>   target/ppc/excp_helper.c |  54 ++++++------
>   target/ppc/fpu_helper.c  |  28 +++---
>   target/ppc/gdbstub.c     |   2 +-
>   target/ppc/helper_regs.c |  15 ++--
>   target/ppc/kvm.c         |  16 ++--
>   target/ppc/machine.c     |   2 +-
>   target/ppc/mem_helper.c  |  23 ++---
>   target/ppc/misc_helper.c |   2 +-
>   target/ppc/mmu-radix64.c |  11 +--
>   target/ppc/mmu_common.c  |  40 +++++----
>   target/ppc/mmu_helper.c  |   6 +-
>   20 files changed, 260 insertions(+), 234 deletions(-)



  parent reply	other threads:[~2022-05-06  4:18 UTC|newest]

Thread overview: 36+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-05-05 18:49 [PULL 00/30] ppc queue Daniel Henrique Barboza
2022-05-05 18:49 ` [PULL 01/30] target/ppc: initialize 'val' union in kvm_get_one_spr() Daniel Henrique Barboza
2022-05-05 18:49 ` [PULL 02/30] target/ppc: init 'lpcr' in kvmppc_enable_cap_large_decr() Daniel Henrique Barboza
2022-05-05 18:49 ` [PULL 03/30] target/ppc: init 'sregs' in kvmppc_put_books_sregs() Daniel Henrique Barboza
2022-05-05 18:49 ` [PULL 04/30] target/ppc: init 'rmmu_info' in kvm_get_radix_page_info() Daniel Henrique Barboza
2022-05-05 18:49 ` [PULL 05/30] target/ppc: Fix BookE debug interrupt generation Daniel Henrique Barboza
2022-05-05 18:49 ` [PULL 06/30] vhost-user: Use correct macro name TARGET_PPC64 Daniel Henrique Barboza
2022-05-05 18:49 ` [PULL 07/30] ppc/xive: Always recompute the PIPR when pushing an OS context Daniel Henrique Barboza
2022-05-05 18:49 ` [PULL 08/30] ppc/xive: Update the state of the External interrupt signal Daniel Henrique Barboza
2022-05-05 18:49 ` [PULL 09/30] target/ppc: Remove fpscr_* macros from cpu.h Daniel Henrique Barboza
2022-05-05 18:49 ` [PULL 10/30] target/ppc: Remove unused msr_* macros Daniel Henrique Barboza
2022-05-05 18:49 ` [PULL 11/30] target/ppc: Remove msr_pr macro Daniel Henrique Barboza
2022-05-05 18:49 ` [PULL 12/30] target/ppc: Remove msr_le macro Daniel Henrique Barboza
2022-05-05 18:49 ` [PULL 13/30] target/ppc: Remove msr_ds macro Daniel Henrique Barboza
2022-05-05 18:49 ` [PULL 14/30] target/ppc: Remove msr_ile macro Daniel Henrique Barboza
2022-05-05 18:49 ` [PULL 15/30] target/ppc: Remove msr_ee macro Daniel Henrique Barboza
2022-05-05 18:49 ` [PULL 16/30] target/ppc: Remove msr_ce macro Daniel Henrique Barboza
2022-05-05 18:49 ` [PULL 17/30] target/ppc: Remove msr_pow macro Daniel Henrique Barboza
2022-05-05 18:49 ` [PULL 18/30] target/ppc: Remove msr_me macro Daniel Henrique Barboza
2022-05-05 18:49 ` [PULL 19/30] target/ppc: Remove msr_gs macro Daniel Henrique Barboza
2022-05-05 18:49 ` [PULL 20/30] target/ppc: Remove msr_fp macro Daniel Henrique Barboza
2022-05-05 18:49 ` [PULL 21/30] target/ppc: Remove msr_cm macro Daniel Henrique Barboza
2022-05-05 18:49 ` [PULL 22/30] target/ppc: Remove msr_ir macro Daniel Henrique Barboza
2022-05-05 18:49 ` [PULL 23/30] target/ppc: Remove msr_dr macro Daniel Henrique Barboza
2022-05-05 18:49 ` [PULL 24/30] target/ppc: Remove msr_ep macro Daniel Henrique Barboza
2022-05-05 18:49 ` [PULL 25/30] target/ppc: Remove msr_fe0 and msr_fe1 macros Daniel Henrique Barboza
2022-05-05 18:49 ` [PULL 26/30] target/ppc: Remove msr_ts macro Daniel Henrique Barboza
2022-05-05 18:49 ` [PULL 27/30] target/ppc: Remove msr_hv macro Daniel Henrique Barboza
2022-05-05 18:49 ` [PULL 28/30] target/ppc: Remove msr_de macro Daniel Henrique Barboza
2022-05-05 18:49 ` [PULL 29/30] target/ppc: Add unused msr bits FIELDs Daniel Henrique Barboza
2022-05-05 18:49 ` [PULL 30/30] target/ppc: Change MSR_* to follow POWER ISA numbering convention Daniel Henrique Barboza
2022-05-06  4:17 ` Richard Henderson [this message]
2022-07-18 17:21 [PULL 00/30] ppc queue Daniel Henrique Barboza
2022-07-19  8:56 ` Peter Maydell
2023-06-26  5:56 Cédric Le Goater
2023-06-26  8:37 ` 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=5fe9a894-1bd4-c2b2-1500-20b9ee7e125c@linaro.org \
    --to=richard.henderson@linaro.org \
    --cc=danielhb413@gmail.com \
    --cc=peter.maydell@linaro.org \
    --cc=qemu-devel@nongnu.org \
    --cc=qemu-ppc@nongnu.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 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.