blob: 52586a7557b04e8debac514b9daccd9927a5ae76 [file] [log] [blame]
Masahiro Yamada0a9064f2014-07-30 14:08:13 +09001#ifndef __LINUX_KCONFIG_H
2#define __LINUX_KCONFIG_H
3
4#include <generated/autoconf.h>
5
6/*
7 * Helper macros to use CONFIG_ options in C/CPP expressions. Note that
8 * these only work with boolean and tristate options.
9 */
10
11/*
12 * Getting something that works in C and CPP for an arg that may or may
13 * not be defined is tricky. Here, if we have "#define CONFIG_BOOGER 1"
14 * we match on the placeholder define, insert the "0," for arg1 and generate
15 * the triplet (0, 1, 0). Then the last step cherry picks the 2nd arg (a one).
16 * When CONFIG_BOOGER is not defined, we generate a (... 1, 0) pair, and when
17 * the last step cherry picks the 2nd arg, we get a zero.
18 */
19#define __ARG_PLACEHOLDER_1 0,
Simon Glass310bfa72022-01-22 05:07:25 -070020#define config_enabled(cfg, def_val) _config_enabled(cfg, def_val)
21#define _config_enabled(value, def_val) __config_enabled(__ARG_PLACEHOLDER_##value, def_val)
22#define __config_enabled(arg1_or_junk, def_val) ___config_enabled(arg1_or_junk 1, def_val)
Masahiro Yamada0a9064f2014-07-30 14:08:13 +090023#define ___config_enabled(__ignored, val, ...) val
24
25/*
Rasmus Villemoes7d78a452020-07-03 10:37:05 -060026 * IS_ENABLED(CONFIG_FOO) evaluates to 1 if CONFIG_FOO is set to 'y',
Masahiro Yamada0a9064f2014-07-30 14:08:13 +090027 * 0 otherwise.
Masahiro Yamada0a9064f2014-07-30 14:08:13 +090028 */
Simon Glass310bfa72022-01-22 05:07:25 -070029#define IS_ENABLED(option) config_enabled(option, 0)
Masahiro Yamada0a9064f2014-07-30 14:08:13 +090030
Masahiro Yamada8be60f02015-08-12 07:31:43 +090031/*
Simon Glass5500a402021-09-25 19:43:15 -060032 * U-Boot add-on: Helper macros to reference to different macros (prefixed by
33 * CONFIG_, CONFIG_SPL_, CONFIG_TPL_ or CONFIG_TOOLS_), depending on the build
34 * context.
Masahiro Yamada8be60f02015-08-12 07:31:43 +090035 */
Philipp Tomsichf1c6e192017-06-30 19:02:53 +020036
Simon Glass5500a402021-09-25 19:43:15 -060037#ifdef USE_HOSTCC
38#define _CONFIG_PREFIX TOOLS_
39#elif defined(CONFIG_TPL_BUILD)
Rasmus Villemoesb4f73882020-07-03 10:37:04 -060040#define _CONFIG_PREFIX TPL_
41#elif defined(CONFIG_SPL_BUILD)
42#define _CONFIG_PREFIX SPL_
Philipp Tomsichf1c6e192017-06-30 19:02:53 +020043#else
Rasmus Villemoesb4f73882020-07-03 10:37:04 -060044#define _CONFIG_PREFIX
Philipp Tomsichf1c6e192017-06-30 19:02:53 +020045#endif
Masahiro Yamada8be60f02015-08-12 07:31:43 +090046
Rasmus Villemoesb4f73882020-07-03 10:37:04 -060047#define config_val(cfg) _config_val(_CONFIG_PREFIX, cfg)
48#define _config_val(pfx, cfg) __config_val(pfx, cfg)
49#define __config_val(pfx, cfg) CONFIG_ ## pfx ## cfg
50
Masahiro Yamada8be60f02015-08-12 07:31:43 +090051/*
52 * CONFIG_VAL(FOO) evaluates to the value of
Simon Glass5500a402021-09-25 19:43:15 -060053 * CONFIG_TOOLS_FOO if USE_HOSTCC is defined,
Masahiro Yamada8be60f02015-08-12 07:31:43 +090054 * CONFIG_FOO if CONFIG_SPL_BUILD is undefined,
55 * CONFIG_SPL_FOO if CONFIG_SPL_BUILD is defined.
Lukasz Majewskifd75bf72019-09-03 15:43:55 +020056 * CONFIG_TPL_FOO if CONFIG_TPL_BUILD is defined.
Masahiro Yamada8be60f02015-08-12 07:31:43 +090057 */
58#define CONFIG_VAL(option) config_val(option)
59
60/*
Rasmus Villemoes78427492020-07-03 10:37:06 -060061 * Count number of arguments to a variadic macro. Currently only need
62 * it for 1, 2 or 3 arguments.
63 */
64#define __arg6(a1, a2, a3, a4, a5, a6, ...) a6
65#define __count_args(...) __arg6(dummy, ##__VA_ARGS__, 4, 3, 2, 1, 0)
66
67#define __concat(a, b) ___concat(a, b)
68#define ___concat(a, b) a ## b
69
70#define __unwrap(...) __VA_ARGS__
71#define __unwrap1(case1, case0) __unwrap case1
72#define __unwrap0(case1, case0) __unwrap case0
73
74#define __CONFIG_IS_ENABLED_1(option) __CONFIG_IS_ENABLED_3(option, (1), (0))
75#define __CONFIG_IS_ENABLED_2(option, case1) __CONFIG_IS_ENABLED_3(option, case1, ())
76#define __CONFIG_IS_ENABLED_3(option, case1, case0) \
Simon Glass310bfa72022-01-22 05:07:25 -070077 __concat(__unwrap, config_enabled(CONFIG_VAL(option), 0)) (case1, case0)
Rasmus Villemoes78427492020-07-03 10:37:06 -060078
79/*
80 * CONFIG_IS_ENABLED(FOO) expands to
Simon Glass5500a402021-09-25 19:43:15 -060081 * 1 if USE_HOSTCC is defined and CONFIG_TOOLS_FOO is set to 'y',
Rasmus Villemoes7d78a452020-07-03 10:37:05 -060082 * 1 if CONFIG_SPL_BUILD is undefined and CONFIG_FOO is set to 'y',
83 * 1 if CONFIG_SPL_BUILD is defined and CONFIG_SPL_FOO is set to 'y',
84 * 1 if CONFIG_TPL_BUILD is defined and CONFIG_TPL_FOO is set to 'y',
Masahiro Yamada8be60f02015-08-12 07:31:43 +090085 * 0 otherwise.
Rasmus Villemoes78427492020-07-03 10:37:06 -060086 *
87 * CONFIG_IS_ENABLED(FOO, (abc)) expands to
Simon Glass5500a402021-09-25 19:43:15 -060088 * abc if USE_HOSTCC is defined and CONFIG_TOOLS_FOO is set to 'y',
Rasmus Villemoes78427492020-07-03 10:37:06 -060089 * abc if CONFIG_SPL_BUILD is undefined and CONFIG_FOO is set to 'y',
90 * abc if CONFIG_SPL_BUILD is defined and CONFIG_SPL_FOO is set to 'y',
91 * abc if CONFIG_TPL_BUILD is defined and CONFIG_TPL_FOO is set to 'y',
92 * nothing otherwise.
93 *
94 * CONFIG_IS_ENABLED(FOO, (abc), (def)) expands to
Simon Glass5500a402021-09-25 19:43:15 -060095 * abc if USE_HOSTCC is defined and CONFIG_TOOLS_FOO is set to 'y',
Rasmus Villemoes78427492020-07-03 10:37:06 -060096 * abc if CONFIG_SPL_BUILD is undefined and CONFIG_FOO is set to 'y',
97 * abc if CONFIG_SPL_BUILD is defined and CONFIG_SPL_FOO is set to 'y',
98 * abc if CONFIG_TPL_BUILD is defined and CONFIG_TPL_FOO is set to 'y',
99 * def otherwise.
100 *
101 * The optional second and third arguments must be parenthesized; that
102 * allows one to include a trailing comma, e.g. for use in
103 *
104 * CONFIG_IS_ENABLED(ACME, ({.compatible = "acme,frobnozzle"},))
105 *
106 * which adds an entry to the array being defined if CONFIG_ACME (or
107 * CONFIG_SPL_ACME/CONFIG_TPL_ACME, depending on build context) is
108 * set, and nothing otherwise.
Masahiro Yamada8be60f02015-08-12 07:31:43 +0900109 */
Rasmus Villemoes78427492020-07-03 10:37:06 -0600110
111#define CONFIG_IS_ENABLED(option, ...) \
112 __concat(__CONFIG_IS_ENABLED_, __count_args(option, ##__VA_ARGS__)) (option, ##__VA_ARGS__)
113
Masahiro Yamada8be60f02015-08-12 07:31:43 +0900114
Masahiro Yamada0a9064f2014-07-30 14:08:13 +0900115#endif /* __LINUX_KCONFIG_H */