init.h 4.8 KB

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