Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame^] | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
Daniel Schwierzeck | 898582b | 2016-01-12 21:48:27 +0100 | [diff] [blame] | 2 | /* |
| 3 | * const.h: Macros for dealing with constants. |
Daniel Schwierzeck | 898582b | 2016-01-12 21:48:27 +0100 | [diff] [blame] | 4 | */ |
Daniel Schwierzeck | 23ff863 | 2016-01-12 21:48:25 +0100 | [diff] [blame] | 5 | |
| 6 | #ifndef _LINUX_CONST_H |
| 7 | #define _LINUX_CONST_H |
| 8 | |
| 9 | /* Some constant macros are used in both assembler and |
| 10 | * C code. Therefore we cannot annotate them always with |
| 11 | * 'UL' and other type specifiers unilaterally. We |
| 12 | * use the following macros to deal with this. |
| 13 | * |
| 14 | * Similarly, _AT() will cast an expression with a type in C, but |
| 15 | * leave it unchanged in asm. |
| 16 | */ |
| 17 | |
| 18 | #ifdef __ASSEMBLY__ |
Daniel Schwierzeck | 23ff863 | 2016-01-12 21:48:25 +0100 | [diff] [blame] | 19 | #define _AT(T,X) X |
| 20 | #else |
Daniel Schwierzeck | 23ff863 | 2016-01-12 21:48:25 +0100 | [diff] [blame] | 21 | #define _AT(T,X) ((T)(X)) |
| 22 | #endif |
| 23 | |
| 24 | #define _BITUL(x) (_AC(1,UL) << (x)) |
| 25 | #define _BITULL(x) (_AC(1,ULL) << (x)) |
| 26 | |
| 27 | #endif /* !(_LINUX_CONST_H) */ |