2 * include/asm-sh/spinlock.h
4 * Copyright (C) 2002, 2003 Paul Mundt
6 * This file is subject to the terms and conditions of the GNU General Public
7 * License. See the file "COPYING" in the main directory of this archive
10 #ifndef __ASM_SH_SPINLOCK_H
11 #define __ASM_SH_SPINLOCK_H
13 #include <asm/atomic.h>
16 * Your basic SMP spinlocks, allowing only a single CPU anywhere
19 volatile unsigned long lock
;
21 unsigned int break_lock
;
25 #define SPIN_LOCK_UNLOCKED (spinlock_t) { 0 }
27 #define spin_lock_init(x) do { *(x) = SPIN_LOCK_UNLOCKED; } while(0)
29 #define spin_is_locked(x) ((x)->lock != 0)
30 #define spin_unlock_wait(x) do { barrier(); } while (spin_is_locked(x))
31 #define _raw_spin_lock_flags(lock, flags) _raw_spin_lock(lock)
34 * Simple spin lock operations. There are two variants, one clears IRQ's
35 * on the local processor, one does not.
37 * We make no fairness assumptions. They have a cost.
39 static inline void _raw_spin_lock(spinlock_t
*lock
)
41 __asm__
__volatile__ (
52 static inline void _raw_spin_unlock(spinlock_t
*lock
)
54 assert_spin_locked(lock
);
59 #define _raw_spin_trylock(x) (!test_and_set_bit(0, &(x)->lock))
62 * Read-write spinlocks, allowing multiple readers but only one writer.
64 * NOTE! it is quite common to have readers in interrupts but no interrupt
65 * writers. For those circumstances we can "mix" irq-safe locks - any writer
66 * needs to get a irq-safe write-lock, but readers can get non-irqsafe
73 unsigned int break_lock
;
77 #define RW_LOCK_BIAS 0x01000000
78 #define RW_LOCK_UNLOCKED (rwlock_t) { { 0 }, { RW_LOCK_BIAS } }
79 #define rwlock_init(x) do { *(x) = RW_LOCK_UNLOCKED; } while (0)
81 static inline void _raw_read_lock(rwlock_t
*rw
)
83 _raw_spin_lock(&rw
->lock
);
85 atomic_inc(&rw
->counter
);
87 _raw_spin_unlock(&rw
->lock
);
90 static inline void _raw_read_unlock(rwlock_t
*rw
)
92 _raw_spin_lock(&rw
->lock
);
94 atomic_dec(&rw
->counter
);
96 _raw_spin_unlock(&rw
->lock
);
99 static inline void _raw_write_lock(rwlock_t
*rw
)
101 _raw_spin_lock(&rw
->lock
);
102 atomic_set(&rw
->counter
, -1);
105 static inline void _raw_write_unlock(rwlock_t
*rw
)
107 atomic_set(&rw
->counter
, 0);
108 _raw_spin_unlock(&rw
->lock
);
111 #define _raw_read_trylock(lock) generic_raw_read_trylock(lock)
113 static inline int _raw_write_trylock(rwlock_t
*rw
)
115 if (atomic_sub_and_test(RW_LOCK_BIAS
, &rw
->counter
))
118 atomic_add(RW_LOCK_BIAS
, &rw
->counter
);
123 #endif /* __ASM_SH_SPINLOCK_H */