init.h 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  1. /*
  2. * Copyright (c) 2015 Intel Corporation.
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #ifndef ZEPHYR_INCLUDE_INIT_H_
  7. #define ZEPHYR_INCLUDE_INIT_H_
  8. #include <toolchain.h>
  9. #include <kernel.h>
  10. #include <zephyr/types.h>
  11. #ifdef __cplusplus
  12. extern "C" {
  13. #endif
  14. /*
  15. * System initialization levels. The PRE_KERNEL_1 and PRE_KERNEL_2 levels are
  16. * executed in the kernel's initialization context, which uses the interrupt
  17. * stack. The remaining levels are executed in the kernel's main task.
  18. */
  19. #define _SYS_INIT_LEVEL_PRE_KERNEL_1 0
  20. #define _SYS_INIT_LEVEL_PRE_KERNEL_2 1
  21. #define _SYS_INIT_LEVEL_POST_KERNEL 2
  22. #define _SYS_INIT_LEVEL_APPLICATION 3
  23. #ifdef CONFIG_SMP
  24. #define _SYS_INIT_LEVEL_SMP 4
  25. #define _SYS_INIT_LEVEL_POWER_MAX 5
  26. #else
  27. #define _SYS_INIT_LEVEL_POWER_MAX 4
  28. #endif
  29. struct device;
  30. /**
  31. * @brief Static init entry structure for each device driver or services
  32. *
  33. * @param init init function for the init entry which will take the dev
  34. * attribute as parameter. See below.
  35. * @param dev pointer to a device driver instance structure. Can be NULL
  36. * if the init entry is not used for a device driver but a service.
  37. */
  38. struct init_entry {
  39. /** Initialization function for the init entry which will take
  40. * the dev attribute as parameter. See below.
  41. */
  42. int (*init)(const struct device *dev);
  43. /** Pointer to a device driver instance structure. Can be NULL
  44. * if the init entry is not used for a device driver but a services.
  45. */
  46. const struct device *dev;
  47. };
  48. void z_sys_init_run_level(int32_t level);
  49. /* A counter is used to avoid issues when two or more system devices
  50. * are declared in the same C file with the same init function.
  51. */
  52. #define Z_SYS_NAME(_init_fn) _CONCAT(_CONCAT(sys_init_, _init_fn), __COUNTER__)
  53. /**
  54. * @def Z_INIT_ENTRY_DEFINE
  55. *
  56. * @brief Create an init entry object and set it up for boot time initialization
  57. *
  58. * @details This macro defines an init entry object that will be automatically
  59. * configured by the kernel during system initialization. Note that
  60. * init entries will not be accessible from user mode. Also this macro should
  61. * not be used directly, use relevant macro such as SYS_INIT() or
  62. * DEVICE_DEFINE() instead.
  63. *
  64. * @param _entry_name Init entry name. It is the name this instance exposes to
  65. * the system.
  66. *
  67. * @param _init_fn Address to the init function of the entry.
  68. *
  69. * @param _device A device driver instance pointer or NULL
  70. *
  71. * @param _level The initialization level at which configuration
  72. * occurs. See SYS_INIT().
  73. *
  74. * @param prio The initialization priority of the object, relative to
  75. * other objects of the same initialization level. See SYS_INIT().
  76. */
  77. #define Z_INIT_ENTRY_DEFINE(_entry_name, _init_fn, _device, _level, _prio) \
  78. static const Z_DECL_ALIGN(struct init_entry) \
  79. _CONCAT(__init_, _entry_name) __used \
  80. __attribute__((__section__(".z_init_" #_level STRINGIFY(_prio)"_"))) = { \
  81. .init = (_init_fn), \
  82. .dev = (_device), \
  83. }
  84. /**
  85. * @def SYS_INIT
  86. *
  87. * @ingroup device_model
  88. *
  89. * @brief Run an initialization function at boot at specified priority
  90. *
  91. * @details This macro lets you run a function at system boot.
  92. *
  93. * @param _init_fn Pointer to the boot function to run
  94. *
  95. * @param _level The initialization level at which configuration occurs.
  96. * Must be one of the following symbols, which are listed in the order
  97. * they are performed by the kernel:
  98. * \n
  99. * \li PRE_KERNEL_1: Used for initialization objects that have no dependencies,
  100. * such as those that rely solely on hardware present in the processor/SOC.
  101. * These objects cannot use any kernel services during configuration, since
  102. * they are not yet available.
  103. * \n
  104. * \li PRE_KERNEL_2: Used for initialization objects that rely on objects
  105. * initialized as part of the PRE_KERNEL_1 level. These objects cannot use any
  106. * kernel services during configuration, since they are not yet available.
  107. * \n
  108. * \li POST_KERNEL: Used for initialization objects that require kernel services
  109. * during configuration.
  110. * \n
  111. * \li POST_KERNEL_SMP: Used for initialization objects that require kernel
  112. * services during configuration after SMP initialization.
  113. * \n
  114. * \li APPLICATION: Used for application components (i.e. non-kernel components)
  115. * that need automatic configuration. These objects can use all services
  116. * provided by the kernel during configuration.
  117. *
  118. * @param _prio The initialization priority of the object, relative to
  119. * other objects of the same initialization level. Specified as an integer
  120. * value in the range 0 to 99; lower values indicate earlier initialization.
  121. * Must be a decimal integer literal without leading zeroes or sign (e.g. 32),
  122. * or an equivalent symbolic name (e.g. \#define MY_INIT_PRIO 32); symbolic
  123. * expressions are *not* permitted
  124. * (e.g. CONFIG_KERNEL_INIT_PRIORITY_DEFAULT + 5).
  125. */
  126. #define SYS_INIT(_init_fn, _level, _prio) \
  127. Z_INIT_ENTRY_DEFINE(Z_SYS_NAME(_init_fn), _init_fn, NULL, _level, _prio)
  128. #ifdef __cplusplus
  129. }
  130. #endif
  131. #endif /* ZEPHYR_INCLUDE_INIT_H_ */