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

嵌入式Linux

开发平台:

Unix_Linux

  1. #ifndef _ASM_PARISC_ATOMIC_H_
  2. #define _ASM_PARISC_ATOMIC_H_
  3. #include <linux/config.h>
  4. #include <asm/system.h>
  5. /* Copyright (C) 2000 Philipp Rumpf <prumpf@tux.org>.  */
  6. /*
  7.  * Atomic operations that C can't guarantee us.  Useful for
  8.  * resource counting etc..
  9.  *
  10.  * And probably incredibly slow on parisc.  OTOH, we don't
  11.  * have to write any serious assembly.   prumpf
  12.  */
  13. #ifdef CONFIG_SMP
  14. /* we have an array of spinlocks for our atomic_ts, and a hash function
  15.  * to get the right index */
  16. #  define ATOMIC_HASH_SIZE 1
  17. #  define ATOMIC_HASH(a) (&__atomic_hash[0])
  18. extern spinlock_t __atomic_hash[ATOMIC_HASH_SIZE];
  19. /* copied from <asm/spinlock.h> and modified */
  20. #  define SPIN_LOCK(x) 
  21. do { while(__ldcw(&(x)->lock) == 0); } while(0)
  22. #  define SPIN_UNLOCK(x) 
  23. do { (x)->lock = 1; } while(0)
  24. #else
  25. #  define ATOMIC_HASH_SIZE 1
  26. #  define ATOMIC_HASH(a) (0)
  27. /* copied from <linux/spinlock.h> and modified */
  28. #  define SPIN_LOCK(x) (void)(x)
  29. #  define SPIN_UNLOCK(x) do { } while(0)
  30. #endif
  31. /* copied from <linux/spinlock.h> and modified */
  32. #define SPIN_LOCK_IRQSAVE(lock, flags) do { local_irq_save(flags);       SPIN_LOCK(lock); } while (0)
  33. #define SPIN_UNLOCK_IRQRESTORE(lock, flags) do { SPIN_UNLOCK(lock);  local_irq_restore(flags); } while (0)
  34. /* Note that we need not lock read accesses - aligned word writes/reads
  35.  * are atomic, so a reader never sees unconsistent values.
  36.  *
  37.  * Cache-line alignment would conflict with, for example, linux/module.h */
  38. typedef struct {
  39. volatile int counter;
  40. } atomic_t;
  41. /* It's possible to reduce all atomic operations to either
  42.  * __atomic_add_return, __atomic_set and __atomic_ret (the latter
  43.  * is there only for consistency). */
  44. static __inline__ int __atomic_add_return(int i, atomic_t *v)
  45. {
  46. int ret;
  47. unsigned long flags;
  48. SPIN_LOCK_IRQSAVE(ATOMIC_HASH(v), flags);
  49. ret = (v->counter += i);
  50. SPIN_UNLOCK_IRQRESTORE(ATOMIC_HASH(v), flags);
  51. return ret;
  52. }
  53. static __inline__ void __atomic_set(atomic_t *v, int i) 
  54. {
  55. unsigned long flags;
  56. SPIN_LOCK_IRQSAVE(ATOMIC_HASH(v), flags);
  57. v->counter = i;
  58. SPIN_UNLOCK_IRQRESTORE(ATOMIC_HASH(v), flags);
  59. }
  60. static __inline__ int __atomic_read(atomic_t *v)
  61. {
  62. return v->counter;
  63. }
  64. /* exported interface */
  65. #define atomic_add(i,v) ((void)(__atomic_add_return( (i),(v))))
  66. #define atomic_sub(i,v) ((void)(__atomic_add_return(-(i),(v))))
  67. #define atomic_inc(v) ((void)(__atomic_add_return(   1,(v))))
  68. #define atomic_dec(v) ((void)(__atomic_add_return(  -1,(v))))
  69. #define atomic_add_return(i,v) (__atomic_add_return( (i),(v)))
  70. #define atomic_sub_return(i,v) (__atomic_add_return(-(i),(v)))
  71. #define atomic_inc_return(v) (__atomic_add_return(   1,(v)))
  72. #define atomic_dec_return(v) (__atomic_add_return(  -1,(v)))
  73. #define atomic_dec_and_test(v) (atomic_dec_return(v) == 0)
  74. #define atomic_set(v,i) (__atomic_set((v),i))
  75. #define atomic_read(v) (__atomic_read(v))
  76. #define ATOMIC_INIT(i) { (i) }
  77. #endif