diff options
Diffstat (limited to 'arch/arm64/include/asm/percpu.h')
| -rw-r--r-- | arch/arm64/include/asm/percpu.h | 11 | 
1 files changed, 9 insertions, 2 deletions
| diff --git a/arch/arm64/include/asm/percpu.h b/arch/arm64/include/asm/percpu.h index 3bd498e4de4c..43393208229e 100644 --- a/arch/arm64/include/asm/percpu.h +++ b/arch/arm64/include/asm/percpu.h @@ -16,11 +16,15 @@  #ifndef __ASM_PERCPU_H  #define __ASM_PERCPU_H +#include <asm/alternative.h>  #include <asm/stack_pointer.h>  static inline void set_my_cpu_offset(unsigned long off)  { -	asm volatile("msr tpidr_el1, %0" :: "r" (off) : "memory"); +	asm volatile(ALTERNATIVE("msr tpidr_el1, %0", +				 "msr tpidr_el2, %0", +				 ARM64_HAS_VIRT_HOST_EXTN) +			:: "r" (off) : "memory");  }  static inline unsigned long __my_cpu_offset(void) @@ -31,7 +35,10 @@ static inline unsigned long __my_cpu_offset(void)  	 * We want to allow caching the value, so avoid using volatile and  	 * instead use a fake stack read to hazard against barrier().  	 */ -	asm("mrs %0, tpidr_el1" : "=r" (off) : +	asm(ALTERNATIVE("mrs %0, tpidr_el1", +			"mrs %0, tpidr_el2", +			ARM64_HAS_VIRT_HOST_EXTN) +		: "=r" (off) :  		"Q" (*(const unsigned long *)current_stack_pointer));  	return off; |