[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Qemu-devel] [PATCH for-4.2 04/24] target/arm: Install ASIDs for sho
From: |
Alex Bennée |
Subject: |
Re: [Qemu-devel] [PATCH for-4.2 04/24] target/arm: Install ASIDs for short-form from EL1 |
Date: |
Wed, 24 Jul 2019 12:47:56 +0100 |
User-agent: |
mu4e 1.3.3; emacs 27.0.50 |
Richard Henderson <address@hidden> writes:
> This is less complex than the LPAE case, but still we now avoid the
> flush in case it is only the PROCID field that is changing.
>
> Signed-off-by: Richard Henderson <address@hidden>
Reviewed-by: Alex Bennée <address@hidden>
> ---
> target/arm/helper.c | 34 ++++++++++++++++++++++++----------
> 1 file changed, 24 insertions(+), 10 deletions(-)
>
> diff --git a/target/arm/helper.c b/target/arm/helper.c
> index 0f21a077de..1ed7c06313 100644
> --- a/target/arm/helper.c
> +++ b/target/arm/helper.c
> @@ -551,17 +551,31 @@ static void fcse_write(CPUARMState *env, const
> ARMCPRegInfo *ri, uint64_t value)
> static void contextidr_write(CPUARMState *env, const ARMCPRegInfo *ri,
> uint64_t value)
> {
> - ARMCPU *cpu = env_archcpu(env);
> -
> - if (raw_read(env, ri) != value && !arm_feature(env, ARM_FEATURE_PMSA)
> - && !extended_addresses_enabled(env)) {
> - /* For VMSA (when not using the LPAE long descriptor page table
> - * format) this register includes the ASID, so do a TLB flush.
> - * For PMSA it is purely a process ID and no action is needed.
> - */
> - tlb_flush(CPU(cpu));
> - }
> raw_write(env, ri, value);
> +
> + /*
> + * For VMSA (when not using the LPAE long descriptor page table format)
> + * this register includes the ASID. For PMSA it is purely a process ID
> + * and no action is needed.
> + */
> + if (!arm_feature(env, ARM_FEATURE_PMSA) &&
> + !extended_addresses_enabled(env)) {
> + CPUState *cs = env_cpu(env);
> + int asid = extract32(value, 0, 8);
> + int idxmask;
> +
> + switch (ri->secure) {
> + case ARM_CP_SECSTATE_S:
> + idxmask = ARMMMUIdxBit_S1SE1 | ARMMMUIdxBit_S1SE0;
> + break;
> + case ARM_CP_SECSTATE_NS:
> + idxmask = ARMMMUIdxBit_S12NSE1 | ARMMMUIdxBit_S12NSE0;
> + break;
> + default:
> + g_assert_not_reached();
> + }
> + tlb_set_asid_for_mmuidx(cs, asid, idxmask, 0);
> + }
> }
>
> /* IS variants of TLB operations must affect all cores */
--
Alex Bennée
- [Qemu-devel] [PATCH for-4.2 00/24] target/arm: Implement ARMv8.1-VHE, Richard Henderson, 2019/07/19
- [Qemu-devel] [PATCH for-4.2 01/24] cputlb: Add tlb_set_asid_for_mmuidx, Richard Henderson, 2019/07/19
- [Qemu-devel] [PATCH for-4.2 02/24] cputlb: Add tlb_flush_asid_by_mmuidx and friends, Richard Henderson, 2019/07/19
- [Qemu-devel] [PATCH for-4.2 03/24] target/arm: Install ASIDs for long-form from EL1, Richard Henderson, 2019/07/19
- [Qemu-devel] [PATCH for-4.2 04/24] target/arm: Install ASIDs for short-form from EL1, Richard Henderson, 2019/07/19
- Re: [Qemu-devel] [PATCH for-4.2 04/24] target/arm: Install ASIDs for short-form from EL1,
Alex Bennée <=
- [Qemu-devel] [PATCH for-4.2 05/24] target/arm: Install ASIDs for EL2, Richard Henderson, 2019/07/19
- [Qemu-devel] [PATCH for-4.2 11/24] target/arm: Add the hypervisor virtual counter, Richard Henderson, 2019/07/19
- [Qemu-devel] [PATCH for-4.2 14/24] target/arm: Simplify tlb_force_broadcast alternatives, Richard Henderson, 2019/07/19
- [Qemu-devel] [PATCH for-4.2 18/24] target/arm: Update arm_sctlr for VHE, Richard Henderson, 2019/07/19
- [Qemu-devel] [PATCH for-4.2 17/24] target/arm: Update arm_mmu_idx for VHE, Richard Henderson, 2019/07/19