diff options
Diffstat (limited to 'include/asm-sh')
| -rw-r--r-- | include/asm-sh/irq.h | 4 | ||||
| -rw-r--r-- | include/asm-sh/spinlock.h | 61 | ||||
| -rw-r--r-- | include/asm-sh/spinlock_types.h | 22 |
3 files changed, 42 insertions, 45 deletions
diff --git a/include/asm-sh/irq.h b/include/asm-sh/irq.h index 831e52ee45b5..614a8c13b721 100644 --- a/include/asm-sh/irq.h +++ b/include/asm-sh/irq.h | |||
| @@ -587,10 +587,6 @@ static inline int generic_irq_demux(int irq) | |||
| 587 | #define irq_canonicalize(irq) (irq) | 587 | #define irq_canonicalize(irq) (irq) |
| 588 | #define irq_demux(irq) __irq_demux(sh_mv.mv_irq_demux(irq)) | 588 | #define irq_demux(irq) __irq_demux(sh_mv.mv_irq_demux(irq)) |
| 589 | 589 | ||
| 590 | struct irqaction; | ||
| 591 | struct pt_regs; | ||
| 592 | int handle_IRQ_event(unsigned int, struct pt_regs *, struct irqaction *); | ||
| 593 | |||
| 594 | #if defined(CONFIG_CPU_SUBTYPE_SH73180) | 590 | #if defined(CONFIG_CPU_SUBTYPE_SH73180) |
| 595 | #include <asm/irq-sh73180.h> | 591 | #include <asm/irq-sh73180.h> |
| 596 | #endif | 592 | #endif |
diff --git a/include/asm-sh/spinlock.h b/include/asm-sh/spinlock.h index e770b55649eb..846322d4c35d 100644 --- a/include/asm-sh/spinlock.h +++ b/include/asm-sh/spinlock.h | |||
| @@ -15,20 +15,11 @@ | |||
| 15 | /* | 15 | /* |
| 16 | * Your basic SMP spinlocks, allowing only a single CPU anywhere | 16 | * Your basic SMP spinlocks, allowing only a single CPU anywhere |
| 17 | */ | 17 | */ |
| 18 | typedef struct { | ||
| 19 | volatile unsigned long lock; | ||
| 20 | #ifdef CONFIG_PREEMPT | ||
| 21 | unsigned int break_lock; | ||
| 22 | #endif | ||
| 23 | } spinlock_t; | ||
| 24 | 18 | ||
| 25 | #define SPIN_LOCK_UNLOCKED (spinlock_t) { 0 } | 19 | #define __raw_spin_is_locked(x) ((x)->lock != 0) |
| 26 | 20 | #define __raw_spin_lock_flags(lock, flags) __raw_spin_lock(lock) | |
| 27 | #define spin_lock_init(x) do { *(x) = SPIN_LOCK_UNLOCKED; } while(0) | 21 | #define __raw_spin_unlock_wait(x) \ |
| 28 | 22 | do { cpu_relax(); } while (__raw_spin_is_locked(x)) | |
| 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) | ||
| 32 | 23 | ||
| 33 | /* | 24 | /* |
| 34 | * Simple spin lock operations. There are two variants, one clears IRQ's | 25 | * Simple spin lock operations. There are two variants, one clears IRQ's |
| @@ -36,7 +27,7 @@ typedef struct { | |||
| 36 | * | 27 | * |
| 37 | * We make no fairness assumptions. They have a cost. | 28 | * We make no fairness assumptions. They have a cost. |
| 38 | */ | 29 | */ |
| 39 | static inline void _raw_spin_lock(spinlock_t *lock) | 30 | static inline void __raw_spin_lock(raw_spinlock_t *lock) |
| 40 | { | 31 | { |
| 41 | __asm__ __volatile__ ( | 32 | __asm__ __volatile__ ( |
| 42 | "1:\n\t" | 33 | "1:\n\t" |
| @@ -49,14 +40,14 @@ static inline void _raw_spin_lock(spinlock_t *lock) | |||
| 49 | ); | 40 | ); |
| 50 | } | 41 | } |
| 51 | 42 | ||
| 52 | static inline void _raw_spin_unlock(spinlock_t *lock) | 43 | static inline void __raw_spin_unlock(raw_spinlock_t *lock) |
| 53 | { | 44 | { |
| 54 | assert_spin_locked(lock); | 45 | assert_spin_locked(lock); |
| 55 | 46 | ||
| 56 | lock->lock = 0; | 47 | lock->lock = 0; |
| 57 | } | 48 | } |
| 58 | 49 | ||
| 59 | #define _raw_spin_trylock(x) (!test_and_set_bit(0, &(x)->lock)) | 50 | #define __raw_spin_trylock(x) (!test_and_set_bit(0, &(x)->lock)) |
| 60 | 51 | ||
| 61 | /* | 52 | /* |
| 62 | * Read-write spinlocks, allowing multiple readers but only one writer. | 53 | * Read-write spinlocks, allowing multiple readers but only one writer. |
| @@ -66,51 +57,40 @@ static inline void _raw_spin_unlock(spinlock_t *lock) | |||
| 66 | * needs to get a irq-safe write-lock, but readers can get non-irqsafe | 57 | * needs to get a irq-safe write-lock, but readers can get non-irqsafe |
| 67 | * read-locks. | 58 | * read-locks. |
| 68 | */ | 59 | */ |
| 69 | typedef struct { | 60 | |
| 70 | spinlock_t lock; | 61 | static inline void __raw_read_lock(raw_rwlock_t *rw) |
| 71 | atomic_t counter; | ||
| 72 | #ifdef CONFIG_PREEMPT | ||
| 73 | unsigned int break_lock; | ||
| 74 | #endif | ||
| 75 | } rwlock_t; | ||
| 76 | |||
| 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) | ||
| 80 | |||
| 81 | static inline void _raw_read_lock(rwlock_t *rw) | ||
| 82 | { | 62 | { |
| 83 | _raw_spin_lock(&rw->lock); | 63 | __raw_spin_lock(&rw->lock); |
| 84 | 64 | ||
| 85 | atomic_inc(&rw->counter); | 65 | atomic_inc(&rw->counter); |
| 86 | 66 | ||
| 87 | _raw_spin_unlock(&rw->lock); | 67 | __raw_spin_unlock(&rw->lock); |
| 88 | } | 68 | } |
| 89 | 69 | ||
| 90 | static inline void _raw_read_unlock(rwlock_t *rw) | 70 | static inline void __raw_read_unlock(raw_rwlock_t *rw) |
| 91 | { | 71 | { |
| 92 | _raw_spin_lock(&rw->lock); | 72 | __raw_spin_lock(&rw->lock); |
| 93 | 73 | ||
| 94 | atomic_dec(&rw->counter); | 74 | atomic_dec(&rw->counter); |
| 95 | 75 | ||
| 96 | _raw_spin_unlock(&rw->lock); | 76 | __raw_spin_unlock(&rw->lock); |
| 97 | } | 77 | } |
| 98 | 78 | ||
| 99 | static inline void _raw_write_lock(rwlock_t *rw) | 79 | static inline void __raw_write_lock(raw_rwlock_t *rw) |
| 100 | { | 80 | { |
| 101 | _raw_spin_lock(&rw->lock); | 81 | __raw_spin_lock(&rw->lock); |
| 102 | atomic_set(&rw->counter, -1); | 82 | atomic_set(&rw->counter, -1); |
| 103 | } | 83 | } |
| 104 | 84 | ||
| 105 | static inline void _raw_write_unlock(rwlock_t *rw) | 85 | static inline void __raw_write_unlock(raw_rwlock_t *rw) |
| 106 | { | 86 | { |
| 107 | atomic_set(&rw->counter, 0); | 87 | atomic_set(&rw->counter, 0); |
| 108 | _raw_spin_unlock(&rw->lock); | 88 | __raw_spin_unlock(&rw->lock); |
| 109 | } | 89 | } |
| 110 | 90 | ||
| 111 | #define _raw_read_trylock(lock) generic_raw_read_trylock(lock) | 91 | #define __raw_read_trylock(lock) generic__raw_read_trylock(lock) |
| 112 | 92 | ||
| 113 | static inline int _raw_write_trylock(rwlock_t *rw) | 93 | static inline int __raw_write_trylock(raw_rwlock_t *rw) |
| 114 | { | 94 | { |
| 115 | if (atomic_sub_and_test(RW_LOCK_BIAS, &rw->counter)) | 95 | if (atomic_sub_and_test(RW_LOCK_BIAS, &rw->counter)) |
| 116 | return 1; | 96 | return 1; |
| @@ -121,4 +101,3 @@ static inline int _raw_write_trylock(rwlock_t *rw) | |||
| 121 | } | 101 | } |
| 122 | 102 | ||
| 123 | #endif /* __ASM_SH_SPINLOCK_H */ | 103 | #endif /* __ASM_SH_SPINLOCK_H */ |
| 124 | |||
diff --git a/include/asm-sh/spinlock_types.h b/include/asm-sh/spinlock_types.h new file mode 100644 index 000000000000..8c41b6c3aac8 --- /dev/null +++ b/include/asm-sh/spinlock_types.h | |||
| @@ -0,0 +1,22 @@ | |||
| 1 | #ifndef __ASM_SH_SPINLOCK_TYPES_H | ||
| 2 | #define __ASM_SH_SPINLOCK_TYPES_H | ||
| 3 | |||
| 4 | #ifndef __LINUX_SPINLOCK_TYPES_H | ||
| 5 | # error "please don't include this file directly" | ||
| 6 | #endif | ||
| 7 | |||
| 8 | typedef struct { | ||
| 9 | volatile unsigned long lock; | ||
| 10 | } raw_spinlock_t; | ||
| 11 | |||
| 12 | #define __SPIN_LOCK_UNLOCKED { 0 } | ||
| 13 | |||
| 14 | typedef struct { | ||
| 15 | raw_spinlock_t lock; | ||
| 16 | atomic_t counter; | ||
| 17 | } raw_rwlock_t; | ||
| 18 | |||
| 19 | #define RW_LOCK_BIAS 0x01000000 | ||
| 20 | #define __RAW_RW_LOCK_UNLOCKED { { 0 }, { RW_LOCK_BIAS } } | ||
| 21 | |||
| 22 | #endif | ||
