blob: b5238404c05918fbf8c56af26a50ce6abbcd14c2 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * This file is subject to the terms and conditions of the GNU General Public
3 * License. See the file "COPYING" in the main directory of this archive
4 * for more details.
5 *
Ralf Baechlef65e4fa2006-09-28 01:45:21 +01006 * Copyright (C) 1999, 2000, 06 Ralf Baechle (ralf@linux-mips.org)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * Copyright (C) 1999, 2000 Silicon Graphics, Inc.
8 */
9#ifndef _ASM_SPINLOCK_H
10#define _ASM_SPINLOCK_H
11
Ralf Baechle2a31b032008-08-28 15:17:49 +010012#include <linux/compiler.h>
13
Ralf Baechle0004a9d2006-10-31 03:45:07 +000014#include <asm/barrier.h>
Maciej W. Rozyckib0984c42014-11-15 22:08:48 +000015#include <asm/compiler.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <asm/war.h>
17
18/*
19 * Your basic SMP spinlocks, allowing only a single CPU anywhere
Ralf Baechle2a31b032008-08-28 15:17:49 +010020 *
Ralf Baechle70342282013-01-22 12:59:30 +010021 * Simple spin lock operations. There are two variants, one clears IRQ's
Linus Torvalds1da177e2005-04-16 15:20:36 -070022 * on the local processor, one does not.
23 *
Ralf Baechle2a31b032008-08-28 15:17:49 +010024 * These are fair FIFO ticket locks
25 *
26 * (the type definitions are in asm/spinlock_types.h)
Linus Torvalds1da177e2005-04-16 15:20:36 -070027 */
28
Ralf Baechle2a31b032008-08-28 15:17:49 +010029
30/*
31 * Ticket locks are conceptually two parts, one indicating the current head of
32 * the queue, and the other indicating the current tail. The lock is acquired
33 * by atomically noting the tail and incrementing it by one (thus adding
34 * ourself to the queue and noting our position), then waiting until the head
35 * becomes equal to the the initial value of the tail.
36 */
37
Thomas Gleixner0199c4e2009-12-02 20:01:25 +010038static inline int arch_spin_is_locked(arch_spinlock_t *lock)
Ralf Baechle2a31b032008-08-28 15:17:49 +010039{
David Daney500c2e12010-02-04 11:31:49 -080040 u32 counters = ACCESS_ONCE(lock->lock);
Ralf Baechle2a31b032008-08-28 15:17:49 +010041
David Daney500c2e12010-02-04 11:31:49 -080042 return ((counters >> 16) ^ counters) & 0xffff;
Ralf Baechle2a31b032008-08-28 15:17:49 +010043}
44
Thomas Gleixner0199c4e2009-12-02 20:01:25 +010045#define arch_spin_lock_flags(lock, flags) arch_spin_lock(lock)
46#define arch_spin_unlock_wait(x) \
47 while (arch_spin_is_locked(x)) { cpu_relax(); }
Ralf Baechle2a31b032008-08-28 15:17:49 +010048
Thomas Gleixner0199c4e2009-12-02 20:01:25 +010049static inline int arch_spin_is_contended(arch_spinlock_t *lock)
Ralf Baechle2a31b032008-08-28 15:17:49 +010050{
David Daney500c2e12010-02-04 11:31:49 -080051 u32 counters = ACCESS_ONCE(lock->lock);
Ralf Baechle2a31b032008-08-28 15:17:49 +010052
David Daney500c2e12010-02-04 11:31:49 -080053 return (((counters >> 16) - counters) & 0xffff) > 1;
Ralf Baechle2a31b032008-08-28 15:17:49 +010054}
Thomas Gleixner0199c4e2009-12-02 20:01:25 +010055#define arch_spin_is_contended arch_spin_is_contended
Ralf Baechle2a31b032008-08-28 15:17:49 +010056
Thomas Gleixner0199c4e2009-12-02 20:01:25 +010057static inline void arch_spin_lock(arch_spinlock_t *lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -070058{
Ralf Baechle2a31b032008-08-28 15:17:49 +010059 int my_ticket;
60 int tmp;
David Daney500c2e12010-02-04 11:31:49 -080061 int inc = 0x10000;
Linus Torvalds1da177e2005-04-16 15:20:36 -070062
63 if (R10000_LLSC_WAR) {
Ralf Baechle2a31b032008-08-28 15:17:49 +010064 __asm__ __volatile__ (
Thomas Gleixner0199c4e2009-12-02 20:01:25 +010065 " .set push # arch_spin_lock \n"
Ralf Baechle2a31b032008-08-28 15:17:49 +010066 " .set noreorder \n"
67 " \n"
68 "1: ll %[ticket], %[ticket_ptr] \n"
David Daney500c2e12010-02-04 11:31:49 -080069 " addu %[my_ticket], %[ticket], %[inc] \n"
Ralf Baechle2a31b032008-08-28 15:17:49 +010070 " sc %[my_ticket], %[ticket_ptr] \n"
71 " beqzl %[my_ticket], 1b \n"
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 " nop \n"
David Daney500c2e12010-02-04 11:31:49 -080073 " srl %[my_ticket], %[ticket], 16 \n"
74 " andi %[ticket], %[ticket], 0xffff \n"
Ralf Baechle2a31b032008-08-28 15:17:49 +010075 " bne %[ticket], %[my_ticket], 4f \n"
76 " subu %[ticket], %[my_ticket], %[ticket] \n"
77 "2: \n"
Ralf Baechlef65e4fa2006-09-28 01:45:21 +010078 " .subsection 2 \n"
David Daney500c2e12010-02-04 11:31:49 -080079 "4: andi %[ticket], %[ticket], 0xffff \n"
David Daney0e6826c2009-03-27 10:07:02 -070080 " sll %[ticket], 5 \n"
Ralf Baechle2a31b032008-08-28 15:17:49 +010081 " \n"
82 "6: bnez %[ticket], 6b \n"
83 " subu %[ticket], 1 \n"
84 " \n"
David Daney500c2e12010-02-04 11:31:49 -080085 " lhu %[ticket], %[serving_now_ptr] \n"
Ralf Baechle2a31b032008-08-28 15:17:49 +010086 " beq %[ticket], %[my_ticket], 2b \n"
87 " subu %[ticket], %[my_ticket], %[ticket] \n"
David Daney0e6826c2009-03-27 10:07:02 -070088 " b 4b \n"
Ralf Baechle2a31b032008-08-28 15:17:49 +010089 " subu %[ticket], %[ticket], 1 \n"
Ralf Baechlef65e4fa2006-09-28 01:45:21 +010090 " .previous \n"
Ralf Baechle2a31b032008-08-28 15:17:49 +010091 " .set pop \n"
Markos Chandras94bfb752015-01-26 12:44:11 +000092 : [ticket_ptr] "+" GCC_OFF_SMALL_ASM() (lock->lock),
David Daney500c2e12010-02-04 11:31:49 -080093 [serving_now_ptr] "+m" (lock->h.serving_now),
Ralf Baechle2a31b032008-08-28 15:17:49 +010094 [ticket] "=&r" (tmp),
David Daney500c2e12010-02-04 11:31:49 -080095 [my_ticket] "=&r" (my_ticket)
96 : [inc] "r" (inc));
Ralf Baechle2a31b032008-08-28 15:17:49 +010097 } else {
98 __asm__ __volatile__ (
Thomas Gleixner0199c4e2009-12-02 20:01:25 +010099 " .set push # arch_spin_lock \n"
Ralf Baechle2a31b032008-08-28 15:17:49 +0100100 " .set noreorder \n"
101 " \n"
David Daney500c2e12010-02-04 11:31:49 -0800102 "1: ll %[ticket], %[ticket_ptr] \n"
103 " addu %[my_ticket], %[ticket], %[inc] \n"
Ralf Baechle2a31b032008-08-28 15:17:49 +0100104 " sc %[my_ticket], %[ticket_ptr] \n"
David Daney500c2e12010-02-04 11:31:49 -0800105 " beqz %[my_ticket], 1b \n"
106 " srl %[my_ticket], %[ticket], 16 \n"
107 " andi %[ticket], %[ticket], 0xffff \n"
Ralf Baechle2a31b032008-08-28 15:17:49 +0100108 " bne %[ticket], %[my_ticket], 4f \n"
109 " subu %[ticket], %[my_ticket], %[ticket] \n"
110 "2: \n"
111 " .subsection 2 \n"
Ralf Baechle2a31b032008-08-28 15:17:49 +0100112 "4: andi %[ticket], %[ticket], 0x1fff \n"
David Daney0e6826c2009-03-27 10:07:02 -0700113 " sll %[ticket], 5 \n"
Ralf Baechle2a31b032008-08-28 15:17:49 +0100114 " \n"
115 "6: bnez %[ticket], 6b \n"
116 " subu %[ticket], 1 \n"
117 " \n"
David Daney500c2e12010-02-04 11:31:49 -0800118 " lhu %[ticket], %[serving_now_ptr] \n"
Ralf Baechle2a31b032008-08-28 15:17:49 +0100119 " beq %[ticket], %[my_ticket], 2b \n"
120 " subu %[ticket], %[my_ticket], %[ticket] \n"
David Daney0e6826c2009-03-27 10:07:02 -0700121 " b 4b \n"
Ralf Baechle2a31b032008-08-28 15:17:49 +0100122 " subu %[ticket], %[ticket], 1 \n"
123 " .previous \n"
124 " .set pop \n"
Markos Chandras94bfb752015-01-26 12:44:11 +0000125 : [ticket_ptr] "+" GCC_OFF_SMALL_ASM() (lock->lock),
David Daney500c2e12010-02-04 11:31:49 -0800126 [serving_now_ptr] "+m" (lock->h.serving_now),
Ralf Baechle2a31b032008-08-28 15:17:49 +0100127 [ticket] "=&r" (tmp),
David Daney500c2e12010-02-04 11:31:49 -0800128 [my_ticket] "=&r" (my_ticket)
129 : [inc] "r" (inc));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 }
Ralf Baechle0004a9d2006-10-31 03:45:07 +0000131
Ralf Baechle17099b12007-07-14 13:24:05 +0100132 smp_llsc_mb();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133}
134
Thomas Gleixner0199c4e2009-12-02 20:01:25 +0100135static inline void arch_spin_unlock(arch_spinlock_t *lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136{
David Daney500c2e12010-02-04 11:31:49 -0800137 unsigned int serving_now = lock->h.serving_now + 1;
138 wmb();
139 lock->h.serving_now = (u16)serving_now;
140 nudge_writes();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141}
142
Thomas Gleixner0199c4e2009-12-02 20:01:25 +0100143static inline unsigned int arch_spin_trylock(arch_spinlock_t *lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144{
Ralf Baechle2a31b032008-08-28 15:17:49 +0100145 int tmp, tmp2, tmp3;
David Daney500c2e12010-02-04 11:31:49 -0800146 int inc = 0x10000;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147
148 if (R10000_LLSC_WAR) {
Ralf Baechle2a31b032008-08-28 15:17:49 +0100149 __asm__ __volatile__ (
Thomas Gleixner0199c4e2009-12-02 20:01:25 +0100150 " .set push # arch_spin_trylock \n"
Ralf Baechle2a31b032008-08-28 15:17:49 +0100151 " .set noreorder \n"
152 " \n"
153 "1: ll %[ticket], %[ticket_ptr] \n"
David Daney500c2e12010-02-04 11:31:49 -0800154 " srl %[my_ticket], %[ticket], 16 \n"
David Daney500c2e12010-02-04 11:31:49 -0800155 " andi %[now_serving], %[ticket], 0xffff \n"
Ralf Baechle2a31b032008-08-28 15:17:49 +0100156 " bne %[my_ticket], %[now_serving], 3f \n"
David Daney500c2e12010-02-04 11:31:49 -0800157 " addu %[ticket], %[ticket], %[inc] \n"
Ralf Baechle2a31b032008-08-28 15:17:49 +0100158 " sc %[ticket], %[ticket_ptr] \n"
159 " beqzl %[ticket], 1b \n"
160 " li %[ticket], 1 \n"
161 "2: \n"
Ralf Baechlef65e4fa2006-09-28 01:45:21 +0100162 " .subsection 2 \n"
Ralf Baechle2a31b032008-08-28 15:17:49 +0100163 "3: b 2b \n"
164 " li %[ticket], 0 \n"
Ralf Baechlef65e4fa2006-09-28 01:45:21 +0100165 " .previous \n"
Ralf Baechle2a31b032008-08-28 15:17:49 +0100166 " .set pop \n"
Markos Chandras94bfb752015-01-26 12:44:11 +0000167 : [ticket_ptr] "+" GCC_OFF_SMALL_ASM() (lock->lock),
Ralf Baechle2a31b032008-08-28 15:17:49 +0100168 [ticket] "=&r" (tmp),
169 [my_ticket] "=&r" (tmp2),
David Daney500c2e12010-02-04 11:31:49 -0800170 [now_serving] "=&r" (tmp3)
171 : [inc] "r" (inc));
Ralf Baechle2a31b032008-08-28 15:17:49 +0100172 } else {
173 __asm__ __volatile__ (
Thomas Gleixner0199c4e2009-12-02 20:01:25 +0100174 " .set push # arch_spin_trylock \n"
Ralf Baechle2a31b032008-08-28 15:17:49 +0100175 " .set noreorder \n"
176 " \n"
David Daney500c2e12010-02-04 11:31:49 -0800177 "1: ll %[ticket], %[ticket_ptr] \n"
178 " srl %[my_ticket], %[ticket], 16 \n"
David Daney500c2e12010-02-04 11:31:49 -0800179 " andi %[now_serving], %[ticket], 0xffff \n"
Ralf Baechle2a31b032008-08-28 15:17:49 +0100180 " bne %[my_ticket], %[now_serving], 3f \n"
David Daney500c2e12010-02-04 11:31:49 -0800181 " addu %[ticket], %[ticket], %[inc] \n"
Ralf Baechle2a31b032008-08-28 15:17:49 +0100182 " sc %[ticket], %[ticket_ptr] \n"
David Daney500c2e12010-02-04 11:31:49 -0800183 " beqz %[ticket], 1b \n"
Ralf Baechle2a31b032008-08-28 15:17:49 +0100184 " li %[ticket], 1 \n"
185 "2: \n"
186 " .subsection 2 \n"
187 "3: b 2b \n"
188 " li %[ticket], 0 \n"
Ralf Baechle2a31b032008-08-28 15:17:49 +0100189 " .previous \n"
190 " .set pop \n"
Markos Chandras94bfb752015-01-26 12:44:11 +0000191 : [ticket_ptr] "+" GCC_OFF_SMALL_ASM() (lock->lock),
Ralf Baechle2a31b032008-08-28 15:17:49 +0100192 [ticket] "=&r" (tmp),
193 [my_ticket] "=&r" (tmp2),
David Daney500c2e12010-02-04 11:31:49 -0800194 [now_serving] "=&r" (tmp3)
195 : [inc] "r" (inc));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 }
197
Ralf Baechle17099b12007-07-14 13:24:05 +0100198 smp_llsc_mb();
Ralf Baechle0004a9d2006-10-31 03:45:07 +0000199
Ralf Baechle2a31b032008-08-28 15:17:49 +0100200 return tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201}
202
203/*
204 * Read-write spinlocks, allowing multiple readers but only one writer.
205 *
206 * NOTE! it is quite common to have readers in interrupts but no interrupt
207 * writers. For those circumstances we can "mix" irq-safe locks - any writer
208 * needs to get a irq-safe write-lock, but readers can get non-irqsafe
209 * read-locks.
210 */
211
Ralf Baechlee3c48072005-02-03 13:34:45 +0000212/*
213 * read_can_lock - would read_trylock() succeed?
214 * @lock: the rwlock in question.
215 */
Thomas Gleixnere5931942009-12-03 20:08:46 +0100216#define arch_read_can_lock(rw) ((rw)->lock >= 0)
Ralf Baechlee3c48072005-02-03 13:34:45 +0000217
218/*
219 * write_can_lock - would write_trylock() succeed?
220 * @lock: the rwlock in question.
221 */
Ralf Baechle70342282013-01-22 12:59:30 +0100222#define arch_write_can_lock(rw) (!(rw)->lock)
Ralf Baechlee3c48072005-02-03 13:34:45 +0000223
Thomas Gleixnere5931942009-12-03 20:08:46 +0100224static inline void arch_read_lock(arch_rwlock_t *rw)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225{
226 unsigned int tmp;
227
228 if (R10000_LLSC_WAR) {
229 __asm__ __volatile__(
Thomas Gleixnere5931942009-12-03 20:08:46 +0100230 " .set noreorder # arch_read_lock \n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 "1: ll %1, %2 \n"
232 " bltz %1, 1b \n"
233 " addu %1, 1 \n"
234 " sc %1, %0 \n"
235 " beqzl %1, 1b \n"
236 " nop \n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 " .set reorder \n"
Markos Chandras94bfb752015-01-26 12:44:11 +0000238 : "=" GCC_OFF_SMALL_ASM() (rw->lock), "=&r" (tmp)
239 : GCC_OFF_SMALL_ASM() (rw->lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 : "memory");
241 } else {
Ralf Baechlee01961c2013-04-11 00:16:53 +0200242 do {
243 __asm__ __volatile__(
244 "1: ll %1, %2 # arch_read_lock \n"
245 " bltz %1, 1b \n"
246 " addu %1, 1 \n"
247 "2: sc %1, %0 \n"
Markos Chandras94bfb752015-01-26 12:44:11 +0000248 : "=" GCC_OFF_SMALL_ASM() (rw->lock), "=&r" (tmp)
249 : GCC_OFF_SMALL_ASM() (rw->lock)
Ralf Baechlee01961c2013-04-11 00:16:53 +0200250 : "memory");
251 } while (unlikely(!tmp));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 }
Ralf Baechle0004a9d2006-10-31 03:45:07 +0000253
Ralf Baechle17099b12007-07-14 13:24:05 +0100254 smp_llsc_mb();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255}
256
257/* Note the use of sub, not subu which will make the kernel die with an
258 overflow exception if we ever try to unlock an rwlock that is already
259 unlocked or is being held by a writer. */
Thomas Gleixnere5931942009-12-03 20:08:46 +0100260static inline void arch_read_unlock(arch_rwlock_t *rw)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261{
262 unsigned int tmp;
263
David Daneyf252ffd2010-01-08 17:17:43 -0800264 smp_mb__before_llsc();
Ralf Baechle0004a9d2006-10-31 03:45:07 +0000265
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 if (R10000_LLSC_WAR) {
267 __asm__ __volatile__(
Thomas Gleixnere5931942009-12-03 20:08:46 +0100268 "1: ll %1, %2 # arch_read_unlock \n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 " sub %1, 1 \n"
270 " sc %1, %0 \n"
271 " beqzl %1, 1b \n"
Markos Chandras94bfb752015-01-26 12:44:11 +0000272 : "=" GCC_OFF_SMALL_ASM() (rw->lock), "=&r" (tmp)
273 : GCC_OFF_SMALL_ASM() (rw->lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 : "memory");
275 } else {
Ralf Baechlee01961c2013-04-11 00:16:53 +0200276 do {
277 __asm__ __volatile__(
278 "1: ll %1, %2 # arch_read_unlock \n"
279 " sub %1, 1 \n"
280 " sc %1, %0 \n"
Markos Chandras94bfb752015-01-26 12:44:11 +0000281 : "=" GCC_OFF_SMALL_ASM() (rw->lock), "=&r" (tmp)
282 : GCC_OFF_SMALL_ASM() (rw->lock)
Ralf Baechlee01961c2013-04-11 00:16:53 +0200283 : "memory");
284 } while (unlikely(!tmp));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 }
286}
287
Thomas Gleixnere5931942009-12-03 20:08:46 +0100288static inline void arch_write_lock(arch_rwlock_t *rw)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289{
290 unsigned int tmp;
291
292 if (R10000_LLSC_WAR) {
293 __asm__ __volatile__(
Thomas Gleixnere5931942009-12-03 20:08:46 +0100294 " .set noreorder # arch_write_lock \n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 "1: ll %1, %2 \n"
296 " bnez %1, 1b \n"
297 " lui %1, 0x8000 \n"
298 " sc %1, %0 \n"
299 " beqzl %1, 1b \n"
Ralf Baechle0004a9d2006-10-31 03:45:07 +0000300 " nop \n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 " .set reorder \n"
Markos Chandras94bfb752015-01-26 12:44:11 +0000302 : "=" GCC_OFF_SMALL_ASM() (rw->lock), "=&r" (tmp)
303 : GCC_OFF_SMALL_ASM() (rw->lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 : "memory");
305 } else {
Ralf Baechlee01961c2013-04-11 00:16:53 +0200306 do {
307 __asm__ __volatile__(
308 "1: ll %1, %2 # arch_write_lock \n"
309 " bnez %1, 1b \n"
310 " lui %1, 0x8000 \n"
311 "2: sc %1, %0 \n"
Markos Chandras94bfb752015-01-26 12:44:11 +0000312 : "=" GCC_OFF_SMALL_ASM() (rw->lock), "=&r" (tmp)
313 : GCC_OFF_SMALL_ASM() (rw->lock)
Ralf Baechlee01961c2013-04-11 00:16:53 +0200314 : "memory");
315 } while (unlikely(!tmp));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 }
Ralf Baechle0004a9d2006-10-31 03:45:07 +0000317
Ralf Baechle17099b12007-07-14 13:24:05 +0100318 smp_llsc_mb();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319}
320
Thomas Gleixnere5931942009-12-03 20:08:46 +0100321static inline void arch_write_unlock(arch_rwlock_t *rw)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322{
Ralf Baechle0004a9d2006-10-31 03:45:07 +0000323 smp_mb();
324
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 __asm__ __volatile__(
Thomas Gleixnere5931942009-12-03 20:08:46 +0100326 " # arch_write_unlock \n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 " sw $0, %0 \n"
328 : "=m" (rw->lock)
329 : "m" (rw->lock)
330 : "memory");
331}
332
Thomas Gleixnere5931942009-12-03 20:08:46 +0100333static inline int arch_read_trylock(arch_rwlock_t *rw)
Ralf Baechle65316fd2006-08-31 14:16:06 +0100334{
335 unsigned int tmp;
336 int ret;
337
338 if (R10000_LLSC_WAR) {
339 __asm__ __volatile__(
Thomas Gleixnere5931942009-12-03 20:08:46 +0100340 " .set noreorder # arch_read_trylock \n"
Ralf Baechle65316fd2006-08-31 14:16:06 +0100341 " li %2, 0 \n"
342 "1: ll %1, %3 \n"
Dave Johnsond52c2d52007-03-05 20:50:27 -0500343 " bltz %1, 2f \n"
Ralf Baechle65316fd2006-08-31 14:16:06 +0100344 " addu %1, 1 \n"
345 " sc %1, %0 \n"
Ralf Baechle65316fd2006-08-31 14:16:06 +0100346 " .set reorder \n"
Ralf Baechle0004a9d2006-10-31 03:45:07 +0000347 " beqzl %1, 1b \n"
348 " nop \n"
Ralf Baechle17099b12007-07-14 13:24:05 +0100349 __WEAK_LLSC_MB
Ralf Baechle65316fd2006-08-31 14:16:06 +0100350 " li %2, 1 \n"
351 "2: \n"
Markos Chandras94bfb752015-01-26 12:44:11 +0000352 : "=" GCC_OFF_SMALL_ASM() (rw->lock), "=&r" (tmp), "=&r" (ret)
353 : GCC_OFF_SMALL_ASM() (rw->lock)
Ralf Baechle65316fd2006-08-31 14:16:06 +0100354 : "memory");
355 } else {
356 __asm__ __volatile__(
Thomas Gleixnere5931942009-12-03 20:08:46 +0100357 " .set noreorder # arch_read_trylock \n"
Ralf Baechle65316fd2006-08-31 14:16:06 +0100358 " li %2, 0 \n"
359 "1: ll %1, %3 \n"
Dave Johnsond52c2d52007-03-05 20:50:27 -0500360 " bltz %1, 2f \n"
Ralf Baechle65316fd2006-08-31 14:16:06 +0100361 " addu %1, 1 \n"
362 " sc %1, %0 \n"
363 " beqz %1, 1b \n"
Ralf Baechle0004a9d2006-10-31 03:45:07 +0000364 " nop \n"
Ralf Baechle65316fd2006-08-31 14:16:06 +0100365 " .set reorder \n"
Ralf Baechle17099b12007-07-14 13:24:05 +0100366 __WEAK_LLSC_MB
Ralf Baechle65316fd2006-08-31 14:16:06 +0100367 " li %2, 1 \n"
368 "2: \n"
Markos Chandras94bfb752015-01-26 12:44:11 +0000369 : "=" GCC_OFF_SMALL_ASM() (rw->lock), "=&r" (tmp), "=&r" (ret)
370 : GCC_OFF_SMALL_ASM() (rw->lock)
Ralf Baechle65316fd2006-08-31 14:16:06 +0100371 : "memory");
372 }
373
374 return ret;
375}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376
Thomas Gleixnere5931942009-12-03 20:08:46 +0100377static inline int arch_write_trylock(arch_rwlock_t *rw)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378{
379 unsigned int tmp;
380 int ret;
381
382 if (R10000_LLSC_WAR) {
383 __asm__ __volatile__(
Thomas Gleixnere5931942009-12-03 20:08:46 +0100384 " .set noreorder # arch_write_trylock \n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 " li %2, 0 \n"
386 "1: ll %1, %3 \n"
387 " bnez %1, 2f \n"
388 " lui %1, 0x8000 \n"
389 " sc %1, %0 \n"
390 " beqzl %1, 1b \n"
Ralf Baechle0004a9d2006-10-31 03:45:07 +0000391 " nop \n"
Ralf Baechle17099b12007-07-14 13:24:05 +0100392 __WEAK_LLSC_MB
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 " li %2, 1 \n"
394 " .set reorder \n"
395 "2: \n"
Markos Chandras94bfb752015-01-26 12:44:11 +0000396 : "=" GCC_OFF_SMALL_ASM() (rw->lock), "=&r" (tmp), "=&r" (ret)
397 : GCC_OFF_SMALL_ASM() (rw->lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 : "memory");
399 } else {
Ralf Baechlee01961c2013-04-11 00:16:53 +0200400 do {
401 __asm__ __volatile__(
402 " ll %1, %3 # arch_write_trylock \n"
403 " li %2, 0 \n"
404 " bnez %1, 2f \n"
405 " lui %1, 0x8000 \n"
406 " sc %1, %0 \n"
407 " li %2, 1 \n"
408 "2: \n"
Markos Chandras94bfb752015-01-26 12:44:11 +0000409 : "=" GCC_OFF_SMALL_ASM() (rw->lock), "=&r" (tmp),
Maciej W. Rozyckib0984c42014-11-15 22:08:48 +0000410 "=&r" (ret)
Markos Chandras94bfb752015-01-26 12:44:11 +0000411 : GCC_OFF_SMALL_ASM() (rw->lock)
Ralf Baechlee01961c2013-04-11 00:16:53 +0200412 : "memory");
413 } while (unlikely(!tmp));
414
415 smp_llsc_mb();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 }
417
418 return ret;
419}
420
Thomas Gleixnere5931942009-12-03 20:08:46 +0100421#define arch_read_lock_flags(lock, flags) arch_read_lock(lock)
422#define arch_write_lock_flags(lock, flags) arch_write_lock(lock)
Ralf Baechle65316fd2006-08-31 14:16:06 +0100423
Thomas Gleixner0199c4e2009-12-02 20:01:25 +0100424#define arch_spin_relax(lock) cpu_relax()
425#define arch_read_relax(lock) cpu_relax()
426#define arch_write_relax(lock) cpu_relax()
Martin Schwidefskyef6edc92006-09-30 23:27:43 -0700427
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428#endif /* _ASM_SPINLOCK_H */