blob: e1a760b6744edaec101a0c3f4c6ee0452c88aa9f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
/* $OpenBSD: _atomic_lock.c,v 1.1 2005/12/24 12:01:26 miod Exp $ */
/*
* Atomic lock for mips
*/
#include <machine/spinlock.h>
int
_atomic_lock(volatile _spinlock_lock_t *lock)
{
_spinlock_lock_t old;
_spinlock_lock_t temp;
do {
/*
* On a mips2 machine and above, we can use ll/sc.
* Read the lock and tag the cache line with a 'load linked'
* instruction. (Register 17 (LLAddr) will hold the
* physical address of lock for diagnostic purposes);
* (Under pathologically heavy swapping, the physaddr may
* change! XXX)
*/
__asm__("ll %0, %1" : "=r"(old) : "m"(*lock));
if (old != _SPINLOCK_UNLOCKED)
break; /* already locked */
/*
* Try and store a 1 at the tagged lock address. If
* anyone else has since written it, the tag on the cache
* line will have been wiped, and temp will be set to zero
* by the 'store conditional' instruction.
*/
temp = _SPINLOCK_LOCKED;
__asm__("sc %0, %1" : "=r"(temp), "=m"(*lock)
: "0"(temp));
} while (temp == _SPINLOCK_UNLOCKED);
return (old != _SPINLOCK_UNLOCKED);
}
|