csky: Emulate one-byte cmpxchg
authorPaul E. McKenney <paulmck@kernel.org>
Wed, 27 Mar 2024 22:14:26 +0000 (15:14 -0700)
committerPaul E. McKenney <paulmck@kernel.org>
Sat, 11 May 2024 14:07:07 +0000 (07:07 -0700)
Use the new cmpxchg_emu_u8() to emulate one-byte cmpxchg() on csky.

[ paulmck: Apply kernel test robot feedback. ]
[ paulmck: Drop two-byte support per Arnd Bergmann feedback. ]

Co-developed-by: Yujie Liu <yujie.liu@intel.com>
Signed-off-by: Yujie Liu <yujie.liu@intel.com>
Signed-off-by: Paul E. McKenney <paulmck@kernel.org>
Tested-by: Yujie Liu <yujie.liu@intel.com>
Reviewed-by: Guo Ren <guoren@kernel.org>
Cc: Arnd Bergmann <arnd@arndb.de>
Cc: <linux-csky@vger.kernel.org>
arch/csky/Kconfig
arch/csky/include/asm/cmpxchg.h

index d3ac36751ad1f6ededf86a2d0553883898140989..5479707eb5d10df1e083c9c7c547c266b64f4232 100644 (file)
@@ -37,6 +37,7 @@ config CSKY
        select ARCH_INLINE_SPIN_UNLOCK_BH if !PREEMPTION
        select ARCH_INLINE_SPIN_UNLOCK_IRQ if !PREEMPTION
        select ARCH_INLINE_SPIN_UNLOCK_IRQRESTORE if !PREEMPTION
+       select ARCH_NEED_CMPXCHG_1_EMU
        select ARCH_WANT_FRAME_POINTERS if !CPU_CK610 && $(cc-option,-mbacktrace)
        select ARCH_WANT_DEFAULT_TOPDOWN_MMAP_LAYOUT
        select COMMON_CLK
index 916043b845f14248467d276db216d8e29a41e01d..db6dda47184e4ba75927569ae0e0e88247879d83 100644 (file)
@@ -6,6 +6,7 @@
 #ifdef CONFIG_SMP
 #include <linux/bug.h>
 #include <asm/barrier.h>
+#include <linux/cmpxchg-emu.h>
 
 #define __xchg_relaxed(new, ptr, size)                         \
 ({                                                             \
@@ -61,6 +62,9 @@
        __typeof__(old) __old = (old);                          \
        __typeof__(*(ptr)) __ret;                               \
        switch (size) {                                         \
+       case 1:                                                 \
+               __ret = (__typeof__(*(ptr)))cmpxchg_emu_u8((volatile u8 *)__ptr, (uintptr_t)__old, (uintptr_t)__new); \
+               break;                                          \
        case 4:                                                 \
                asm volatile (                                  \
                "1:     ldex.w          %0, (%3) \n"            \
@@ -91,6 +95,9 @@
        __typeof__(old) __old = (old);                          \
        __typeof__(*(ptr)) __ret;                               \
        switch (size) {                                         \
+       case 1:                                                 \
+               __ret = (__typeof__(*(ptr)))cmpxchg_emu_u8((volatile u8 *)__ptr, (uintptr_t)__old, (uintptr_t)__new); \
+               break;                                          \
        case 4:                                                 \
                asm volatile (                                  \
                "1:     ldex.w          %0, (%3) \n"            \
        __typeof__(old) __old = (old);                          \
        __typeof__(*(ptr)) __ret;                               \
        switch (size) {                                         \
+       case 1:                                                 \
+               __ret = (__typeof__(*(ptr)))cmpxchg_emu_u8((volatile u8 *)__ptr, (uintptr_t)__old, (uintptr_t)__new); \
+               break;                                          \
        case 4:                                                 \
                asm volatile (                                  \
                RELEASE_FENCE                                   \