clean up unused and inconsistent atomics in arch dirs
[oweals/musl.git] / arch / microblaze / atomic.h
1 #ifndef _INTERNAL_ATOMIC_H
2 #define _INTERNAL_ATOMIC_H
3
4 #include <stdint.h>
5
6 static inline int a_ctz_l(unsigned long x)
7 {
8         static const char debruijn32[32] = {
9                 0, 1, 23, 2, 29, 24, 19, 3, 30, 27, 25, 11, 20, 8, 4, 13,
10                 31, 22, 28, 18, 26, 10, 7, 12, 21, 17, 9, 6, 16, 5, 15, 14
11         };
12         return debruijn32[(x&-x)*0x076be629 >> 27];
13 }
14
15 static inline int a_ctz_64(uint64_t x)
16 {
17         uint32_t y = x;
18         if (!y) {
19                 y = x>>32;
20                 return 32 + a_ctz_l(y);
21         }
22         return a_ctz_l(y);
23 }
24
25 static inline int a_cas(volatile int *p, int t, int s)
26 {
27         register int old, tmp;
28         __asm__ __volatile__ (
29                 "       addi %0, r0, 0\n"
30                 "1:     lwx %0, %2, r0\n"
31                 "       rsubk %1, %0, %3\n"
32                 "       bnei %1, 1f\n"
33                 "       swx %4, %2, r0\n"
34                 "       addic %1, r0, 0\n"
35                 "       bnei %1, 1b\n"
36                 "1:     "
37                 : "=&r"(old), "=&r"(tmp)
38                 : "r"(p), "r"(t), "r"(s)
39                 : "cc", "memory" );
40         return old;
41 }
42
43 static inline void *a_cas_p(volatile void *p, void *t, void *s)
44 {
45         return (void *)a_cas(p, (int)t, (int)s);
46 }
47
48 static inline int a_swap(volatile int *x, int v)
49 {
50         register int old, tmp;
51         __asm__ __volatile__ (
52                 "       addi %0, r0, 0\n"
53                 "1:     lwx %0, %2, r0\n"
54                 "       swx %3, %2, r0\n"
55                 "       addic %1, r0, 0\n"
56                 "       bnei %1, 1b\n"
57                 "1:     "
58                 : "=&r"(old), "=&r"(tmp)
59                 : "r"(x), "r"(v)
60                 : "cc", "memory" );
61         return old;
62 }
63
64 static inline int a_fetch_add(volatile int *x, int v)
65 {
66         register int new, tmp;
67         __asm__ __volatile__ (
68                 "       addi %0, r0, 0\n"
69                 "1:     lwx %0, %2, r0\n"
70                 "       addk %0, %0, %3\n"
71                 "       swx %0, %2, r0\n"
72                 "       addic %1, r0, 0\n"
73                 "       bnei %1, 1b\n"
74                 "1:     "
75                 : "=&r"(new), "=&r"(tmp)
76                 : "r"(x), "r"(v)
77                 : "cc", "memory" );
78         return new-v;
79 }
80
81 static inline void a_inc(volatile int *x)
82 {
83         a_fetch_add(x, 1);
84 }
85
86 static inline void a_dec(volatile int *x)
87 {
88         a_fetch_add(x, -1);
89 }
90
91 static inline void a_store(volatile int *p, int x)
92 {
93         __asm__ __volatile__ (
94                 "swi %1, %0"
95                 : "=m"(*p) : "r"(x) : "memory" );
96 }
97
98 static inline void a_spin()
99 {
100 }
101
102 static inline void a_crash()
103 {
104         *(volatile char *)0=0;
105 }
106
107 static inline void a_and(volatile int *p, int v)
108 {
109         int old;
110         do old = *p;
111         while (a_cas(p, old, old&v) != old);
112 }
113
114 static inline void a_or(volatile int *p, int v)
115 {
116         int old;
117         do old = *p;
118         while (a_cas(p, old, old|v) != old);
119 }
120
121 static inline void a_or_l(volatile void *p, long v)
122 {
123         a_or(p, v);
124 }
125
126 static inline void a_and_64(volatile uint64_t *p, uint64_t v)
127 {
128         union { uint64_t v; uint32_t r[2]; } u = { v };
129         a_and((int *)p, u.r[0]);
130         a_and((int *)p+1, u.r[1]);
131 }
132
133 static inline void a_or_64(volatile uint64_t *p, uint64_t v)
134 {
135         union { uint64_t v; uint32_t r[2]; } u = { v };
136         a_or((int *)p, u.r[0]);
137         a_or((int *)p+1, u.r[1]);
138 }
139
140 #endif