blob: f485afe51514765710eaf990b674e92378effe61 [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>
Peter Zijlstra726328d2016-05-26 10:35:03 +020015#include <asm/processor.h>
Maciej W. Rozyckib0984c42014-11-15 22:08:48 +000016#include <asm/compiler.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <asm/war.h>
18
19/*
20 * Your basic SMP spinlocks, allowing only a single CPU anywhere
Ralf Baechle2a31b032008-08-28 15:17:49 +010021 *
Ralf Baechle70342282013-01-22 12:59:30 +010022 * Simple spin lock operations. There are two variants, one clears IRQ's
Linus Torvalds1da177e2005-04-16 15:20:36 -070023 * on the local processor, one does not.
24 *
Ralf Baechle2a31b032008-08-28 15:17:49 +010025 * These are fair FIFO ticket locks
26 *
27 * (the type definitions are in asm/spinlock_types.h)
Linus Torvalds1da177e2005-04-16 15:20:36 -070028 */
29
Ralf Baechle2a31b032008-08-28 15:17:49 +010030
31/*
32 * Ticket locks are conceptually two parts, one indicating the current head of
33 * the queue, and the other indicating the current tail. The lock is acquired
34 * by atomically noting the tail and incrementing it by one (thus adding
35 * ourself to the queue and noting our position), then waiting until the head
36 * becomes equal to the the initial value of the tail.
37 */
38
Thomas Gleixner0199c4e2009-12-02 20:01:25 +010039static inline int arch_spin_is_locked(arch_spinlock_t *lock)
Ralf Baechle2a31b032008-08-28 15:17:49 +010040{
David Daney500c2e12010-02-04 11:31:49 -080041 u32 counters = ACCESS_ONCE(lock->lock);
Ralf Baechle2a31b032008-08-28 15:17:49 +010042
David Daney500c2e12010-02-04 11:31:49 -080043 return ((counters >> 16) ^ counters) & 0xffff;
Ralf Baechle2a31b032008-08-28 15:17:49 +010044}
45
Paul Burton5fac4f72015-07-30 08:16:10 -070046static inline int arch_spin_value_unlocked(arch_spinlock_t lock)
47{
48 return lock.h.serving_now == lock.h.ticket;
49}
50
Thomas Gleixner0199c4e2009-12-02 20:01:25 +010051#define arch_spin_lock_flags(lock, flags) arch_spin_lock(lock)
Peter Zijlstra726328d2016-05-26 10:35:03 +020052
53static inline void arch_spin_unlock_wait(arch_spinlock_t *lock)
54{
55 u16 owner = READ_ONCE(lock->h.serving_now);
56 smp_rmb();
57 for (;;) {
58 arch_spinlock_t tmp = READ_ONCE(*lock);
59
60 if (tmp.h.serving_now == tmp.h.ticket ||
61 tmp.h.serving_now != owner)
62 break;
63
64 cpu_relax();
65 }
66 smp_acquire__after_ctrl_dep();
67}
Ralf Baechle2a31b032008-08-28 15:17:49 +010068
Thomas Gleixner0199c4e2009-12-02 20:01:25 +010069static inline int arch_spin_is_contended(arch_spinlock_t *lock)
Ralf Baechle2a31b032008-08-28 15:17:49 +010070{
David Daney500c2e12010-02-04 11:31:49 -080071 u32 counters = ACCESS_ONCE(lock->lock);
Ralf Baechle2a31b032008-08-28 15:17:49 +010072
David Daney500c2e12010-02-04 11:31:49 -080073 return (((counters >> 16) - counters) & 0xffff) > 1;
Ralf Baechle2a31b032008-08-28 15:17:49 +010074}
Thomas Gleixner0199c4e2009-12-02 20:01:25 +010075#define arch_spin_is_contended arch_spin_is_contended
Ralf Baechle2a31b032008-08-28 15:17:49 +010076
Thomas Gleixner0199c4e2009-12-02 20:01:25 +010077static inline void arch_spin_lock(arch_spinlock_t *lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -070078{
Ralf Baechle2a31b032008-08-28 15:17:49 +010079 int my_ticket;
80 int tmp;
David Daney500c2e12010-02-04 11:31:49 -080081 int inc = 0x10000;
Linus Torvalds1da177e2005-04-16 15:20:36 -070082
83 if (R10000_LLSC_WAR) {
Ralf Baechle2a31b032008-08-28 15:17:49 +010084 __asm__ __volatile__ (
Thomas Gleixner0199c4e2009-12-02 20:01:25 +010085 " .set push # arch_spin_lock \n"
Ralf Baechle2a31b032008-08-28 15:17:49 +010086 " .set noreorder \n"
87 " \n"
88 "1: ll %[ticket], %[ticket_ptr] \n"
David Daney500c2e12010-02-04 11:31:49 -080089 " addu %[my_ticket], %[ticket], %[inc] \n"
Ralf Baechle2a31b032008-08-28 15:17:49 +010090 " sc %[my_ticket], %[ticket_ptr] \n"
91 " beqzl %[my_ticket], 1b \n"
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 " nop \n"
David Daney500c2e12010-02-04 11:31:49 -080093 " srl %[my_ticket], %[ticket], 16 \n"
94 " andi %[ticket], %[ticket], 0xffff \n"
Ralf Baechle2a31b032008-08-28 15:17:49 +010095 " bne %[ticket], %[my_ticket], 4f \n"
96 " subu %[ticket], %[my_ticket], %[ticket] \n"
97 "2: \n"
Ralf Baechlef65e4fa2006-09-28 01:45:21 +010098 " .subsection 2 \n"
David Daney500c2e12010-02-04 11:31:49 -080099 "4: andi %[ticket], %[ticket], 0xffff \n"
David Daney0e6826c2009-03-27 10:07:02 -0700100 " sll %[ticket], 5 \n"
Ralf Baechle2a31b032008-08-28 15:17:49 +0100101 " \n"
102 "6: bnez %[ticket], 6b \n"
103 " subu %[ticket], 1 \n"
104 " \n"
David Daney500c2e12010-02-04 11:31:49 -0800105 " lhu %[ticket], %[serving_now_ptr] \n"
Ralf Baechle2a31b032008-08-28 15:17:49 +0100106 " beq %[ticket], %[my_ticket], 2b \n"
107 " subu %[ticket], %[my_ticket], %[ticket] \n"
David Daney0e6826c2009-03-27 10:07:02 -0700108 " b 4b \n"
Ralf Baechle2a31b032008-08-28 15:17:49 +0100109 " subu %[ticket], %[ticket], 1 \n"
Ralf Baechlef65e4fa2006-09-28 01:45:21 +0100110 " .previous \n"
Ralf Baechle2a31b032008-08-28 15:17:49 +0100111 " .set pop \n"
Markos Chandras94bfb752015-01-26 12:44:11 +0000112 : [ticket_ptr] "+" GCC_OFF_SMALL_ASM() (lock->lock),
David Daney500c2e12010-02-04 11:31:49 -0800113 [serving_now_ptr] "+m" (lock->h.serving_now),
Ralf Baechle2a31b032008-08-28 15:17:49 +0100114 [ticket] "=&r" (tmp),
David Daney500c2e12010-02-04 11:31:49 -0800115 [my_ticket] "=&r" (my_ticket)
116 : [inc] "r" (inc));
Ralf Baechle2a31b032008-08-28 15:17:49 +0100117 } else {
118 __asm__ __volatile__ (
Thomas Gleixner0199c4e2009-12-02 20:01:25 +0100119 " .set push # arch_spin_lock \n"
Ralf Baechle2a31b032008-08-28 15:17:49 +0100120 " .set noreorder \n"
121 " \n"
David Daney500c2e12010-02-04 11:31:49 -0800122 "1: ll %[ticket], %[ticket_ptr] \n"
123 " addu %[my_ticket], %[ticket], %[inc] \n"
Ralf Baechle2a31b032008-08-28 15:17:49 +0100124 " sc %[my_ticket], %[ticket_ptr] \n"
David Daney500c2e12010-02-04 11:31:49 -0800125 " beqz %[my_ticket], 1b \n"
126 " srl %[my_ticket], %[ticket], 16 \n"
127 " andi %[ticket], %[ticket], 0xffff \n"
Ralf Baechle2a31b032008-08-28 15:17:49 +0100128 " bne %[ticket], %[my_ticket], 4f \n"
129 " subu %[ticket], %[my_ticket], %[ticket] \n"
130 "2: \n"
131 " .subsection 2 \n"
Markos Chandras9ff897c2015-04-20 10:54:34 +0100132 "4: andi %[ticket], %[ticket], 0xffff \n"
David Daney0e6826c2009-03-27 10:07:02 -0700133 " sll %[ticket], 5 \n"
Ralf Baechle2a31b032008-08-28 15:17:49 +0100134 " \n"
135 "6: bnez %[ticket], 6b \n"
136 " subu %[ticket], 1 \n"
137 " \n"
David Daney500c2e12010-02-04 11:31:49 -0800138 " lhu %[ticket], %[serving_now_ptr] \n"
Ralf Baechle2a31b032008-08-28 15:17:49 +0100139 " beq %[ticket], %[my_ticket], 2b \n"
140 " subu %[ticket], %[my_ticket], %[ticket] \n"
David Daney0e6826c2009-03-27 10:07:02 -0700141 " b 4b \n"
Ralf Baechle2a31b032008-08-28 15:17:49 +0100142 " subu %[ticket], %[ticket], 1 \n"
143 " .previous \n"
144 " .set pop \n"
Markos Chandras94bfb752015-01-26 12:44:11 +0000145 : [ticket_ptr] "+" GCC_OFF_SMALL_ASM() (lock->lock),
David Daney500c2e12010-02-04 11:31:49 -0800146 [serving_now_ptr] "+m" (lock->h.serving_now),
Ralf Baechle2a31b032008-08-28 15:17:49 +0100147 [ticket] "=&r" (tmp),
David Daney500c2e12010-02-04 11:31:49 -0800148 [my_ticket] "=&r" (my_ticket)
149 : [inc] "r" (inc));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 }
Ralf Baechle0004a9d2006-10-31 03:45:07 +0000151
Ralf Baechle17099b12007-07-14 13:24:05 +0100152 smp_llsc_mb();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153}
154
Thomas Gleixner0199c4e2009-12-02 20:01:25 +0100155static inline void arch_spin_unlock(arch_spinlock_t *lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156{
David Daney500c2e12010-02-04 11:31:49 -0800157 unsigned int serving_now = lock->h.serving_now + 1;
158 wmb();
159 lock->h.serving_now = (u16)serving_now;
160 nudge_writes();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161}
162
Thomas Gleixner0199c4e2009-12-02 20:01:25 +0100163static inline unsigned int arch_spin_trylock(arch_spinlock_t *lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164{
Ralf Baechle2a31b032008-08-28 15:17:49 +0100165 int tmp, tmp2, tmp3;
David Daney500c2e12010-02-04 11:31:49 -0800166 int inc = 0x10000;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167
168 if (R10000_LLSC_WAR) {
Ralf Baechle2a31b032008-08-28 15:17:49 +0100169 __asm__ __volatile__ (
Thomas Gleixner0199c4e2009-12-02 20:01:25 +0100170 " .set push # arch_spin_trylock \n"
Ralf Baechle2a31b032008-08-28 15:17:49 +0100171 " .set noreorder \n"
172 " \n"
173 "1: ll %[ticket], %[ticket_ptr] \n"
David Daney500c2e12010-02-04 11:31:49 -0800174 " srl %[my_ticket], %[ticket], 16 \n"
David Daney500c2e12010-02-04 11:31:49 -0800175 " andi %[now_serving], %[ticket], 0xffff \n"
Ralf Baechle2a31b032008-08-28 15:17:49 +0100176 " bne %[my_ticket], %[now_serving], 3f \n"
David Daney500c2e12010-02-04 11:31:49 -0800177 " addu %[ticket], %[ticket], %[inc] \n"
Ralf Baechle2a31b032008-08-28 15:17:49 +0100178 " sc %[ticket], %[ticket_ptr] \n"
179 " beqzl %[ticket], 1b \n"
180 " li %[ticket], 1 \n"
181 "2: \n"
Ralf Baechlef65e4fa2006-09-28 01:45:21 +0100182 " .subsection 2 \n"
Ralf Baechle2a31b032008-08-28 15:17:49 +0100183 "3: b 2b \n"
184 " li %[ticket], 0 \n"
Ralf Baechlef65e4fa2006-09-28 01:45:21 +0100185 " .previous \n"
Ralf Baechle2a31b032008-08-28 15:17:49 +0100186 " .set pop \n"
Markos Chandras94bfb752015-01-26 12:44:11 +0000187 : [ticket_ptr] "+" GCC_OFF_SMALL_ASM() (lock->lock),
Ralf Baechle2a31b032008-08-28 15:17:49 +0100188 [ticket] "=&r" (tmp),
189 [my_ticket] "=&r" (tmp2),
David Daney500c2e12010-02-04 11:31:49 -0800190 [now_serving] "=&r" (tmp3)
191 : [inc] "r" (inc));
Ralf Baechle2a31b032008-08-28 15:17:49 +0100192 } else {
193 __asm__ __volatile__ (
Thomas Gleixner0199c4e2009-12-02 20:01:25 +0100194 " .set push # arch_spin_trylock \n"
Ralf Baechle2a31b032008-08-28 15:17:49 +0100195 " .set noreorder \n"
196 " \n"
David Daney500c2e12010-02-04 11:31:49 -0800197 "1: ll %[ticket], %[ticket_ptr] \n"
198 " srl %[my_ticket], %[ticket], 16 \n"
David Daney500c2e12010-02-04 11:31:49 -0800199 " andi %[now_serving], %[ticket], 0xffff \n"
Ralf Baechle2a31b032008-08-28 15:17:49 +0100200 " bne %[my_ticket], %[now_serving], 3f \n"
David Daney500c2e12010-02-04 11:31:49 -0800201 " addu %[ticket], %[ticket], %[inc] \n"
Ralf Baechle2a31b032008-08-28 15:17:49 +0100202 " sc %[ticket], %[ticket_ptr] \n"
David Daney500c2e12010-02-04 11:31:49 -0800203 " beqz %[ticket], 1b \n"
Ralf Baechle2a31b032008-08-28 15:17:49 +0100204 " li %[ticket], 1 \n"
205 "2: \n"
206 " .subsection 2 \n"
207 "3: b 2b \n"
208 " li %[ticket], 0 \n"
Ralf Baechle2a31b032008-08-28 15:17:49 +0100209 " .previous \n"
210 " .set pop \n"
Markos Chandras94bfb752015-01-26 12:44:11 +0000211 : [ticket_ptr] "+" GCC_OFF_SMALL_ASM() (lock->lock),
Ralf Baechle2a31b032008-08-28 15:17:49 +0100212 [ticket] "=&r" (tmp),
213 [my_ticket] "=&r" (tmp2),
David Daney500c2e12010-02-04 11:31:49 -0800214 [now_serving] "=&r" (tmp3)
215 : [inc] "r" (inc));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 }
217
Ralf Baechle17099b12007-07-14 13:24:05 +0100218 smp_llsc_mb();
Ralf Baechle0004a9d2006-10-31 03:45:07 +0000219
Ralf Baechle2a31b032008-08-28 15:17:49 +0100220 return tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221}
222
223/*
224 * Read-write spinlocks, allowing multiple readers but only one writer.
225 *
226 * NOTE! it is quite common to have readers in interrupts but no interrupt
227 * writers. For those circumstances we can "mix" irq-safe locks - any writer
228 * needs to get a irq-safe write-lock, but readers can get non-irqsafe
229 * read-locks.
230 */
231
Ralf Baechlee3c48072005-02-03 13:34:45 +0000232/*
233 * read_can_lock - would read_trylock() succeed?
234 * @lock: the rwlock in question.
235 */
Thomas Gleixnere5931942009-12-03 20:08:46 +0100236#define arch_read_can_lock(rw) ((rw)->lock >= 0)
Ralf Baechlee3c48072005-02-03 13:34:45 +0000237
238/*
239 * write_can_lock - would write_trylock() succeed?
240 * @lock: the rwlock in question.
241 */
Ralf Baechle70342282013-01-22 12:59:30 +0100242#define arch_write_can_lock(rw) (!(rw)->lock)
Ralf Baechlee3c48072005-02-03 13:34:45 +0000243
Thomas Gleixnere5931942009-12-03 20:08:46 +0100244static inline void arch_read_lock(arch_rwlock_t *rw)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245{
246 unsigned int tmp;
247
248 if (R10000_LLSC_WAR) {
249 __asm__ __volatile__(
Thomas Gleixnere5931942009-12-03 20:08:46 +0100250 " .set noreorder # arch_read_lock \n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 "1: ll %1, %2 \n"
252 " bltz %1, 1b \n"
253 " addu %1, 1 \n"
254 " sc %1, %0 \n"
255 " beqzl %1, 1b \n"
256 " nop \n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 " .set reorder \n"
Markos Chandras94bfb752015-01-26 12:44:11 +0000258 : "=" GCC_OFF_SMALL_ASM() (rw->lock), "=&r" (tmp)
259 : GCC_OFF_SMALL_ASM() (rw->lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 : "memory");
261 } else {
Ralf Baechlee01961c2013-04-11 00:16:53 +0200262 do {
263 __asm__ __volatile__(
264 "1: ll %1, %2 # arch_read_lock \n"
265 " bltz %1, 1b \n"
266 " addu %1, 1 \n"
267 "2: sc %1, %0 \n"
Markos Chandras94bfb752015-01-26 12:44:11 +0000268 : "=" GCC_OFF_SMALL_ASM() (rw->lock), "=&r" (tmp)
269 : GCC_OFF_SMALL_ASM() (rw->lock)
Ralf Baechlee01961c2013-04-11 00:16:53 +0200270 : "memory");
271 } while (unlikely(!tmp));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 }
Ralf Baechle0004a9d2006-10-31 03:45:07 +0000273
Ralf Baechle17099b12007-07-14 13:24:05 +0100274 smp_llsc_mb();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275}
276
Thomas Gleixnere5931942009-12-03 20:08:46 +0100277static inline void arch_read_unlock(arch_rwlock_t *rw)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278{
279 unsigned int tmp;
280
David Daneyf252ffd2010-01-08 17:17:43 -0800281 smp_mb__before_llsc();
Ralf Baechle0004a9d2006-10-31 03:45:07 +0000282
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 if (R10000_LLSC_WAR) {
284 __asm__ __volatile__(
Thomas Gleixnere5931942009-12-03 20:08:46 +0100285 "1: ll %1, %2 # arch_read_unlock \n"
Markos Chandras51822212015-03-03 18:48:48 +0000286 " addiu %1, -1 \n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 " sc %1, %0 \n"
288 " beqzl %1, 1b \n"
Markos Chandras94bfb752015-01-26 12:44:11 +0000289 : "=" GCC_OFF_SMALL_ASM() (rw->lock), "=&r" (tmp)
290 : GCC_OFF_SMALL_ASM() (rw->lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 : "memory");
292 } else {
Ralf Baechlee01961c2013-04-11 00:16:53 +0200293 do {
294 __asm__ __volatile__(
295 "1: ll %1, %2 # arch_read_unlock \n"
Markos Chandras57537622014-11-24 14:11:39 +0000296 " addiu %1, -1 \n"
Ralf Baechlee01961c2013-04-11 00:16:53 +0200297 " sc %1, %0 \n"
Markos Chandras94bfb752015-01-26 12:44:11 +0000298 : "=" GCC_OFF_SMALL_ASM() (rw->lock), "=&r" (tmp)
299 : GCC_OFF_SMALL_ASM() (rw->lock)
Ralf Baechlee01961c2013-04-11 00:16:53 +0200300 : "memory");
301 } while (unlikely(!tmp));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 }
303}
304
Thomas Gleixnere5931942009-12-03 20:08:46 +0100305static inline void arch_write_lock(arch_rwlock_t *rw)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306{
307 unsigned int tmp;
308
309 if (R10000_LLSC_WAR) {
310 __asm__ __volatile__(
Thomas Gleixnere5931942009-12-03 20:08:46 +0100311 " .set noreorder # arch_write_lock \n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 "1: ll %1, %2 \n"
313 " bnez %1, 1b \n"
314 " lui %1, 0x8000 \n"
315 " sc %1, %0 \n"
316 " beqzl %1, 1b \n"
Ralf Baechle0004a9d2006-10-31 03:45:07 +0000317 " nop \n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 " .set reorder \n"
Markos Chandras94bfb752015-01-26 12:44:11 +0000319 : "=" GCC_OFF_SMALL_ASM() (rw->lock), "=&r" (tmp)
320 : GCC_OFF_SMALL_ASM() (rw->lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 : "memory");
322 } else {
Ralf Baechlee01961c2013-04-11 00:16:53 +0200323 do {
324 __asm__ __volatile__(
325 "1: ll %1, %2 # arch_write_lock \n"
326 " bnez %1, 1b \n"
327 " lui %1, 0x8000 \n"
328 "2: sc %1, %0 \n"
Markos Chandras94bfb752015-01-26 12:44:11 +0000329 : "=" GCC_OFF_SMALL_ASM() (rw->lock), "=&r" (tmp)
330 : GCC_OFF_SMALL_ASM() (rw->lock)
Ralf Baechlee01961c2013-04-11 00:16:53 +0200331 : "memory");
332 } while (unlikely(!tmp));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 }
Ralf Baechle0004a9d2006-10-31 03:45:07 +0000334
Ralf Baechle17099b12007-07-14 13:24:05 +0100335 smp_llsc_mb();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336}
337
Thomas Gleixnere5931942009-12-03 20:08:46 +0100338static inline void arch_write_unlock(arch_rwlock_t *rw)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339{
Leonid Yegoshin6f6ed482015-06-01 17:09:52 -0700340 smp_mb__before_llsc();
Ralf Baechle0004a9d2006-10-31 03:45:07 +0000341
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 __asm__ __volatile__(
Thomas Gleixnere5931942009-12-03 20:08:46 +0100343 " # arch_write_unlock \n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 " sw $0, %0 \n"
345 : "=m" (rw->lock)
346 : "m" (rw->lock)
347 : "memory");
348}
349
Thomas Gleixnere5931942009-12-03 20:08:46 +0100350static inline int arch_read_trylock(arch_rwlock_t *rw)
Ralf Baechle65316fd2006-08-31 14:16:06 +0100351{
352 unsigned int tmp;
353 int ret;
354
355 if (R10000_LLSC_WAR) {
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"
Ralf Baechle65316fd2006-08-31 14:16:06 +0100363 " .set reorder \n"
Ralf Baechle0004a9d2006-10-31 03:45:07 +0000364 " beqzl %1, 1b \n"
365 " nop \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 } else {
373 __asm__ __volatile__(
Thomas Gleixnere5931942009-12-03 20:08:46 +0100374 " .set noreorder # arch_read_trylock \n"
Ralf Baechle65316fd2006-08-31 14:16:06 +0100375 " li %2, 0 \n"
376 "1: ll %1, %3 \n"
Dave Johnsond52c2d52007-03-05 20:50:27 -0500377 " bltz %1, 2f \n"
Ralf Baechle65316fd2006-08-31 14:16:06 +0100378 " addu %1, 1 \n"
379 " sc %1, %0 \n"
380 " beqz %1, 1b \n"
Ralf Baechle0004a9d2006-10-31 03:45:07 +0000381 " nop \n"
Ralf Baechle65316fd2006-08-31 14:16:06 +0100382 " .set reorder \n"
Ralf Baechle17099b12007-07-14 13:24:05 +0100383 __WEAK_LLSC_MB
Ralf Baechle65316fd2006-08-31 14:16:06 +0100384 " li %2, 1 \n"
385 "2: \n"
Markos Chandras94bfb752015-01-26 12:44:11 +0000386 : "=" GCC_OFF_SMALL_ASM() (rw->lock), "=&r" (tmp), "=&r" (ret)
387 : GCC_OFF_SMALL_ASM() (rw->lock)
Ralf Baechle65316fd2006-08-31 14:16:06 +0100388 : "memory");
389 }
390
391 return ret;
392}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393
Thomas Gleixnere5931942009-12-03 20:08:46 +0100394static inline int arch_write_trylock(arch_rwlock_t *rw)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395{
396 unsigned int tmp;
397 int ret;
398
399 if (R10000_LLSC_WAR) {
400 __asm__ __volatile__(
Thomas Gleixnere5931942009-12-03 20:08:46 +0100401 " .set noreorder # arch_write_trylock \n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 " li %2, 0 \n"
403 "1: ll %1, %3 \n"
404 " bnez %1, 2f \n"
405 " lui %1, 0x8000 \n"
406 " sc %1, %0 \n"
407 " beqzl %1, 1b \n"
Ralf Baechle0004a9d2006-10-31 03:45:07 +0000408 " nop \n"
Ralf Baechle17099b12007-07-14 13:24:05 +0100409 __WEAK_LLSC_MB
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 " li %2, 1 \n"
411 " .set reorder \n"
412 "2: \n"
Markos Chandras94bfb752015-01-26 12:44:11 +0000413 : "=" GCC_OFF_SMALL_ASM() (rw->lock), "=&r" (tmp), "=&r" (ret)
414 : GCC_OFF_SMALL_ASM() (rw->lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 : "memory");
416 } else {
Ralf Baechlee01961c2013-04-11 00:16:53 +0200417 do {
418 __asm__ __volatile__(
419 " ll %1, %3 # arch_write_trylock \n"
420 " li %2, 0 \n"
421 " bnez %1, 2f \n"
422 " lui %1, 0x8000 \n"
423 " sc %1, %0 \n"
424 " li %2, 1 \n"
425 "2: \n"
Markos Chandras94bfb752015-01-26 12:44:11 +0000426 : "=" GCC_OFF_SMALL_ASM() (rw->lock), "=&r" (tmp),
Maciej W. Rozyckib0984c42014-11-15 22:08:48 +0000427 "=&r" (ret)
Markos Chandras94bfb752015-01-26 12:44:11 +0000428 : GCC_OFF_SMALL_ASM() (rw->lock)
Ralf Baechlee01961c2013-04-11 00:16:53 +0200429 : "memory");
430 } while (unlikely(!tmp));
431
432 smp_llsc_mb();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 }
434
435 return ret;
436}
437
Thomas Gleixnere5931942009-12-03 20:08:46 +0100438#define arch_read_lock_flags(lock, flags) arch_read_lock(lock)
439#define arch_write_lock_flags(lock, flags) arch_write_lock(lock)
Ralf Baechle65316fd2006-08-31 14:16:06 +0100440
Thomas Gleixner0199c4e2009-12-02 20:01:25 +0100441#define arch_spin_relax(lock) cpu_relax()
442#define arch_read_relax(lock) cpu_relax()
443#define arch_write_relax(lock) cpu_relax()
Martin Schwidefskyef6edc92006-09-30 23:27:43 -0700444
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445#endif /* _ASM_SPINLOCK_H */