Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * This file is subject to the terms and conditions of the GNU General Public |
| 3 | * License. See the file "COPYING" in the main directory of this archive |
| 4 | * for more details. |
| 5 | * |
Ralf Baechle | 102fa15 | 2007-02-16 17:18:50 +0000 | [diff] [blame] | 6 | * Copyright (c) 1994 - 1997, 99, 2000, 06, 07 Ralf Baechle (ralf@linux-mips.org) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7 | * Copyright (c) 1999, 2000 Silicon Graphics, Inc. |
| 8 | */ |
| 9 | #ifndef _ASM_BITOPS_H |
| 10 | #define _ASM_BITOPS_H |
| 11 | |
Jiri Slaby | 0624517 | 2007-10-18 23:40:26 -0700 | [diff] [blame] | 12 | #ifndef _LINUX_BITOPS_H |
| 13 | #error only <linux/bitops.h> can be included directly |
| 14 | #endif |
| 15 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 16 | #include <linux/compiler.h> |
| 17 | #include <linux/types.h> |
Ralf Baechle | 0004a9d | 2006-10-31 03:45:07 +0000 | [diff] [blame] | 18 | #include <asm/barrier.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 19 | #include <asm/byteorder.h> /* sigh ... */ |
Maciej W. Rozycki | b0984c4 | 2014-11-15 22:08:48 +0000 | [diff] [blame] | 20 | #include <asm/compiler.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 21 | #include <asm/cpu-features.h> |
Ralf Baechle | 4ffd8b3 | 2006-11-30 01:14:50 +0000 | [diff] [blame] | 22 | #include <asm/sgidefs.h> |
| 23 | #include <asm/war.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | |
Ralf Baechle | 49a89ef | 2007-10-11 23:46:15 +0100 | [diff] [blame] | 25 | #if _MIPS_SZLONG == 32 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 26 | #define SZLONG_LOG 5 |
| 27 | #define SZLONG_MASK 31UL |
Maciej W. Rozycki | aac8aa7 | 2005-06-14 17:35:03 +0000 | [diff] [blame] | 28 | #define __LL "ll " |
| 29 | #define __SC "sc " |
Ralf Baechle | 7034228 | 2013-01-22 12:59:30 +0100 | [diff] [blame] | 30 | #define __INS "ins " |
| 31 | #define __EXT "ext " |
Ralf Baechle | 49a89ef | 2007-10-11 23:46:15 +0100 | [diff] [blame] | 32 | #elif _MIPS_SZLONG == 64 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 33 | #define SZLONG_LOG 6 |
| 34 | #define SZLONG_MASK 63UL |
Maciej W. Rozycki | aac8aa7 | 2005-06-14 17:35:03 +0000 | [diff] [blame] | 35 | #define __LL "lld " |
| 36 | #define __SC "scd " |
Ralf Baechle | 7034228 | 2013-01-22 12:59:30 +0100 | [diff] [blame] | 37 | #define __INS "dins " |
| 38 | #define __EXT "dext " |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 | #endif |
| 40 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 | /* |
Jim Quinlan | 92d1159 | 2012-09-06 11:36:55 -0400 | [diff] [blame] | 42 | * These are the "slower" versions of the functions and are in bitops.c. |
| 43 | * These functions call raw_local_irq_{save,restore}(). |
| 44 | */ |
| 45 | void __mips_set_bit(unsigned long nr, volatile unsigned long *addr); |
| 46 | void __mips_clear_bit(unsigned long nr, volatile unsigned long *addr); |
| 47 | void __mips_change_bit(unsigned long nr, volatile unsigned long *addr); |
| 48 | int __mips_test_and_set_bit(unsigned long nr, |
| 49 | volatile unsigned long *addr); |
| 50 | int __mips_test_and_set_bit_lock(unsigned long nr, |
| 51 | volatile unsigned long *addr); |
| 52 | int __mips_test_and_clear_bit(unsigned long nr, |
| 53 | volatile unsigned long *addr); |
| 54 | int __mips_test_and_change_bit(unsigned long nr, |
| 55 | volatile unsigned long *addr); |
| 56 | |
| 57 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 58 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 59 | * set_bit - Atomically set a bit in memory |
| 60 | * @nr: the bit to set |
| 61 | * @addr: the address to start counting from |
| 62 | * |
| 63 | * This function is atomic and may not be reordered. See __set_bit() |
| 64 | * if you do not require the atomic guarantees. |
| 65 | * Note that @nr may be almost arbitrarily large; this function is not |
| 66 | * restricted to acting on a single-word quantity. |
| 67 | */ |
| 68 | static inline void set_bit(unsigned long nr, volatile unsigned long *addr) |
| 69 | { |
| 70 | unsigned long *m = ((unsigned long *) addr) + (nr >> SZLONG_LOG); |
Jim Quinlan | 9de79c5 | 2012-09-06 11:36:54 -0400 | [diff] [blame] | 71 | int bit = nr & SZLONG_MASK; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 72 | unsigned long temp; |
| 73 | |
David Daney | b791d11 | 2009-07-13 11:15:19 -0700 | [diff] [blame] | 74 | if (kernel_uses_llsc && R10000_LLSC_WAR) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 75 | __asm__ __volatile__( |
Ralf Baechle | a809d46 | 2014-03-30 13:20:10 +0200 | [diff] [blame] | 76 | " .set arch=r4000 \n" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 77 | "1: " __LL "%0, %1 # set_bit \n" |
| 78 | " or %0, %2 \n" |
Maciej W. Rozycki | aac8aa7 | 2005-06-14 17:35:03 +0000 | [diff] [blame] | 79 | " " __SC "%0, %1 \n" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 80 | " beqzl %0, 1b \n" |
Maciej W. Rozycki | aac8aa7 | 2005-06-14 17:35:03 +0000 | [diff] [blame] | 81 | " .set mips0 \n" |
Markos Chandras | 94bfb75 | 2015-01-26 12:44:11 +0000 | [diff] [blame] | 82 | : "=&r" (temp), "=" GCC_OFF_SMALL_ASM() (*m) |
| 83 | : "ir" (1UL << bit), GCC_OFF_SMALL_ASM() (*m)); |
Markos Chandras | 87a927e | 2014-11-20 13:58:30 +0000 | [diff] [blame] | 84 | #if defined(CONFIG_CPU_MIPSR2) || defined(CONFIG_CPU_MIPSR6) |
David Daney | b791d11 | 2009-07-13 11:15:19 -0700 | [diff] [blame] | 85 | } else if (kernel_uses_llsc && __builtin_constant_p(bit)) { |
Ralf Baechle | 7837314 | 2010-10-29 19:08:24 +0100 | [diff] [blame] | 86 | do { |
| 87 | __asm__ __volatile__( |
| 88 | " " __LL "%0, %1 # set_bit \n" |
| 89 | " " __INS "%0, %3, %2, 1 \n" |
| 90 | " " __SC "%0, %1 \n" |
Markos Chandras | 94bfb75 | 2015-01-26 12:44:11 +0000 | [diff] [blame] | 91 | : "=&r" (temp), "+" GCC_OFF_SMALL_ASM() (*m) |
Ralf Baechle | 7837314 | 2010-10-29 19:08:24 +0100 | [diff] [blame] | 92 | : "ir" (bit), "r" (~0)); |
| 93 | } while (unlikely(!temp)); |
Markos Chandras | 87a927e | 2014-11-20 13:58:30 +0000 | [diff] [blame] | 94 | #endif /* CONFIG_CPU_MIPSR2 || CONFIG_CPU_MIPSR6 */ |
David Daney | b791d11 | 2009-07-13 11:15:19 -0700 | [diff] [blame] | 95 | } else if (kernel_uses_llsc) { |
Ralf Baechle | 7837314 | 2010-10-29 19:08:24 +0100 | [diff] [blame] | 96 | do { |
| 97 | __asm__ __volatile__( |
Markos Chandras | 87a927e | 2014-11-20 13:58:30 +0000 | [diff] [blame] | 98 | " .set "MIPS_ISA_ARCH_LEVEL" \n" |
Ralf Baechle | 7837314 | 2010-10-29 19:08:24 +0100 | [diff] [blame] | 99 | " " __LL "%0, %1 # set_bit \n" |
| 100 | " or %0, %2 \n" |
| 101 | " " __SC "%0, %1 \n" |
| 102 | " .set mips0 \n" |
Markos Chandras | 94bfb75 | 2015-01-26 12:44:11 +0000 | [diff] [blame] | 103 | : "=&r" (temp), "+" GCC_OFF_SMALL_ASM() (*m) |
Ralf Baechle | 7837314 | 2010-10-29 19:08:24 +0100 | [diff] [blame] | 104 | : "ir" (1UL << bit)); |
| 105 | } while (unlikely(!temp)); |
Jim Quinlan | 92d1159 | 2012-09-06 11:36:55 -0400 | [diff] [blame] | 106 | } else |
| 107 | __mips_set_bit(nr, addr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 108 | } |
| 109 | |
| 110 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 111 | * clear_bit - Clears a bit in memory |
| 112 | * @nr: Bit to clear |
| 113 | * @addr: Address to start counting from |
| 114 | * |
| 115 | * clear_bit() is atomic and may not be reordered. However, it does |
| 116 | * not contain a memory barrier, so if it is used for locking purposes, |
Peter Zijlstra | 91bbefe | 2014-03-13 19:00:36 +0100 | [diff] [blame] | 117 | * you should call smp_mb__before_atomic() and/or smp_mb__after_atomic() |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 118 | * in order to ensure changes are visible on other processors. |
| 119 | */ |
| 120 | static inline void clear_bit(unsigned long nr, volatile unsigned long *addr) |
| 121 | { |
| 122 | unsigned long *m = ((unsigned long *) addr) + (nr >> SZLONG_LOG); |
Jim Quinlan | 9de79c5 | 2012-09-06 11:36:54 -0400 | [diff] [blame] | 123 | int bit = nr & SZLONG_MASK; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 124 | unsigned long temp; |
| 125 | |
David Daney | b791d11 | 2009-07-13 11:15:19 -0700 | [diff] [blame] | 126 | if (kernel_uses_llsc && R10000_LLSC_WAR) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 127 | __asm__ __volatile__( |
Ralf Baechle | a809d46 | 2014-03-30 13:20:10 +0200 | [diff] [blame] | 128 | " .set arch=r4000 \n" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 129 | "1: " __LL "%0, %1 # clear_bit \n" |
| 130 | " and %0, %2 \n" |
| 131 | " " __SC "%0, %1 \n" |
| 132 | " beqzl %0, 1b \n" |
Maciej W. Rozycki | aac8aa7 | 2005-06-14 17:35:03 +0000 | [diff] [blame] | 133 | " .set mips0 \n" |
Markos Chandras | 94bfb75 | 2015-01-26 12:44:11 +0000 | [diff] [blame] | 134 | : "=&r" (temp), "+" GCC_OFF_SMALL_ASM() (*m) |
Ralf Baechle | 7837314 | 2010-10-29 19:08:24 +0100 | [diff] [blame] | 135 | : "ir" (~(1UL << bit))); |
Markos Chandras | 87a927e | 2014-11-20 13:58:30 +0000 | [diff] [blame] | 136 | #if defined(CONFIG_CPU_MIPSR2) || defined(CONFIG_CPU_MIPSR6) |
David Daney | b791d11 | 2009-07-13 11:15:19 -0700 | [diff] [blame] | 137 | } else if (kernel_uses_llsc && __builtin_constant_p(bit)) { |
Ralf Baechle | 7837314 | 2010-10-29 19:08:24 +0100 | [diff] [blame] | 138 | do { |
| 139 | __asm__ __volatile__( |
| 140 | " " __LL "%0, %1 # clear_bit \n" |
| 141 | " " __INS "%0, $0, %2, 1 \n" |
| 142 | " " __SC "%0, %1 \n" |
Markos Chandras | 94bfb75 | 2015-01-26 12:44:11 +0000 | [diff] [blame] | 143 | : "=&r" (temp), "+" GCC_OFF_SMALL_ASM() (*m) |
Ralf Baechle | 7837314 | 2010-10-29 19:08:24 +0100 | [diff] [blame] | 144 | : "ir" (bit)); |
| 145 | } while (unlikely(!temp)); |
Markos Chandras | 87a927e | 2014-11-20 13:58:30 +0000 | [diff] [blame] | 146 | #endif /* CONFIG_CPU_MIPSR2 || CONFIG_CPU_MIPSR6 */ |
David Daney | b791d11 | 2009-07-13 11:15:19 -0700 | [diff] [blame] | 147 | } else if (kernel_uses_llsc) { |
Ralf Baechle | 7837314 | 2010-10-29 19:08:24 +0100 | [diff] [blame] | 148 | do { |
| 149 | __asm__ __volatile__( |
Markos Chandras | 87a927e | 2014-11-20 13:58:30 +0000 | [diff] [blame] | 150 | " .set "MIPS_ISA_ARCH_LEVEL" \n" |
Ralf Baechle | 7837314 | 2010-10-29 19:08:24 +0100 | [diff] [blame] | 151 | " " __LL "%0, %1 # clear_bit \n" |
| 152 | " and %0, %2 \n" |
| 153 | " " __SC "%0, %1 \n" |
| 154 | " .set mips0 \n" |
Markos Chandras | 94bfb75 | 2015-01-26 12:44:11 +0000 | [diff] [blame] | 155 | : "=&r" (temp), "+" GCC_OFF_SMALL_ASM() (*m) |
Ralf Baechle | 7837314 | 2010-10-29 19:08:24 +0100 | [diff] [blame] | 156 | : "ir" (~(1UL << bit))); |
| 157 | } while (unlikely(!temp)); |
Jim Quinlan | 92d1159 | 2012-09-06 11:36:55 -0400 | [diff] [blame] | 158 | } else |
| 159 | __mips_clear_bit(nr, addr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 160 | } |
| 161 | |
| 162 | /* |
Nick Piggin | 728697c | 2007-10-18 03:06:53 -0700 | [diff] [blame] | 163 | * clear_bit_unlock - Clears a bit in memory |
| 164 | * @nr: Bit to clear |
| 165 | * @addr: Address to start counting from |
| 166 | * |
| 167 | * clear_bit() is atomic and implies release semantics before the memory |
| 168 | * operation. It can be used for an unlock. |
| 169 | */ |
| 170 | static inline void clear_bit_unlock(unsigned long nr, volatile unsigned long *addr) |
| 171 | { |
Peter Zijlstra | 91bbefe | 2014-03-13 19:00:36 +0100 | [diff] [blame] | 172 | smp_mb__before_atomic(); |
Nick Piggin | 728697c | 2007-10-18 03:06:53 -0700 | [diff] [blame] | 173 | clear_bit(nr, addr); |
| 174 | } |
| 175 | |
| 176 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 177 | * change_bit - Toggle a bit in memory |
| 178 | * @nr: Bit to change |
| 179 | * @addr: Address to start counting from |
| 180 | * |
| 181 | * change_bit() is atomic and may not be reordered. |
| 182 | * Note that @nr may be almost arbitrarily large; this function is not |
| 183 | * restricted to acting on a single-word quantity. |
| 184 | */ |
| 185 | static inline void change_bit(unsigned long nr, volatile unsigned long *addr) |
| 186 | { |
Jim Quinlan | 9de79c5 | 2012-09-06 11:36:54 -0400 | [diff] [blame] | 187 | int bit = nr & SZLONG_MASK; |
Ralf Baechle | b961153 | 2007-03-05 00:56:15 +0000 | [diff] [blame] | 188 | |
David Daney | b791d11 | 2009-07-13 11:15:19 -0700 | [diff] [blame] | 189 | if (kernel_uses_llsc && R10000_LLSC_WAR) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 190 | unsigned long *m = ((unsigned long *) addr) + (nr >> SZLONG_LOG); |
| 191 | unsigned long temp; |
| 192 | |
| 193 | __asm__ __volatile__( |
Ralf Baechle | a809d46 | 2014-03-30 13:20:10 +0200 | [diff] [blame] | 194 | " .set arch=r4000 \n" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 195 | "1: " __LL "%0, %1 # change_bit \n" |
| 196 | " xor %0, %2 \n" |
Maciej W. Rozycki | aac8aa7 | 2005-06-14 17:35:03 +0000 | [diff] [blame] | 197 | " " __SC "%0, %1 \n" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 198 | " beqzl %0, 1b \n" |
Maciej W. Rozycki | aac8aa7 | 2005-06-14 17:35:03 +0000 | [diff] [blame] | 199 | " .set mips0 \n" |
Markos Chandras | 94bfb75 | 2015-01-26 12:44:11 +0000 | [diff] [blame] | 200 | : "=&r" (temp), "+" GCC_OFF_SMALL_ASM() (*m) |
Ralf Baechle | 7837314 | 2010-10-29 19:08:24 +0100 | [diff] [blame] | 201 | : "ir" (1UL << bit)); |
David Daney | b791d11 | 2009-07-13 11:15:19 -0700 | [diff] [blame] | 202 | } else if (kernel_uses_llsc) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 203 | unsigned long *m = ((unsigned long *) addr) + (nr >> SZLONG_LOG); |
| 204 | unsigned long temp; |
| 205 | |
Ralf Baechle | 7837314 | 2010-10-29 19:08:24 +0100 | [diff] [blame] | 206 | do { |
| 207 | __asm__ __volatile__( |
Markos Chandras | 87a927e | 2014-11-20 13:58:30 +0000 | [diff] [blame] | 208 | " .set "MIPS_ISA_ARCH_LEVEL" \n" |
Ralf Baechle | 7837314 | 2010-10-29 19:08:24 +0100 | [diff] [blame] | 209 | " " __LL "%0, %1 # change_bit \n" |
| 210 | " xor %0, %2 \n" |
| 211 | " " __SC "%0, %1 \n" |
| 212 | " .set mips0 \n" |
Markos Chandras | 94bfb75 | 2015-01-26 12:44:11 +0000 | [diff] [blame] | 213 | : "=&r" (temp), "+" GCC_OFF_SMALL_ASM() (*m) |
Ralf Baechle | 7837314 | 2010-10-29 19:08:24 +0100 | [diff] [blame] | 214 | : "ir" (1UL << bit)); |
| 215 | } while (unlikely(!temp)); |
Jim Quinlan | 92d1159 | 2012-09-06 11:36:55 -0400 | [diff] [blame] | 216 | } else |
| 217 | __mips_change_bit(nr, addr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 218 | } |
| 219 | |
| 220 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 221 | * test_and_set_bit - Set a bit and return its old value |
| 222 | * @nr: Bit to set |
| 223 | * @addr: Address to count from |
| 224 | * |
| 225 | * This operation is atomic and cannot be reordered. |
| 226 | * It also implies a memory barrier. |
| 227 | */ |
| 228 | static inline int test_and_set_bit(unsigned long nr, |
| 229 | volatile unsigned long *addr) |
| 230 | { |
Jim Quinlan | 9de79c5 | 2012-09-06 11:36:54 -0400 | [diff] [blame] | 231 | int bit = nr & SZLONG_MASK; |
Ralf Baechle | ff72b7a | 2007-06-07 13:17:30 +0100 | [diff] [blame] | 232 | unsigned long res; |
Ralf Baechle | b961153 | 2007-03-05 00:56:15 +0000 | [diff] [blame] | 233 | |
David Daney | f252ffd | 2010-01-08 17:17:43 -0800 | [diff] [blame] | 234 | smp_mb__before_llsc(); |
Nick Piggin | c8f30ae | 2007-10-18 03:06:52 -0700 | [diff] [blame] | 235 | |
David Daney | b791d11 | 2009-07-13 11:15:19 -0700 | [diff] [blame] | 236 | if (kernel_uses_llsc && R10000_LLSC_WAR) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 237 | unsigned long *m = ((unsigned long *) addr) + (nr >> SZLONG_LOG); |
Ralf Baechle | ff72b7a | 2007-06-07 13:17:30 +0100 | [diff] [blame] | 238 | unsigned long temp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 239 | |
| 240 | __asm__ __volatile__( |
Ralf Baechle | a809d46 | 2014-03-30 13:20:10 +0200 | [diff] [blame] | 241 | " .set arch=r4000 \n" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 242 | "1: " __LL "%0, %1 # test_and_set_bit \n" |
| 243 | " or %2, %0, %3 \n" |
| 244 | " " __SC "%2, %1 \n" |
| 245 | " beqzl %2, 1b \n" |
| 246 | " and %2, %0, %3 \n" |
Maciej W. Rozycki | aac8aa7 | 2005-06-14 17:35:03 +0000 | [diff] [blame] | 247 | " .set mips0 \n" |
Markos Chandras | 94bfb75 | 2015-01-26 12:44:11 +0000 | [diff] [blame] | 248 | : "=&r" (temp), "+" GCC_OFF_SMALL_ASM() (*m), "=&r" (res) |
Ralf Baechle | 7837314 | 2010-10-29 19:08:24 +0100 | [diff] [blame] | 249 | : "r" (1UL << bit) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 250 | : "memory"); |
David Daney | b791d11 | 2009-07-13 11:15:19 -0700 | [diff] [blame] | 251 | } else if (kernel_uses_llsc) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 252 | unsigned long *m = ((unsigned long *) addr) + (nr >> SZLONG_LOG); |
Ralf Baechle | ff72b7a | 2007-06-07 13:17:30 +0100 | [diff] [blame] | 253 | unsigned long temp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 254 | |
Ralf Baechle | 7837314 | 2010-10-29 19:08:24 +0100 | [diff] [blame] | 255 | do { |
| 256 | __asm__ __volatile__( |
Markos Chandras | 87a927e | 2014-11-20 13:58:30 +0000 | [diff] [blame] | 257 | " .set "MIPS_ISA_ARCH_LEVEL" \n" |
Ralf Baechle | 7837314 | 2010-10-29 19:08:24 +0100 | [diff] [blame] | 258 | " " __LL "%0, %1 # test_and_set_bit \n" |
| 259 | " or %2, %0, %3 \n" |
| 260 | " " __SC "%2, %1 \n" |
| 261 | " .set mips0 \n" |
Markos Chandras | 94bfb75 | 2015-01-26 12:44:11 +0000 | [diff] [blame] | 262 | : "=&r" (temp), "+" GCC_OFF_SMALL_ASM() (*m), "=&r" (res) |
Ralf Baechle | 7837314 | 2010-10-29 19:08:24 +0100 | [diff] [blame] | 263 | : "r" (1UL << bit) |
| 264 | : "memory"); |
| 265 | } while (unlikely(!res)); |
| 266 | |
| 267 | res = temp & (1UL << bit); |
Jim Quinlan | 92d1159 | 2012-09-06 11:36:55 -0400 | [diff] [blame] | 268 | } else |
| 269 | res = __mips_test_and_set_bit(nr, addr); |
Ralf Baechle | 0004a9d | 2006-10-31 03:45:07 +0000 | [diff] [blame] | 270 | |
Ralf Baechle | 17099b1 | 2007-07-14 13:24:05 +0100 | [diff] [blame] | 271 | smp_llsc_mb(); |
Ralf Baechle | ff72b7a | 2007-06-07 13:17:30 +0100 | [diff] [blame] | 272 | |
| 273 | return res != 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 274 | } |
| 275 | |
| 276 | /* |
Nick Piggin | 728697c | 2007-10-18 03:06:53 -0700 | [diff] [blame] | 277 | * test_and_set_bit_lock - Set a bit and return its old value |
| 278 | * @nr: Bit to set |
| 279 | * @addr: Address to count from |
| 280 | * |
| 281 | * This operation is atomic and implies acquire ordering semantics |
| 282 | * after the memory operation. |
| 283 | */ |
| 284 | static inline int test_and_set_bit_lock(unsigned long nr, |
| 285 | volatile unsigned long *addr) |
| 286 | { |
Jim Quinlan | 9de79c5 | 2012-09-06 11:36:54 -0400 | [diff] [blame] | 287 | int bit = nr & SZLONG_MASK; |
Nick Piggin | 728697c | 2007-10-18 03:06:53 -0700 | [diff] [blame] | 288 | unsigned long res; |
| 289 | |
David Daney | b791d11 | 2009-07-13 11:15:19 -0700 | [diff] [blame] | 290 | if (kernel_uses_llsc && R10000_LLSC_WAR) { |
Nick Piggin | 728697c | 2007-10-18 03:06:53 -0700 | [diff] [blame] | 291 | unsigned long *m = ((unsigned long *) addr) + (nr >> SZLONG_LOG); |
| 292 | unsigned long temp; |
| 293 | |
| 294 | __asm__ __volatile__( |
Ralf Baechle | a809d46 | 2014-03-30 13:20:10 +0200 | [diff] [blame] | 295 | " .set arch=r4000 \n" |
Nick Piggin | 728697c | 2007-10-18 03:06:53 -0700 | [diff] [blame] | 296 | "1: " __LL "%0, %1 # test_and_set_bit \n" |
| 297 | " or %2, %0, %3 \n" |
| 298 | " " __SC "%2, %1 \n" |
| 299 | " beqzl %2, 1b \n" |
| 300 | " and %2, %0, %3 \n" |
| 301 | " .set mips0 \n" |
Ralf Baechle | 7837314 | 2010-10-29 19:08:24 +0100 | [diff] [blame] | 302 | : "=&r" (temp), "+m" (*m), "=&r" (res) |
| 303 | : "r" (1UL << bit) |
Nick Piggin | 728697c | 2007-10-18 03:06:53 -0700 | [diff] [blame] | 304 | : "memory"); |
David Daney | b791d11 | 2009-07-13 11:15:19 -0700 | [diff] [blame] | 305 | } else if (kernel_uses_llsc) { |
Nick Piggin | 728697c | 2007-10-18 03:06:53 -0700 | [diff] [blame] | 306 | unsigned long *m = ((unsigned long *) addr) + (nr >> SZLONG_LOG); |
| 307 | unsigned long temp; |
| 308 | |
Ralf Baechle | 7837314 | 2010-10-29 19:08:24 +0100 | [diff] [blame] | 309 | do { |
| 310 | __asm__ __volatile__( |
Markos Chandras | 87a927e | 2014-11-20 13:58:30 +0000 | [diff] [blame] | 311 | " .set "MIPS_ISA_ARCH_LEVEL" \n" |
Ralf Baechle | 7837314 | 2010-10-29 19:08:24 +0100 | [diff] [blame] | 312 | " " __LL "%0, %1 # test_and_set_bit \n" |
| 313 | " or %2, %0, %3 \n" |
| 314 | " " __SC "%2, %1 \n" |
| 315 | " .set mips0 \n" |
Markos Chandras | 94bfb75 | 2015-01-26 12:44:11 +0000 | [diff] [blame] | 316 | : "=&r" (temp), "+" GCC_OFF_SMALL_ASM() (*m), "=&r" (res) |
Ralf Baechle | 7837314 | 2010-10-29 19:08:24 +0100 | [diff] [blame] | 317 | : "r" (1UL << bit) |
| 318 | : "memory"); |
| 319 | } while (unlikely(!res)); |
| 320 | |
| 321 | res = temp & (1UL << bit); |
Jim Quinlan | 92d1159 | 2012-09-06 11:36:55 -0400 | [diff] [blame] | 322 | } else |
| 323 | res = __mips_test_and_set_bit_lock(nr, addr); |
Nick Piggin | 728697c | 2007-10-18 03:06:53 -0700 | [diff] [blame] | 324 | |
| 325 | smp_llsc_mb(); |
| 326 | |
| 327 | return res != 0; |
| 328 | } |
| 329 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 330 | * test_and_clear_bit - Clear a bit and return its old value |
| 331 | * @nr: Bit to clear |
| 332 | * @addr: Address to count from |
| 333 | * |
| 334 | * This operation is atomic and cannot be reordered. |
| 335 | * It also implies a memory barrier. |
| 336 | */ |
| 337 | static inline int test_and_clear_bit(unsigned long nr, |
| 338 | volatile unsigned long *addr) |
| 339 | { |
Jim Quinlan | 9de79c5 | 2012-09-06 11:36:54 -0400 | [diff] [blame] | 340 | int bit = nr & SZLONG_MASK; |
Ralf Baechle | ff72b7a | 2007-06-07 13:17:30 +0100 | [diff] [blame] | 341 | unsigned long res; |
Ralf Baechle | b961153 | 2007-03-05 00:56:15 +0000 | [diff] [blame] | 342 | |
David Daney | f252ffd | 2010-01-08 17:17:43 -0800 | [diff] [blame] | 343 | smp_mb__before_llsc(); |
Nick Piggin | c8f30ae | 2007-10-18 03:06:52 -0700 | [diff] [blame] | 344 | |
David Daney | b791d11 | 2009-07-13 11:15:19 -0700 | [diff] [blame] | 345 | if (kernel_uses_llsc && R10000_LLSC_WAR) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 346 | unsigned long *m = ((unsigned long *) addr) + (nr >> SZLONG_LOG); |
Atsushi Nemoto | 8e09ffb | 2007-06-14 00:56:31 +0900 | [diff] [blame] | 347 | unsigned long temp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 348 | |
| 349 | __asm__ __volatile__( |
Ralf Baechle | a809d46 | 2014-03-30 13:20:10 +0200 | [diff] [blame] | 350 | " .set arch=r4000 \n" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 351 | "1: " __LL "%0, %1 # test_and_clear_bit \n" |
| 352 | " or %2, %0, %3 \n" |
| 353 | " xor %2, %3 \n" |
Ralf Baechle | 7034228 | 2013-01-22 12:59:30 +0100 | [diff] [blame] | 354 | " " __SC "%2, %1 \n" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 355 | " beqzl %2, 1b \n" |
| 356 | " and %2, %0, %3 \n" |
Maciej W. Rozycki | aac8aa7 | 2005-06-14 17:35:03 +0000 | [diff] [blame] | 357 | " .set mips0 \n" |
Markos Chandras | 94bfb75 | 2015-01-26 12:44:11 +0000 | [diff] [blame] | 358 | : "=&r" (temp), "+" GCC_OFF_SMALL_ASM() (*m), "=&r" (res) |
Ralf Baechle | 7837314 | 2010-10-29 19:08:24 +0100 | [diff] [blame] | 359 | : "r" (1UL << bit) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 360 | : "memory"); |
Markos Chandras | 87a927e | 2014-11-20 13:58:30 +0000 | [diff] [blame] | 361 | #if defined(CONFIG_CPU_MIPSR2) || defined(CONFIG_CPU_MIPSR6) |
David Daney | b791d11 | 2009-07-13 11:15:19 -0700 | [diff] [blame] | 362 | } else if (kernel_uses_llsc && __builtin_constant_p(nr)) { |
Ralf Baechle | 102fa15 | 2007-02-16 17:18:50 +0000 | [diff] [blame] | 363 | unsigned long *m = ((unsigned long *) addr) + (nr >> SZLONG_LOG); |
Ralf Baechle | ff72b7a | 2007-06-07 13:17:30 +0100 | [diff] [blame] | 364 | unsigned long temp; |
Ralf Baechle | 102fa15 | 2007-02-16 17:18:50 +0000 | [diff] [blame] | 365 | |
Ralf Baechle | 7837314 | 2010-10-29 19:08:24 +0100 | [diff] [blame] | 366 | do { |
| 367 | __asm__ __volatile__( |
Ralf Baechle | 7034228 | 2013-01-22 12:59:30 +0100 | [diff] [blame] | 368 | " " __LL "%0, %1 # test_and_clear_bit \n" |
Ralf Baechle | 7837314 | 2010-10-29 19:08:24 +0100 | [diff] [blame] | 369 | " " __EXT "%2, %0, %3, 1 \n" |
Ralf Baechle | 7034228 | 2013-01-22 12:59:30 +0100 | [diff] [blame] | 370 | " " __INS "%0, $0, %3, 1 \n" |
| 371 | " " __SC "%0, %1 \n" |
Markos Chandras | 94bfb75 | 2015-01-26 12:44:11 +0000 | [diff] [blame] | 372 | : "=&r" (temp), "+" GCC_OFF_SMALL_ASM() (*m), "=&r" (res) |
Ralf Baechle | 7837314 | 2010-10-29 19:08:24 +0100 | [diff] [blame] | 373 | : "ir" (bit) |
| 374 | : "memory"); |
| 375 | } while (unlikely(!temp)); |
Ralf Baechle | 102fa15 | 2007-02-16 17:18:50 +0000 | [diff] [blame] | 376 | #endif |
David Daney | b791d11 | 2009-07-13 11:15:19 -0700 | [diff] [blame] | 377 | } else if (kernel_uses_llsc) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 378 | unsigned long *m = ((unsigned long *) addr) + (nr >> SZLONG_LOG); |
Ralf Baechle | ff72b7a | 2007-06-07 13:17:30 +0100 | [diff] [blame] | 379 | unsigned long temp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 380 | |
Ralf Baechle | 7837314 | 2010-10-29 19:08:24 +0100 | [diff] [blame] | 381 | do { |
| 382 | __asm__ __volatile__( |
Markos Chandras | 87a927e | 2014-11-20 13:58:30 +0000 | [diff] [blame] | 383 | " .set "MIPS_ISA_ARCH_LEVEL" \n" |
Ralf Baechle | 7034228 | 2013-01-22 12:59:30 +0100 | [diff] [blame] | 384 | " " __LL "%0, %1 # test_and_clear_bit \n" |
Ralf Baechle | 7837314 | 2010-10-29 19:08:24 +0100 | [diff] [blame] | 385 | " or %2, %0, %3 \n" |
| 386 | " xor %2, %3 \n" |
Ralf Baechle | 7034228 | 2013-01-22 12:59:30 +0100 | [diff] [blame] | 387 | " " __SC "%2, %1 \n" |
Ralf Baechle | 7837314 | 2010-10-29 19:08:24 +0100 | [diff] [blame] | 388 | " .set mips0 \n" |
Markos Chandras | 94bfb75 | 2015-01-26 12:44:11 +0000 | [diff] [blame] | 389 | : "=&r" (temp), "+" GCC_OFF_SMALL_ASM() (*m), "=&r" (res) |
Ralf Baechle | 7837314 | 2010-10-29 19:08:24 +0100 | [diff] [blame] | 390 | : "r" (1UL << bit) |
| 391 | : "memory"); |
| 392 | } while (unlikely(!res)); |
| 393 | |
| 394 | res = temp & (1UL << bit); |
Jim Quinlan | 92d1159 | 2012-09-06 11:36:55 -0400 | [diff] [blame] | 395 | } else |
| 396 | res = __mips_test_and_clear_bit(nr, addr); |
Ralf Baechle | 0004a9d | 2006-10-31 03:45:07 +0000 | [diff] [blame] | 397 | |
Ralf Baechle | 17099b1 | 2007-07-14 13:24:05 +0100 | [diff] [blame] | 398 | smp_llsc_mb(); |
Ralf Baechle | ff72b7a | 2007-06-07 13:17:30 +0100 | [diff] [blame] | 399 | |
| 400 | return res != 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 401 | } |
| 402 | |
| 403 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 404 | * test_and_change_bit - Change a bit and return its old value |
| 405 | * @nr: Bit to change |
| 406 | * @addr: Address to count from |
| 407 | * |
| 408 | * This operation is atomic and cannot be reordered. |
| 409 | * It also implies a memory barrier. |
| 410 | */ |
| 411 | static inline int test_and_change_bit(unsigned long nr, |
| 412 | volatile unsigned long *addr) |
| 413 | { |
Jim Quinlan | 9de79c5 | 2012-09-06 11:36:54 -0400 | [diff] [blame] | 414 | int bit = nr & SZLONG_MASK; |
Ralf Baechle | ff72b7a | 2007-06-07 13:17:30 +0100 | [diff] [blame] | 415 | unsigned long res; |
Ralf Baechle | b961153 | 2007-03-05 00:56:15 +0000 | [diff] [blame] | 416 | |
David Daney | f252ffd | 2010-01-08 17:17:43 -0800 | [diff] [blame] | 417 | smp_mb__before_llsc(); |
Nick Piggin | c8f30ae | 2007-10-18 03:06:52 -0700 | [diff] [blame] | 418 | |
David Daney | b791d11 | 2009-07-13 11:15:19 -0700 | [diff] [blame] | 419 | if (kernel_uses_llsc && R10000_LLSC_WAR) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 420 | unsigned long *m = ((unsigned long *) addr) + (nr >> SZLONG_LOG); |
Ralf Baechle | ff72b7a | 2007-06-07 13:17:30 +0100 | [diff] [blame] | 421 | unsigned long temp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 422 | |
| 423 | __asm__ __volatile__( |
Ralf Baechle | a809d46 | 2014-03-30 13:20:10 +0200 | [diff] [blame] | 424 | " .set arch=r4000 \n" |
Maciej W. Rozycki | aac8aa7 | 2005-06-14 17:35:03 +0000 | [diff] [blame] | 425 | "1: " __LL "%0, %1 # test_and_change_bit \n" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 426 | " xor %2, %0, %3 \n" |
Maciej W. Rozycki | aac8aa7 | 2005-06-14 17:35:03 +0000 | [diff] [blame] | 427 | " " __SC "%2, %1 \n" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 428 | " beqzl %2, 1b \n" |
| 429 | " and %2, %0, %3 \n" |
Maciej W. Rozycki | aac8aa7 | 2005-06-14 17:35:03 +0000 | [diff] [blame] | 430 | " .set mips0 \n" |
Markos Chandras | 94bfb75 | 2015-01-26 12:44:11 +0000 | [diff] [blame] | 431 | : "=&r" (temp), "+" GCC_OFF_SMALL_ASM() (*m), "=&r" (res) |
Ralf Baechle | 7837314 | 2010-10-29 19:08:24 +0100 | [diff] [blame] | 432 | : "r" (1UL << bit) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 433 | : "memory"); |
David Daney | b791d11 | 2009-07-13 11:15:19 -0700 | [diff] [blame] | 434 | } else if (kernel_uses_llsc) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 435 | unsigned long *m = ((unsigned long *) addr) + (nr >> SZLONG_LOG); |
Ralf Baechle | ff72b7a | 2007-06-07 13:17:30 +0100 | [diff] [blame] | 436 | unsigned long temp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 437 | |
Ralf Baechle | 7837314 | 2010-10-29 19:08:24 +0100 | [diff] [blame] | 438 | do { |
| 439 | __asm__ __volatile__( |
Markos Chandras | 87a927e | 2014-11-20 13:58:30 +0000 | [diff] [blame] | 440 | " .set "MIPS_ISA_ARCH_LEVEL" \n" |
Ralf Baechle | 7034228 | 2013-01-22 12:59:30 +0100 | [diff] [blame] | 441 | " " __LL "%0, %1 # test_and_change_bit \n" |
Ralf Baechle | 7837314 | 2010-10-29 19:08:24 +0100 | [diff] [blame] | 442 | " xor %2, %0, %3 \n" |
| 443 | " " __SC "\t%2, %1 \n" |
| 444 | " .set mips0 \n" |
Markos Chandras | 94bfb75 | 2015-01-26 12:44:11 +0000 | [diff] [blame] | 445 | : "=&r" (temp), "+" GCC_OFF_SMALL_ASM() (*m), "=&r" (res) |
Ralf Baechle | 7837314 | 2010-10-29 19:08:24 +0100 | [diff] [blame] | 446 | : "r" (1UL << bit) |
| 447 | : "memory"); |
| 448 | } while (unlikely(!res)); |
| 449 | |
| 450 | res = temp & (1UL << bit); |
Jim Quinlan | 92d1159 | 2012-09-06 11:36:55 -0400 | [diff] [blame] | 451 | } else |
| 452 | res = __mips_test_and_change_bit(nr, addr); |
Ralf Baechle | 0004a9d | 2006-10-31 03:45:07 +0000 | [diff] [blame] | 453 | |
Ralf Baechle | 17099b1 | 2007-07-14 13:24:05 +0100 | [diff] [blame] | 454 | smp_llsc_mb(); |
Ralf Baechle | ff72b7a | 2007-06-07 13:17:30 +0100 | [diff] [blame] | 455 | |
| 456 | return res != 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 457 | } |
| 458 | |
Akinobu Mita | 3c9ee7e | 2006-03-26 01:39:30 -0800 | [diff] [blame] | 459 | #include <asm-generic/bitops/non-atomic.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 460 | |
Ralf Baechle | 6590326 | 2005-07-12 12:50:30 +0000 | [diff] [blame] | 461 | /* |
Nick Piggin | 728697c | 2007-10-18 03:06:53 -0700 | [diff] [blame] | 462 | * __clear_bit_unlock - Clears a bit in memory |
| 463 | * @nr: Bit to clear |
| 464 | * @addr: Address to start counting from |
| 465 | * |
| 466 | * __clear_bit() is non-atomic and implies release semantics before the memory |
| 467 | * operation. It can be used for an unlock if no other CPUs can concurrently |
| 468 | * modify other bits in the word. |
| 469 | */ |
| 470 | static inline void __clear_bit_unlock(unsigned long nr, volatile unsigned long *addr) |
| 471 | { |
| 472 | smp_mb(); |
| 473 | __clear_bit(nr, addr); |
| 474 | } |
| 475 | |
| 476 | /* |
Ralf Baechle | 6590326 | 2005-07-12 12:50:30 +0000 | [diff] [blame] | 477 | * Return the bit position (0..63) of the most significant 1 bit in a word |
| 478 | * Returns -1 if no 1 bit exists |
| 479 | */ |
Ralf Baechle | 4816227 | 2008-10-28 09:40:35 +0000 | [diff] [blame] | 480 | static inline unsigned long __fls(unsigned long word) |
Ralf Baechle | 6590326 | 2005-07-12 12:50:30 +0000 | [diff] [blame] | 481 | { |
Ralf Baechle | 4816227 | 2008-10-28 09:40:35 +0000 | [diff] [blame] | 482 | int num; |
Ralf Baechle | 6590326 | 2005-07-12 12:50:30 +0000 | [diff] [blame] | 483 | |
Maciej W. Rozycki | cb5d4aa | 2015-04-03 23:25:00 +0100 | [diff] [blame^] | 484 | if (BITS_PER_LONG == 32 && !__builtin_constant_p(word) && |
Ralf Baechle | 47740eb | 2009-04-19 03:21:22 +0200 | [diff] [blame] | 485 | __builtin_constant_p(cpu_has_clo_clz) && cpu_has_clo_clz) { |
Ralf Baechle | 49a89ef | 2007-10-11 23:46:15 +0100 | [diff] [blame] | 486 | __asm__( |
Ralf Baechle | ec917c2c | 2005-10-07 16:58:15 +0100 | [diff] [blame] | 487 | " .set push \n" |
Markos Chandras | 87a927e | 2014-11-20 13:58:30 +0000 | [diff] [blame] | 488 | " .set "MIPS_ISA_LEVEL" \n" |
Ralf Baechle | ec917c2c | 2005-10-07 16:58:15 +0100 | [diff] [blame] | 489 | " clz %0, %1 \n" |
| 490 | " .set pop \n" |
Ralf Baechle | 4816227 | 2008-10-28 09:40:35 +0000 | [diff] [blame] | 491 | : "=r" (num) |
| 492 | : "r" (word)); |
Ralf Baechle | ec917c2c | 2005-10-07 16:58:15 +0100 | [diff] [blame] | 493 | |
Ralf Baechle | 4816227 | 2008-10-28 09:40:35 +0000 | [diff] [blame] | 494 | return 31 - num; |
Ralf Baechle | ec917c2c | 2005-10-07 16:58:15 +0100 | [diff] [blame] | 495 | } |
| 496 | |
Maciej W. Rozycki | cb5d4aa | 2015-04-03 23:25:00 +0100 | [diff] [blame^] | 497 | if (BITS_PER_LONG == 64 && !__builtin_constant_p(word) && |
Ralf Baechle | 4816227 | 2008-10-28 09:40:35 +0000 | [diff] [blame] | 498 | __builtin_constant_p(cpu_has_mips64) && cpu_has_mips64) { |
| 499 | __asm__( |
| 500 | " .set push \n" |
Markos Chandras | 87a927e | 2014-11-20 13:58:30 +0000 | [diff] [blame] | 501 | " .set "MIPS_ISA_LEVEL" \n" |
Ralf Baechle | 4816227 | 2008-10-28 09:40:35 +0000 | [diff] [blame] | 502 | " dclz %0, %1 \n" |
| 503 | " .set pop \n" |
| 504 | : "=r" (num) |
| 505 | : "r" (word)); |
Ralf Baechle | ec917c2c | 2005-10-07 16:58:15 +0100 | [diff] [blame] | 506 | |
Ralf Baechle | 4816227 | 2008-10-28 09:40:35 +0000 | [diff] [blame] | 507 | return 63 - num; |
| 508 | } |
Ralf Baechle | 6590326 | 2005-07-12 12:50:30 +0000 | [diff] [blame] | 509 | |
Ralf Baechle | 4816227 | 2008-10-28 09:40:35 +0000 | [diff] [blame] | 510 | num = BITS_PER_LONG - 1; |
| 511 | |
| 512 | #if BITS_PER_LONG == 64 |
| 513 | if (!(word & (~0ul << 32))) { |
| 514 | num -= 32; |
| 515 | word <<= 32; |
| 516 | } |
| 517 | #endif |
| 518 | if (!(word & (~0ul << (BITS_PER_LONG-16)))) { |
| 519 | num -= 16; |
| 520 | word <<= 16; |
| 521 | } |
| 522 | if (!(word & (~0ul << (BITS_PER_LONG-8)))) { |
| 523 | num -= 8; |
| 524 | word <<= 8; |
| 525 | } |
| 526 | if (!(word & (~0ul << (BITS_PER_LONG-4)))) { |
| 527 | num -= 4; |
| 528 | word <<= 4; |
| 529 | } |
| 530 | if (!(word & (~0ul << (BITS_PER_LONG-2)))) { |
| 531 | num -= 2; |
| 532 | word <<= 2; |
| 533 | } |
| 534 | if (!(word & (~0ul << (BITS_PER_LONG-1)))) |
| 535 | num -= 1; |
| 536 | return num; |
Ralf Baechle | 6590326 | 2005-07-12 12:50:30 +0000 | [diff] [blame] | 537 | } |
Ralf Baechle | 6590326 | 2005-07-12 12:50:30 +0000 | [diff] [blame] | 538 | |
| 539 | /* |
| 540 | * __ffs - find first bit in word. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 541 | * @word: The word to search |
| 542 | * |
Ralf Baechle | 6590326 | 2005-07-12 12:50:30 +0000 | [diff] [blame] | 543 | * Returns 0..SZLONG-1 |
| 544 | * Undefined if no bit exists, so code should check against 0 first. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 545 | */ |
Ralf Baechle | 6590326 | 2005-07-12 12:50:30 +0000 | [diff] [blame] | 546 | static inline unsigned long __ffs(unsigned long word) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 547 | { |
Ralf Baechle | ddc0d00 | 2008-05-04 14:53:53 +0100 | [diff] [blame] | 548 | return __fls(word & -word); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 549 | } |
| 550 | |
| 551 | /* |
Atsushi Nemoto | bc81824 | 2006-04-17 21:19:12 +0900 | [diff] [blame] | 552 | * fls - find last bit set. |
| 553 | * @word: The word to search |
| 554 | * |
| 555 | * This is defined the same way as ffs. |
| 556 | * Note fls(0) = 0, fls(1) = 1, fls(0x80000000) = 32. |
| 557 | */ |
Ralf Baechle | 4816227 | 2008-10-28 09:40:35 +0000 | [diff] [blame] | 558 | static inline int fls(int x) |
Atsushi Nemoto | bc81824 | 2006-04-17 21:19:12 +0900 | [diff] [blame] | 559 | { |
Ralf Baechle | 4816227 | 2008-10-28 09:40:35 +0000 | [diff] [blame] | 560 | int r; |
Atsushi Nemoto | bc81824 | 2006-04-17 21:19:12 +0900 | [diff] [blame] | 561 | |
Maciej W. Rozycki | cb5d4aa | 2015-04-03 23:25:00 +0100 | [diff] [blame^] | 562 | if (!__builtin_constant_p(x) && |
| 563 | __builtin_constant_p(cpu_has_clo_clz) && cpu_has_clo_clz) { |
Maciej W. Rozycki | db87313 | 2014-06-29 00:26:20 +0100 | [diff] [blame] | 564 | __asm__( |
| 565 | " .set push \n" |
Markos Chandras | 87a927e | 2014-11-20 13:58:30 +0000 | [diff] [blame] | 566 | " .set "MIPS_ISA_LEVEL" \n" |
Maciej W. Rozycki | db87313 | 2014-06-29 00:26:20 +0100 | [diff] [blame] | 567 | " clz %0, %1 \n" |
| 568 | " .set pop \n" |
| 569 | : "=r" (x) |
| 570 | : "r" (x)); |
Ralf Baechle | 4816227 | 2008-10-28 09:40:35 +0000 | [diff] [blame] | 571 | |
| 572 | return 32 - x; |
| 573 | } |
| 574 | |
| 575 | r = 32; |
| 576 | if (!x) |
| 577 | return 0; |
| 578 | if (!(x & 0xffff0000u)) { |
| 579 | x <<= 16; |
| 580 | r -= 16; |
| 581 | } |
| 582 | if (!(x & 0xff000000u)) { |
| 583 | x <<= 8; |
| 584 | r -= 8; |
| 585 | } |
| 586 | if (!(x & 0xf0000000u)) { |
| 587 | x <<= 4; |
| 588 | r -= 4; |
| 589 | } |
| 590 | if (!(x & 0xc0000000u)) { |
| 591 | x <<= 2; |
| 592 | r -= 2; |
| 593 | } |
| 594 | if (!(x & 0x80000000u)) { |
| 595 | x <<= 1; |
| 596 | r -= 1; |
| 597 | } |
| 598 | return r; |
Atsushi Nemoto | bc81824 | 2006-04-17 21:19:12 +0900 | [diff] [blame] | 599 | } |
| 600 | |
Atsushi Nemoto | bc81824 | 2006-04-17 21:19:12 +0900 | [diff] [blame] | 601 | #include <asm-generic/bitops/fls64.h> |
Atsushi Nemoto | bc81824 | 2006-04-17 21:19:12 +0900 | [diff] [blame] | 602 | |
| 603 | /* |
Ralf Baechle | 6590326 | 2005-07-12 12:50:30 +0000 | [diff] [blame] | 604 | * ffs - find first bit set. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 605 | * @word: The word to search |
| 606 | * |
Atsushi Nemoto | bc81824 | 2006-04-17 21:19:12 +0900 | [diff] [blame] | 607 | * This is defined the same way as |
| 608 | * the libc and compiler builtin ffs routines, therefore |
| 609 | * differs in spirit from the above ffz (man ffs). |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 610 | */ |
Atsushi Nemoto | bc81824 | 2006-04-17 21:19:12 +0900 | [diff] [blame] | 611 | static inline int ffs(int word) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 612 | { |
Ralf Baechle | 6590326 | 2005-07-12 12:50:30 +0000 | [diff] [blame] | 613 | if (!word) |
| 614 | return 0; |
| 615 | |
Atsushi Nemoto | bc81824 | 2006-04-17 21:19:12 +0900 | [diff] [blame] | 616 | return fls(word & -word); |
Ralf Baechle | 6590326 | 2005-07-12 12:50:30 +0000 | [diff] [blame] | 617 | } |
Ralf Baechle | 2caf190 | 2006-01-30 17:14:41 +0000 | [diff] [blame] | 618 | |
Atsushi Nemoto | bc81824 | 2006-04-17 21:19:12 +0900 | [diff] [blame] | 619 | #include <asm-generic/bitops/ffz.h> |
Akinobu Mita | 3c9ee7e | 2006-03-26 01:39:30 -0800 | [diff] [blame] | 620 | #include <asm-generic/bitops/find.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 621 | |
| 622 | #ifdef __KERNEL__ |
| 623 | |
Akinobu Mita | 3c9ee7e | 2006-03-26 01:39:30 -0800 | [diff] [blame] | 624 | #include <asm-generic/bitops/sched.h> |
David Daney | 1a403d1 | 2010-06-25 16:46:07 -0700 | [diff] [blame] | 625 | |
| 626 | #include <asm/arch_hweight.h> |
| 627 | #include <asm-generic/bitops/const_hweight.h> |
| 628 | |
Akinobu Mita | 861b5ae | 2011-03-23 16:42:02 -0700 | [diff] [blame] | 629 | #include <asm-generic/bitops/le.h> |
Akinobu Mita | 3c9ee7e | 2006-03-26 01:39:30 -0800 | [diff] [blame] | 630 | #include <asm-generic/bitops/ext2-atomic.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 631 | |
| 632 | #endif /* __KERNEL__ */ |
| 633 | |
| 634 | #endif /* _ASM_BITOPS_H */ |