blob: cc3685d35d7bd2d09b6b75b24b44dbe56850e983 [file] [log] [blame]
Wolfgang Denk97caf672006-03-12 02:12:27 +01001/*
2 * U-boot - bitops.h Routines for bit operations
3 *
Aubrey Li314d22f2007-04-05 18:31:18 +08004 * Copyright (c) 2005-2007 Analog Devices Inc.
Wolfgang Denk97caf672006-03-12 02:12:27 +01005 *
6 * See file CREDITS for list of people who contributed to this
7 * project.
8 *
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License as
11 * published by the Free Software Foundation; either version 2 of
12 * the License, or (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
Aubrey Li314d22f2007-04-05 18:31:18 +080021 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,
22 * MA 02110-1301 USA
Wolfgang Denk97caf672006-03-12 02:12:27 +010023 */
24
25#ifndef _BLACKFIN_BITOPS_H
26#define _BLACKFIN_BITOPS_H
27
28/*
29 * Copyright 1992, Linus Torvalds.
30 */
31
32#include <linux/config.h>
33#include <asm/byteorder.h>
34#include <asm/system.h>
35
36#ifdef __KERNEL__
37/*
38 * Function prototypes to keep gcc -Wall happy
39 */
40
41/*
42 * The __ functions are not atomic
43 */
44
45/*
46 * ffz = Find First Zero in word. Undefined if no zero exists,
47 * so code should check against ~0UL first..
48 */
49static __inline__ unsigned long ffz(unsigned long word)
50{
51 unsigned long result = 0;
52
53 while (word & 1) {
54 result++;
55 word >>= 1;
56 }
57 return result;
58}
59
60static __inline__ void set_bit(int nr, volatile void *addr)
61{
Aubrey.Li9da597f2007-03-09 13:38:44 +080062 int *a = (int *)addr;
Wolfgang Denk97caf672006-03-12 02:12:27 +010063 int mask;
64 unsigned long flags;
65
66 a += nr >> 5;
67 mask = 1 << (nr & 0x1f);
Mike Frysinger66c4cf42008-02-04 19:26:55 -050068 local_irq_save(flags);
Wolfgang Denk97caf672006-03-12 02:12:27 +010069 *a |= mask;
Mike Frysinger66c4cf42008-02-04 19:26:55 -050070 local_irq_restore(flags);
Wolfgang Denk97caf672006-03-12 02:12:27 +010071}
72
73static __inline__ void __set_bit(int nr, volatile void *addr)
74{
Aubrey.Li9da597f2007-03-09 13:38:44 +080075 int *a = (int *)addr;
Wolfgang Denk97caf672006-03-12 02:12:27 +010076 int mask;
77
78 a += nr >> 5;
79 mask = 1 << (nr & 0x1f);
80 *a |= mask;
81}
Simon Kagstrom13edaf32009-08-24 09:09:50 +020082#define __set_bit
Wolfgang Denk97caf672006-03-12 02:12:27 +010083
84/*
85 * clear_bit() doesn't provide any barrier for the compiler.
86 */
87#define smp_mb__before_clear_bit() barrier()
88#define smp_mb__after_clear_bit() barrier()
89
90static __inline__ void clear_bit(int nr, volatile void *addr)
91{
Aubrey.Li9da597f2007-03-09 13:38:44 +080092 int *a = (int *)addr;
Wolfgang Denk97caf672006-03-12 02:12:27 +010093 int mask;
94 unsigned long flags;
95
96 a += nr >> 5;
97 mask = 1 << (nr & 0x1f);
Mike Frysinger66c4cf42008-02-04 19:26:55 -050098 local_irq_save(flags);
Wolfgang Denk97caf672006-03-12 02:12:27 +010099 *a &= ~mask;
Mike Frysinger66c4cf42008-02-04 19:26:55 -0500100 local_irq_restore(flags);
Wolfgang Denk97caf672006-03-12 02:12:27 +0100101}
102
103static __inline__ void change_bit(int nr, volatile void *addr)
104{
105 int mask, flags;
Aubrey.Li9da597f2007-03-09 13:38:44 +0800106 unsigned long *ADDR = (unsigned long *)addr;
Wolfgang Denk97caf672006-03-12 02:12:27 +0100107
108 ADDR += nr >> 5;
109 mask = 1 << (nr & 31);
Mike Frysinger66c4cf42008-02-04 19:26:55 -0500110 local_irq_save(flags);
Wolfgang Denk97caf672006-03-12 02:12:27 +0100111 *ADDR ^= mask;
Mike Frysinger66c4cf42008-02-04 19:26:55 -0500112 local_irq_restore(flags);
Wolfgang Denk97caf672006-03-12 02:12:27 +0100113}
114
115static __inline__ void __change_bit(int nr, volatile void *addr)
116{
117 int mask;
Aubrey.Li9da597f2007-03-09 13:38:44 +0800118 unsigned long *ADDR = (unsigned long *)addr;
Wolfgang Denk97caf672006-03-12 02:12:27 +0100119
120 ADDR += nr >> 5;
121 mask = 1 << (nr & 31);
122 *ADDR ^= mask;
123}
124
125static __inline__ int test_and_set_bit(int nr, volatile void *addr)
126{
127 int mask, retval;
Aubrey.Li9da597f2007-03-09 13:38:44 +0800128 volatile unsigned int *a = (volatile unsigned int *)addr;
Wolfgang Denk97caf672006-03-12 02:12:27 +0100129 unsigned long flags;
130
131 a += nr >> 5;
132 mask = 1 << (nr & 0x1f);
Mike Frysinger66c4cf42008-02-04 19:26:55 -0500133 local_irq_save(flags);
Wolfgang Denk97caf672006-03-12 02:12:27 +0100134 retval = (mask & *a) != 0;
135 *a |= mask;
Mike Frysinger66c4cf42008-02-04 19:26:55 -0500136 local_irq_restore(flags);
Wolfgang Denk97caf672006-03-12 02:12:27 +0100137
138 return retval;
139}
140
141static __inline__ int __test_and_set_bit(int nr, volatile void *addr)
142{
143 int mask, retval;
Aubrey.Li9da597f2007-03-09 13:38:44 +0800144 volatile unsigned int *a = (volatile unsigned int *)addr;
Wolfgang Denk97caf672006-03-12 02:12:27 +0100145
146 a += nr >> 5;
147 mask = 1 << (nr & 0x1f);
148 retval = (mask & *a) != 0;
149 *a |= mask;
150 return retval;
151}
152
153static __inline__ int test_and_clear_bit(int nr, volatile void *addr)
154{
155 int mask, retval;
Aubrey.Li9da597f2007-03-09 13:38:44 +0800156 volatile unsigned int *a = (volatile unsigned int *)addr;
Wolfgang Denk97caf672006-03-12 02:12:27 +0100157 unsigned long flags;
158
159 a += nr >> 5;
160 mask = 1 << (nr & 0x1f);
Mike Frysinger66c4cf42008-02-04 19:26:55 -0500161 local_irq_save(flags);
Wolfgang Denk97caf672006-03-12 02:12:27 +0100162 retval = (mask & *a) != 0;
163 *a &= ~mask;
Mike Frysinger66c4cf42008-02-04 19:26:55 -0500164 local_irq_restore(flags);
Wolfgang Denk97caf672006-03-12 02:12:27 +0100165
166 return retval;
167}
168
169static __inline__ int __test_and_clear_bit(int nr, volatile void *addr)
170{
171 int mask, retval;
Aubrey.Li9da597f2007-03-09 13:38:44 +0800172 volatile unsigned int *a = (volatile unsigned int *)addr;
Wolfgang Denk97caf672006-03-12 02:12:27 +0100173
174 a += nr >> 5;
175 mask = 1 << (nr & 0x1f);
176 retval = (mask & *a) != 0;
177 *a &= ~mask;
178 return retval;
179}
180
181static __inline__ int test_and_change_bit(int nr, volatile void *addr)
182{
183 int mask, retval;
Aubrey.Li9da597f2007-03-09 13:38:44 +0800184 volatile unsigned int *a = (volatile unsigned int *)addr;
Wolfgang Denk97caf672006-03-12 02:12:27 +0100185 unsigned long flags;
186
187 a += nr >> 5;
188 mask = 1 << (nr & 0x1f);
Mike Frysinger66c4cf42008-02-04 19:26:55 -0500189 local_irq_save(flags);
Wolfgang Denk97caf672006-03-12 02:12:27 +0100190 retval = (mask & *a) != 0;
191 *a ^= mask;
Mike Frysinger66c4cf42008-02-04 19:26:55 -0500192 local_irq_restore(flags);
Wolfgang Denk97caf672006-03-12 02:12:27 +0100193
194 return retval;
195}
196
197static __inline__ int __test_and_change_bit(int nr, volatile void *addr)
198{
199 int mask, retval;
Aubrey.Li9da597f2007-03-09 13:38:44 +0800200 volatile unsigned int *a = (volatile unsigned int *)addr;
Wolfgang Denk97caf672006-03-12 02:12:27 +0100201
202 a += nr >> 5;
203 mask = 1 << (nr & 0x1f);
204 retval = (mask & *a) != 0;
205 *a ^= mask;
206 return retval;
207}
208
209/*
210 * This routine doesn't need to be atomic.
211 */
Aubrey.Li9da597f2007-03-09 13:38:44 +0800212static __inline__ int __constant_test_bit(int nr, const volatile void *addr)
Wolfgang Denk97caf672006-03-12 02:12:27 +0100213{
214 return ((1UL << (nr & 31)) &
Aubrey.Li9da597f2007-03-09 13:38:44 +0800215 (((const volatile unsigned int *)addr)[nr >> 5])) != 0;
Wolfgang Denk97caf672006-03-12 02:12:27 +0100216}
217
218static __inline__ int __test_bit(int nr, volatile void *addr)
219{
Aubrey.Li9da597f2007-03-09 13:38:44 +0800220 int *a = (int *)addr;
Wolfgang Denk97caf672006-03-12 02:12:27 +0100221 int mask;
222
223 a += nr >> 5;
224 mask = 1 << (nr & 0x1f);
225 return ((mask & *a) != 0);
226}
227
228#define test_bit(nr,addr) \
229(__builtin_constant_p(nr) ? \
230 __constant_test_bit((nr),(addr)) : \
231 __test_bit((nr),(addr)))
232
233#define find_first_zero_bit(addr, size) \
234 find_next_zero_bit((addr), (size), 0)
235
236static __inline__ int find_next_zero_bit(void *addr, int size, int offset)
237{
Aubrey.Li9da597f2007-03-09 13:38:44 +0800238 unsigned long *p = ((unsigned long *)addr) + (offset >> 5);
Wolfgang Denk97caf672006-03-12 02:12:27 +0100239 unsigned long result = offset & ~31UL;
240 unsigned long tmp;
241
242 if (offset >= size)
243 return size;
244 size -= result;
245 offset &= 31UL;
246 if (offset) {
247 tmp = *(p++);
248 tmp |= ~0UL >> (32 - offset);
249 if (size < 32)
250 goto found_first;
251 if (~tmp)
252 goto found_middle;
253 size -= 32;
254 result += 32;
255 }
256 while (size & ~31UL) {
257 if (~(tmp = *(p++)))
258 goto found_middle;
259 result += 32;
260 size -= 32;
261 }
262 if (!size)
263 return result;
264 tmp = *p;
265
266 found_first:
267 tmp |= ~0UL >> size;
268 found_middle:
269 return result + ffz(tmp);
270}
271
272/*
273 * ffs: find first bit set. This is defined the same way as
274 * the libc and compiler builtin ffs routines, therefore
275 * differs in spirit from the above ffz (man ffs).
276 */
277
278#define ffs(x) generic_ffs(x)
279
280/*
281 * hweightN: returns the hamming weight (i.e. the number
282 * of bits set) of a N-bit word
283 */
284
285#define hweight32(x) generic_hweight32(x)
286#define hweight16(x) generic_hweight16(x)
287#define hweight8(x) generic_hweight8(x)
288
289static __inline__ int ext2_set_bit(int nr, volatile void *addr)
290{
291 int mask, retval;
292 unsigned long flags;
Aubrey.Li9da597f2007-03-09 13:38:44 +0800293 volatile unsigned char *ADDR = (unsigned char *)addr;
Wolfgang Denk97caf672006-03-12 02:12:27 +0100294
295 ADDR += nr >> 3;
296 mask = 1 << (nr & 0x07);
Mike Frysinger66c4cf42008-02-04 19:26:55 -0500297 local_irq_save(flags);
Wolfgang Denk97caf672006-03-12 02:12:27 +0100298 retval = (mask & *ADDR) != 0;
299 *ADDR |= mask;
Mike Frysinger66c4cf42008-02-04 19:26:55 -0500300 local_irq_restore(flags);
Wolfgang Denk97caf672006-03-12 02:12:27 +0100301 return retval;
302}
303
304static __inline__ int ext2_clear_bit(int nr, volatile void *addr)
305{
306 int mask, retval;
307 unsigned long flags;
Aubrey.Li9da597f2007-03-09 13:38:44 +0800308 volatile unsigned char *ADDR = (unsigned char *)addr;
Wolfgang Denk97caf672006-03-12 02:12:27 +0100309
310 ADDR += nr >> 3;
311 mask = 1 << (nr & 0x07);
Mike Frysinger66c4cf42008-02-04 19:26:55 -0500312 local_irq_save(flags);
Wolfgang Denk97caf672006-03-12 02:12:27 +0100313 retval = (mask & *ADDR) != 0;
314 *ADDR &= ~mask;
Mike Frysinger66c4cf42008-02-04 19:26:55 -0500315 local_irq_restore(flags);
Wolfgang Denk97caf672006-03-12 02:12:27 +0100316 return retval;
317}
318
319static __inline__ int ext2_test_bit(int nr, const volatile void *addr)
320{
321 int mask;
Aubrey.Li9da597f2007-03-09 13:38:44 +0800322 const volatile unsigned char *ADDR = (const unsigned char *)addr;
Wolfgang Denk97caf672006-03-12 02:12:27 +0100323
324 ADDR += nr >> 3;
325 mask = 1 << (nr & 0x07);
326 return ((mask & *ADDR) != 0);
327}
328
329#define ext2_find_first_zero_bit(addr, size) \
330 ext2_find_next_zero_bit((addr), (size), 0)
331
332static __inline__ unsigned long ext2_find_next_zero_bit(void *addr,
333 unsigned long size,
Aubrey.Li9da597f2007-03-09 13:38:44 +0800334 unsigned long offset)
Wolfgang Denk97caf672006-03-12 02:12:27 +0100335{
Aubrey.Li9da597f2007-03-09 13:38:44 +0800336 unsigned long *p = ((unsigned long *)addr) + (offset >> 5);
Wolfgang Denk97caf672006-03-12 02:12:27 +0100337 unsigned long result = offset & ~31UL;
338 unsigned long tmp;
339
340 if (offset >= size)
341 return size;
342 size -= result;
343 offset &= 31UL;
344 if (offset) {
345 tmp = *(p++);
346 tmp |= ~0UL >> (32 - offset);
347 if (size < 32)
348 goto found_first;
349 if (~tmp)
350 goto found_middle;
351 size -= 32;
352 result += 32;
353 }
354 while (size & ~31UL) {
355 if (~(tmp = *(p++)))
356 goto found_middle;
357 result += 32;
358 size -= 32;
359 }
360 if (!size)
361 return result;
362 tmp = *p;
363
364 found_first:
365 tmp |= ~0UL >> size;
366 found_middle:
367 return result + ffz(tmp);
368}
369
370/* Bitmap functions for the minix filesystem. */
371#define minix_test_and_set_bit(nr,addr) test_and_set_bit(nr,addr)
372#define minix_set_bit(nr,addr) set_bit(nr,addr)
373#define minix_test_and_clear_bit(nr,addr) test_and_clear_bit(nr,addr)
374#define minix_test_bit(nr,addr) test_bit(nr,addr)
375#define minix_find_first_zero_bit(addr,size) find_first_zero_bit(addr,size)
376
377#endif
378
379#endif