aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/asm-frv/bitops.h44
-rw-r--r--include/linux/kernel.h9
-rw-r--r--include/linux/log2.h131
3 files changed, 176 insertions, 8 deletions
diff --git a/include/asm-frv/bitops.h b/include/asm-frv/bitops.h
index 1f70d47148bd..f8560edf59ff 100644
--- a/include/asm-frv/bitops.h
+++ b/include/asm-frv/bitops.h
@@ -256,6 +256,50 @@ int __ffs(unsigned long x)
256 return 31 - bit; 256 return 31 - bit;
257} 257}
258 258
259/*
260 * special slimline version of fls() for calculating ilog2_u32()
261 * - note: no protection against n == 0
262 */
263#define ARCH_HAS_ILOG2_U32
264static inline __attribute__((const))
265int __ilog2_u32(u32 n)
266{
267 int bit;
268 asm("scan %1,gr0,%0" : "=r"(bit) : "r"(n));
269 return 31 - bit;
270}
271
272/*
273 * special slimline version of fls64() for calculating ilog2_u64()
274 * - note: no protection against n == 0
275 */
276#define ARCH_HAS_ILOG2_U64
277static inline __attribute__((const))
278int __ilog2_u64(u64 n)
279{
280 union {
281 u64 ll;
282 struct { u32 h, l; };
283 } _;
284 int bit, x, y;
285
286 _.ll = n;
287
288 asm(" subcc %3,gr0,gr0,icc0 \n"
289 " ckeq icc0,cc4 \n"
290 " cscan.p %3,gr0,%0 ,cc4,0 \n"
291 " setlos #63,%1 \n"
292 " cscan.p %4,gr0,%0 ,cc4,1 \n"
293 " setlos #31,%2 \n"
294 " csub.p %1,%0,%0 ,cc4,0 \n"
295 " csub %2,%0,%0 ,cc4,1 \n"
296 : "=&r"(bit), "=r"(x), "=r"(y)
297 : "0r"(_.h), "r"(_.l)
298 : "icc0", "cc4"
299 );
300 return bit;
301}
302
259#include <asm-generic/bitops/sched.h> 303#include <asm-generic/bitops/sched.h>
260#include <asm-generic/bitops/hweight.h> 304#include <asm-generic/bitops/hweight.h>
261 305
diff --git a/include/linux/kernel.h b/include/linux/kernel.h
index 6738283ac385..3710cce16642 100644
--- a/include/linux/kernel.h
+++ b/include/linux/kernel.h
@@ -13,6 +13,7 @@
13#include <linux/types.h> 13#include <linux/types.h>
14#include <linux/compiler.h> 14#include <linux/compiler.h>
15#include <linux/bitops.h> 15#include <linux/bitops.h>
16#include <linux/log2.h>
16#include <asm/byteorder.h> 17#include <asm/byteorder.h>
17#include <asm/bug.h> 18#include <asm/bug.h>
18 19
@@ -157,14 +158,6 @@ static inline int printk(const char *s, ...) { return 0; }
157 158
158unsigned long int_sqrt(unsigned long); 159unsigned long int_sqrt(unsigned long);
159 160
160static inline int __attribute_pure__ long_log2(unsigned long x)
161{
162 int r = 0;
163 for (x >>= 1; x > 0; x >>= 1)
164 r++;
165 return r;
166}
167
168static inline unsigned long 161static inline unsigned long
169__attribute_const__ roundup_pow_of_two(unsigned long x) 162__attribute_const__ roundup_pow_of_two(unsigned long x)
170{ 163{
diff --git a/include/linux/log2.h b/include/linux/log2.h
new file mode 100644
index 000000000000..3979c60325ff
--- /dev/null
+++ b/include/linux/log2.h
@@ -0,0 +1,131 @@
1/* Integer base 2 logarithm calculation
2 *
3 * Copyright (C) 2006 Red Hat, Inc. All Rights Reserved.
4 * Written by David Howells (dhowells@redhat.com)
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
10 */
11
12#ifndef _LINUX_LOG2_H
13#define _LINUX_LOG2_H
14
15#include <linux/types.h>
16#include <linux/bitops.h>
17
18/*
19 * deal with unrepresentable constant logarithms
20 */
21extern __attribute__((const, noreturn))
22int ____ilog2_NaN(void);
23
24/*
25 * non-constant log of base 2 calculators
26 * - the arch may override these in asm/bitops.h if they can be implemented
27 * more efficiently than using fls() and fls64()
28 * - the arch is not required to handle n==0 if implementing the fallback
29 */
30#ifndef CONFIG_ARCH_HAS_ILOG2_U32
31static inline __attribute__((const))
32int __ilog2_u32(u32 n)
33{
34 return fls(n) - 1;
35}
36#endif
37
38#ifndef CONFIG_ARCH_HAS_ILOG2_U64
39static inline __attribute__((const))
40int __ilog2_u64(u64 n)
41{
42 return fls64(n) - 1;
43}
44#endif
45
46/**
47 * ilog2 - log of base 2 of 32-bit or a 64-bit unsigned value
48 * @n - parameter
49 *
50 * constant-capable log of base 2 calculation
51 * - this can be used to initialise global variables from constant data, hence
52 * the massive ternary operator construction
53 *
54 * selects the appropriately-sized optimised version depending on sizeof(n)
55 */
56#define ilog2(n) \
57( \
58 __builtin_constant_p(n) ? ( \
59 (n) < 1 ? ____ilog2_NaN() : \
60 (n) & (1ULL << 63) ? 63 : \
61 (n) & (1ULL << 62) ? 62 : \
62 (n) & (1ULL << 61) ? 61 : \
63 (n) & (1ULL << 60) ? 60 : \
64 (n) & (1ULL << 59) ? 59 : \
65 (n) & (1ULL << 58) ? 58 : \
66 (n) & (1ULL << 57) ? 57 : \
67 (n) & (1ULL << 56) ? 56 : \
68 (n) & (1ULL << 55) ? 55 : \
69 (n) & (1ULL << 54) ? 54 : \
70 (n) & (1ULL << 53) ? 53 : \
71 (n) & (1ULL << 52) ? 52 : \
72 (n) & (1ULL << 51) ? 51 : \
73 (n) & (1ULL << 50) ? 50 : \
74 (n) & (1ULL << 49) ? 49 : \
75 (n) & (1ULL << 48) ? 48 : \
76 (n) & (1ULL << 47) ? 47 : \
77 (n) & (1ULL << 46) ? 46 : \
78 (n) & (1ULL << 45) ? 45 : \
79 (n) & (1ULL << 44) ? 44 : \
80 (n) & (1ULL << 43) ? 43 : \
81 (n) & (1ULL << 42) ? 42 : \
82 (n) & (1ULL << 41) ? 41 : \
83 (n) & (1ULL << 40) ? 40 : \
84 (n) & (1ULL << 39) ? 39 : \
85 (n) & (1ULL << 38) ? 38 : \
86 (n) & (1ULL << 37) ? 37 : \
87 (n) & (1ULL << 36) ? 36 : \
88 (n) & (1ULL << 35) ? 35 : \
89 (n) & (1ULL << 34) ? 34 : \
90 (n) & (1ULL << 33) ? 33 : \
91 (n) & (1ULL << 32) ? 32 : \
92 (n) & (1ULL << 31) ? 31 : \
93 (n) & (1ULL << 30) ? 30 : \
94 (n) & (1ULL << 29) ? 29 : \
95 (n) & (1ULL << 28) ? 28 : \
96 (n) & (1ULL << 27) ? 27 : \
97 (n) & (1ULL << 26) ? 26 : \
98 (n) & (1ULL << 25) ? 25 : \
99 (n) & (1ULL << 24) ? 24 : \
100 (n) & (1ULL << 23) ? 23 : \
101 (n) & (1ULL << 22) ? 22 : \
102 (n) & (1ULL << 21) ? 21 : \
103 (n) & (1ULL << 20) ? 20 : \
104 (n) & (1ULL << 19) ? 19 : \
105 (n) & (1ULL << 18) ? 18 : \
106 (n) & (1ULL << 17) ? 17 : \
107 (n) & (1ULL << 16) ? 16 : \
108 (n) & (1ULL << 15) ? 15 : \
109 (n) & (1ULL << 14) ? 14 : \
110 (n) & (1ULL << 13) ? 13 : \
111 (n) & (1ULL << 12) ? 12 : \
112 (n) & (1ULL << 11) ? 11 : \
113 (n) & (1ULL << 10) ? 10 : \
114 (n) & (1ULL << 9) ? 9 : \
115 (n) & (1ULL << 8) ? 8 : \
116 (n) & (1ULL << 7) ? 7 : \
117 (n) & (1ULL << 6) ? 6 : \
118 (n) & (1ULL << 5) ? 5 : \
119 (n) & (1ULL << 4) ? 4 : \
120 (n) & (1ULL << 3) ? 3 : \
121 (n) & (1ULL << 2) ? 2 : \
122 (n) & (1ULL << 1) ? 1 : \
123 (n) & (1ULL << 0) ? 0 : \
124 ____ilog2_NaN() \
125 ) : \
126 (sizeof(n) <= 4) ? \
127 __ilog2_u32(n) : \
128 __ilog2_u64(n) \
129 )
130
131#endif /* _LINUX_LOG2_H */