1 /*
2  * Copyright (c) 2015 Intel Corporation.
3  *
4  * SPDX-License-Identifier: Apache-2.0
5  */
6 
7 #ifndef ZEPHYR_INCLUDE_INIT_H_
8 #define ZEPHYR_INCLUDE_INIT_H_
9 
10 #include <stdint.h>
11 #include <stddef.h>
12 
13 #include <zephyr/sys/util.h>
14 #include <zephyr/toolchain.h>
15 
16 #ifdef __cplusplus
17 extern "C" {
18 #endif
19 
20 /**
21  * @defgroup sys_init System Initialization
22  * @ingroup os_services
23  *
24  * Zephyr offers an infrastructure to call initialization code before `main`.
25  * Such initialization calls can be registered using SYS_INIT() or
26  * SYS_INIT_NAMED() macros. By using a combination of initialization levels and
27  * priorities init sequence can be adjusted as needed. The available
28  * initialization levels are described, in order, below:
29  *
30  * - `EARLY`: Used very early in the boot process, right after entering the C
31  *   domain (``z_cstart()``). This can be used in architectures and SoCs that
32  *   extend or implement architecture code and use drivers or system services
33  *   that have to be initialized before the Kernel calls any architecture
34  *   specific initialization code.
35  * - `PRE_KERNEL_1`: Executed in Kernel's initialization context, which uses
36  *   the interrupt stack. At this point Kernel services are not yet available.
37  * - `PRE_KERNEL_2`: Same as `PRE_KERNEL_1`.
38  * - `POST_KERNEL`: Executed after Kernel is alive. From this point on, Kernel
39  *   primitives can be used.
40  * - `APPLICATION`: Executed just before application code (`main`).
41  * - `SMP`: Only available if @kconfig{CONFIG_SMP} is enabled, specific for
42  *   SMP.
43  *
44  * Initialization priority can take a value in the range of 0 to 99.
45  *
46  * @note The same infrastructure is used by devices.
47  * @{
48  */
49 
50 struct device;
51 
52 /**
53  * @brief Initialization function for init entries.
54  *
55  * Init entries support both the system initialization and the device
56  * APIs. Each API has its own init function signature; hence, we have a
57  * union to cover both.
58  */
59 union init_function {
60 	/**
61 	 * System initialization function.
62 	 *
63 	 * @retval 0 On success
64 	 * @retval -errno If init fails.
65 	 */
66 	int (*sys)(void);
67 	/**
68 	 * Device initialization function.
69 	 *
70 	 * @param dev Device instance.
71 	 *
72 	 * @retval 0 On success
73 	 * @retval -errno If device initialization fails.
74 	 */
75 	int (*dev)(const struct device *dev);
76 };
77 
78 /**
79  * @brief Structure to store initialization entry information.
80  *
81  * @internal
82  * Init entries need to be defined following these rules:
83  *
84  * - Their name must be set using Z_INIT_ENTRY_NAME().
85  * - They must be placed in a special init section, given by
86  *   Z_INIT_ENTRY_SECTION().
87  * - They must be aligned, e.g. using Z_DECL_ALIGN().
88  *
89  * See SYS_INIT_NAMED() for an example.
90  * @endinternal
91  */
92 struct init_entry {
93 	/** Initialization function. */
94 	union init_function init_fn;
95 	/**
96 	 * If the init entry belongs to a device, this fields stores a
97 	 * reference to it, otherwise it is set to NULL.
98 	 */
99 	const struct device *dev;
100 };
101 
102 /** @cond INTERNAL_HIDDEN */
103 
104 /* Helper definitions to evaluate level equality */
105 #define Z_INIT_EARLY_EARLY		 1
106 #define Z_INIT_PRE_KERNEL_1_PRE_KERNEL_1 1
107 #define Z_INIT_PRE_KERNEL_2_PRE_KERNEL_2 1
108 #define Z_INIT_POST_KERNEL_POST_KERNEL	 1
109 #define Z_INIT_APPLICATION_APPLICATION	 1
110 #define Z_INIT_SMP_SMP			 1
111 
112 /* Init level ordinals */
113 #define Z_INIT_ORD_EARLY	0
114 #define Z_INIT_ORD_PRE_KERNEL_1 1
115 #define Z_INIT_ORD_PRE_KERNEL_2 2
116 #define Z_INIT_ORD_POST_KERNEL	3
117 #define Z_INIT_ORD_APPLICATION	4
118 #define Z_INIT_ORD_SMP		5
119 
120 /**
121  * @brief Obtain init entry name.
122  *
123  * @param init_id Init entry unique identifier.
124  */
125 #define Z_INIT_ENTRY_NAME(init_id) _CONCAT(__init_, init_id)
126 
127 /**
128  * @brief Init entry section.
129  *
130  * Each init entry is placed in a section with a name crafted so that it allows
131  * linker scripts to sort them according to the specified
132  * level/priority/sub-priority.
133  */
134 #define Z_INIT_ENTRY_SECTION(level, prio, sub_prio)                           \
135 	__attribute__((__section__(                                           \
136 		".z_init_" #level STRINGIFY(prio)"_" STRINGIFY(sub_prio)"_")))
137 
138 /** @endcond */
139 
140 /**
141  * @brief Obtain the ordinal for an init level.
142  *
143  * @param level Init level (EARLY, PRE_KERNEL_1, PRE_KERNEL_2, POST_KERNEL,
144  * APPLICATION, SMP).
145  *
146  * @return Init level ordinal.
147  */
148 #define INIT_LEVEL_ORD(level)                                                  \
149 	COND_CODE_1(Z_INIT_EARLY_##level, (Z_INIT_ORD_EARLY),                  \
150 	(COND_CODE_1(Z_INIT_PRE_KERNEL_1_##level, (Z_INIT_ORD_PRE_KERNEL_1),   \
151 	(COND_CODE_1(Z_INIT_PRE_KERNEL_2_##level, (Z_INIT_ORD_PRE_KERNEL_2),   \
152 	(COND_CODE_1(Z_INIT_POST_KERNEL_##level, (Z_INIT_ORD_POST_KERNEL),     \
153 	(COND_CODE_1(Z_INIT_APPLICATION_##level, (Z_INIT_ORD_APPLICATION),     \
154 	(COND_CODE_1(Z_INIT_SMP_##level, (Z_INIT_ORD_SMP),                     \
155 	(ZERO_OR_COMPILE_ERROR(0)))))))))))))
156 
157 /**
158  * @brief Register an initialization function.
159  *
160  * The function will be called during system initialization according to the
161  * given level and priority.
162  *
163  * @param init_fn Initialization function.
164  * @param level Initialization level. Allowed tokens: `EARLY`, `PRE_KERNEL_1`,
165  * `PRE_KERNEL_2`, `POST_KERNEL`, `APPLICATION` and `SMP` if
166  * @kconfig{CONFIG_SMP} is enabled.
167  * @param prio Initialization priority within @p _level. Note that it must be a
168  * decimal integer literal without leading zeroes or sign (e.g. `32`), or an
169  * equivalent symbolic name (e.g. `#define MY_INIT_PRIO 32`); symbolic
170  * expressions are **not** permitted (e.g.
171  * `CONFIG_KERNEL_INIT_PRIORITY_DEFAULT + 5`).
172  */
173 #define SYS_INIT(init_fn, level, prio)                                         \
174 	SYS_INIT_NAMED(init_fn, init_fn, level, prio)
175 
176 /**
177  * @brief Register an initialization function (named).
178  *
179  * @note This macro can be used for cases where the multiple init calls use the
180  * same init function.
181  *
182  * @param name Unique name for SYS_INIT entry.
183  * @param init_fn_ See SYS_INIT().
184  * @param level See SYS_INIT().
185  * @param prio See SYS_INIT().
186  *
187  * @see SYS_INIT()
188  */
189 #define SYS_INIT_NAMED(name, init_fn_, level, prio)                            \
190 	static const Z_DECL_ALIGN(struct init_entry)                           \
191 		Z_INIT_ENTRY_SECTION(level, prio, 0) __used __noasan           \
192 		Z_INIT_ENTRY_NAME(name) = {                                    \
193 			.init_fn = {.sys = (init_fn_)},                        \
194 			.dev = NULL,                                           \
195 	}
196 
197 /** @} */
198 
199 #ifdef __cplusplus
200 }
201 #endif
202 
203 #endif /* ZEPHYR_INCLUDE_INIT_H_ */
204