device.h 29 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885
  1. /*
  2. * Copyright (c) 2015 Intel Corporation.
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #ifndef ZEPHYR_INCLUDE_DEVICE_H_
  7. #define ZEPHYR_INCLUDE_DEVICE_H_
  8. /**
  9. * @brief Device Driver APIs
  10. * @defgroup io_interfaces Device Driver APIs
  11. * @{
  12. * @}
  13. */
  14. /**
  15. * @brief Miscellaneous Drivers APIs
  16. * @defgroup misc_interfaces Miscellaneous Drivers APIs
  17. * @ingroup io_interfaces
  18. * @{
  19. * @}
  20. */
  21. /**
  22. * @brief Device Model APIs
  23. * @defgroup device_model Device Model APIs
  24. * @{
  25. */
  26. #include <init.h>
  27. #include <linker/sections.h>
  28. #include <pm/device.h>
  29. #include <sys/device_mmio.h>
  30. #include <sys/util.h>
  31. #ifdef __cplusplus
  32. extern "C" {
  33. #endif
  34. /** @brief Type used to represent devices and functions.
  35. *
  36. * The extreme values and zero have special significance. Negative
  37. * values identify functionality that does not correspond to a Zephyr
  38. * device, such as the system clock or a SYS_INIT() function.
  39. */
  40. typedef int16_t device_handle_t;
  41. /** @brief Flag value used in lists of device handles to separate
  42. * distinct groups.
  43. *
  44. * This is the minimum value for the device_handle_t type.
  45. */
  46. #define DEVICE_HANDLE_SEP INT16_MIN
  47. /** @brief Flag value used in lists of device handles to indicate the
  48. * end of the list.
  49. *
  50. * This is the maximum value for the device_handle_t type.
  51. */
  52. #define DEVICE_HANDLE_ENDS INT16_MAX
  53. /** @brief Flag value used to identify an unknown device. */
  54. #define DEVICE_HANDLE_NULL 0
  55. #define Z_DEVICE_MAX_NAME_LEN 48
  56. /**
  57. * @def DEVICE_NAME_GET
  58. *
  59. * @brief Expands to the full name of a global device object
  60. *
  61. * @details Return the full name of a device object symbol created by
  62. * DEVICE_DEFINE(), using the dev_name provided to DEVICE_DEFINE().
  63. *
  64. * It is meant to be used for declaring extern symbols pointing on device
  65. * objects before using the DEVICE_GET macro to get the device object.
  66. *
  67. * @param name The same as dev_name provided to DEVICE_DEFINE()
  68. *
  69. * @return The expanded name of the device object created by DEVICE_DEFINE()
  70. */
  71. #define DEVICE_NAME_GET(name) _CONCAT(__device_, name)
  72. /**
  73. * @def SYS_DEVICE_DEFINE
  74. *
  75. * @brief Run an initialization function at boot at specified priority,
  76. * and define device PM control function.
  77. *
  78. * @details Invokes DEVICE_DEFINE() with no power management support
  79. * (@p pm_control_fn), no API (@p api_ptr), and a device name derived from
  80. * the @p init_fn name (@p dev_name).
  81. */
  82. #define SYS_DEVICE_DEFINE(drv_name, init_fn, pm_control_fn, level, prio) \
  83. DEVICE_DEFINE(Z_SYS_NAME(init_fn), drv_name, init_fn, \
  84. pm_control_fn, \
  85. NULL, NULL, level, prio, NULL)
  86. /**
  87. * @def DEVICE_DEFINE
  88. *
  89. * @brief Create device object and set it up for boot time initialization,
  90. * with the option to device_pm_control. In case of Device Idle Power
  91. * Management is enabled, make sure the device is in suspended state after
  92. * initialization.
  93. *
  94. * @details This macro defines a device object that is automatically
  95. * configured by the kernel during system initialization. Note that
  96. * devices set up with this macro will not be accessible from user mode
  97. * since the API is not specified;
  98. *
  99. * @param dev_name Device name. This must be less than Z_DEVICE_MAX_NAME_LEN
  100. * characters (including terminating NUL) in order to be looked up from user
  101. * mode with device_get_binding().
  102. *
  103. * @param drv_name The name this instance of the driver exposes to
  104. * the system.
  105. *
  106. * @param init_fn Address to the init function of the driver.
  107. *
  108. * @param pm_control_fn Pointer to pm_control function.
  109. * Can be NULL if not implemented.
  110. *
  111. * @param data_ptr Pointer to the device's private data.
  112. *
  113. * @param cfg_ptr The address to the structure containing the
  114. * configuration information for this instance of the driver.
  115. *
  116. * @param level The initialization level. See SYS_INIT() for
  117. * details.
  118. *
  119. * @param prio Priority within the selected initialization level. See
  120. * SYS_INIT() for details.
  121. *
  122. * @param api_ptr Provides an initial pointer to the API function struct
  123. * used by the driver. Can be NULL.
  124. */
  125. #define DEVICE_DEFINE(dev_name, drv_name, init_fn, pm_control_fn, \
  126. data_ptr, cfg_ptr, level, prio, api_ptr) \
  127. Z_DEVICE_DEFINE(DT_INVALID_NODE, dev_name, drv_name, init_fn, \
  128. pm_control_fn, \
  129. data_ptr, cfg_ptr, level, prio, api_ptr)
  130. /**
  131. * @def DEVICE_DT_NAME
  132. *
  133. * @brief Return a string name for a devicetree node.
  134. *
  135. * @details This macro returns a string literal usable as a device name
  136. * from a devicetree node. If the node has a "label" property, its value is
  137. * returned. Otherwise, the node's full "node-name@@unit-address" name is
  138. * returned.
  139. *
  140. * @param node_id The devicetree node identifier.
  141. */
  142. #define DEVICE_DT_NAME(node_id) \
  143. DT_PROP_OR(node_id, label, DT_NODE_FULL_NAME(node_id))
  144. /**
  145. * @def DEVICE_DT_DEFINE
  146. *
  147. * @brief Like DEVICE_DEFINE but taking metadata from a devicetree node.
  148. *
  149. * @details This macro defines a device object that is automatically
  150. * configured by the kernel during system initialization. The device
  151. * object name is derived from the node identifier (encoding the
  152. * devicetree path to the node), and the driver name is from the @p
  153. * label property of the devicetree node.
  154. *
  155. * The device is declared with extern visibility, so device objects
  156. * defined through this API can be obtained directly through
  157. * DEVICE_DT_GET() using @p node_id. Before using the pointer the
  158. * referenced object should be checked using device_is_ready().
  159. *
  160. * @param node_id The devicetree node identifier.
  161. *
  162. * @param init_fn Address to the init function of the driver.
  163. *
  164. * @param pm_control_fn Pointer to pm_control function.
  165. * Can be NULL if not implemented.
  166. *
  167. * @param data_ptr Pointer to the device's private data.
  168. *
  169. * @param cfg_ptr The address to the structure containing the
  170. * configuration information for this instance of the driver.
  171. *
  172. * @param level The initialization level. See SYS_INIT() for
  173. * details.
  174. *
  175. * @param prio Priority within the selected initialization level. See
  176. * SYS_INIT() for details.
  177. *
  178. * @param api_ptr Provides an initial pointer to the API function struct
  179. * used by the driver. Can be NULL.
  180. */
  181. #define DEVICE_DT_DEFINE(node_id, init_fn, pm_control_fn, \
  182. data_ptr, cfg_ptr, level, prio, \
  183. api_ptr, ...) \
  184. Z_DEVICE_DEFINE(node_id, Z_DEVICE_DT_DEV_NAME(node_id), \
  185. DEVICE_DT_NAME(node_id), init_fn, \
  186. pm_control_fn, \
  187. data_ptr, cfg_ptr, level, prio, \
  188. api_ptr, __VA_ARGS__)
  189. /**
  190. * @def DEVICE_DT_INST_DEFINE
  191. *
  192. * @brief Like DEVICE_DT_DEFINE for an instance of a DT_DRV_COMPAT compatible
  193. *
  194. * @param inst instance number. This is replaced by
  195. * <tt>DT_DRV_COMPAT(inst)</tt> in the call to DEVICE_DT_DEFINE.
  196. *
  197. * @param ... other parameters as expected by DEVICE_DT_DEFINE.
  198. */
  199. #define DEVICE_DT_INST_DEFINE(inst, ...) \
  200. DEVICE_DT_DEFINE(DT_DRV_INST(inst), __VA_ARGS__)
  201. /**
  202. * @def DEVICE_DT_NAME_GET
  203. *
  204. * @brief The name of the struct device object for @p node_id
  205. *
  206. * @details Return the full name of a device object symbol created by
  207. * DEVICE_DT_DEFINE(), using the dev_name derived from @p node_id
  208. *
  209. * It is meant to be used for declaring extern symbols pointing on device
  210. * objects before using the DEVICE_DT_GET macro to get the device object.
  211. *
  212. * @param node_id The same as node_id provided to DEVICE_DT_DEFINE()
  213. *
  214. * @return The expanded name of the device object created by
  215. * DEVICE_DT_DEFINE()
  216. */
  217. #define DEVICE_DT_NAME_GET(node_id) DEVICE_NAME_GET(Z_DEVICE_DT_DEV_NAME(node_id))
  218. /**
  219. * @def DEVICE_DT_GET
  220. *
  221. * @brief Obtain a pointer to a device object by @p node_id
  222. *
  223. * @details Return the address of a device object created by
  224. * DEVICE_DT_INIT(), using the dev_name derived from @p node_id
  225. *
  226. * @param node_id The same as node_id provided to DEVICE_DT_DEFINE()
  227. *
  228. * @return A pointer to the device object created by DEVICE_DT_DEFINE()
  229. */
  230. #define DEVICE_DT_GET(node_id) (&DEVICE_DT_NAME_GET(node_id))
  231. /** @def DEVICE_DT_INST_GET
  232. *
  233. * @brief Obtain a pointer to a device object for an instance of a
  234. * DT_DRV_COMPAT compatible
  235. *
  236. * @param inst instance number
  237. */
  238. #define DEVICE_DT_INST_GET(inst) DEVICE_DT_GET(DT_DRV_INST(inst))
  239. /**
  240. * @def DEVICE_DT_GET_ANY
  241. *
  242. * @brief Obtain a pointer to a device object by devicetree compatible
  243. *
  244. * If any enabled devicetree node has the given compatible and a
  245. * device object was created from it, this returns that device.
  246. *
  247. * If there no such devices, this returns NULL.
  248. *
  249. * If there are multiple, this returns an arbitrary one.
  250. *
  251. * If this returns non-NULL, the device must be checked for readiness
  252. * before use, e.g. with device_is_ready().
  253. *
  254. * @param compat lowercase-and-underscores devicetree compatible
  255. * @return a pointer to a device, or NULL
  256. */
  257. #define DEVICE_DT_GET_ANY(compat) \
  258. COND_CODE_1(DT_HAS_COMPAT_STATUS_OKAY(compat), \
  259. (DEVICE_DT_GET(DT_COMPAT_GET_ANY_STATUS_OKAY(compat))), \
  260. (NULL))
  261. /**
  262. * @def DEVICE_DT_GET_ONE
  263. *
  264. * @brief Obtain a pointer to a device object by devicetree compatible
  265. *
  266. * If any enabled devicetree node has the given compatible and a
  267. * device object was created from it, this returns that device.
  268. *
  269. * If there no such devices, this throws a compilation error.
  270. *
  271. * If there are multiple, this returns an arbitrary one.
  272. *
  273. * If this returns non-NULL, the device must be checked for readiness
  274. * before use, e.g. with device_is_ready().
  275. *
  276. * @param compat lowercase-and-underscores devicetree compatible
  277. * @return a pointer to a device
  278. */
  279. #define DEVICE_DT_GET_ONE(compat) \
  280. COND_CODE_1(DT_HAS_COMPAT_STATUS_OKAY(compat), \
  281. (DEVICE_DT_GET(DT_COMPAT_GET_ANY_STATUS_OKAY(compat))), \
  282. (ZERO_OR_COMPILE_ERROR(0)))
  283. /**
  284. * @def DEVICE_GET
  285. *
  286. * @brief Obtain a pointer to a device object by name
  287. *
  288. * @details Return the address of a device object created by
  289. * DEVICE_DEFINE(), using the dev_name provided to DEVICE_DEFINE().
  290. *
  291. * @param name The same as dev_name provided to DEVICE_DEFINE()
  292. *
  293. * @return A pointer to the device object created by DEVICE_DEFINE()
  294. */
  295. #define DEVICE_GET(name) (&DEVICE_NAME_GET(name))
  296. /** @def DEVICE_DECLARE
  297. *
  298. * @brief Declare a static device object
  299. *
  300. * This macro can be used at the top-level to declare a device, such
  301. * that DEVICE_GET() may be used before the full declaration in
  302. * DEVICE_DEFINE().
  303. *
  304. * This is often useful when configuring interrupts statically in a
  305. * device's init or per-instance config function, as the init function
  306. * itself is required by DEVICE_DEFINE() and use of DEVICE_GET()
  307. * inside it creates a circular dependency.
  308. *
  309. * @param name Device name
  310. */
  311. #define DEVICE_DECLARE(name) static const struct device DEVICE_NAME_GET(name)
  312. typedef void (*device_pm_cb)(const struct device *dev,
  313. int status, void *context, void *arg);
  314. /**
  315. * @brief Runtime device dynamic structure (in RAM) per driver instance
  316. *
  317. * Fields in this are expected to be default-initialized to zero. The
  318. * kernel driver infrastructure and driver access functions are
  319. * responsible for ensuring that any non-zero initialization is done
  320. * before they are accessed.
  321. */
  322. struct device_state {
  323. /** Non-negative result of initializing the device.
  324. *
  325. * The absolute value returned when the device initialization
  326. * function was invoked, or `UINT8_MAX` if the value exceeds
  327. * an 8-bit integer. If initialized is also set, a zero value
  328. * indicates initialization succeeded.
  329. */
  330. unsigned int init_res : 8;
  331. /** Indicates the device initialization function has been
  332. * invoked.
  333. */
  334. bool initialized : 1;
  335. #ifdef CONFIG_PM_DEVICE
  336. /* Power management data */
  337. struct pm_device pm;
  338. #endif /* CONFIG_PM_DEVICE */
  339. };
  340. /**
  341. * @brief Runtime device structure (in ROM) per driver instance
  342. */
  343. struct device {
  344. /** Name of the device instance */
  345. const char *name;
  346. /** Address of device instance config information */
  347. const void *config;
  348. /** Address of the API structure exposed by the device instance */
  349. const void *api;
  350. /** Address of the common device state */
  351. struct device_state * const state;
  352. /** Address of the device instance private data */
  353. void * const data;
  354. /** optional pointer to handles associated with the device.
  355. *
  356. * This encodes a sequence of sets of device handles that have
  357. * some relationship to this node. The individual sets are
  358. * extracted with dedicated API, such as
  359. * device_required_handles_get().
  360. */
  361. const device_handle_t *const handles;
  362. #ifdef CONFIG_PM_DEVICE
  363. /** Power Management function */
  364. pm_device_control_callback_t pm_control;
  365. /** Pointer to device instance power management data */
  366. struct pm_device * const pm;
  367. #endif
  368. };
  369. /**
  370. * @brief Get the handle for a given device
  371. *
  372. * @param dev the device for which a handle is desired.
  373. *
  374. * @return the handle for the device, or DEVICE_HANDLE_NULL if the
  375. * device does not have an associated handle.
  376. */
  377. static inline device_handle_t
  378. device_handle_get(const struct device *dev)
  379. {
  380. device_handle_t ret = DEVICE_HANDLE_NULL;
  381. extern const struct device __device_start[];
  382. /* TODO: If/when devices can be constructed that are not part of the
  383. * fixed sequence we'll need another solution.
  384. */
  385. if (dev != NULL) {
  386. ret = 1 + (device_handle_t)(dev - __device_start);
  387. }
  388. return ret;
  389. }
  390. /**
  391. * @brief Get the device corresponding to a handle.
  392. *
  393. * @param dev_handle the device handle
  394. *
  395. * @return the device that has that handle, or a null pointer if @p
  396. * dev_handle does not identify a device.
  397. */
  398. static inline const struct device *
  399. device_from_handle(device_handle_t dev_handle)
  400. {
  401. extern const struct device __device_start[];
  402. extern const struct device __device_end[];
  403. const struct device *dev = NULL;
  404. size_t numdev = __device_end - __device_start;
  405. if ((dev_handle > 0) && ((size_t)dev_handle <= numdev)) {
  406. dev = &__device_start[dev_handle - 1];
  407. }
  408. return dev;
  409. }
  410. /**
  411. * @brief Prototype for functions used when iterating over a set of devices.
  412. *
  413. * Such a function may be used in API that identifies a set of devices and
  414. * provides a visitor API supporting caller-specific interaction with each
  415. * device in the set.
  416. *
  417. * The visit is said to succeed if the visitor returns a non-negative value.
  418. *
  419. * @param dev a device in the set being iterated
  420. *
  421. * @param context state used to support the visitor function
  422. *
  423. * @return A non-negative number to allow walking to continue, and a negative
  424. * error code to case the iteration to stop.
  425. */
  426. typedef int (*device_visitor_callback_t)(const struct device *dev, void *context);
  427. /**
  428. * @brief Get the set of handles for devicetree dependencies of this device.
  429. *
  430. * These are the device dependencies inferred from devicetree.
  431. *
  432. * @param dev the device for which dependencies are desired.
  433. *
  434. * @param count pointer to a place to store the number of devices provided at
  435. * the returned pointer. The value is not set if the call returns a null
  436. * pointer. The value may be set to zero.
  437. *
  438. * @return a pointer to a sequence of @p *count device handles, or a null
  439. * pointer if @p dh does not provide dependency information.
  440. */
  441. static inline const device_handle_t *
  442. device_required_handles_get(const struct device *dev,
  443. size_t *count)
  444. {
  445. const device_handle_t *rv = dev->handles;
  446. if (rv != NULL) {
  447. size_t i = 0;
  448. while ((rv[i] != DEVICE_HANDLE_ENDS)
  449. && (rv[i] != DEVICE_HANDLE_SEP)) {
  450. ++i;
  451. }
  452. *count = i;
  453. }
  454. return rv;
  455. }
  456. /**
  457. * @brief Visit every device that @p dev directly requires.
  458. *
  459. * Zephyr maintains information about which devices are directly required by
  460. * another device; for example an I2C-based sensor driver will require an I2C
  461. * controller for communication. Required devices can derive from
  462. * statically-defined devicetree relationships or dependencies registered
  463. * at runtime.
  464. *
  465. * This API supports operating on the set of required devices. Example uses
  466. * include making sure required devices are ready before the requiring device
  467. * is used, and releasing them when the requiring device is no longer needed.
  468. *
  469. * There is no guarantee on the order in which required devices are visited.
  470. *
  471. * If the @p visitor function returns a negative value iteration is halted,
  472. * and the returned value from the visitor is returned from this function.
  473. *
  474. * @note This API is not available to unprivileged threads.
  475. *
  476. * @param dev a device of interest. The devices that this device depends on
  477. * will be used as the set of devices to visit. This parameter must not be
  478. * null.
  479. *
  480. * @param visitor_cb the function that should be invoked on each device in the
  481. * dependency set. This parameter must not be null.
  482. *
  483. * @param context state that is passed through to the visitor function. This
  484. * parameter may be null if @p visitor tolerates a null @p context.
  485. *
  486. * @return The number of devices that were visited if all visits succeed, or
  487. * the negative value returned from the first visit that did not succeed.
  488. */
  489. /**
  490. * @}
  491. */
  492. /**
  493. * @brief Device Power Management APIs
  494. * @defgroup device_power_management_api Device Power Management APIs
  495. * @ingroup power_management_api
  496. * @{
  497. */
  498. #if 0
  499. /** @def DEVICE_PM_ACTIVE_STATE
  500. *
  501. * @brief device is in ACTIVE power state
  502. *
  503. * @details Normal operation of the device. All device context is retained.
  504. */
  505. #define DEVICE_PM_ACTIVE_STATE 1
  506. /** @def DEVICE_PM_LOW_POWER_STATE
  507. *
  508. * @brief device is in LOW power state
  509. *
  510. * @details Device context is preserved by the HW and need not be
  511. * restored by the driver.
  512. */
  513. #define DEVICE_PM_LOW_POWER_STATE 2
  514. /** @def DEVICE_PM_SUSPEND_STATE
  515. *
  516. * @brief device is in SUSPEND power state
  517. *
  518. * @details Most device context is lost by the hardware.
  519. * Device drivers must save and restore or reinitialize any context
  520. * lost by the hardware
  521. */
  522. #define DEVICE_PM_SUSPEND_STATE 3
  523. /** @def DEVICE_PM_FORCE_SUSPEND_STATE
  524. *
  525. * @brief device is in force SUSPEND power state
  526. *
  527. * @details Driver puts the device in suspended state after
  528. * completing the ongoing transactions and will not process any
  529. * queued work or will not take any new requests for processing.
  530. * Most device context is lost by the hardware. Device drivers must
  531. * save and restore or reinitialize any context lost by the hardware.
  532. */
  533. #define DEVICE_PM_FORCE_SUSPEND_STATE 4
  534. /** @def DEVICE_PM_OFF_STATE
  535. *
  536. * @brief device is in OFF power state
  537. *
  538. * @details - Power has been fully removed from the device.
  539. * The device context is lost when this state is entered, so the OS
  540. * software will reinitialize the device when powering it back on
  541. */
  542. #define DEVICE_PM_OFF_STATE 5
  543. /** @def DEVICE_PM_EARLY_SUSPEND_STATE
  544. *
  545. * @brief device is in early SUSPEND power state
  546. *
  547. */
  548. #define DEVICE_PM_EARLY_SUSPEND_STATE 6
  549. /** @def DEVICE_PM_EARLY_RESUME_STATE
  550. *
  551. * @brief device is in early resume power state
  552. *
  553. */
  554. #define DEVICE_PM_LATE_RESUME_STATE 7
  555. /* Constants defining support device power commands */
  556. #define DEVICE_PM_SET_POWER_STATE 1
  557. #define DEVICE_PM_GET_POWER_STATE 2
  558. /**
  559. * @brief Call the get power state function of a device
  560. *
  561. * This function lets the caller know the current device
  562. * power state at any time. This state will be one of the defined
  563. * power states allowed for the devices in that system
  564. *
  565. * @param dev pointer to device structure of the driver instance.
  566. * @param device_power_state Device power state to be filled by the device
  567. *
  568. * @retval 0 If successful.
  569. * @retval Errno Negative errno code if failure.
  570. */
  571. static inline int device_get_power_state(const struct device *dev,
  572. uint32_t *device_power_state)
  573. {
  574. return -ENOTSUP;
  575. }
  576. #endif /* CONFIG_PM_DEVICE */
  577. int device_required_foreach(const struct device *dev,
  578. device_visitor_callback_t visitor_cb,
  579. void *context);
  580. /**
  581. * @brief Retrieve the device structure for a driver by name
  582. *
  583. * @details Device objects are created via the DEVICE_DEFINE() macro and
  584. * placed in memory by the linker. If a driver needs to bind to another driver
  585. * it can use this function to retrieve the device structure of the lower level
  586. * driver by the name the driver exposes to the system.
  587. *
  588. * @param name device name to search for. A null pointer, or a pointer to an
  589. * empty string, will cause NULL to be returned.
  590. *
  591. * @return pointer to device structure; NULL if not found or cannot be used.
  592. */
  593. __syscall const struct device *device_get_binding(const char *name);
  594. /** @brief Get access to the static array of static devices.
  595. *
  596. * @param devices where to store the pointer to the array of
  597. * statically allocated devices. The array must not be mutated
  598. * through this pointer.
  599. *
  600. * @return the number of statically allocated devices.
  601. */
  602. size_t z_device_get_all_static(const struct device * *devices);
  603. /** @brief Determine whether a device has been successfully initialized.
  604. *
  605. * @param dev pointer to the device in question.
  606. *
  607. * @return true if and only if the device is available for use.
  608. */
  609. bool z_device_ready(const struct device *dev);
  610. /** @brief Determine whether a device is ready for use
  611. *
  612. * This is the implementation underlying `device_usable_check()`, without the
  613. * overhead of a syscall wrapper.
  614. *
  615. * @param dev pointer to the device in question.
  616. *
  617. * @return a non-positive integer as documented in device_usable_check().
  618. */
  619. static inline int z_device_usable_check(const struct device *dev)
  620. {
  621. return z_device_ready(dev) ? 0 : -ENODEV;
  622. }
  623. /** @brief Determine whether a device is ready for use.
  624. *
  625. * This checks whether a device can be used, returning 0 if it can, and
  626. * distinct error values that identify the reason if it cannot.
  627. *
  628. * @retval 0 if the device is usable.
  629. * @retval -ENODEV if the device has not been initialized, the device pointer
  630. * is NULL or the initialization failed.
  631. * @retval other negative error codes to indicate additional conditions that
  632. * make the device unusable.
  633. */
  634. __syscall int device_usable_check(const struct device *dev);
  635. static inline int z_impl_device_usable_check(const struct device *dev)
  636. {
  637. return z_device_usable_check(dev);
  638. }
  639. /** @brief Verify that a device is ready for use.
  640. *
  641. * Indicates whether the provided device pointer is for a device known to be
  642. * in a state where it can be used with its standard API.
  643. *
  644. * This can be used with device pointers captured from DEVICE_DT_GET(), which
  645. * does not include the readiness checks of device_get_binding(). At minimum
  646. * this means that the device has been successfully initialized, but it may
  647. * take on further conditions (e.g. is not powered down).
  648. *
  649. * @param dev pointer to the device in question.
  650. *
  651. * @retval true if the device is ready for use.
  652. * @retval false if the device is not ready for use or if a NULL device pointer
  653. * is passed as argument.
  654. */
  655. static inline bool device_is_ready(const struct device *dev)
  656. {
  657. return device_usable_check(dev) == 0;
  658. }
  659. /**
  660. * @}
  661. */
  662. /* Node paths can exceed the maximum size supported by device_get_binding() in user mode,
  663. * so synthesize a unique dev_name from the devicetree node.
  664. *
  665. * The ordinal used in this name can be mapped to the path by
  666. * examining zephyr/include/generated/device_extern.h header. If the
  667. * format of this conversion changes, gen_defines should be updated to
  668. * match it.
  669. */
  670. #define Z_DEVICE_DT_DEV_NAME(node_id) _CONCAT(dts_ord_, DT_DEP_ORD(node_id))
  671. /* Synthesize a unique name for the device state associated with
  672. * dev_name.
  673. */
  674. #define Z_DEVICE_STATE_NAME(dev_name) _CONCAT(__devstate_, dev_name)
  675. /** Synthesize the name of the object that holds device ordinal and
  676. * dependency data. If the object doesn't come from a devicetree
  677. * node, use dev_name.
  678. */
  679. #define Z_DEVICE_HANDLE_NAME(node_id, dev_name) \
  680. _CONCAT(__devicehdl_, \
  681. COND_CODE_1(DT_NODE_EXISTS(node_id), \
  682. (node_id), \
  683. (dev_name)))
  684. #define Z_DEVICE_EXTRA_HANDLES(...) \
  685. FOR_EACH_NONEMPTY_TERM(IDENTITY, (,), __VA_ARGS__)
  686. #ifdef CONFIG_PM_DEVICE
  687. #define Z_DEVICE_STATE_PM_INIT(node_id, dev_name) \
  688. .pm = Z_PM_DEVICE_INIT(Z_DEVICE_STATE_NAME(dev_name).pm, node_id),
  689. #else
  690. #define Z_DEVICE_STATE_PM_INIT(node_id, dev_name)
  691. #endif
  692. /**
  693. * @brief Utility macro to define and initialize the device state.
  694. * @param node_id Devicetree node id of the device.
  695. * @param dev_name Device name.
  696. */
  697. #define Z_DEVICE_STATE_DEFINE(node_id, dev_name) \
  698. static struct device_state Z_DEVICE_STATE_NAME(dev_name) \
  699. __attribute__((__section__(".z_devstate"))) = { \
  700. Z_DEVICE_STATE_PM_INIT(node_id, dev_name) \
  701. };
  702. /* If device power management is enabled, this macro defines a pointer to a
  703. * device in the z_pm_device_slots region. When invoked for each device, this
  704. * will effectively result in a device pointer array with the same size of the
  705. * actual devices list. This is used internally by the device PM subsystem to
  706. * keep track of suspended devices during system power transitions.
  707. */
  708. #if CONFIG_PM_DEVICE
  709. #define Z_DEVICE_DEFINE_PM_SLOT(dev_name) \
  710. static const Z_DECL_ALIGN(struct device *) \
  711. _CONCAT(__pm_device_slot_, DEVICE_NAME_GET(dev_name)) __used \
  712. __attribute__((__section__(".z_pm_device_slots")));
  713. #else
  714. #define Z_DEVICE_DEFINE_PM_SLOT(dev_name)
  715. #endif
  716. /* Construct objects that are referenced from struct device. These
  717. * include power management and dependency handles.
  718. */
  719. #define Z_DEVICE_DEFINE_PRE(node_id, dev_name, ...) \
  720. Z_DEVICE_STATE_DEFINE(node_id, dev_name) \
  721. Z_DEVICE_DEFINE_PM_SLOT(dev_name)
  722. /* Helper macros needed for CONFIG_DEVICE_HANDLE_PADDING. These should
  723. * be deleted when that option is removed.
  724. *
  725. * This is implemented "by hand" -- rather than using a helper macro
  726. * like UTIL_LISTIFY() -- because we need to allow users to wrap
  727. * DEVICE_DT_DEFINE with UTIL_LISTIFY, like this:
  728. *
  729. * #define DEFINE_FOO_DEVICE(...) DEVICE_DT_DEFINE(...)
  730. * UTIL_LISTIFY(N, DEFINE_FOO_DEVICE)
  731. *
  732. * If Z_DEVICE_HANDLE_PADDING uses UTIL_LISTIFY, this type of code
  733. * would fail, because the UTIL_LISTIFY token within the
  734. * Z_DEVICE_DEFINE_HANDLES expansion would not be expanded again,
  735. * since it appears in a context where UTIL_LISTIFY is already being
  736. * expanded. Standard C does not reexpand macros appearing in their
  737. * own expansion; this would lead to infinite recursions in general.
  738. */
  739. #define Z_DEVICE_HANDLE_PADDING \
  740. Z_DEVICE_HANDLE_PADDING_(CONFIG_DEVICE_HANDLE_PADDING)
  741. #define Z_DEVICE_HANDLE_PADDING_(count) \
  742. Z_DEVICE_HANDLE_PADDING__(count)
  743. #define Z_DEVICE_HANDLE_PADDING__(count) \
  744. Z_DEVICE_HANDLE_PADDING_ ## count
  745. #define Z_DEVICE_HANDLE_PADDING_10 \
  746. DEVICE_HANDLE_ENDS, Z_DEVICE_HANDLE_PADDING_9
  747. #define Z_DEVICE_HANDLE_PADDING_9 \
  748. DEVICE_HANDLE_ENDS, Z_DEVICE_HANDLE_PADDING_8
  749. #define Z_DEVICE_HANDLE_PADDING_8 \
  750. DEVICE_HANDLE_ENDS, Z_DEVICE_HANDLE_PADDING_7
  751. #define Z_DEVICE_HANDLE_PADDING_7 \
  752. DEVICE_HANDLE_ENDS, Z_DEVICE_HANDLE_PADDING_6
  753. #define Z_DEVICE_HANDLE_PADDING_6 \
  754. DEVICE_HANDLE_ENDS, Z_DEVICE_HANDLE_PADDING_5
  755. #define Z_DEVICE_HANDLE_PADDING_5 \
  756. DEVICE_HANDLE_ENDS, Z_DEVICE_HANDLE_PADDING_4
  757. #define Z_DEVICE_HANDLE_PADDING_4 \
  758. DEVICE_HANDLE_ENDS, Z_DEVICE_HANDLE_PADDING_3
  759. #define Z_DEVICE_HANDLE_PADDING_3 \
  760. DEVICE_HANDLE_ENDS, Z_DEVICE_HANDLE_PADDING_2
  761. #define Z_DEVICE_HANDLE_PADDING_2 \
  762. DEVICE_HANDLE_ENDS, Z_DEVICE_HANDLE_PADDING_1
  763. #define Z_DEVICE_HANDLE_PADDING_1 \
  764. DEVICE_HANDLE_ENDS, Z_DEVICE_HANDLE_PADDING_0
  765. #define Z_DEVICE_HANDLE_PADDING_0 EMPTY
  766. #ifdef CONFIG_PM_DEVICE
  767. #define Z_DEVICE_DEFINE_PM_INIT(dev_name, pm_control_fn) \
  768. .pm_control = (pm_control_fn), \
  769. .pm = &Z_DEVICE_STATE_NAME(dev_name).pm,
  770. #else
  771. #define Z_DEVICE_DEFINE_PM_INIT(dev_name, pm_control_fn)
  772. #endif
  773. #define Z_DEVICE_DEFINE_INIT(node_id, dev_name, pm_control_fn) \
  774. Z_DEVICE_DEFINE_PM_INIT(dev_name, pm_control_fn)
  775. /* Like DEVICE_DEFINE but takes a node_id AND a dev_name, and trailing
  776. * dependency handles that come from outside devicetree.
  777. */
  778. #define Z_DEVICE_DEFINE(node_id, dev_name, drv_name, init_fn, pm_control_fn, \
  779. data_ptr, cfg_ptr, level, prio, api_ptr, ...) \
  780. Z_DEVICE_DEFINE_PRE(node_id, dev_name, __VA_ARGS__) \
  781. COND_CODE_1(DT_NODE_EXISTS(node_id), (), (static)) \
  782. const Z_DECL_ALIGN(struct device) \
  783. DEVICE_NAME_GET(dev_name) __used \
  784. __attribute__((__section__(".z_device_" #level STRINGIFY(prio)"_"))) = { \
  785. .name = drv_name, \
  786. .config = (cfg_ptr), \
  787. .api = (api_ptr), \
  788. .state = &Z_DEVICE_STATE_NAME(dev_name), \
  789. .data = (data_ptr), \
  790. Z_DEVICE_DEFINE_INIT(node_id, dev_name, pm_control_fn) \
  791. }; \
  792. BUILD_ASSERT(sizeof(Z_STRINGIFY(drv_name)) <= Z_DEVICE_MAX_NAME_LEN, \
  793. Z_STRINGIFY(DEVICE_NAME_GET(drv_name)) " too long"); \
  794. Z_INIT_ENTRY_DEFINE(DEVICE_NAME_GET(dev_name), init_fn, \
  795. (&DEVICE_NAME_GET(dev_name)), level, prio)
  796. #ifdef __cplusplus
  797. }
  798. #endif
  799. /* device_extern is generated based on devicetree nodes */
  800. #include <device_extern.h>
  801. #include <syscalls/device.h>
  802. #endif /* ZEPHYR_INCLUDE_DEVICE_H_ */