MIPS R6 changed the opcodes for LL/SC instructions and reduced the offset field to 9-bits. This has some undesired effects with the "m" constrain since it implies a 16-bit immediate. As a result of which, add a register ("r") constrain as well to make sure the entire address is loaded to a register before the LL/SC operations. Also use macro to set the appropriate ISA for the asm blocks Cc: Matthew Fortune <Matthew.Fortune@xxxxxxxxxx> Signed-off-by: Markos Chandras <markos.chandras@xxxxxxxxxx> --- arch/mips/include/asm/atomic.h | 50 +++++++++++++++++++++--------------------- 1 file changed, 25 insertions(+), 25 deletions(-) diff --git a/arch/mips/include/asm/atomic.h b/arch/mips/include/asm/atomic.h index 6dd6bfc607e9..8669e0ec97e3 100644 --- a/arch/mips/include/asm/atomic.h +++ b/arch/mips/include/asm/atomic.h @@ -60,13 +60,13 @@ static __inline__ void atomic_##op(int i, atomic_t * v) \ \ do { \ __asm__ __volatile__( \ - " .set arch=r4000 \n" \ - " ll %0, %1 # atomic_" #op "\n" \ + " .set "MIPS_ISA_ARCH_LEVEL" \n" \ + " ll %0, 0(%3) # atomic_" #op "\n" \ " " #asm_op " %0, %2 \n" \ - " sc %0, %1 \n" \ + " sc %0, 0(%3) \n" \ " .set mips0 \n" \ : "=&r" (temp), "+m" (v->counter) \ - : "Ir" (i)); \ + : "Ir" (i), "r" (&v->counter)); \ } while (unlikely(!temp)); \ } else { \ unsigned long flags; \ @@ -102,13 +102,13 @@ static __inline__ int atomic_##op##_return(int i, atomic_t * v) \ \ do { \ __asm__ __volatile__( \ - " .set arch=r4000 \n" \ - " ll %1, %2 # atomic_" #op "_return \n" \ + " .set "MIPS_ISA_ARCH_LEVEL" \n" \ + " ll %1, 0(%4) # atomic_" #op "_return\n" \ " " #asm_op " %0, %1, %3 \n" \ - " sc %0, %2 \n" \ + " sc %0, 0(%4) \n" \ " .set mips0 \n" \ : "=&r" (result), "=&r" (temp), "+m" (v->counter) \ - : "Ir" (i)); \ + : "Ir" (i), "r" (&v->counter)); \ } while (unlikely(!result)); \ \ result = temp; result c_op i; \ @@ -174,11 +174,11 @@ static __inline__ int atomic_sub_if_positive(int i, atomic_t * v) int temp; __asm__ __volatile__( - " .set arch=r4000 \n" - "1: ll %1, %2 # atomic_sub_if_positive\n" + " .set "MIPS_ISA_ARCH_LEVEL" \n" + "1: ll %1, 0(%4) # atomic_sub_if_positive\n" " subu %0, %1, %3 \n" " bltz %0, 1f \n" - " sc %0, %2 \n" + " sc %0, 0(%4) \n" " .set noreorder \n" " beqz %0, 1b \n" " subu %0, %1, %3 \n" @@ -186,7 +186,7 @@ static __inline__ int atomic_sub_if_positive(int i, atomic_t * v) "1: \n" " .set mips0 \n" : "=&r" (result), "=&r" (temp), "+m" (v->counter) - : "Ir" (i)); + : "Ir" (i), "r" (&v->counter)); } else { unsigned long flags; @@ -335,13 +335,13 @@ static __inline__ void atomic64_##op(long i, atomic64_t * v) \ \ do { \ __asm__ __volatile__( \ - " .set arch=r4000 \n" \ - " lld %0, %1 # atomic64_" #op "\n" \ + " .set "MIPS_ISA_ARCH_LEVEL" \n" \ + " lld %0, 0(%3) # atomic64_" #op "\n" \ " " #asm_op " %0, %2 \n" \ - " scd %0, %1 \n" \ + " scd %0, 0(%3) \n" \ " .set mips0 \n" \ : "=&r" (temp), "+m" (v->counter) \ - : "Ir" (i)); \ + : "Ir" (i), "r" (&v->counter)); \ } while (unlikely(!temp)); \ } else { \ unsigned long flags; \ @@ -377,13 +377,13 @@ static __inline__ long atomic64_##op##_return(long i, atomic64_t * v) \ \ do { \ __asm__ __volatile__( \ - " .set arch=r4000 \n" \ - " lld %1, %2 # atomic64_" #op "_return\n" \ + " .set "MIPS_ISA_ARCH_LEVEL" \n" \ + " lld %1, 0(%4)# atomic64_" #op "_return\n" \ " " #asm_op " %0, %1, %3 \n" \ - " scd %0, %2 \n" \ + " scd %0, 0(%4) \n" \ " .set mips0 \n" \ - : "=&r" (result), "=&r" (temp), "=m" (v->counter) \ - : "Ir" (i), "m" (v->counter) \ + : "=&r" (result), "=&r" (temp), "+m" (v->counter) \ + : "Ir" (i), "r" (&v->counter) \ : "memory"); \ } while (unlikely(!result)); \ \ @@ -450,11 +450,11 @@ static __inline__ long atomic64_sub_if_positive(long i, atomic64_t * v) long temp; __asm__ __volatile__( - " .set arch=r4000 \n" - "1: lld %1, %2 # atomic64_sub_if_positive\n" + " .set "MIPS_ISA_ARCH_LEVEL" \n" + "1: lld %1, 0(%4) # atomic64_sub_if_positive\n" " dsubu %0, %1, %3 \n" " bltz %0, 1f \n" - " scd %0, %2 \n" + " scd %0, 0(%4) \n" " .set noreorder \n" " beqz %0, 1b \n" " dsubu %0, %1, %3 \n" @@ -462,7 +462,7 @@ static __inline__ long atomic64_sub_if_positive(long i, atomic64_t * v) "1: \n" " .set mips0 \n" : "=&r" (result), "=&r" (temp), "+m" (v->counter) - : "Ir" (i)); + : "Ir" (i), "r"(&v->counter)); } else { unsigned long flags; -- 2.2.0