| 
									
										
										
										
											2007-10-01 04:15:00 +01:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * This file is subject to the terms and conditions of the GNU General Public | 
					
						
							|  |  |  |  * License.  See the file "COPYING" in the main directory of this archive | 
					
						
							|  |  |  |  * for more details. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Copyright (C) 2003, 06, 07 by Ralf Baechle (ralf@linux-mips.org) | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | #ifndef __ASM_CMPXCHG_H
 | 
					
						
							|  |  |  | #define __ASM_CMPXCHG_H
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-07-19 09:11:15 +02:00
										 |  |  | #include <linux/bug.h>
 | 
					
						
							| 
									
										
										
										
											2007-10-01 04:15:00 +01:00
										 |  |  | #include <linux/irqflags.h>
 | 
					
						
							| 
									
										
										
										
											2014-11-15 22:08:48 +00:00
										 |  |  | #include <asm/compiler.h>
 | 
					
						
							| 
									
										
										
										
											2012-03-28 18:30:02 +01:00
										 |  |  | #include <asm/war.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static inline unsigned long __xchg_u32(volatile int * m, unsigned int val) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	__u32 retval; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	smp_mb__before_llsc(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (kernel_uses_llsc && R10000_LLSC_WAR) { | 
					
						
							|  |  |  | 		unsigned long dummy; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		__asm__ __volatile__( | 
					
						
							| 
									
										
										
										
											2014-03-30 13:20:10 +02:00
										 |  |  | 		"	.set	arch=r4000				\n" | 
					
						
							| 
									
										
										
										
											2012-03-28 18:30:02 +01:00
										 |  |  | 		"1:	ll	%0, %3			# xchg_u32	\n" | 
					
						
							|  |  |  | 		"	.set	mips0					\n" | 
					
						
							|  |  |  | 		"	move	%2, %z4					\n" | 
					
						
							| 
									
										
										
										
											2014-03-30 13:20:10 +02:00
										 |  |  | 		"	.set	arch=r4000				\n" | 
					
						
							| 
									
										
										
										
											2012-03-28 18:30:02 +01:00
										 |  |  | 		"	sc	%2, %1					\n" | 
					
						
							|  |  |  | 		"	beqzl	%2, 1b					\n" | 
					
						
							|  |  |  | 		"	.set	mips0					\n" | 
					
						
							| 
									
										
										
										
											2015-01-26 12:44:11 +00:00
										 |  |  | 		: "=&r" (retval), "=" GCC_OFF_SMALL_ASM() (*m), "=&r" (dummy) | 
					
						
							|  |  |  | 		: GCC_OFF_SMALL_ASM() (*m), "Jr" (val) | 
					
						
							| 
									
										
										
										
											2012-03-28 18:30:02 +01:00
										 |  |  | 		: "memory"); | 
					
						
							|  |  |  | 	} else if (kernel_uses_llsc) { | 
					
						
							|  |  |  | 		unsigned long dummy; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		do { | 
					
						
							|  |  |  | 			__asm__ __volatile__( | 
					
						
							| 
									
										
										
										
											2014-11-20 13:31:48 +00:00
										 |  |  | 			"	.set	"MIPS_ISA_ARCH_LEVEL"		\n" | 
					
						
							| 
									
										
										
										
											2012-03-28 18:30:02 +01:00
										 |  |  | 			"	ll	%0, %3		# xchg_u32	\n" | 
					
						
							|  |  |  | 			"	.set	mips0				\n" | 
					
						
							|  |  |  | 			"	move	%2, %z4				\n" | 
					
						
							| 
									
										
										
										
											2014-11-20 13:31:48 +00:00
										 |  |  | 			"	.set	"MIPS_ISA_ARCH_LEVEL"		\n" | 
					
						
							| 
									
										
										
										
											2012-03-28 18:30:02 +01:00
										 |  |  | 			"	sc	%2, %1				\n" | 
					
						
							|  |  |  | 			"	.set	mips0				\n" | 
					
						
							| 
									
										
										
										
											2015-01-26 12:44:11 +00:00
										 |  |  | 			: "=&r" (retval), "=" GCC_OFF_SMALL_ASM() (*m), | 
					
						
							| 
									
										
										
										
											2014-11-15 22:08:48 +00:00
										 |  |  | 			  "=&r" (dummy) | 
					
						
							| 
									
										
										
										
											2015-01-26 12:44:11 +00:00
										 |  |  | 			: GCC_OFF_SMALL_ASM() (*m), "Jr" (val) | 
					
						
							| 
									
										
										
										
											2012-03-28 18:30:02 +01:00
										 |  |  | 			: "memory"); | 
					
						
							|  |  |  | 		} while (unlikely(!dummy)); | 
					
						
							|  |  |  | 	} else { | 
					
						
							|  |  |  | 		unsigned long flags; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		raw_local_irq_save(flags); | 
					
						
							|  |  |  | 		retval = *m; | 
					
						
							|  |  |  | 		*m = val; | 
					
						
							|  |  |  | 		raw_local_irq_restore(flags);	/* implies memory barrier  */ | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	smp_llsc_mb(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return retval; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifdef CONFIG_64BIT
 | 
					
						
							|  |  |  | static inline __u64 __xchg_u64(volatile __u64 * m, __u64 val) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	__u64 retval; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	smp_mb__before_llsc(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (kernel_uses_llsc && R10000_LLSC_WAR) { | 
					
						
							|  |  |  | 		unsigned long dummy; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		__asm__ __volatile__( | 
					
						
							| 
									
										
										
										
											2014-03-30 13:20:10 +02:00
										 |  |  | 		"	.set	arch=r4000				\n" | 
					
						
							| 
									
										
										
										
											2012-03-28 18:30:02 +01:00
										 |  |  | 		"1:	lld	%0, %3			# xchg_u64	\n" | 
					
						
							|  |  |  | 		"	move	%2, %z4					\n" | 
					
						
							|  |  |  | 		"	scd	%2, %1					\n" | 
					
						
							|  |  |  | 		"	beqzl	%2, 1b					\n" | 
					
						
							|  |  |  | 		"	.set	mips0					\n" | 
					
						
							| 
									
										
										
										
											2015-01-26 12:44:11 +00:00
										 |  |  | 		: "=&r" (retval), "=" GCC_OFF_SMALL_ASM() (*m), "=&r" (dummy) | 
					
						
							|  |  |  | 		: GCC_OFF_SMALL_ASM() (*m), "Jr" (val) | 
					
						
							| 
									
										
										
										
											2012-03-28 18:30:02 +01:00
										 |  |  | 		: "memory"); | 
					
						
							|  |  |  | 	} else if (kernel_uses_llsc) { | 
					
						
							|  |  |  | 		unsigned long dummy; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		do { | 
					
						
							|  |  |  | 			__asm__ __volatile__( | 
					
						
							| 
									
										
										
										
											2014-11-20 13:31:48 +00:00
										 |  |  | 			"	.set	"MIPS_ISA_ARCH_LEVEL"		\n" | 
					
						
							| 
									
										
										
										
											2012-03-28 18:30:02 +01:00
										 |  |  | 			"	lld	%0, %3		# xchg_u64	\n" | 
					
						
							|  |  |  | 			"	move	%2, %z4				\n" | 
					
						
							|  |  |  | 			"	scd	%2, %1				\n" | 
					
						
							|  |  |  | 			"	.set	mips0				\n" | 
					
						
							| 
									
										
										
										
											2015-01-26 12:44:11 +00:00
										 |  |  | 			: "=&r" (retval), "=" GCC_OFF_SMALL_ASM() (*m), | 
					
						
							| 
									
										
										
										
											2014-11-15 22:08:48 +00:00
										 |  |  | 			  "=&r" (dummy) | 
					
						
							| 
									
										
										
										
											2015-01-26 12:44:11 +00:00
										 |  |  | 			: GCC_OFF_SMALL_ASM() (*m), "Jr" (val) | 
					
						
							| 
									
										
										
										
											2012-03-28 18:30:02 +01:00
										 |  |  | 			: "memory"); | 
					
						
							|  |  |  | 		} while (unlikely(!dummy)); | 
					
						
							|  |  |  | 	} else { | 
					
						
							|  |  |  | 		unsigned long flags; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		raw_local_irq_save(flags); | 
					
						
							|  |  |  | 		retval = *m; | 
					
						
							|  |  |  | 		*m = val; | 
					
						
							|  |  |  | 		raw_local_irq_restore(flags);	/* implies memory barrier  */ | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	smp_llsc_mb(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return retval; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | #else
 | 
					
						
							|  |  |  | extern __u64 __xchg_u64_unsupported_on_32bit_kernels(volatile __u64 * m, __u64 val); | 
					
						
							|  |  |  | #define __xchg_u64 __xchg_u64_unsupported_on_32bit_kernels
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static inline unsigned long __xchg(unsigned long x, volatile void * ptr, int size) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	switch (size) { | 
					
						
							|  |  |  | 	case 4: | 
					
						
							|  |  |  | 		return __xchg_u32(ptr, x); | 
					
						
							|  |  |  | 	case 8: | 
					
						
							|  |  |  | 		return __xchg_u64(ptr, x); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return x; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define xchg(ptr, x)							\
 | 
					
						
							|  |  |  | ({									\ | 
					
						
							|  |  |  | 	BUILD_BUG_ON(sizeof(*(ptr)) & ~0xc);				\ | 
					
						
							|  |  |  | 									\ | 
					
						
							|  |  |  | 	((__typeof__(*(ptr)))						\ | 
					
						
							|  |  |  | 		__xchg((unsigned long)(x), (ptr), sizeof(*(ptr))));	\ | 
					
						
							|  |  |  | }) | 
					
						
							| 
									
										
										
										
											2007-10-01 04:15:00 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | #define __cmpxchg_asm(ld, st, m, old, new)				\
 | 
					
						
							|  |  |  | ({									\ | 
					
						
							|  |  |  | 	__typeof(*(m)) __ret;						\ | 
					
						
							|  |  |  | 									\ | 
					
						
							| 
									
										
										
										
											2010-04-21 11:39:07 +01:00
										 |  |  | 	if (kernel_uses_llsc && R10000_LLSC_WAR) {			\ | 
					
						
							| 
									
										
										
										
											2007-10-01 04:15:00 +01:00
										 |  |  | 		__asm__ __volatile__(					\ | 
					
						
							|  |  |  | 		"	.set	push				\n"	\ | 
					
						
							|  |  |  | 		"	.set	noat				\n"	\ | 
					
						
							| 
									
										
										
										
											2014-03-30 13:20:10 +02:00
										 |  |  | 		"	.set	arch=r4000			\n"	\ | 
					
						
							| 
									
										
										
										
											2013-01-22 12:59:30 +01:00
										 |  |  | 		"1:	" ld "	%0, %2		# __cmpxchg_asm \n"	\ | 
					
						
							| 
									
										
										
										
											2007-10-01 04:15:00 +01:00
										 |  |  | 		"	bne	%0, %z3, 2f			\n"	\ | 
					
						
							|  |  |  | 		"	.set	mips0				\n"	\ | 
					
						
							|  |  |  | 		"	move	$1, %z4				\n"	\ | 
					
						
							| 
									
										
										
										
											2014-03-30 13:20:10 +02:00
										 |  |  | 		"	.set	arch=r4000			\n"	\ | 
					
						
							| 
									
										
										
										
											2007-10-01 04:15:00 +01:00
										 |  |  | 		"	" st "	$1, %1				\n"	\ | 
					
						
							|  |  |  | 		"	beqzl	$1, 1b				\n"	\ | 
					
						
							|  |  |  | 		"2:						\n"	\ | 
					
						
							|  |  |  | 		"	.set	pop				\n"	\ | 
					
						
							| 
									
										
										
										
											2015-01-26 12:44:11 +00:00
										 |  |  | 		: "=&r" (__ret), "=" GCC_OFF_SMALL_ASM() (*m)		\ | 
					
						
							|  |  |  | 		: GCC_OFF_SMALL_ASM() (*m), "Jr" (old), "Jr" (new)		\ | 
					
						
							| 
									
										
										
										
											2007-10-01 04:15:00 +01:00
										 |  |  | 		: "memory");						\ | 
					
						
							| 
									
										
										
										
											2009-07-13 11:15:19 -07:00
										 |  |  | 	} else if (kernel_uses_llsc) {					\ | 
					
						
							| 
									
										
										
										
											2007-10-01 04:15:00 +01:00
										 |  |  | 		__asm__ __volatile__(					\ | 
					
						
							|  |  |  | 		"	.set	push				\n"	\ | 
					
						
							|  |  |  | 		"	.set	noat				\n"	\ | 
					
						
							| 
									
										
										
										
											2014-11-20 13:31:48 +00:00
										 |  |  | 		"	.set	"MIPS_ISA_ARCH_LEVEL"		\n"	\ | 
					
						
							| 
									
										
										
										
											2013-01-22 12:59:30 +01:00
										 |  |  | 		"1:	" ld "	%0, %2		# __cmpxchg_asm \n"	\ | 
					
						
							| 
									
										
										
										
											2007-10-01 04:15:00 +01:00
										 |  |  | 		"	bne	%0, %z3, 2f			\n"	\ | 
					
						
							|  |  |  | 		"	.set	mips0				\n"	\ | 
					
						
							|  |  |  | 		"	move	$1, %z4				\n"	\ | 
					
						
							| 
									
										
										
										
											2014-11-20 13:31:48 +00:00
										 |  |  | 		"	.set	"MIPS_ISA_ARCH_LEVEL"		\n"	\ | 
					
						
							| 
									
										
										
										
											2007-10-01 04:15:00 +01:00
										 |  |  | 		"	" st "	$1, %1				\n"	\ | 
					
						
							| 
									
										
										
										
											2010-10-29 19:08:24 +01:00
										 |  |  | 		"	beqz	$1, 1b				\n"	\ | 
					
						
							| 
									
										
										
										
											2007-10-01 04:15:00 +01:00
										 |  |  | 		"	.set	pop				\n"	\ | 
					
						
							| 
									
										
										
										
											2010-10-29 19:08:24 +01:00
										 |  |  | 		"2:						\n"	\ | 
					
						
							| 
									
										
										
										
											2015-01-26 12:44:11 +00:00
										 |  |  | 		: "=&r" (__ret), "=" GCC_OFF_SMALL_ASM() (*m)		\ | 
					
						
							|  |  |  | 		: GCC_OFF_SMALL_ASM() (*m), "Jr" (old), "Jr" (new)		\ | 
					
						
							| 
									
										
										
										
											2007-10-01 04:15:00 +01:00
										 |  |  | 		: "memory");						\ | 
					
						
							|  |  |  | 	} else {							\ | 
					
						
							|  |  |  | 		unsigned long __flags;					\ | 
					
						
							|  |  |  | 									\ | 
					
						
							|  |  |  | 		raw_local_irq_save(__flags);				\ | 
					
						
							|  |  |  | 		__ret = *m;						\ | 
					
						
							|  |  |  | 		if (__ret == old)					\ | 
					
						
							|  |  |  | 			*m = new;					\ | 
					
						
							|  |  |  | 		raw_local_irq_restore(__flags);				\ | 
					
						
							|  |  |  | 	}								\ | 
					
						
							|  |  |  | 									\ | 
					
						
							|  |  |  | 	__ret;								\ | 
					
						
							|  |  |  | }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * This function doesn't exist, so you'll get a linker error | 
					
						
							|  |  |  |  * if something tries to do an invalid cmpxchg(). | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | extern void __cmpxchg_called_with_bad_pointer(void); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-01-08 17:17:43 -08:00
										 |  |  | #define __cmpxchg(ptr, old, new, pre_barrier, post_barrier)		\
 | 
					
						
							| 
									
										
										
										
											2007-10-01 04:15:00 +01:00
										 |  |  | ({									\ | 
					
						
							|  |  |  | 	__typeof__(ptr) __ptr = (ptr);					\ | 
					
						
							|  |  |  | 	__typeof__(*(ptr)) __old = (old);				\ | 
					
						
							|  |  |  | 	__typeof__(*(ptr)) __new = (new);				\ | 
					
						
							|  |  |  | 	__typeof__(*(ptr)) __res = 0;					\ | 
					
						
							|  |  |  | 									\ | 
					
						
							| 
									
										
										
										
											2010-01-08 17:17:43 -08:00
										 |  |  | 	pre_barrier;							\ | 
					
						
							| 
									
										
										
										
											2007-10-01 04:15:00 +01:00
										 |  |  | 									\ | 
					
						
							|  |  |  | 	switch (sizeof(*(__ptr))) {					\ | 
					
						
							|  |  |  | 	case 4:								\ | 
					
						
							| 
									
										
										
										
											2013-01-22 12:59:30 +01:00
										 |  |  | 		__res = __cmpxchg_asm("ll", "sc", __ptr, __old, __new); \ | 
					
						
							| 
									
										
										
										
											2007-10-01 04:15:00 +01:00
										 |  |  | 		break;							\ | 
					
						
							|  |  |  | 	case 8:								\ | 
					
						
							|  |  |  | 		if (sizeof(long) == 8) {				\ | 
					
						
							|  |  |  | 			__res = __cmpxchg_asm("lld", "scd", __ptr,	\ | 
					
						
							|  |  |  | 					   __old, __new);		\ | 
					
						
							|  |  |  | 			break;						\ | 
					
						
							|  |  |  | 		}							\ | 
					
						
							|  |  |  | 	default:							\ | 
					
						
							|  |  |  | 		__cmpxchg_called_with_bad_pointer();			\ | 
					
						
							|  |  |  | 		break;							\ | 
					
						
							|  |  |  | 	}								\ | 
					
						
							|  |  |  | 									\ | 
					
						
							| 
									
										
										
										
											2010-01-08 17:17:43 -08:00
										 |  |  | 	post_barrier;							\ | 
					
						
							| 
									
										
										
										
											2007-10-01 04:15:00 +01:00
										 |  |  | 									\ | 
					
						
							|  |  |  | 	__res;								\ | 
					
						
							|  |  |  | }) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-01-08 17:17:43 -08:00
										 |  |  | #define cmpxchg(ptr, old, new)		__cmpxchg(ptr, old, new, smp_mb__before_llsc(), smp_llsc_mb())
 | 
					
						
							|  |  |  | #define cmpxchg_local(ptr, old, new)	__cmpxchg(ptr, old, new, , )
 | 
					
						
							| 
									
										
										
										
											2007-10-01 04:15:00 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-03-07 10:30:20 -08:00
										 |  |  | #ifdef CONFIG_64BIT
 | 
					
						
							|  |  |  | #define cmpxchg64_local(ptr, o, n)					\
 | 
					
						
							| 
									
										
										
										
											2008-02-07 00:16:09 -08:00
										 |  |  |   ({									\ | 
					
						
							|  |  |  | 	BUILD_BUG_ON(sizeof(*(ptr)) != 8);				\ | 
					
						
							| 
									
										
										
										
											2015-03-07 10:30:20 -08:00
										 |  |  | 	cmpxchg_local((ptr), (o), (n));					\ | 
					
						
							| 
									
										
										
										
											2008-02-07 00:16:09 -08:00
										 |  |  |   }) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-03-07 10:30:20 -08:00
										 |  |  | #define cmpxchg64(ptr, o, n)						\
 | 
					
						
							| 
									
										
										
										
											2008-02-07 00:16:09 -08:00
										 |  |  |   ({									\ | 
					
						
							|  |  |  | 	BUILD_BUG_ON(sizeof(*(ptr)) != 8);				\ | 
					
						
							| 
									
										
										
										
											2015-03-07 10:30:20 -08:00
										 |  |  | 	cmpxchg((ptr), (o), (n));					\ | 
					
						
							| 
									
										
										
										
											2008-02-07 00:16:09 -08:00
										 |  |  |   }) | 
					
						
							|  |  |  | #else
 | 
					
						
							|  |  |  | #include <asm-generic/cmpxchg-local.h>
 | 
					
						
							|  |  |  | #define cmpxchg64_local(ptr, o, n) __cmpxchg64_local_generic((ptr), (o), (n))
 | 
					
						
							| 
									
										
										
										
											2015-03-07 10:30:20 -08:00
										 |  |  | #define cmpxchg64(ptr, o, n) cmpxchg64_local((ptr), (o), (n))
 | 
					
						
							| 
									
										
										
										
											2008-02-07 00:16:09 -08:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-10-01 04:15:00 +01:00
										 |  |  | #endif /* __ASM_CMPXCHG_H */
 |