spinlock.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:4k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  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.  *
  6.  * Copyright (C) 1999, 2000 by Ralf Baechle
  7.  * Copyright (C) 1999, 2000 Silicon Graphics, Inc.
  8.  */
  9. #ifndef _ASM_SPINLOCK_H
  10. #define _ASM_SPINLOCK_H
  11. /*
  12.  * Your basic SMP spinlocks, allowing only a single CPU anywhere
  13.  */
  14. typedef struct {
  15. volatile unsigned int lock;
  16. } spinlock_t;
  17. #define SPIN_LOCK_UNLOCKED (spinlock_t) { 0 }
  18. #define spin_lock_init(x) do { (x)->lock = 0; } while(0);
  19. #define spin_is_locked(x) ((x)->lock != 0)
  20. #define spin_unlock_wait(x) ({ do { barrier(); } while ((x)->lock); })
  21. /*
  22.  * Simple spin lock operations.  There are two variants, one clears IRQ's
  23.  * on the local processor, one does not.
  24.  *
  25.  * We make no fairness assumptions.  They have a cost.
  26.  */
  27. static inline void spin_lock(spinlock_t *lock)
  28. {
  29. unsigned int tmp;
  30. __asm__ __volatile__(
  31. ".settnoreorderttt# spin_lockn"
  32. "1:tllt%1, %2nt"
  33. "bnezt%1, 1bnt"
  34. " lit%1, 1nt"
  35. "sct%1, %0nt"
  36. "beqzt%1, 1bnt"
  37. " syncnt"
  38. ".settreorder"
  39. : "=o" (lock->lock), "=&r" (tmp)
  40. : "o" (lock->lock)
  41. : "memory");
  42. }
  43. static inline void spin_unlock(spinlock_t *lock)
  44. {
  45. __asm__ __volatile__(
  46. ".settnoreorderttt# spin_unlocknt"
  47. "syncnt"
  48. "swt$0, %0nt"
  49. ".settreorder"
  50. : "=o" (lock->lock)
  51. : "o" (lock->lock)
  52. : "memory");
  53. }
  54. static inline unsigned int spin_trylock(spinlock_t *lock)
  55. {
  56. unsigned int temp, res;
  57. __asm__ __volatile__(
  58. ".settnoreorderttt# spin_trylocknt"
  59. "1:tllt%0, %1nt"
  60. "ort%2, %0, %3nt"
  61. "sct%2, %1nt"
  62. "beqzt%2, 1bnt"
  63. " andt%2, %0, %3nt"
  64. ".settreorder"
  65. : "=&r" (temp), "=m" (lock->lock), "=&r" (res)
  66. : "r" (1), "m" (lock->lock)
  67. : "memory");
  68. return res == 0;
  69. }
  70. /*
  71.  * Read-write spinlocks, allowing multiple readers but only one writer.
  72.  *
  73.  * NOTE! it is quite common to have readers in interrupts but no interrupt
  74.  * writers. For those circumstances we can "mix" irq-safe locks - any writer
  75.  * needs to get a irq-safe write-lock, but readers can get non-irqsafe
  76.  * read-locks.
  77.  */
  78. typedef struct {
  79. volatile unsigned int lock;
  80. } rwlock_t;
  81. #define RW_LOCK_UNLOCKED (rwlock_t) { 0 }
  82. static inline void read_lock(rwlock_t *rw)
  83. {
  84. unsigned int tmp;
  85. __asm__ __volatile__(
  86. ".settnoreorderttt# read_lockn"
  87. "1:tllt%1, %2nt"
  88. "bltzt%1, 1bnt"
  89. " addut%1, 1nt"
  90. "sct%1, %0nt"
  91. "beqzt%1, 1bnt"
  92. " syncnt"
  93. ".settreorder"
  94. : "=o" (rw->lock), "=&r" (tmp)
  95. : "o" (rw->lock)
  96. : "memory");
  97. }
  98. /* Note the use of sub, not subu which will make the kernel die with an
  99.    overflow exception if we ever try to unlock an rwlock that is already
  100.    unlocked or is being held by a writer.  */
  101. static inline void read_unlock(rwlock_t *rw)
  102. {
  103. unsigned int tmp;
  104. __asm__ __volatile__(
  105. ".settnoreorderttt# read_unlockn"
  106. "1:tllt%1, %2nt"
  107. "subt%1, 1nt"
  108. "sct%1, %0nt"
  109. "beqzt%1, 1bnt"
  110. "syncnt"
  111. ".settreorder"
  112. : "=o" (rw->lock), "=&r" (tmp)
  113. : "o" (rw->lock)
  114. : "memory");
  115. }
  116. static inline void write_lock(rwlock_t *rw)
  117. {
  118. unsigned int tmp;
  119. __asm__ __volatile__(
  120. ".settnoreorderttt# write_lockn"
  121. "1:tllt%1, %2nt"
  122. "bnezt%1, 1bnt"
  123. " luit%1, 0x8000nt"
  124. "sct%1, %0nt"
  125. "beqzt%1, 1bnt"
  126. " syncnt"
  127. ".settreorder"
  128. : "=o" (rw->lock), "=&r" (tmp)
  129. : "o" (rw->lock)
  130. : "memory");
  131. }
  132. static inline void write_unlock(rwlock_t *rw)
  133. {
  134. __asm__ __volatile__(
  135. ".settnoreorderttt# write_unlocknt"
  136. "syncnt"
  137. "swt$0, %0nt"
  138. ".settreorder"
  139. : "=o" (rw->lock)
  140. : "o" (rw->lock)
  141. : "memory");
  142. }
  143. #endif /* _ASM_SPINLOCK_H */