[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <alpine.LFD.2.02.1208120008380.5231@xanadu.home>
Date: Sun, 12 Aug 2012 00:11:33 -0400 (EDT)
From: Nicolas Pitre <nicolas.pitre@...aro.org>
To: Cyril Chemparathy <cyril@...com>
cc: linux-kernel@...r.kernel.org, linux-arm-kernel@...ts.infradead.org,
arnd@...db.de, catalin.marinas@....com, grant.likely@...retlab.ca,
linux@....linux.org.uk, will.deacon@....com,
Vitaly Andrianov <vitalya@...com>
Subject: Re: [PATCH v2 11/22] ARM: LPAE: use 64-bit accessors for TTBR
registers
On Fri, 10 Aug 2012, Cyril Chemparathy wrote:
> This patch adds TTBR accessor macros, and modifies cpu_get_pgd() and
> the LPAE version of cpu_set_reserved_ttbr0() to use these instead.
>
> In the process, we also fix these functions to correctly handle cases
> where the physical address lies beyond the 4G limit of 32-bit addressing.
>
> Signed-off-by: Cyril Chemparathy <cyril@...com>
> Signed-off-by: Vitaly Andrianov <vitalya@...com>
> ---
> arch/arm/include/asm/proc-fns.h | 24 +++++++++++++++++++-----
> arch/arm/mm/context.c | 9 ++-------
> 2 files changed, 21 insertions(+), 12 deletions(-)
>
> diff --git a/arch/arm/include/asm/proc-fns.h b/arch/arm/include/asm/proc-fns.h
> index 75b5f14..24224df 100644
> --- a/arch/arm/include/asm/proc-fns.h
> +++ b/arch/arm/include/asm/proc-fns.h
> @@ -116,13 +116,27 @@ extern void cpu_resume(void);
> #define cpu_switch_mm(pgd,mm) cpu_do_switch_mm(virt_to_phys(pgd),mm)
>
> #ifdef CONFIG_ARM_LPAE
> +
> +#define cpu_get_ttbr(nr) \
> + ({ \
> + u64 ttbr; \
> + __asm__("mrrc p15, " #nr ", %Q0, %R0, c2" \
> + : "=r" (ttbr) \
> + : : "cc"); \
> + ttbr; \
> + })
I don't think you have to clobber the condition code (cc) here. It has
been a long while since the ability to pass a condition code inside an
inline assembly statement was removed from gcc.
Other that that...
Acked-by: Nicolas Pitre <nico@...aro.org>
Nicolas
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists