qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: David Gibson <david@gibson.dropbear.id.au>
To: "Bruno Larsen (billionai)" <bruno.larsen@eldorado.org.br>
Cc: farosas@linux.ibm.com, richard.henderson@linaro.org,
	qemu-devel@nongnu.org, Greg Kurz <groug@kaod.org>,
	lucas.araujo@eldorado.org.br, fernando.valle@eldorado.org.br,
	qemu-ppc@nongnu.org, matheus.ferst@eldorado.org.br,
	luis.pires@eldorado.org.br
Subject: Re: [PATCH] target/ppc: fold ppc_store_ptcr into it's only caller
Date: Thu, 27 May 2021 11:13:32 +1000	[thread overview]
Message-ID: <YK7yPJCY4DQ9umiQ@yekko> (raw)
In-Reply-To: <20210526143516.125582-1-bruno.larsen@eldorado.org.br>

[-- Attachment #1: Type: text/plain, Size: 4223 bytes --]

On Wed, May 26, 2021 at 11:35:16AM -0300, Bruno Larsen (billionai) wrote:
> ppc_store_ptcr, defined in mmu_helper.c, was only used by
> helper_store_ptcr, in misc_helper.c. To avoid possible confusion,
> the function was folded into the helper.
> 
> Signed-off-by: Bruno Larsen (billionai)
> <bruno.larsen@eldorado.org.br>

LGTM, applied to ppc-for-6.1, thanks.

> ---
>  target/ppc/cpu.h         |  1 -
>  target/ppc/misc_helper.c | 24 +++++++++++++++++++++++-
>  target/ppc/mmu_helper.c  | 28 ----------------------------
>  3 files changed, 23 insertions(+), 30 deletions(-)
> 
> diff --git a/target/ppc/cpu.h b/target/ppc/cpu.h
> index 203f07e48e..f39f5e0fff 100644
> --- a/target/ppc/cpu.h
> +++ b/target/ppc/cpu.h
> @@ -1290,7 +1290,6 @@ bool ppc_cpu_tlb_fill(CPUState *cs, vaddr address, int size,
>  
>  #if !defined(CONFIG_USER_ONLY)
>  void ppc_store_sdr1(CPUPPCState *env, target_ulong value);
> -void ppc_store_ptcr(CPUPPCState *env, target_ulong value);
>  #endif /* !defined(CONFIG_USER_ONLY) */
>  void ppc_store_msr(CPUPPCState *env, target_ulong value);
>  void ppc_store_lpcr(PowerPCCPU *cpu, target_ulong val);
> diff --git a/target/ppc/misc_helper.c b/target/ppc/misc_helper.c
> index 442b12652c..c33f5f39b9 100644
> --- a/target/ppc/misc_helper.c
> +++ b/target/ppc/misc_helper.c
> @@ -23,6 +23,7 @@
>  #include "exec/helper-proto.h"
>  #include "qemu/error-report.h"
>  #include "qemu/main-loop.h"
> +#include "mmu-book3s-v3.h"
>  
>  #include "helper_regs.h"
>  
> @@ -116,7 +117,28 @@ void helper_store_sdr1(CPUPPCState *env, target_ulong val)
>  void helper_store_ptcr(CPUPPCState *env, target_ulong val)
>  {
>      if (env->spr[SPR_PTCR] != val) {
> -        ppc_store_ptcr(env, val);
> +        PowerPCCPU *cpu = env_archcpu(env);
> +        target_ulong ptcr_mask = PTCR_PATB | PTCR_PATS;
> +        target_ulong patbsize = val & PTCR_PATS;
> +
> +        qemu_log_mask(CPU_LOG_MMU, "%s: " TARGET_FMT_lx "\n", __func__, val);
> +
> +        assert(!cpu->vhyp);
> +        assert(env->mmu_model & POWERPC_MMU_3_00);
> +
> +        if (val & ~ptcr_mask) {
> +            error_report("Invalid bits 0x"TARGET_FMT_lx" set in PTCR",
> +                         val & ~ptcr_mask);
> +            val &= ptcr_mask;
> +        }
> +
> +        if (patbsize > 24) {
> +            error_report("Invalid Partition Table size 0x" TARGET_FMT_lx
> +                         " stored in PTCR", patbsize);
> +            return;
> +        }
> +
> +        env->spr[SPR_PTCR] = val;
>          tlb_flush(env_cpu(env));
>      }
>  }
> diff --git a/target/ppc/mmu_helper.c b/target/ppc/mmu_helper.c
> index 5395e5ee5a..d45936be49 100644
> --- a/target/ppc/mmu_helper.c
> +++ b/target/ppc/mmu_helper.c
> @@ -1987,34 +1987,6 @@ void ppc_tlb_invalidate_one(CPUPPCState *env, target_ulong addr)
>  
>  /*****************************************************************************/
>  /* Special registers manipulation */
> -#if defined(TARGET_PPC64)
> -void ppc_store_ptcr(CPUPPCState *env, target_ulong value)
> -{
> -    PowerPCCPU *cpu = env_archcpu(env);
> -    target_ulong ptcr_mask = PTCR_PATB | PTCR_PATS;
> -    target_ulong patbsize = value & PTCR_PATS;
> -
> -    qemu_log_mask(CPU_LOG_MMU, "%s: " TARGET_FMT_lx "\n", __func__, value);
> -
> -    assert(!cpu->vhyp);
> -    assert(env->mmu_model & POWERPC_MMU_3_00);
> -
> -    if (value & ~ptcr_mask) {
> -        error_report("Invalid bits 0x"TARGET_FMT_lx" set in PTCR",
> -                     value & ~ptcr_mask);
> -        value &= ptcr_mask;
> -    }
> -
> -    if (patbsize > 24) {
> -        error_report("Invalid Partition Table size 0x" TARGET_FMT_lx
> -                     " stored in PTCR", patbsize);
> -        return;
> -    }
> -
> -    env->spr[SPR_PTCR] = value;
> -}
> -
> -#endif /* defined(TARGET_PPC64) */
>  
>  /* Segment registers load and store */
>  target_ulong helper_load_sr(CPUPPCState *env, target_ulong sr_num)

-- 
David Gibson			| I'll have my music baroque, and my code
david AT gibson.dropbear.id.au	| minimalist, thank you.  NOT _the_ _other_
				| _way_ _around_!
http://www.ozlabs.org/~dgibson

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

      reply	other threads:[~2021-05-27  1:51 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-05-26 14:35 [PATCH] target/ppc: fold ppc_store_ptcr into it's only caller Bruno Larsen (billionai)
2021-05-27  1:13 ` David Gibson [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=YK7yPJCY4DQ9umiQ@yekko \
    --to=david@gibson.dropbear.id.au \
    --cc=bruno.larsen@eldorado.org.br \
    --cc=farosas@linux.ibm.com \
    --cc=fernando.valle@eldorado.org.br \
    --cc=groug@kaod.org \
    --cc=lucas.araujo@eldorado.org.br \
    --cc=luis.pires@eldorado.org.br \
    --cc=matheus.ferst@eldorado.org.br \
    --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).