[PATCH 3/3] ARM: domain: move {set, get}_domain under config guard
Vladimir Murzin
vladimir.murzin at arm.com
Thu Apr 28 07:44:34 PDT 2016
On 28/04/16 14:50, Russell King - ARM Linux wrote:
> On Wed, Apr 27, 2016 at 01:16:29PM +0100, Vladimir Murzin wrote:
>> I've confused myself that support for CPU_SW_DOMAIN_PAN implies
>> CONFIG_CPU_USE_DOMAINS, but now I see they are in fact different
>> features/users of those accessors.
>>
>> So something like below should be sufficient to fix my case, right?
>
> How about:
>
> arch/arm/include/asm/domain.h | 11 +++++++++++
> 1 file changed, 11 insertions(+)
>
> diff --git a/arch/arm/include/asm/domain.h b/arch/arm/include/asm/domain.h
> index fc8ba1663601..4e218993c12d 100644
> --- a/arch/arm/include/asm/domain.h
> +++ b/arch/arm/include/asm/domain.h
> @@ -84,6 +84,7 @@
>
> #ifndef __ASSEMBLY__
>
> +#ifdef CONFIG_CPU_CP15
I'm afraid it won't solve my case since R-class uses cp15 :(
Cheers
Vladimir
> static inline unsigned int get_domain(void)
> {
> unsigned int domain;
> @@ -103,6 +104,16 @@ static inline void set_domain(unsigned val)
> : : "r" (val) : "memory");
> isb();
> }
> +#else
> +static inline unsigned int get_domain(void)
> +{
> + return 0;
> +}
> +
> +static inline void set_domain(unsigned val)
> +{
> +}
> +#endif
>
> #ifdef CONFIG_CPU_USE_DOMAINS
> #define modify_domain(dom,type) \
>
More information about the linux-arm-kernel
mailing list