Arnd Bergmann | 72099ed | 2009-05-13 22:56:29 +0000 | [diff] [blame] | 1 | #ifndef _ASM_GENERIC_ATOMIC_LONG_H |
| 2 | #define _ASM_GENERIC_ATOMIC_LONG_H |
Christoph Lameter | d3cb487 | 2006-01-06 00:11:20 -0800 | [diff] [blame] | 3 | /* |
| 4 | * Copyright (C) 2005 Silicon Graphics, Inc. |
Christoph Lameter | cde5353 | 2008-07-04 09:59:22 -0700 | [diff] [blame] | 5 | * Christoph Lameter |
Christoph Lameter | d3cb487 | 2006-01-06 00:11:20 -0800 | [diff] [blame] | 6 | * |
| 7 | * Allows to provide arch independent atomic definitions without the need to |
| 8 | * edit all arch specific atomic.h files. |
| 9 | */ |
| 10 | |
Andrew Morton | 5998bf1 | 2006-01-08 01:00:29 -0800 | [diff] [blame] | 11 | #include <asm/types.h> |
Christoph Lameter | d3cb487 | 2006-01-06 00:11:20 -0800 | [diff] [blame] | 12 | |
| 13 | /* |
| 14 | * Suppport for atomic_long_t |
| 15 | * |
| 16 | * Casts for parameters are avoided for existing atomic functions in order to |
| 17 | * avoid issues with cast-as-lval under gcc 4.x and other limitations that the |
| 18 | * macros of a platform may have. |
| 19 | */ |
| 20 | |
| 21 | #if BITS_PER_LONG == 64 |
| 22 | |
| 23 | typedef atomic64_t atomic_long_t; |
| 24 | |
| 25 | #define ATOMIC_LONG_INIT(i) ATOMIC64_INIT(i) |
Will Deacon | 586b610 | 2015-08-06 17:54:38 +0100 | [diff] [blame^] | 26 | #define ATOMIC_LONG_PFX(x) atomic64 ## x |
Christoph Lameter | d3cb487 | 2006-01-06 00:11:20 -0800 | [diff] [blame] | 27 | |
Will Deacon | 586b610 | 2015-08-06 17:54:38 +0100 | [diff] [blame^] | 28 | #else |
Christoph Lameter | d3cb487 | 2006-01-06 00:11:20 -0800 | [diff] [blame] | 29 | |
| 30 | typedef atomic_t atomic_long_t; |
| 31 | |
| 32 | #define ATOMIC_LONG_INIT(i) ATOMIC_INIT(i) |
Will Deacon | 586b610 | 2015-08-06 17:54:38 +0100 | [diff] [blame^] | 33 | #define ATOMIC_LONG_PFX(x) atomic ## x |
| 34 | |
| 35 | #endif |
| 36 | |
Christoph Lameter | d3cb487 | 2006-01-06 00:11:20 -0800 | [diff] [blame] | 37 | static inline long atomic_long_read(atomic_long_t *l) |
| 38 | { |
Will Deacon | 586b610 | 2015-08-06 17:54:38 +0100 | [diff] [blame^] | 39 | ATOMIC_LONG_PFX(_t) *v = (ATOMIC_LONG_PFX(_t) *)l; |
Christoph Lameter | d3cb487 | 2006-01-06 00:11:20 -0800 | [diff] [blame] | 40 | |
Will Deacon | 586b610 | 2015-08-06 17:54:38 +0100 | [diff] [blame^] | 41 | return (long)ATOMIC_LONG_PFX(_read)(v); |
Christoph Lameter | d3cb487 | 2006-01-06 00:11:20 -0800 | [diff] [blame] | 42 | } |
| 43 | |
| 44 | static inline void atomic_long_set(atomic_long_t *l, long i) |
| 45 | { |
Will Deacon | 586b610 | 2015-08-06 17:54:38 +0100 | [diff] [blame^] | 46 | ATOMIC_LONG_PFX(_t) *v = (ATOMIC_LONG_PFX(_t) *)l; |
Christoph Lameter | d3cb487 | 2006-01-06 00:11:20 -0800 | [diff] [blame] | 47 | |
Will Deacon | 586b610 | 2015-08-06 17:54:38 +0100 | [diff] [blame^] | 48 | ATOMIC_LONG_PFX(_set)(v, i); |
Christoph Lameter | d3cb487 | 2006-01-06 00:11:20 -0800 | [diff] [blame] | 49 | } |
| 50 | |
| 51 | static inline void atomic_long_inc(atomic_long_t *l) |
| 52 | { |
Will Deacon | 586b610 | 2015-08-06 17:54:38 +0100 | [diff] [blame^] | 53 | ATOMIC_LONG_PFX(_t) *v = (ATOMIC_LONG_PFX(_t) *)l; |
Christoph Lameter | d3cb487 | 2006-01-06 00:11:20 -0800 | [diff] [blame] | 54 | |
Will Deacon | 586b610 | 2015-08-06 17:54:38 +0100 | [diff] [blame^] | 55 | ATOMIC_LONG_PFX(_inc)(v); |
Christoph Lameter | d3cb487 | 2006-01-06 00:11:20 -0800 | [diff] [blame] | 56 | } |
| 57 | |
| 58 | static inline void atomic_long_dec(atomic_long_t *l) |
| 59 | { |
Will Deacon | 586b610 | 2015-08-06 17:54:38 +0100 | [diff] [blame^] | 60 | ATOMIC_LONG_PFX(_t) *v = (ATOMIC_LONG_PFX(_t) *)l; |
Christoph Lameter | d3cb487 | 2006-01-06 00:11:20 -0800 | [diff] [blame] | 61 | |
Will Deacon | 586b610 | 2015-08-06 17:54:38 +0100 | [diff] [blame^] | 62 | ATOMIC_LONG_PFX(_dec)(v); |
Christoph Lameter | d3cb487 | 2006-01-06 00:11:20 -0800 | [diff] [blame] | 63 | } |
| 64 | |
| 65 | static inline void atomic_long_add(long i, atomic_long_t *l) |
| 66 | { |
Will Deacon | 586b610 | 2015-08-06 17:54:38 +0100 | [diff] [blame^] | 67 | ATOMIC_LONG_PFX(_t) *v = (ATOMIC_LONG_PFX(_t) *)l; |
Christoph Lameter | d3cb487 | 2006-01-06 00:11:20 -0800 | [diff] [blame] | 68 | |
Will Deacon | 586b610 | 2015-08-06 17:54:38 +0100 | [diff] [blame^] | 69 | ATOMIC_LONG_PFX(_add)(i, v); |
Christoph Lameter | d3cb487 | 2006-01-06 00:11:20 -0800 | [diff] [blame] | 70 | } |
| 71 | |
| 72 | static inline void atomic_long_sub(long i, atomic_long_t *l) |
| 73 | { |
Will Deacon | 586b610 | 2015-08-06 17:54:38 +0100 | [diff] [blame^] | 74 | ATOMIC_LONG_PFX(_t) *v = (ATOMIC_LONG_PFX(_t) *)l; |
Christoph Lameter | d3cb487 | 2006-01-06 00:11:20 -0800 | [diff] [blame] | 75 | |
Will Deacon | 586b610 | 2015-08-06 17:54:38 +0100 | [diff] [blame^] | 76 | ATOMIC_LONG_PFX(_sub)(i, v); |
Christoph Lameter | d3cb487 | 2006-01-06 00:11:20 -0800 | [diff] [blame] | 77 | } |
| 78 | |
Mathieu Desnoyers | bb2382c | 2007-05-08 00:34:19 -0700 | [diff] [blame] | 79 | static inline int atomic_long_sub_and_test(long i, atomic_long_t *l) |
| 80 | { |
Will Deacon | 586b610 | 2015-08-06 17:54:38 +0100 | [diff] [blame^] | 81 | ATOMIC_LONG_PFX(_t) *v = (ATOMIC_LONG_PFX(_t) *)l; |
Mathieu Desnoyers | bb2382c | 2007-05-08 00:34:19 -0700 | [diff] [blame] | 82 | |
Will Deacon | 586b610 | 2015-08-06 17:54:38 +0100 | [diff] [blame^] | 83 | return ATOMIC_LONG_PFX(_sub_and_test)(i, v); |
Mathieu Desnoyers | bb2382c | 2007-05-08 00:34:19 -0700 | [diff] [blame] | 84 | } |
| 85 | |
| 86 | static inline int atomic_long_dec_and_test(atomic_long_t *l) |
| 87 | { |
Will Deacon | 586b610 | 2015-08-06 17:54:38 +0100 | [diff] [blame^] | 88 | ATOMIC_LONG_PFX(_t) *v = (ATOMIC_LONG_PFX(_t) *)l; |
Mathieu Desnoyers | bb2382c | 2007-05-08 00:34:19 -0700 | [diff] [blame] | 89 | |
Will Deacon | 586b610 | 2015-08-06 17:54:38 +0100 | [diff] [blame^] | 90 | return ATOMIC_LONG_PFX(_dec_and_test)(v); |
Mathieu Desnoyers | bb2382c | 2007-05-08 00:34:19 -0700 | [diff] [blame] | 91 | } |
| 92 | |
| 93 | static inline int atomic_long_inc_and_test(atomic_long_t *l) |
| 94 | { |
Will Deacon | 586b610 | 2015-08-06 17:54:38 +0100 | [diff] [blame^] | 95 | ATOMIC_LONG_PFX(_t) *v = (ATOMIC_LONG_PFX(_t) *)l; |
Mathieu Desnoyers | bb2382c | 2007-05-08 00:34:19 -0700 | [diff] [blame] | 96 | |
Will Deacon | 586b610 | 2015-08-06 17:54:38 +0100 | [diff] [blame^] | 97 | return ATOMIC_LONG_PFX(_inc_and_test)(v); |
Mathieu Desnoyers | bb2382c | 2007-05-08 00:34:19 -0700 | [diff] [blame] | 98 | } |
| 99 | |
| 100 | static inline int atomic_long_add_negative(long i, atomic_long_t *l) |
| 101 | { |
Will Deacon | 586b610 | 2015-08-06 17:54:38 +0100 | [diff] [blame^] | 102 | ATOMIC_LONG_PFX(_t) *v = (ATOMIC_LONG_PFX(_t) *)l; |
Mathieu Desnoyers | bb2382c | 2007-05-08 00:34:19 -0700 | [diff] [blame] | 103 | |
Will Deacon | 586b610 | 2015-08-06 17:54:38 +0100 | [diff] [blame^] | 104 | return ATOMIC_LONG_PFX(_add_negative)(i, v); |
Mathieu Desnoyers | bb2382c | 2007-05-08 00:34:19 -0700 | [diff] [blame] | 105 | } |
| 106 | |
| 107 | static inline long atomic_long_add_return(long i, atomic_long_t *l) |
| 108 | { |
Will Deacon | 586b610 | 2015-08-06 17:54:38 +0100 | [diff] [blame^] | 109 | ATOMIC_LONG_PFX(_t) *v = (ATOMIC_LONG_PFX(_t) *)l; |
Mathieu Desnoyers | bb2382c | 2007-05-08 00:34:19 -0700 | [diff] [blame] | 110 | |
Will Deacon | 586b610 | 2015-08-06 17:54:38 +0100 | [diff] [blame^] | 111 | return (long)ATOMIC_LONG_PFX(_add_return)(i, v); |
Mathieu Desnoyers | bb2382c | 2007-05-08 00:34:19 -0700 | [diff] [blame] | 112 | } |
| 113 | |
| 114 | static inline long atomic_long_sub_return(long i, atomic_long_t *l) |
| 115 | { |
Will Deacon | 586b610 | 2015-08-06 17:54:38 +0100 | [diff] [blame^] | 116 | ATOMIC_LONG_PFX(_t) *v = (ATOMIC_LONG_PFX(_t) *)l; |
Mathieu Desnoyers | bb2382c | 2007-05-08 00:34:19 -0700 | [diff] [blame] | 117 | |
Will Deacon | 586b610 | 2015-08-06 17:54:38 +0100 | [diff] [blame^] | 118 | return (long)ATOMIC_LONG_PFX(_sub_return)(i, v); |
Mathieu Desnoyers | bb2382c | 2007-05-08 00:34:19 -0700 | [diff] [blame] | 119 | } |
| 120 | |
| 121 | static inline long atomic_long_inc_return(atomic_long_t *l) |
| 122 | { |
Will Deacon | 586b610 | 2015-08-06 17:54:38 +0100 | [diff] [blame^] | 123 | ATOMIC_LONG_PFX(_t) *v = (ATOMIC_LONG_PFX(_t) *)l; |
Mathieu Desnoyers | bb2382c | 2007-05-08 00:34:19 -0700 | [diff] [blame] | 124 | |
Will Deacon | 586b610 | 2015-08-06 17:54:38 +0100 | [diff] [blame^] | 125 | return (long)ATOMIC_LONG_PFX(_inc_return)(v); |
Mathieu Desnoyers | bb2382c | 2007-05-08 00:34:19 -0700 | [diff] [blame] | 126 | } |
| 127 | |
| 128 | static inline long atomic_long_dec_return(atomic_long_t *l) |
| 129 | { |
Will Deacon | 586b610 | 2015-08-06 17:54:38 +0100 | [diff] [blame^] | 130 | ATOMIC_LONG_PFX(_t) *v = (ATOMIC_LONG_PFX(_t) *)l; |
Mathieu Desnoyers | bb2382c | 2007-05-08 00:34:19 -0700 | [diff] [blame] | 131 | |
Will Deacon | 586b610 | 2015-08-06 17:54:38 +0100 | [diff] [blame^] | 132 | return (long)ATOMIC_LONG_PFX(_dec_return)(v); |
Mathieu Desnoyers | bb2382c | 2007-05-08 00:34:19 -0700 | [diff] [blame] | 133 | } |
| 134 | |
Mathieu Desnoyers | 2856f5e | 2007-05-08 00:34:38 -0700 | [diff] [blame] | 135 | static inline long atomic_long_add_unless(atomic_long_t *l, long a, long u) |
| 136 | { |
Will Deacon | 586b610 | 2015-08-06 17:54:38 +0100 | [diff] [blame^] | 137 | ATOMIC_LONG_PFX(_t) *v = (ATOMIC_LONG_PFX(_t) *)l; |
Mathieu Desnoyers | 2856f5e | 2007-05-08 00:34:38 -0700 | [diff] [blame] | 138 | |
Will Deacon | 586b610 | 2015-08-06 17:54:38 +0100 | [diff] [blame^] | 139 | return (long)ATOMIC_LONG_PFX(_add_unless)(v, a, u); |
Mathieu Desnoyers | 2856f5e | 2007-05-08 00:34:38 -0700 | [diff] [blame] | 140 | } |
Mathieu Desnoyers | bb2382c | 2007-05-08 00:34:19 -0700 | [diff] [blame] | 141 | |
Will Deacon | 586b610 | 2015-08-06 17:54:38 +0100 | [diff] [blame^] | 142 | #define atomic_long_inc_not_zero(l) \ |
| 143 | ATOMIC_LONG_PFX(_inc_not_zero)((ATOMIC_LONG_PFX(_t) *)(l)) |
Mathieu Desnoyers | bb2382c | 2007-05-08 00:34:19 -0700 | [diff] [blame] | 144 | #define atomic_long_cmpxchg(l, old, new) \ |
Will Deacon | 586b610 | 2015-08-06 17:54:38 +0100 | [diff] [blame^] | 145 | (ATOMIC_LONG_PFX(_cmpxchg)((ATOMIC_LONG_PFX(_t) *)(l), (old), (new))) |
Mathieu Desnoyers | bb2382c | 2007-05-08 00:34:19 -0700 | [diff] [blame] | 146 | #define atomic_long_xchg(v, new) \ |
Will Deacon | 586b610 | 2015-08-06 17:54:38 +0100 | [diff] [blame^] | 147 | (ATOMIC_LONG_PFX(_xchg)((ATOMIC_LONG_PFX(_t) *)(v), (new))) |
Adrian Bunk | 4b358e2 | 2006-12-06 20:40:28 -0800 | [diff] [blame] | 148 | |
Arnd Bergmann | 72099ed | 2009-05-13 22:56:29 +0000 | [diff] [blame] | 149 | #endif /* _ASM_GENERIC_ATOMIC_LONG_H */ |