From: "Nicholas Piggin" <npiggin@gmail.com>
To: "Madhavan Srinivasan" <maddy@linux.ibm.com>,
<danielhb413@gmail.com>, <clg@kaod.org>
Cc: <qemu-ppc@nongnu.org>, <qemu-devel@nongnu.org>,
<atrajeev@linux.vnet.ibm.com>, <kjain@linux.ibm.com>
Subject: Re: [PATCH] target/ppc: Add power10 pmu SPRs
Date: Tue, 12 Mar 2024 22:23:29 +1000 [thread overview]
Message-ID: <CZRROM5LFA0B.37MT31NHNJPRL@wheely> (raw)
In-Reply-To: <20240219103924.445857-1-maddy@linux.ibm.com>
On Mon Feb 19, 2024 at 8:39 PM AEST, Madhavan Srinivasan wrote:
> Currently in tcg mode, when reading from power10 pmu spr like MMCR3,
> qemu logs this message (when starting qemu with -d guest_errors)
>
> Trying to read invalid spr 754 (0x2f2) at 0000000030056bb0
>
> This is becuase, no read/write call-backs are registered for
> these SPRs. Add support to register generic read/write
> functions to these power10 pmu sprs to fix it.
Reviewed-by: Nicholas Piggin <npiggin@gmail.com>
>
> Signed-off-by: Madhavan Srinivasan <maddy@linux.ibm.com>
> ---
> target/ppc/cpu.h | 6 ++++++
> target/ppc/cpu_init.c | 34 ++++++++++++++++++++++++++++++++++
> 2 files changed, 40 insertions(+)
>
> diff --git a/target/ppc/cpu.h b/target/ppc/cpu.h
> index a44de22ca4..e5d0c8a5ee 100644
> --- a/target/ppc/cpu.h
> +++ b/target/ppc/cpu.h
> @@ -1933,6 +1933,12 @@ void ppc_compat_add_property(Object *obj, const char *name,
> #define SPR_BOOKE_TLB2CFG (0x2B2)
> #define SPR_BOOKE_TLB3CFG (0x2B3)
> #define SPR_BOOKE_EPR (0x2BE)
> +#define SPR_POWER_USIER2 (0x2E0)
> +#define SPR_POWER_USIER3 (0x2E1)
> +#define SPR_POWER_UMMCR3 (0x2E2)
> +#define SPR_POWER_SIER2 (0x2F0)
> +#define SPR_POWER_SIER3 (0x2F1)
> +#define SPR_POWER_MMCR3 (0x2F2)
> #define SPR_PERF0 (0x300)
> #define SPR_RCPU_MI_RBA0 (0x300)
> #define SPR_MPC_MI_CTR (0x300)
> diff --git a/target/ppc/cpu_init.c b/target/ppc/cpu_init.c
> index 9931372a08..d64da75a61 100644
> --- a/target/ppc/cpu_init.c
> +++ b/target/ppc/cpu_init.c
> @@ -5308,6 +5308,38 @@ static void register_power8_pmu_user_sprs(CPUPPCState *env)
> 0x00000000);
> }
>
> +static void register_power10_pmu_sup_sprs(CPUPPCState *env)
> +{
> + spr_register_kvm(env, SPR_POWER_MMCR3, "MMCR3",
> + SPR_NOACCESS, SPR_NOACCESS,
> + &spr_read_generic, &spr_write_generic,
> + KVM_REG_PPC_MMCR3, 0x00000000);
> + spr_register_kvm(env, SPR_POWER_SIER2, "SIER2",
> + SPR_NOACCESS, SPR_NOACCESS,
> + &spr_read_generic, &spr_write_generic,
> + KVM_REG_PPC_SIER2, 0x00000000);
> + spr_register_kvm(env, SPR_POWER_SIER3, "SIER3",
> + SPR_NOACCESS, SPR_NOACCESS,
> + &spr_read_generic, &spr_write_generic,
> + KVM_REG_PPC_SIER3, 0x00000000);
> +}
> +
> +static void register_power10_pmu_user_sprs(CPUPPCState *env)
> +{
> + spr_register(env, SPR_POWER_UMMCR3, "UMMCR3",
> + &spr_read_generic, &spr_write_generic,
> + &spr_read_generic, &spr_write_generic,
> + 0x00000000);
> + spr_register(env, SPR_POWER_USIER2, "USIER2",
> + &spr_read_generic, SPR_NOACCESS,
> + &spr_read_generic, &spr_write_generic,
> + 0x00000000);
> + spr_register(env, SPR_POWER_USIER3, "USIER3",
> + &spr_read_generic, SPR_NOACCESS,
> + &spr_read_generic, &spr_write_generic,
> + 0x00000000);
> +}
> +
> static void register_power5p_ear_sprs(CPUPPCState *env)
> {
> /* External access control */
> @@ -6505,6 +6537,8 @@ static void init_proc_POWER10(CPUPPCState *env)
> register_power9_mmu_sprs(env);
> register_power10_hash_sprs(env);
> register_power10_dexcr_sprs(env);
> + register_power10_pmu_sup_sprs(env);
> + register_power10_pmu_user_sprs(env);
>
> /* FIXME: Filter fields properly based on privilege level */
> spr_register_kvm_hv(env, SPR_PSSCR, "PSSCR", NULL, NULL, NULL, NULL,
prev parent reply other threads:[~2024-03-12 12:24 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-02-19 10:39 [PATCH] target/ppc: Add power10 pmu SPRs Madhavan Srinivasan
2024-03-12 12:23 ` Nicholas Piggin [this message]
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=CZRROM5LFA0B.37MT31NHNJPRL@wheely \
--to=npiggin@gmail.com \
--cc=atrajeev@linux.vnet.ibm.com \
--cc=clg@kaod.org \
--cc=danielhb413@gmail.com \
--cc=kjain@linux.ibm.com \
--cc=maddy@linux.ibm.com \
--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 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).