qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Qemu-devel] [[PATCH] 5/7] target-arm: Add TTBR regime function and


From: Sergey Fedorov
Subject: Re: [Qemu-devel] [[PATCH] 5/7] target-arm: Add TTBR regime function and use
Date: Fri, 27 Mar 2015 16:25:31 -0700
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.5.0

On 27.03.2015 12:10, Greg Bellows wrote:
> Add a utility function for choosing the correct TTBR system register based on
> the specified MMU index. Add use of function on physical address lookup.
>
> Signed-off-by: Greg Bellows <address@hidden>
> ---
>  target-arm/helper.c | 44 ++++++++++++++++++++++++++++++++------------
>  1 file changed, 32 insertions(+), 12 deletions(-)
>
> diff --git a/target-arm/helper.c b/target-arm/helper.c
> index 00b457a..13fdf02 100644
> --- a/target-arm/helper.c
> +++ b/target-arm/helper.c

(snip)

> @@ -5376,20 +5390,26 @@ static int get_phys_addr_lpae(CPUARMState *env, 
> target_ulong address,
>      int32_t tbi = 0;
>      TCR *tcr = regime_tcr(env, mmu_idx);
>      int ap, ns, xn, pxn;
> +    uint32_t el = regime_el(env, mmu_idx);
>  
>      /* TODO:
>       * This code assumes we're either a 64-bit EL1 or a 32-bit PL1;
> -     * it doesn't handle the different format TCR for TCR_EL2, TCR_EL3,
> -     * and VTCR_EL2, or the fact that those regimes don't have a split
> +     * it doesn't handle the different format TCR for and VTCR_EL2,

s/and VTCR_EL2/VTCR_EL2/

> +     * or the fact that those regimes don't have a split
>       * TTBR0/TTBR1. Attribute and permission bit handling should also
>       * be checked when adding support for those page table walks.
>       */
> -    if (arm_el_is_aa64(env, regime_el(env, mmu_idx))) {
> +    if (arm_el_is_aa64(env, el)) {
>          va_size = 64;
> -        if (extract64(address, 55, 1))
> -            tbi = extract64(tcr->raw_tcr, 38, 1);
> -        else
> -            tbi = extract64(tcr->raw_tcr, 37, 1);
> +        if (el == 3 || el == 2) {
> +            tbi = extract64(tcr->raw_tcr, 20, 1);
> +        } else {
> +            if (extract64(address, 55, 1)) {
> +                tbi = extract64(tcr->raw_tcr, 38, 1);
> +            } else {
> +                tbi = extract64(tcr->raw_tcr, 37, 1);
> +            }
> +        }
>          tbi *= 8;
>      }
>  

(snip)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]