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

嵌入式Linux

开发平台:

Unix_Linux

  1. #ifndef _ALPHA_SEMAPHORE_H
  2. #define _ALPHA_SEMAPHORE_H
  3. /*
  4.  * SMP- and interrupt-safe semaphores..
  5.  *
  6.  * (C) Copyright 1996 Linus Torvalds
  7.  * (C) Copyright 1996, 2000 Richard Henderson
  8.  */
  9. #include <asm/current.h>
  10. #include <asm/system.h>
  11. #include <asm/atomic.h>
  12. #include <linux/compiler.h>
  13. #include <linux/wait.h>
  14. #include <linux/rwsem.h>
  15. struct semaphore {
  16. /* Careful, inline assembly knows about the position of these two.  */
  17. atomic_t count __attribute__((aligned(8)));
  18. atomic_t waking; /* biased by -1 */
  19. wait_queue_head_t wait;
  20. #if WAITQUEUE_DEBUG
  21. long __magic;
  22. #endif
  23. };
  24. #if WAITQUEUE_DEBUG
  25. # define __SEM_DEBUG_INIT(name) , (long)&(name).__magic
  26. #else
  27. # define __SEM_DEBUG_INIT(name)
  28. #endif
  29. #define __SEMAPHORE_INITIALIZER(name,count)
  30. { ATOMIC_INIT(count), ATOMIC_INIT(-1),
  31.   __WAIT_QUEUE_HEAD_INITIALIZER((name).wait)
  32.   __SEM_DEBUG_INIT(name) }
  33. #define __MUTEX_INITIALIZER(name) 
  34. __SEMAPHORE_INITIALIZER(name,1)
  35. #define __DECLARE_SEMAPHORE_GENERIC(name,count) 
  36. struct semaphore name = __SEMAPHORE_INITIALIZER(name,count)
  37. #define DECLARE_MUTEX(name) __DECLARE_SEMAPHORE_GENERIC(name,1)
  38. #define DECLARE_MUTEX_LOCKED(name) __DECLARE_SEMAPHORE_GENERIC(name,0)
  39. static inline void sema_init(struct semaphore *sem, int val)
  40. {
  41. /*
  42.  * Logically, 
  43.  *   *sem = (struct semaphore)__SEMAPHORE_INITIALIZER((*sem),val);
  44.  * except that gcc produces better initializing by parts yet.
  45.  */
  46. atomic_set(&sem->count, val);
  47. atomic_set(&sem->waking, -1);
  48. init_waitqueue_head(&sem->wait);
  49. #if WAITQUEUE_DEBUG
  50. sem->__magic = (long)&sem->__magic;
  51. #endif
  52. }
  53. static inline void init_MUTEX (struct semaphore *sem)
  54. {
  55. sema_init(sem, 1);
  56. }
  57. static inline void init_MUTEX_LOCKED (struct semaphore *sem)
  58. {
  59. sema_init(sem, 0);
  60. }
  61. extern void down(struct semaphore *);
  62. extern void __down_failed(struct semaphore *);
  63. extern int  down_interruptible(struct semaphore *);
  64. extern int  __down_failed_interruptible(struct semaphore *);
  65. extern int  down_trylock(struct semaphore *);
  66. extern void up(struct semaphore *);
  67. extern void __up_wakeup(struct semaphore *);
  68. /*
  69.  * Hidden out of line code is fun, but extremely messy.  Rely on newer
  70.  * compilers to do a respectable job with this.  The contention cases
  71.  * are handled out of line in arch/alpha/kernel/semaphore.c.
  72.  */
  73. static inline void __down(struct semaphore *sem)
  74. {
  75. long count = atomic_dec_return(&sem->count);
  76. if (unlikely(count < 0))
  77. __down_failed(sem);
  78. }
  79. static inline int __down_interruptible(struct semaphore *sem)
  80. {
  81. long count = atomic_dec_return(&sem->count);
  82. if (unlikely(count < 0))
  83. return __down_failed_interruptible(sem);
  84. return 0;
  85. }
  86. /*
  87.  * down_trylock returns 0 on success, 1 if we failed to get the lock.
  88.  *
  89.  * We must manipulate count and waking simultaneously and atomically.
  90.  * Do this by using ll/sc on the pair of 32-bit words.
  91.  */
  92. static inline int __down_trylock(struct semaphore * sem)
  93. {
  94. long ret, tmp, tmp2, sub;
  95. /* "Equivalent" C.  Note that we have to do this all without
  96.    (taken) branches in order to be a valid ll/sc sequence.
  97.    do {
  98. tmp = ldq_l;
  99. sub = 0x0000000100000000;
  100. ret = ((int)tmp <= 0); // count <= 0 ?
  101. // Note that if count=0, the decrement overflows into
  102. // waking, so cancel the 1 loaded above.  Also cancel
  103. // it if the lock was already free.
  104. if ((int)tmp >= 0) sub = 0; // count >= 0 ?
  105. ret &= ((long)tmp < 0); // waking < 0 ?
  106. sub += 1;
  107. if (ret) break;
  108. tmp -= sub;
  109. tmp = stq_c = tmp;
  110.    } while (tmp == 0);
  111. */
  112. __asm__ __volatile__(
  113. "1: ldq_l %1,%4n"
  114. " lda %3,1n"
  115. " addl %1,0,%2n"
  116. " sll %3,32,%3n"
  117. " cmple %2,0,%0n"
  118. " cmovge %2,0,%3n"
  119. " cmplt %1,0,%2n"
  120. " addq %3,1,%3n"
  121. " and %0,%2,%0n"
  122. " bne %0,2fn"
  123. " subq %1,%3,%1n"
  124. " stq_c %1,%4n"
  125. " beq %1,3fn"
  126. "2: mbn"
  127. ".subsection 2n"
  128. "3: br 1bn"
  129. ".previous"
  130. : "=&r"(ret), "=&r"(tmp), "=&r"(tmp2), "=&r"(sub)
  131. : "m"(*sem)
  132. : "memory");
  133. return ret;
  134. }
  135. static inline void __up(struct semaphore *sem)
  136. {
  137. long ret, tmp, tmp2, tmp3;
  138. /* We must manipulate count and waking simultaneously and atomically.
  139.    Otherwise we have races between up and __down_failed_interruptible
  140.    waking up on a signal.
  141.    "Equivalent" C.  Note that we have to do this all without
  142.    (taken) branches in order to be a valid ll/sc sequence.
  143.    do {
  144. tmp = ldq_l;
  145. ret = (int)tmp + 1; // count += 1;
  146. tmp2 = tmp & 0xffffffff00000000; // extract waking
  147. if (ret <= 0) // still sleepers?
  148. tmp2 += 0x0000000100000000; // waking += 1;
  149. tmp = ret & 0x00000000ffffffff; // insert count
  150. tmp |= tmp2; // insert waking;
  151.        tmp = stq_c = tmp;
  152.    } while (tmp == 0);
  153. */
  154. __asm__ __volatile__(
  155. " mbn"
  156. "1: ldq_l %1,%4n"
  157. " addl %1,1,%0n"
  158. " zapnot %1,0xf0,%2n"
  159. " addq %2,%5,%3n"
  160. " cmovle %0,%3,%2n"
  161. " zapnot %0,0x0f,%1n"
  162. " bis %1,%2,%1n"
  163. " stq_c %1,%4n"
  164. " beq %1,3fn"
  165. "2:n"
  166. ".subsection 2n"
  167. "3: br 1bn"
  168. ".previous"
  169. : "=&r"(ret), "=&r"(tmp), "=&r"(tmp2), "=&r"(tmp3)
  170. : "m"(*sem), "r"(0x0000000100000000)
  171. : "memory");
  172. if (unlikely(ret <= 0))
  173. __up_wakeup(sem);
  174. }
  175. #if !WAITQUEUE_DEBUG && !defined(CONFIG_DEBUG_SEMAPHORE)
  176. extern inline void down(struct semaphore *sem)
  177. {
  178. __down(sem);
  179. }
  180. extern inline int down_interruptible(struct semaphore *sem)
  181. {
  182. return __down_interruptible(sem);
  183. }
  184. extern inline int down_trylock(struct semaphore *sem)
  185. {
  186. return __down_trylock(sem);
  187. }
  188. extern inline void up(struct semaphore *sem)
  189. {
  190. __up(sem);
  191. }
  192. #endif
  193. #endif