qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: "Cédric Le Goater" <clegoate@redhat.com>
To: Nicholas Piggin <npiggin@gmail.com>, qemu-ppc@nongnu.org
Cc: qemu-devel@nongnu.org, Harsh Prateek Bora <harshpb@linux.ibm.com>,
	Daniel Henrique Barboza <danielhb413@gmail.com>
Subject: Re: [PATCH] target/ppc: Better CTRL SPR implementation
Date: Fri, 23 Jun 2023 11:32:58 +0200	[thread overview]
Message-ID: <e2af1fa6-75f2-0df3-19e7-44432cc6d672@redhat.com> (raw)
In-Reply-To: <20230620131523.169340-1-npiggin@gmail.com>

On 6/20/23 15:15, Nicholas Piggin wrote:
> The CTRL register is able to write the bit in the RUN field, which gets
> reflected into the TS field which is read-only and contains the state of
> the RUN field for all threads in the core.
> 
> TCG does not implement SMT, so the correct implementation just requires
> mirroring the RUN bit into the first bit of the TS field.
> 
> Signed-off-by: Nicholas Piggin <npiggin@gmail.com>


Applied to ppc-next.

Thanks,

C.



> ---
> This is also unchanged from last posting except improved changelog.
> The pseries TCG SMT patches depend on this one, but it is good to go
> by itself too (this is what CTRL appears like to hardware KVM guest).
> 
> Thanks,
> Nick
> 
>   target/ppc/translate.c | 9 ++++++++-
>   1 file changed, 8 insertions(+), 1 deletion(-)
> 
> diff --git a/target/ppc/translate.c b/target/ppc/translate.c
> index b591f2e496..1ade063616 100644
> --- a/target/ppc/translate.c
> +++ b/target/ppc/translate.c
> @@ -418,7 +418,14 @@ void spr_write_generic32(DisasContext *ctx, int sprn, int gprn)
>   
>   void spr_write_CTRL(DisasContext *ctx, int sprn, int gprn)
>   {
> -    spr_write_generic32(ctx, sprn, gprn);
> +    /* This does not implement >1 thread */
> +    TCGv t0 = tcg_temp_new();
> +    TCGv t1 = tcg_temp_new();
> +    tcg_gen_extract_tl(t0, cpu_gpr[gprn], 0, 1); /* Extract RUN field */
> +    tcg_gen_shli_tl(t1, t0, 8); /* Duplicate the bit in TS */
> +    tcg_gen_or_tl(t1, t1, t0);
> +    gen_store_spr(sprn, t1);
> +    spr_store_dump_spr(sprn);
>   
>       /*
>        * SPR_CTRL writes must force a new translation block,



      reply	other threads:[~2023-06-23  9:33 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-06-20 13:15 [PATCH] target/ppc: Better CTRL SPR implementation Nicholas Piggin
2023-06-23  9:32 ` Cédric Le Goater [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=e2af1fa6-75f2-0df3-19e7-44432cc6d672@redhat.com \
    --to=clegoate@redhat.com \
    --cc=danielhb413@gmail.com \
    --cc=harshpb@linux.ibm.com \
    --cc=npiggin@gmail.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).