Zephyr API Documentation 3.7.99
A Scalable Open Source RTOS
Loading...
Searching...
No Matches
device.h
Go to the documentation of this file.
1/*
2 * Copyright (c) 2015 Intel Corporation.
3 *
4 * SPDX-License-Identifier: Apache-2.0
5 */
6
7#ifndef ZEPHYR_INCLUDE_DEVICE_H_
8#define ZEPHYR_INCLUDE_DEVICE_H_
9
10#include <stdint.h>
11
12#include <zephyr/devicetree.h>
13#include <zephyr/init.h>
15#include <zephyr/pm/state.h>
18#include <zephyr/sys/util.h>
19#include <zephyr/toolchain.h>
20
21#ifdef __cplusplus
22extern "C" {
23#endif
24
39#define Z_DEVICE_DEPS_SEP INT16_MIN
40
45#define Z_DEVICE_DEPS_ENDS INT16_MAX
46
48#define Z_DEVICE_IS_MUTABLE(node_id) \
49 COND_CODE_1(IS_ENABLED(CONFIG_DEVICE_MUTABLE), (DT_PROP(node_id, zephyr_mutable)), (0))
50
69
71#define DEVICE_HANDLE_NULL 0
72
92#define DEVICE_NAME_GET(dev_id) _CONCAT(__device_, dev_id)
93
94/* Node paths can exceed the maximum size supported by
95 * device_get_binding() in user mode; this macro synthesizes a unique
96 * dev_id from a devicetree node while staying within this maximum
97 * size.
98 *
99 * The ordinal used in this name can be mapped to the path by
100 * examining zephyr/include/generated/zephyr/devicetree_generated.h.
101 */
102#define Z_DEVICE_DT_DEV_ID(node_id) _CONCAT(dts_ord_, DT_DEP_ORD(node_id))
103
134#define DEVICE_DEFINE(dev_id, name, init_fn, pm, data, config, level, prio, \
135 api) \
136 Z_DEVICE_STATE_DEFINE(dev_id); \
137 Z_DEVICE_DEFINE(DT_INVALID_NODE, dev_id, name, init_fn, pm, data, \
138 config, level, prio, api, \
139 &Z_DEVICE_STATE_NAME(dev_id))
140
152#define DEVICE_DT_NAME(node_id) \
153 DT_PROP_OR(node_id, label, DT_NODE_FULL_NAME(node_id))
154
162#define DEVICE_DT_DEFER(node_id) \
163 DT_PROP(node_id, zephyr_deferred_init)
164
195#define DEVICE_DT_DEFINE(node_id, init_fn, pm, data, config, level, prio, api, \
196 ...) \
197 Z_DEVICE_STATE_DEFINE(Z_DEVICE_DT_DEV_ID(node_id)); \
198 Z_DEVICE_DEFINE(node_id, Z_DEVICE_DT_DEV_ID(node_id), \
199 DEVICE_DT_NAME(node_id), init_fn, pm, data, config, \
200 level, prio, api, \
201 &Z_DEVICE_STATE_NAME(Z_DEVICE_DT_DEV_ID(node_id)), \
202 __VA_ARGS__)
203
212#define DEVICE_DT_INST_DEFINE(inst, ...) \
213 DEVICE_DT_DEFINE(DT_DRV_INST(inst), __VA_ARGS__)
214
229#define DEVICE_DT_NAME_GET(node_id) DEVICE_NAME_GET(Z_DEVICE_DT_DEV_ID(node_id))
230
246#define DEVICE_DT_GET(node_id) (&DEVICE_DT_NAME_GET(node_id))
247
257#define DEVICE_DT_INST_GET(inst) DEVICE_DT_GET(DT_DRV_INST(inst))
258
275#define DEVICE_DT_GET_ANY(compat) \
276 COND_CODE_1(DT_HAS_COMPAT_STATUS_OKAY(compat), \
277 (DEVICE_DT_GET(DT_COMPAT_GET_ANY_STATUS_OKAY(compat))), \
278 (NULL))
279
296#define DEVICE_DT_GET_ONE(compat) \
297 COND_CODE_1(DT_HAS_COMPAT_STATUS_OKAY(compat), \
298 (DEVICE_DT_GET(DT_COMPAT_GET_ANY_STATUS_OKAY(compat))), \
299 (ZERO_OR_COMPILE_ERROR(0)))
300
311#define DEVICE_DT_GET_OR_NULL(node_id) \
312 COND_CODE_1(DT_NODE_HAS_STATUS(node_id, okay), \
313 (DEVICE_DT_GET(node_id)), (NULL))
314
325#define DEVICE_GET(dev_id) (&DEVICE_NAME_GET(dev_id))
326
341#define DEVICE_DECLARE(dev_id) \
342 static const struct device DEVICE_NAME_GET(dev_id)
343
351#define DEVICE_INIT_DT_GET(node_id) \
352 (&Z_INIT_ENTRY_NAME(DEVICE_DT_NAME_GET(node_id)))
353
361#define DEVICE_INIT_GET(dev_id) (&Z_INIT_ENTRY_NAME(DEVICE_NAME_GET(dev_id)))
362
380
384 bool initialized : 1;
385};
386
387struct pm_device_base;
388struct pm_device;
389struct pm_device_isr;
390#if defined(CONFIG_DEVICE_DT_METADATA) || defined(__DOXYGEN__)
391struct device_dt_metadata;
392#endif
393
394#ifdef CONFIG_DEVICE_DEPS_DYNAMIC
395#define Z_DEVICE_DEPS_CONST
396#else
397#define Z_DEVICE_DEPS_CONST const
398#endif
399
403struct device {
405 const char *name;
407 const void *config;
409 const void *api;
413 void *data;
414#if defined(CONFIG_DEVICE_DEPS) || defined(__DOXYGEN__)
423 Z_DEVICE_DEPS_CONST device_handle_t *deps;
424#endif /* CONFIG_DEVICE_DEPS */
425#if defined(CONFIG_PM_DEVICE) || defined(__DOXYGEN__)
430 union {
432 struct pm_device *pm;
434 };
435#endif
436#if defined(CONFIG_DEVICE_DT_METADATA) || defined(__DOXYGEN__)
437 const struct device_dt_metadata *dt_meta;
438#endif /* CONFIG_DEVICE_DT_METADATA */
439};
440
449static inline device_handle_t device_handle_get(const struct device *dev)
450{
453
454 /* TODO: If/when devices can be constructed that are not part of the
455 * fixed sequence we'll need another solution.
456 */
457 if (dev != NULL) {
458 ret = 1 + (device_handle_t)(dev - STRUCT_SECTION_START(device));
459 }
460
461 return ret;
462}
463
472static inline const struct device *
474{
476 const struct device *dev = NULL;
477 size_t numdev;
478
480
481 if ((dev_handle > 0) && ((size_t)dev_handle <= numdev)) {
482 dev = &STRUCT_SECTION_START(device)[dev_handle - 1];
483 }
484
485 return dev;
486}
487
488#if defined(CONFIG_DEVICE_DEPS) || defined(__DOXYGEN__)
489
508typedef int (*device_visitor_callback_t)(const struct device *dev,
509 void *context);
510
529static inline const device_handle_t *
530device_required_handles_get(const struct device *dev, size_t *count)
531{
532 const device_handle_t *rv = dev->deps;
533
534 if (rv != NULL) {
535 size_t i = 0;
536
537 while ((rv[i] != Z_DEVICE_DEPS_ENDS) &&
538 (rv[i] != Z_DEVICE_DEPS_SEP)) {
539 ++i;
540 }
541 *count = i;
542 }
543
544 return rv;
545}
546
565static inline const device_handle_t *
566device_injected_handles_get(const struct device *dev, size_t *count)
567{
568 const device_handle_t *rv = dev->deps;
569 size_t region = 0;
570 size_t i = 0;
571
572 if (rv != NULL) {
573 /* Fast forward to injected devices */
574 while (region != 1) {
575 if (*rv == Z_DEVICE_DEPS_SEP) {
576 region++;
577 }
578 rv++;
579 }
580 while ((rv[i] != Z_DEVICE_DEPS_ENDS) &&
581 (rv[i] != Z_DEVICE_DEPS_SEP)) {
582 ++i;
583 }
584 *count = i;
585 }
586
587 return rv;
588}
589
609static inline const device_handle_t *
610device_supported_handles_get(const struct device *dev, size_t *count)
611{
612 const device_handle_t *rv = dev->deps;
613 size_t region = 0;
614 size_t i = 0;
615
616 if (rv != NULL) {
617 /* Fast forward to supporting devices */
618 while (region != 2) {
619 if (*rv == Z_DEVICE_DEPS_SEP) {
620 region++;
621 }
622 rv++;
623 }
624 /* Count supporting devices.
625 * Trailing NULL's can be injected by gen_device_deps.py due to
626 * CONFIG_PM_DEVICE_POWER_DOMAIN_DYNAMIC_NUM
627 */
628 while ((rv[i] != Z_DEVICE_DEPS_ENDS) &&
629 (rv[i] != DEVICE_HANDLE_NULL)) {
630 ++i;
631 }
632 *count = i;
633 }
634
635 return rv;
636}
637
668int device_required_foreach(const struct device *dev,
669 device_visitor_callback_t visitor_cb,
670 void *context);
671
701int device_supported_foreach(const struct device *dev,
702 device_visitor_callback_t visitor_cb,
703 void *context);
704
705#endif /* CONFIG_DEVICE_DEPS */
706
727__syscall const struct device *device_get_binding(const char *name);
728
737size_t z_device_get_all_static(const struct device **devices);
738
755__syscall bool device_is_ready(const struct device *dev);
756
771__syscall int device_init(const struct device *dev);
772
783#define Z_DEVICE_STATE_NAME(dev_id) _CONCAT(__devstate_, dev_id)
784
790#define Z_DEVICE_STATE_DEFINE(dev_id) \
791 static Z_DECL_ALIGN(struct device_state) Z_DEVICE_STATE_NAME(dev_id) \
792 __attribute__((__section__(".z_devstate")))
793
794#if defined(CONFIG_DEVICE_DEPS) || defined(__DOXYGEN__)
795
802#define Z_DEVICE_DEPS_NAME(dev_id) _CONCAT(__devicedeps_, dev_id)
803
809#define Z_DEVICE_EXTRA_DEPS(...) \
810 FOR_EACH_NONEMPTY_TERM(IDENTITY, (,), __VA_ARGS__)
811
813#define Z_DEVICE_DEPS_SECTION \
814 __attribute__((__section__(".__device_deps_pass1")))
815
816#ifdef __cplusplus
817#define Z_DEVICE_DEPS_EXTERN extern
818#else
819#define Z_DEVICE_DEPS_EXTERN
820#endif
821
857#define Z_DEVICE_DEPS_DEFINE(node_id, dev_id, ...) \
858 extern Z_DEVICE_DEPS_CONST device_handle_t Z_DEVICE_DEPS_NAME( \
859 dev_id)[]; \
860 Z_DEVICE_DEPS_CONST Z_DECL_ALIGN(device_handle_t) \
861 Z_DEVICE_DEPS_SECTION Z_DEVICE_DEPS_EXTERN __weak \
862 Z_DEVICE_DEPS_NAME(dev_id)[] = { \
863 COND_CODE_1( \
864 DT_NODE_EXISTS(node_id), \
865 (DT_DEP_ORD(node_id), DT_REQUIRES_DEP_ORDS(node_id)), \
866 (DEVICE_HANDLE_NULL,)) \
867 Z_DEVICE_DEPS_SEP, \
868 Z_DEVICE_EXTRA_DEPS(__VA_ARGS__) \
869 Z_DEVICE_DEPS_SEP, \
870 COND_CODE_1(DT_NODE_EXISTS(node_id), \
871 (DT_SUPPORTS_DEP_ORDS(node_id)), ()) \
872 }
873
874#endif /* CONFIG_DEVICE_DEPS */
875#if defined(CONFIG_DEVICE_DT_METADATA) || defined(__DOXYGEN__)
879struct device_dt_nodelabels {
880 /* @brief number of elements in the nodelabels array */
881 size_t num_nodelabels;
882 /* @brief array of node labels as strings, exactly as they
883 * appear in the final devicetree
884 */
885 const char *nodelabels[];
886};
887
895struct device_dt_metadata {
900 const struct device_dt_nodelabels *nl;
901};
902
921__syscall const struct device *device_get_by_dt_nodelabel(const char *nodelabel);
922
928static inline const struct device_dt_nodelabels *
929device_get_dt_nodelabels(const struct device *dev)
930{
931 if (dev->dt_meta == NULL) {
932 return NULL;
933 }
934 return dev->dt_meta->nl;
935}
936
943#define Z_DEVICE_MAX_NODELABEL_LEN Z_DEVICE_MAX_NAME_LEN
944
949#define Z_DEVICE_DT_METADATA_NAME_GET(dev_id) UTIL_CAT(__dev_dt_meta_, dev_id)
950
955#define Z_DEVICE_DT_NODELABELS_NAME_GET(dev_id) UTIL_CAT(__dev_dt_nodelabels_, dev_id)
956
963#define Z_DEVICE_DT_METADATA_DEFINE(node_id, dev_id) \
964 static const struct device_dt_nodelabels \
965 Z_DEVICE_DT_NODELABELS_NAME_GET(dev_id) = { \
966 .num_nodelabels = DT_NUM_NODELABELS(node_id), \
967 .nodelabels = DT_NODELABEL_STRING_ARRAY(node_id), \
968 }; \
969 \
970 static const struct device_dt_metadata \
971 Z_DEVICE_DT_METADATA_NAME_GET(dev_id) = { \
972 .nl = &Z_DEVICE_DT_NODELABELS_NAME_GET(dev_id), \
973 };
974#endif /* CONFIG_DEVICE_DT_METADATA */
975
983#define Z_DEVICE_INIT_SUB_PRIO(node_id) \
984 COND_CODE_1(DT_NODE_EXISTS(node_id), \
985 (DT_DEP_ORD_STR_SORTABLE(node_id)), (0))
986
993#define Z_DEVICE_MAX_NAME_LEN 48U
994
1000#define Z_DEVICE_NAME_CHECK(name) \
1001 BUILD_ASSERT(sizeof(Z_STRINGIFY(name)) <= Z_DEVICE_MAX_NAME_LEN, \
1002 Z_STRINGIFY(DEVICE_NAME_GET(name)) " too long")
1003
1017#define Z_DEVICE_INIT(name_, pm_, data_, config_, api_, state_, deps_, node_id_, \
1018 dev_id_) \
1019 { \
1020 .name = name_, \
1021 .config = (config_), \
1022 .api = (api_), \
1023 .state = (state_), \
1024 .data = (data_), \
1025 IF_ENABLED(CONFIG_DEVICE_DEPS, (.deps = (deps_),)) \
1026 IF_ENABLED(CONFIG_PM_DEVICE, Z_DEVICE_INIT_PM_BASE(pm_)) \
1027 IF_ENABLED(CONFIG_DEVICE_DT_METADATA, \
1028 (IF_ENABLED(DT_NODE_EXISTS(node_id_), \
1029 (.dt_meta = &Z_DEVICE_DT_METADATA_NAME_GET( \
1030 dev_id_),)))) \
1031 }
1032
1033/*
1034 * Anonymous unions require C11. Some pre-C11 gcc versions have early support for anonymous
1035 * unions but they require these braces when combined with C99 designated initializers. For
1036 * more details see https://docs.zephyrproject.org/latest/develop/languages/cpp/
1037 */
1038#if defined(__STDC_VERSION__) && (__STDC_VERSION__) < 201100
1039# define Z_DEVICE_INIT_PM_BASE(pm_) ({ .pm_base = (pm_),},)
1040#else
1041# define Z_DEVICE_INIT_PM_BASE(pm_) (.pm_base = (pm_),)
1042#endif
1043
1050#define Z_DEVICE_SECTION_NAME(level, prio) \
1051 _CONCAT(INIT_LEVEL_ORD(level), _##prio)
1052
1069#define Z_DEVICE_BASE_DEFINE(node_id, dev_id, name, pm, data, config, level, prio, api, state, \
1070 deps) \
1071 COND_CODE_1(DT_NODE_EXISTS(node_id), (), (static)) \
1072 COND_CODE_1(Z_DEVICE_IS_MUTABLE(node_id), (), (const)) \
1073 STRUCT_SECTION_ITERABLE_NAMED_ALTERNATE( \
1074 device, COND_CODE_1(Z_DEVICE_IS_MUTABLE(node_id), (device_mutable), (device)), \
1075 Z_DEVICE_SECTION_NAME(level, prio), DEVICE_NAME_GET(dev_id)) = \
1076 Z_DEVICE_INIT(name, pm, data, config, api, state, deps, node_id, dev_id)
1077
1083#define Z_DEVICE_CHECK_INIT_LEVEL(level) \
1084 COND_CODE_1(Z_INIT_PRE_KERNEL_1_##level, (), \
1085 (COND_CODE_1(Z_INIT_PRE_KERNEL_2_##level, (), \
1086 (COND_CODE_1(Z_INIT_POST_KERNEL_##level, (), \
1087 (ZERO_OR_COMPILE_ERROR(0)))))))
1088
1099#define Z_DEVICE_INIT_ENTRY_DEFINE(node_id, dev_id, init_fn_, level, prio) \
1100 Z_DEVICE_CHECK_INIT_LEVEL(level) \
1101 \
1102 static const Z_DECL_ALIGN(struct init_entry) __used __noasan Z_INIT_ENTRY_SECTION( \
1103 level, prio, Z_DEVICE_INIT_SUB_PRIO(node_id)) \
1104 Z_INIT_ENTRY_NAME(DEVICE_NAME_GET(dev_id)) = { \
1105 .init_fn = {COND_CODE_1(Z_DEVICE_IS_MUTABLE(node_id), (.dev_rw), (.dev)) = \
1106 (init_fn_)}, \
1107 Z_DEVICE_INIT_ENTRY_DEV(node_id, dev_id), \
1108 }
1109
1110#define Z_DEFER_DEVICE_INIT_ENTRY_DEFINE(node_id, dev_id, init_fn_) \
1111 static const Z_DECL_ALIGN(struct init_entry) __used __noasan \
1112 __attribute__((__section__(".z_deferred_init"))) \
1113 Z_INIT_ENTRY_NAME(DEVICE_NAME_GET(dev_id)) = { \
1114 .init_fn = {COND_CODE_1(Z_DEVICE_IS_MUTABLE(node_id), (.dev_rw), (.dev)) = \
1115 (init_fn_)}, \
1116 Z_DEVICE_INIT_ENTRY_DEV(node_id, dev_id), \
1117 }
1118
1119/*
1120 * Anonymous unions require C11. Some pre-C11 gcc versions have early support for anonymous
1121 * unions but they require these braces when combined with C99 designated initializers. For
1122 * more details see https://docs.zephyrproject.org/latest/develop/languages/cpp/
1123 */
1124#if defined(__STDC_VERSION__) && (__STDC_VERSION__) < 201100
1125# define Z_DEVICE_INIT_ENTRY_DEV(node_id, dev_id) { Z_DEV_ENTRY_DEV(node_id, dev_id) }
1126#else
1127# define Z_DEVICE_INIT_ENTRY_DEV(node_id, dev_id) Z_DEV_ENTRY_DEV(node_id, dev_id)
1128#endif
1129
1130#define Z_DEV_ENTRY_DEV(node_id, dev_id) \
1131 COND_CODE_1(Z_DEVICE_IS_MUTABLE(node_id), (.dev_rw), (.dev)) = &DEVICE_NAME_GET(dev_id)
1132
1154#define Z_DEVICE_DEFINE(node_id, dev_id, name, init_fn, pm, data, config, \
1155 level, prio, api, state, ...) \
1156 Z_DEVICE_NAME_CHECK(name); \
1157 \
1158 IF_ENABLED(CONFIG_DEVICE_DEPS, \
1159 (Z_DEVICE_DEPS_DEFINE(node_id, dev_id, __VA_ARGS__);)) \
1160 \
1161 IF_ENABLED(CONFIG_DEVICE_DT_METADATA, \
1162 (IF_ENABLED(DT_NODE_EXISTS(node_id), \
1163 (Z_DEVICE_DT_METADATA_DEFINE(node_id, dev_id);))))\
1164 \
1165 Z_DEVICE_BASE_DEFINE(node_id, dev_id, name, pm, data, config, level, \
1166 prio, api, state, Z_DEVICE_DEPS_NAME(dev_id)); \
1167 COND_CODE_1(DEVICE_DT_DEFER(node_id), \
1168 (Z_DEFER_DEVICE_INIT_ENTRY_DEFINE(node_id, dev_id, \
1169 init_fn)), \
1170 (Z_DEVICE_INIT_ENTRY_DEFINE(node_id, dev_id, init_fn, \
1171 level, prio)));
1172
1183#define Z_MAYBE_DEVICE_DECLARE_INTERNAL(node_id) \
1184 extern COND_CODE_1(Z_DEVICE_IS_MUTABLE(node_id), (), \
1185 (const)) struct device DEVICE_DT_NAME_GET(node_id);
1186
1187DT_FOREACH_STATUS_OKAY_NODE(Z_MAYBE_DEVICE_DECLARE_INTERNAL)
1188
1189
1191#ifdef __cplusplus
1192}
1193#endif
1194
1195#include <zephyr/syscalls/device.h>
1196
1197#endif /* ZEPHYR_INCLUDE_DEVICE_H_ */
Devicetree main header.
const struct device * device_get_binding(const char *name)
Get a device reference from its device::name field.
int16_t device_handle_t
Type used to represent a "handle" for a device.
Definition device.h:68
static const device_handle_t * device_required_handles_get(const struct device *dev, size_t *count)
Get the device handles for devicetree dependencies of this device.
Definition device.h:530
static const device_handle_t * device_supported_handles_get(const struct device *dev, size_t *count)
Get the set of handles that this device supports.
Definition device.h:610
static device_handle_t device_handle_get(const struct device *dev)
Get the handle for a given device.
Definition device.h:449
#define DEVICE_HANDLE_NULL
Flag value used to identify an unknown device.
Definition device.h:71
int device_required_foreach(const struct device *dev, device_visitor_callback_t visitor_cb, void *context)
Visit every device that dev directly requires.
static const struct device * device_from_handle(device_handle_t dev_handle)
Get the device corresponding to a handle.
Definition device.h:473
int(* device_visitor_callback_t)(const struct device *dev, void *context)
Prototype for functions used when iterating over a set of devices.
Definition device.h:508
bool device_is_ready(const struct device *dev)
Verify that a device is ready for use.
static const device_handle_t * device_injected_handles_get(const struct device *dev, size_t *count)
Get the device handles for injected dependencies of this device.
Definition device.h:566
int device_init(const struct device *dev)
Initialize a device.
int device_supported_foreach(const struct device *dev, device_visitor_callback_t visitor_cb, void *context)
Visit every device that dev directly supports.
#define DT_FOREACH_STATUS_OKAY_NODE(fn)
Invokes fn for every status okay node in the tree.
Definition devicetree.h:2785
#define STRUCT_SECTION_START_EXTERN(struct_type)
iterable section extern for start symbol for a struct
Definition iterable_sections.h:159
#define STRUCT_SECTION_START(struct_type)
iterable section start symbol for a struct type
Definition iterable_sections.h:149
#define STRUCT_SECTION_COUNT(struct_type, dst)
Count elements in a section.
Definition iterable_sections.h:291
Definitions of various linker Sections.
__UINT8_TYPE__ uint8_t
Definition stdint.h:88
__INT16_TYPE__ int16_t
Definition stdint.h:73
Runtime device dynamic structure (in RAM) per driver instance.
Definition device.h:371
bool initialized
Indicates the device initialization function has been invoked.
Definition device.h:384
uint8_t init_res
Device initialization return code (positive errno value).
Definition device.h:379
Runtime device structure (in ROM) per driver instance.
Definition device.h:403
struct pm_device_base * pm_base
Definition device.h:431
const device_handle_t * deps
Optional pointer to dependencies associated with the device.
Definition device.h:423
struct pm_device_isr * pm_isr
Definition device.h:433
const char * name
Name of the device instance.
Definition device.h:405
struct pm_device * pm
Definition device.h:432
void * data
Address of the device instance private data.
Definition device.h:413
const void * api
Address of the API structure exposed by the device instance.
Definition device.h:409
struct device_state * state
Address of the common device state.
Definition device.h:411
const void * config
Address of device instance config information.
Definition device.h:407
const struct device_dt_metadata * dt_meta
Definition device.h:437
Device PM info.
Definition device.h:139
Runtime PM info for device with synchronous PM.
Definition device.h:185
Runtime PM info for device with generic PM.
Definition device.h:163
Misc utilities.
Macros to abstract toolchain specific capabilities.