device.c 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197
  1. /*
  2. * Copyright (c) 2015-2016 Intel Corporation.
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #include <string.h>
  7. #include <device.h>
  8. #include <sys/atomic.h>
  9. #include <syscall_handler.h>
  10. extern const struct init_entry __init_start[];
  11. extern const struct init_entry __init_PRE_KERNEL_1_start[];
  12. extern const struct init_entry __init_PRE_KERNEL_2_start[];
  13. extern const struct init_entry __init_POST_KERNEL_start[];
  14. extern const struct init_entry __init_APPLICATION_start[];
  15. extern const struct init_entry __init_end[];
  16. #ifdef CONFIG_SMP
  17. extern const struct init_entry __init_SMP_start[];
  18. #endif
  19. extern const struct device __device_start[];
  20. extern const struct device __device_end[];
  21. extern uint32_t __device_init_status_start[];
  22. /**
  23. * @brief Initialize state for all static devices.
  24. *
  25. * The state object is always zero-initialized, but this may not be
  26. * sufficient.
  27. */
  28. void z_device_state_init(void)
  29. {
  30. const struct device *dev = __device_start;
  31. while (dev < __device_end) {
  32. z_object_init(dev);
  33. ++dev;
  34. }
  35. }
  36. /**
  37. * @brief Execute all the init entry initialization functions at a given level
  38. *
  39. * @details Invokes the initialization routine for each init entry object
  40. * created by the INIT_ENTRY_DEFINE() macro using the specified level.
  41. * The linker script places the init entry objects in memory in the order
  42. * they need to be invoked, with symbols indicating where one level leaves
  43. * off and the next one begins.
  44. *
  45. * @param level init level to run.
  46. */
  47. void z_sys_init_run_level(int32_t level)
  48. {
  49. static const struct init_entry *levels[] = {
  50. __init_PRE_KERNEL_1_start,
  51. __init_PRE_KERNEL_2_start,
  52. __init_POST_KERNEL_start,
  53. __init_APPLICATION_start,
  54. #ifdef CONFIG_SMP
  55. __init_SMP_start,
  56. #endif
  57. /* End marker */
  58. __init_end,
  59. };
  60. const struct init_entry *entry;
  61. for (entry = levels[level]; entry < levels[level+1]; entry++) {
  62. const struct device *dev = entry->dev;
  63. #ifdef CONFIG_DEVICE_DEBUG
  64. if(dev){
  65. printk("z_sys_init dev(%s) func:%p\n", dev->name, entry->init);
  66. }else{
  67. printk("z_sys_init entry(%p) func:%p\n", entry, entry->init);
  68. }
  69. #endif
  70. int rc = entry->init(dev);
  71. if (dev != NULL) {
  72. /* Mark device initialized. If initialization
  73. * failed, record the error condition.
  74. */
  75. if (rc != 0) {
  76. if (rc < 0) {
  77. rc = -rc;
  78. }
  79. if (rc > UINT8_MAX) {
  80. rc = UINT8_MAX;
  81. }
  82. dev->state->init_res = rc;
  83. }
  84. dev->state->initialized = true;
  85. }
  86. }
  87. }
  88. const struct device *z_impl_device_get_binding(const char *name)
  89. {
  90. const struct device *dev;
  91. /* A null string identifies no device. So does an empty
  92. * string.
  93. */
  94. if ((name == NULL) || (name[0] == '\0')) {
  95. return NULL;
  96. }
  97. /* Split the search into two loops: in the common scenario, where
  98. * device names are stored in ROM (and are referenced by the user
  99. * with CONFIG_* macros), only cheap pointer comparisons will be
  100. * performed. Reserve string comparisons for a fallback.
  101. */
  102. for (dev = __device_start; dev != __device_end; dev++) {
  103. if (z_device_ready(dev) && (dev->name == name)) {
  104. return dev;
  105. }
  106. }
  107. for (dev = __device_start; dev != __device_end; dev++) {
  108. if (z_device_ready(dev) && (strcmp(name, dev->name) == 0)) {
  109. return dev;
  110. }
  111. }
  112. #ifdef CONFIG_DEVICE_DEBUG
  113. printk("!!!ERR: dev %s not found\n", name);
  114. #endif
  115. return NULL;
  116. }
  117. #ifdef CONFIG_USERSPACE
  118. static inline const struct device *z_vrfy_device_get_binding(const char *name)
  119. {
  120. char name_copy[Z_DEVICE_MAX_NAME_LEN];
  121. if (z_user_string_copy(name_copy, (char *)name, sizeof(name_copy))
  122. != 0) {
  123. return NULL;
  124. }
  125. return z_impl_device_get_binding(name_copy);
  126. }
  127. #include <syscalls/device_get_binding_mrsh.c>
  128. static inline int z_vrfy_device_usable_check(const struct device *dev)
  129. {
  130. Z_OOPS(Z_SYSCALL_OBJ_INIT(dev, K_OBJ_ANY));
  131. return z_impl_device_usable_check(dev);
  132. }
  133. #include <syscalls/device_usable_check_mrsh.c>
  134. #endif /* CONFIG_USERSPACE */
  135. size_t z_device_get_all_static(struct device const **devices)
  136. {
  137. *devices = __device_start;
  138. return __device_end - __device_start;
  139. }
  140. bool z_device_ready(const struct device *dev)
  141. {
  142. /*
  143. * if an invalid device pointer is passed as argument, this call
  144. * reports the `device` as not ready for usage.
  145. */
  146. if (dev == NULL) {
  147. return false;
  148. }
  149. return dev->state->initialized && (dev->state->init_res == 0U);
  150. }
  151. int device_required_foreach(const struct device *dev,
  152. device_visitor_callback_t visitor_cb,
  153. void *context)
  154. {
  155. size_t handle_count = 0;
  156. const device_handle_t *handles =
  157. device_required_handles_get(dev, &handle_count);
  158. /* Iterate over fixed devices */
  159. for (size_t i = 0; i < handle_count; ++i) {
  160. device_handle_t dh = handles[i];
  161. const struct device *rdev = device_from_handle(dh);
  162. int rc = visitor_cb(rdev, context);
  163. if (rc < 0) {
  164. return rc;
  165. }
  166. }
  167. return handle_count;
  168. }