Chris Metcalf | 18aecc2 | 2011-05-04 14:38:26 -0400 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2011 Tilera Corporation. All Rights Reserved. |
| 3 | * |
| 4 | * This program is free software; you can redistribute it and/or |
| 5 | * modify it under the terms of the GNU General Public License |
| 6 | * as published by the Free Software Foundation, version 2. |
| 7 | * |
| 8 | * This program is distributed in the hope that it will be useful, but |
| 9 | * WITHOUT ANY WARRANTY; without even the implied warranty of |
| 10 | * MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, GOOD TITLE or |
| 11 | * NON INFRINGEMENT. See the GNU General Public License for |
| 12 | * more details. |
| 13 | * |
Arun Sharma | 60063497 | 2011-07-26 16:09:06 -0700 | [diff] [blame] | 14 | * Do not include directly; use <linux/atomic.h>. |
Chris Metcalf | 18aecc2 | 2011-05-04 14:38:26 -0400 | [diff] [blame] | 15 | */ |
| 16 | |
| 17 | #ifndef _ASM_TILE_ATOMIC_64_H |
| 18 | #define _ASM_TILE_ATOMIC_64_H |
| 19 | |
| 20 | #ifndef __ASSEMBLY__ |
| 21 | |
David Howells | bd119c6 | 2012-03-28 18:30:03 +0100 | [diff] [blame] | 22 | #include <asm/barrier.h> |
Chris Metcalf | 18aecc2 | 2011-05-04 14:38:26 -0400 | [diff] [blame] | 23 | #include <arch/spr_def.h> |
| 24 | |
| 25 | /* First, the 32-bit atomic ops that are "real" on our 64-bit platform. */ |
| 26 | |
Peter Zijlstra | 62e8a32 | 2015-09-18 11:13:10 +0200 | [diff] [blame^] | 27 | #define atomic_set(v, i) WRITE_ONCE((v)->counter, (i)) |
Chris Metcalf | 18aecc2 | 2011-05-04 14:38:26 -0400 | [diff] [blame] | 28 | |
| 29 | /* |
| 30 | * The smp_mb() operations throughout are to support the fact that |
| 31 | * Linux requires memory barriers before and after the operation, |
| 32 | * on any routine which updates memory and returns a value. |
| 33 | */ |
| 34 | |
Chris Metcalf | 18aecc2 | 2011-05-04 14:38:26 -0400 | [diff] [blame] | 35 | static inline void atomic_add(int i, atomic_t *v) |
| 36 | { |
| 37 | __insn_fetchadd4((void *)&v->counter, i); |
| 38 | } |
| 39 | |
| 40 | static inline int atomic_add_return(int i, atomic_t *v) |
| 41 | { |
| 42 | int val; |
| 43 | smp_mb(); /* barrier for proper semantics */ |
| 44 | val = __insn_fetchadd4((void *)&v->counter, i) + i; |
| 45 | barrier(); /* the "+ i" above will wait on memory */ |
| 46 | return val; |
| 47 | } |
| 48 | |
Arun Sharma | f24219b | 2011-07-26 16:09:07 -0700 | [diff] [blame] | 49 | static inline int __atomic_add_unless(atomic_t *v, int a, int u) |
Chris Metcalf | 18aecc2 | 2011-05-04 14:38:26 -0400 | [diff] [blame] | 50 | { |
| 51 | int guess, oldval = v->counter; |
| 52 | do { |
| 53 | if (oldval == u) |
| 54 | break; |
| 55 | guess = oldval; |
Chris Metcalf | 6dc9658 | 2013-09-06 08:56:45 -0400 | [diff] [blame] | 56 | oldval = cmpxchg(&v->counter, guess, guess + a); |
Chris Metcalf | 18aecc2 | 2011-05-04 14:38:26 -0400 | [diff] [blame] | 57 | } while (guess != oldval); |
Arun Sharma | f24219b | 2011-07-26 16:09:07 -0700 | [diff] [blame] | 58 | return oldval; |
Chris Metcalf | 18aecc2 | 2011-05-04 14:38:26 -0400 | [diff] [blame] | 59 | } |
| 60 | |
Chris Metcalf | 2957c03 | 2015-07-09 16:38:17 -0400 | [diff] [blame] | 61 | static inline void atomic_and(int i, atomic_t *v) |
| 62 | { |
| 63 | __insn_fetchand4((void *)&v->counter, i); |
| 64 | } |
| 65 | |
| 66 | static inline void atomic_or(int i, atomic_t *v) |
| 67 | { |
| 68 | __insn_fetchor4((void *)&v->counter, i); |
| 69 | } |
| 70 | |
| 71 | static inline void atomic_xor(int i, atomic_t *v) |
| 72 | { |
| 73 | int guess, oldval = v->counter; |
| 74 | do { |
| 75 | guess = oldval; |
| 76 | __insn_mtspr(SPR_CMPEXCH_VALUE, guess); |
| 77 | oldval = __insn_cmpexch4(&v->counter, guess ^ i); |
| 78 | } while (guess != oldval); |
| 79 | } |
| 80 | |
Chris Metcalf | 18aecc2 | 2011-05-04 14:38:26 -0400 | [diff] [blame] | 81 | /* Now the true 64-bit operations. */ |
| 82 | |
| 83 | #define ATOMIC64_INIT(i) { (i) } |
| 84 | |
Peter Zijlstra | 62e8a32 | 2015-09-18 11:13:10 +0200 | [diff] [blame^] | 85 | #define atomic64_read(v) READ_ONCE((v)->counter) |
| 86 | #define atomic64_set(v, i) WRITE_ONCE((v)->counter, (i)) |
Chris Metcalf | 18aecc2 | 2011-05-04 14:38:26 -0400 | [diff] [blame] | 87 | |
Chris Metcalf | 18aecc2 | 2011-05-04 14:38:26 -0400 | [diff] [blame] | 88 | static inline void atomic64_add(long i, atomic64_t *v) |
| 89 | { |
| 90 | __insn_fetchadd((void *)&v->counter, i); |
| 91 | } |
| 92 | |
| 93 | static inline long atomic64_add_return(long i, atomic64_t *v) |
| 94 | { |
| 95 | int val; |
| 96 | smp_mb(); /* barrier for proper semantics */ |
| 97 | val = __insn_fetchadd((void *)&v->counter, i) + i; |
| 98 | barrier(); /* the "+ i" above will wait on memory */ |
| 99 | return val; |
| 100 | } |
| 101 | |
| 102 | static inline long atomic64_add_unless(atomic64_t *v, long a, long u) |
| 103 | { |
| 104 | long guess, oldval = v->counter; |
| 105 | do { |
| 106 | if (oldval == u) |
| 107 | break; |
| 108 | guess = oldval; |
Chris Metcalf | 6dc9658 | 2013-09-06 08:56:45 -0400 | [diff] [blame] | 109 | oldval = cmpxchg(&v->counter, guess, guess + a); |
Chris Metcalf | 18aecc2 | 2011-05-04 14:38:26 -0400 | [diff] [blame] | 110 | } while (guess != oldval); |
| 111 | return oldval != u; |
| 112 | } |
| 113 | |
Chris Metcalf | 2957c03 | 2015-07-09 16:38:17 -0400 | [diff] [blame] | 114 | static inline void atomic64_and(long i, atomic64_t *v) |
| 115 | { |
| 116 | __insn_fetchand((void *)&v->counter, i); |
| 117 | } |
| 118 | |
| 119 | static inline void atomic64_or(long i, atomic64_t *v) |
| 120 | { |
| 121 | __insn_fetchor((void *)&v->counter, i); |
| 122 | } |
| 123 | |
| 124 | static inline void atomic64_xor(long i, atomic64_t *v) |
| 125 | { |
| 126 | long guess, oldval = v->counter; |
| 127 | do { |
| 128 | guess = oldval; |
| 129 | __insn_mtspr(SPR_CMPEXCH_VALUE, guess); |
| 130 | oldval = __insn_cmpexch(&v->counter, guess ^ i); |
| 131 | } while (guess != oldval); |
| 132 | } |
| 133 | |
Chris Metcalf | 18aecc2 | 2011-05-04 14:38:26 -0400 | [diff] [blame] | 134 | #define atomic64_sub_return(i, v) atomic64_add_return(-(i), (v)) |
| 135 | #define atomic64_sub(i, v) atomic64_add(-(i), (v)) |
| 136 | #define atomic64_inc_return(v) atomic64_add_return(1, (v)) |
| 137 | #define atomic64_dec_return(v) atomic64_sub_return(1, (v)) |
| 138 | #define atomic64_inc(v) atomic64_add(1, (v)) |
| 139 | #define atomic64_dec(v) atomic64_sub(1, (v)) |
| 140 | |
| 141 | #define atomic64_inc_and_test(v) (atomic64_inc_return(v) == 0) |
| 142 | #define atomic64_dec_and_test(v) (atomic64_dec_return(v) == 0) |
| 143 | #define atomic64_sub_and_test(i, v) (atomic64_sub_return((i), (v)) == 0) |
| 144 | #define atomic64_add_negative(i, v) (atomic64_add_return((i), (v)) < 0) |
| 145 | |
| 146 | #define atomic64_inc_not_zero(v) atomic64_add_unless((v), 1, 0) |
| 147 | |
Chris Metcalf | 18aecc2 | 2011-05-04 14:38:26 -0400 | [diff] [blame] | 148 | #endif /* !__ASSEMBLY__ */ |
| 149 | |
| 150 | #endif /* _ASM_TILE_ATOMIC_64_H */ |