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

嵌入式Linux

开发平台:

Unix_Linux

  1. #ifndef _ASM_IA64_ATOMIC_H
  2. #define _ASM_IA64_ATOMIC_H
  3. /*
  4.  * Atomic operations that C can't guarantee us.  Useful for
  5.  * resource counting etc..
  6.  *
  7.  * NOTE: don't mess with the types below!  The "unsigned long" and
  8.  * "int" types were carefully placed so as to ensure proper operation
  9.  * of the macros.
  10.  *
  11.  * Copyright (C) 1998, 1999 Hewlett-Packard Co
  12.  * Copyright (C) 1998, 1999 David Mosberger-Tang <davidm@hpl.hp.com>
  13.  */
  14. #include <linux/types.h>
  15. #include <asm/system.h>
  16. /*
  17.  * On IA-64, counter must always be volatile to ensure that that the
  18.  * memory accesses are ordered.
  19.  */
  20. typedef struct { volatile __s32 counter; } atomic_t;
  21. #define ATOMIC_INIT(i) ((atomic_t) { (i) })
  22. #define atomic_read(v) ((v)->counter)
  23. #define atomic_set(v,i) (((v)->counter) = (i))
  24. static __inline__ int
  25. ia64_atomic_add (int i, atomic_t *v)
  26. {
  27. __s32 old, new;
  28. CMPXCHG_BUGCHECK_DECL
  29. do {
  30. CMPXCHG_BUGCHECK(v);
  31. old = atomic_read(v);
  32. new = old + i;
  33. } while (ia64_cmpxchg("acq", v, old, old + i, sizeof(atomic_t)) != old);
  34. return new;
  35. }
  36. static __inline__ int
  37. ia64_atomic_sub (int i, atomic_t *v)
  38. {
  39. __s32 old, new;
  40. CMPXCHG_BUGCHECK_DECL
  41. do {
  42. CMPXCHG_BUGCHECK(v);
  43. old = atomic_read(v);
  44. new = old - i;
  45. } while (ia64_cmpxchg("acq", v, old, new, sizeof(atomic_t)) != old);
  46. return new;
  47. }
  48. /*
  49.  * Atomically add I to V and return TRUE if the resulting value is
  50.  * negative.
  51.  */
  52. static __inline__ int
  53. atomic_add_negative (int i, atomic_t *v)
  54. {
  55. return ia64_atomic_add(i, v) < 0;
  56. }
  57. #define atomic_add_return(i,v)
  58. ((__builtin_constant_p(i) &&
  59.   (   (i ==  1) || (i ==  4) || (i ==  8) || (i ==  16)
  60.    || (i == -1) || (i == -4) || (i == -8) || (i == -16)))
  61.  ? ia64_fetch_and_add(i, &(v)->counter)
  62.  : ia64_atomic_add(i, v))
  63. #define atomic_sub_return(i,v)
  64. ((__builtin_constant_p(i) &&
  65.   (   (i ==  1) || (i ==  4) || (i ==  8) || (i ==  16)
  66.    || (i == -1) || (i == -4) || (i == -8) || (i == -16)))
  67.  ? ia64_fetch_and_add(-(i), &(v)->counter)
  68.  : ia64_atomic_sub(i, v))
  69. #define atomic_dec_return(v) atomic_sub_return(1, (v))
  70. #define atomic_inc_return(v) atomic_add_return(1, (v))
  71. #define atomic_sub_and_test(i,v) (atomic_sub_return((i), (v)) == 0)
  72. #define atomic_dec_and_test(v) (atomic_sub_return(1, (v)) == 0)
  73. #define atomic_inc_and_test(v) (atomic_add_return(1, (v)) != 0)
  74. #define atomic_add(i,v) atomic_add_return((i), (v))
  75. #define atomic_sub(i,v) atomic_sub_return((i), (v))
  76. #define atomic_inc(v) atomic_add(1, (v))
  77. #define atomic_dec(v) atomic_sub(1, (v))
  78. /* Atomic operations are already serializing */
  79. #define smp_mb__before_atomic_dec() barrier()
  80. #define smp_mb__after_atomic_dec() barrier()
  81. #define smp_mb__before_atomic_inc() barrier()
  82. #define smp_mb__after_atomic_inc() barrier()
  83. #endif /* _ASM_IA64_ATOMIC_H */