blob: ed43b5d534ac24401b10d13414a1f8bf0b9af7b3 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0 */
Daniel Schwierzeck898582b2016-01-12 21:48:27 +01002/*
3 * const.h: Macros for dealing with constants.
Daniel Schwierzeck898582b2016-01-12 21:48:27 +01004 */
Daniel Schwierzeck23ff8632016-01-12 21:48:25 +01005
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 Schwierzeck23ff8632016-01-12 21:48:25 +010019#define _AT(T,X) X
20#else
Daniel Schwierzeck23ff8632016-01-12 21:48:25 +010021#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) */