diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2007-05-01 18:56:32 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2007-05-01 18:56:32 +0000 |
commit | 70faf790f9b1740f13c9a8c5ada5076cf343467f (patch) | |
tree | 7151fb6010ac6903c59704c1a1e87c7b0130f74b /sys/arch/mips64/include | |
parent | 6df22bec0785ffd54a2f4233e9a6238ac919c4ab (diff) |
Provide <machine/lock.h> on all platforms, so that MI code may #include it
unconditionnaly.
Diffstat (limited to 'sys/arch/mips64/include')
-rw-r--r-- | sys/arch/mips64/include/lock.h | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/sys/arch/mips64/include/lock.h b/sys/arch/mips64/include/lock.h new file mode 100644 index 00000000000..be9b39b8e4c --- /dev/null +++ b/sys/arch/mips64/include/lock.h @@ -0,0 +1,54 @@ +/* $OpenBSD: lock.h,v 1.1 2007/05/01 18:56:30 miod Exp $ */ + +/* public domain */ + +#ifndef _MIPS64_LOCK_H_ +#define _MIPS64_LOCK_H_ + +typedef volatile u_int __cpu_simple_lock_t; + +#define __SIMPLELOCK_LOCKED 1 +#define __SIMPLELOCK_UNLOCKED 0 + +static __inline__ void +__cpu_simple_lock_init(__cpu_simple_lock_t *l) +{ + *l = __SIMPLELOCK_UNLOCKED; +} + +static __inline__ void +__cpu_simple_lock(__cpu_simple_lock_t *l) +{ + __cpu_simple_lock_t old, new; + + do { + new = __SIMPLELOCK_LOCKED; + __asm__ __volatile__ + ("1:\tll\t%0, %1\n" + "\tsc\t%2, %1\n" + "\tbeqz\t%2, 1b\n" + "\t nop" : "=r" (old) : "m" (*l), "r" (new)); + } while (old != __SIMPLELOCK_UNLOCKED); +} + +static __inline__ int +__cpu_simple_lock_try(__cpu_simple_lock_t *l) +{ + __cpu_simple_lock_t old, new = __SIMPLELOCK_LOCKED; + + __asm__ __volatile__ + ("1:\tll\t%0, %1\n" + "\tsc\t%2, %1\n" + "\tbeqz\t%2, 1b\n" + "\t nop" : "=r" (old) : "m" (*l), "r" (new)); + + return (old == __SIMPLELOCK_UNLOCKED); +} + +static __inline__ void +__cpu_simple_unlock(__cpu_simple_lock_t *l) +{ + *l = __SIMPLELOCK_UNLOCKED; +} + +#endif /* _MIPS64_LOCK_H_ */ |