diff --git a/sys/arch/arm/include/lock.h b/sys/arch/arm/include/lock.h index f345f54ba46d..edeb17b35f6d 100644 --- a/sys/arch/arm/include/lock.h +++ b/sys/arch/arm/include/lock.h @@ -41,6 +41,10 @@ #ifndef _ARM_LOCK_H_ #define _ARM_LOCK_H_ +#ifdef _ARM_ARCH_8 +#error This file is only for armv<=7. +#endif + static __inline int __SIMPLELOCK_LOCKED_P(const __cpu_simple_lock_t *__ptr) { @@ -136,21 +140,23 @@ __swp(int __val, __cpu_simple_lock_t *__ptr) } #endif /* !_ARM_ARCH_6 */ +/* load/__arm_membar_r_rw implies a load-acquire */ static __inline void -__arm_membar_producer(void) +__arm_membar_r_rw(void) { #ifdef _ARM_ARCH_7 - __asm __volatile("dsb" ::: "memory"); + __asm __volatile("dmb ishld" ::: "memory"); #elif defined(_ARM_ARCH_6) - __asm __volatile("mcr\tp15,0,%0,c7,c10,4" :: "r"(0) : "memory"); + __asm __volatile("mcr\tp15,0,%0,c7,c10,5" :: "r"(0) : "memory"); #endif } +/* __arm_membar_rw_rw/store implies a store-release (no rw/w in arm) */ static __inline void -__arm_membar_consumer(void) +__arm_membar_rw_rw(void) { #ifdef _ARM_ARCH_7 - __asm __volatile("dmb" ::: "memory"); + __asm __volatile("dmb ish" ::: "memory"); #elif defined(_ARM_ARCH_6) __asm __volatile("mcr\tp15,0,%0,c7,c10,5" :: "r"(0) : "memory"); #endif @@ -161,7 +167,6 @@ __cpu_simple_lock_init(__cpu_simple_lock_t *__alp) { *__alp = __SIMPLELOCK_UNLOCKED; - __arm_membar_producer(); } #if !defined(__thumb__) || defined(_ARM_ARCH_T2) @@ -169,12 +174,11 @@ static __inline void __unused __cpu_simple_lock(__cpu_simple_lock_t *__alp) { #ifdef _ARM_ARCH_6 - __arm_membar_consumer(); do { /* spin */ } while (__arm_load_exclusive(__alp) != __SIMPLELOCK_UNLOCKED || __arm_store_exclusive(__alp, __SIMPLELOCK_LOCKED)); - __arm_membar_producer(); + __arm_membar_r_rw(); #else while (__swp(__SIMPLELOCK_LOCKED, __alp) != __SIMPLELOCK_UNLOCKED) continue; @@ -189,13 +193,12 @@ static __inline int __unused __cpu_simple_lock_try(__cpu_simple_lock_t *__alp) { #ifdef _ARM_ARCH_6 - __arm_membar_consumer(); do { if (__arm_load_exclusive(__alp) != __SIMPLELOCK_UNLOCKED) { return 0; } } while (__arm_store_exclusive(__alp, __SIMPLELOCK_LOCKED)); - __arm_membar_producer(); + __arm_membar_r_rw(); return 1; #else return (__swp(__SIMPLELOCK_LOCKED, __alp) == __SIMPLELOCK_UNLOCKED); @@ -209,19 +212,8 @@ static __inline void __unused __cpu_simple_unlock(__cpu_simple_lock_t *__alp) { -#ifdef _ARM_ARCH_8 - if (sizeof(*__alp) == 1) { - __asm __volatile("stlb\t%0, [%1]" - :: "r"(__SIMPLELOCK_UNLOCKED), "r"(__alp) : "memory"); - } else { - __asm __volatile("stl\t%0, [%1]" - :: "r"(__SIMPLELOCK_UNLOCKED), "r"(__alp) : "memory"); - } -#else - __arm_membar_consumer(); + __arm_membar_rw_rw(); *__alp = __SIMPLELOCK_UNLOCKED; - __arm_membar_producer(); -#endif } #endif /* _ARM_LOCK_H_ */