forked from zephyrproject-rtos/zephyr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdevice.h
1289 lines (1183 loc) · 47.4 KB
/
device.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*
* Copyright (c) 2015 Intel Corporation.
*
* SPDX-License-Identifier: Apache-2.0
*/
#ifndef ZEPHYR_INCLUDE_DEVICE_H_
#define ZEPHYR_INCLUDE_DEVICE_H_
#include <stdint.h>
#include <zephyr/devicetree.h>
#include <zephyr/init.h>
#include <zephyr/linker/sections.h>
#include <zephyr/pm/state.h>
#include <zephyr/sys/device_mmio.h>
#include <zephyr/sys/iterable_sections.h>
#include <zephyr/sys/util.h>
#include <zephyr/toolchain.h>
#ifdef CONFIG_LLEXT
#include <zephyr/llext/symbol.h>
#endif
#ifdef __cplusplus
extern "C" {
#endif
/**
* @brief Device Model
* @defgroup device_model Device Model
* @since 1.0
* @version 1.1.0
* @{
*/
/** @cond INTERNAL_HIDDEN */
/**
* @brief Flag value used in lists of device dependencies to separate distinct
* groups.
*/
#define Z_DEVICE_DEPS_SEP INT16_MIN
/**
* @brief Flag value used in lists of device dependencies to indicate the end of
* the list.
*/
#define Z_DEVICE_DEPS_ENDS INT16_MAX
/** @brief Determine if a DT node is mutable */
#define Z_DEVICE_IS_MUTABLE(node_id) \
COND_CODE_1(IS_ENABLED(CONFIG_DEVICE_MUTABLE), (DT_PROP(node_id, zephyr_mutable)), (0))
/** @endcond */
/**
* @brief Type used to represent a "handle" for a device.
*
* Every @ref device has an associated handle. You can get a pointer to a
* @ref device from its handle and vice versa, but the handle uses less space
* than a pointer. The device.h API mainly uses handles to store lists of
* multiple devices in a compact way.
*
* The extreme values and zero have special significance. Negative values
* identify functionality that does not correspond to a Zephyr device, such as
* the system clock or a SYS_INIT() function.
*
* @see device_handle_get()
* @see device_from_handle()
*/
typedef int16_t device_handle_t;
/** @brief Flag value used to identify an unknown device. */
#define DEVICE_HANDLE_NULL 0
/**
* @brief Expands to the name of a global device object.
*
* Return the full name of a device object symbol created by DEVICE_DEFINE(),
* using the `dev_id` provided to DEVICE_DEFINE(). This is the name of the
* global variable storing the device structure, not a pointer to the string in
* the @ref device.name field.
*
* It is meant to be used for declaring extern symbols pointing to device
* objects before using the DEVICE_GET macro to get the device object.
*
* This macro is normally only useful within device driver source code. In other
* situations, you are probably looking for device_get_binding().
*
* @param dev_id Device identifier.
*
* @return The full name of the device object defined by device definition
* macros.
*/
#define DEVICE_NAME_GET(dev_id) _CONCAT(__device_, dev_id)
/* This macro synthesizes a unique dev_id from a devicetree node by using
* the node's dependency ordinal.
*
* The ordinal used in this name can be mapped to the path by
* examining zephyr/include/generated/zephyr/devicetree_generated.h.
*/
#define Z_DEVICE_DT_DEP_ORD(node_id) _CONCAT(dts_ord_, DT_DEP_ORD(node_id))
/* Same as above, but uses the hash of the node path instead of the ordinal.
*
* The hash used in this name can be mapped to the path by
* examining zephyr/include/generated/zephyr/devicetree_generated.h.
*/
#define Z_DEVICE_DT_HASH(node_id) _CONCAT(dts_, DT_NODE_HASH(node_id))
/* By default, device identifiers are obtained using the dependency ordinal.
* When LLEXT_EXPORT_DEV_IDS_BY_HASH is defined, the main Zephyr binary exports
* DT identifiers via EXPORT_SYMBOL_NAMED as hashed versions of their paths.
* When matching extensions are built, that is what they need to look for.
*
* The ordinal or hash used in this name can be mapped to the path by
* examining zephyr/include/generated/zephyr/devicetree_generated.h.
*/
#if defined(LL_EXTENSION_BUILD) && defined(CONFIG_LLEXT_EXPORT_DEV_IDS_BY_HASH)
#define Z_DEVICE_DT_DEV_ID(node_id) Z_DEVICE_DT_HASH(node_id)
#else
#define Z_DEVICE_DT_DEV_ID(node_id) Z_DEVICE_DT_DEP_ORD(node_id)
#endif
#if defined(CONFIG_LLEXT_EXPORT_DEV_IDS_BY_HASH)
/* Export device identifiers by hash */
#define Z_DEVICE_EXPORT(node_id) \
EXPORT_SYMBOL_NAMED(DEVICE_DT_NAME_GET(node_id), \
DEVICE_NAME_GET(Z_DEVICE_DT_HASH(node_id)))
#elif defined(CONFIG_LLEXT_EXPORT_DEVICES)
/* Export device identifiers using the builtin name */
#define Z_DEVICE_EXPORT(node_id) EXPORT_SYMBOL(DEVICE_DT_NAME_GET(node_id))
#endif
/**
* @brief Create a device object and set it up for boot time initialization.
*
* This macro defines a @ref device that is automatically configured by the
* kernel during system initialization. This macro should only be used when the
* device is not being allocated from a devicetree node. If you are allocating a
* device from a devicetree node, use DEVICE_DT_DEFINE() or
* DEVICE_DT_INST_DEFINE() instead.
*
* @param dev_id A unique token which is used in the name of the global device
* structure as a C identifier.
* @param name A string name for the device, which will be stored in
* @ref device.name. This name can be used to look up the device with
* device_get_binding(). This must be less than Z_DEVICE_MAX_NAME_LEN characters
* (including terminating `NULL`) in order to be looked up from user mode.
* @param init_fn Pointer to the device's initialization function, which will be
* run by the kernel during system initialization. Can be `NULL`.
* @param pm Pointer to the device's power management resources, a
* @ref pm_device, which will be stored in @ref device.pm field. Use `NULL` if
* the device does not use PM.
* @param data Pointer to the device's private mutable data, which will be
* stored in @ref device.data.
* @param config Pointer to the device's private constant data, which will be
* stored in @ref device.config.
* @param level The device's initialization level (PRE_KERNEL_1, PRE_KERNEL_2 or
* POST_KERNEL).
* @param prio The device's priority within its initialization level. See
* SYS_INIT() for details.
* @param api Pointer to the device's API structure. Can be `NULL`.
*/
#define DEVICE_DEFINE(dev_id, name, init_fn, pm, data, config, level, prio, \
api) \
Z_DEVICE_STATE_DEFINE(dev_id); \
Z_DEVICE_DEFINE(DT_INVALID_NODE, dev_id, name, init_fn, pm, data, \
config, level, prio, api, \
&Z_DEVICE_STATE_NAME(dev_id))
/**
* @brief Return a string name for a devicetree node.
*
* This macro returns a string literal usable as a device's name from a
* devicetree node identifier.
*
* @param node_id The devicetree node identifier.
*
* @return The value of the node's `label` property, if it has one.
* Otherwise, the node's full name in `node-name@unit-address` form.
*/
#define DEVICE_DT_NAME(node_id) \
DT_PROP_OR(node_id, label, DT_NODE_FULL_NAME(node_id))
/**
* @brief Determine if a devicetree node initialization should be deferred.
*
* @param node_id The devicetree node identifier.
*
* @return Boolean stating if node initialization should be deferred.
*/
#define DEVICE_DT_DEFER(node_id) \
DT_PROP(node_id, zephyr_deferred_init)
/**
* @brief Create a device object from a devicetree node identifier and set it up
* for boot time initialization.
*
* This macro defines a @ref device that is automatically configured by the
* kernel during system initialization. The global device object's name as a C
* identifier is derived from the node's dependency ordinal or hash.
* @ref device.name is set to `DEVICE_DT_NAME(node_id)`.
*
* The device is declared with extern visibility, so a pointer to a global
* device object can be obtained with `DEVICE_DT_GET(node_id)` from any source
* file that includes `<zephyr/device.h>` (even from extensions, when
* @kconfig{CONFIG_LLEXT_EXPORT_DEVICES} is enabled). Before using the
* pointer, the referenced object should be checked using device_is_ready().
*
* @param node_id The devicetree node identifier.
* @param init_fn Pointer to the device's initialization function, which will be
* run by the kernel during system initialization. Can be `NULL`.
* @param pm Pointer to the device's power management resources, a
* @ref pm_device, which will be stored in @ref device.pm. Use `NULL` if the
* device does not use PM.
* @param data Pointer to the device's private mutable data, which will be
* stored in @ref device.data.
* @param config Pointer to the device's private constant data, which will be
* stored in @ref device.config field.
* @param level The device's initialization level (PRE_KERNEL_1, PRE_KERNEL_2 or
* POST_KERNEL).
* @param prio The device's priority within its initialization level. See
* SYS_INIT() for details.
* @param api Pointer to the device's API structure. Can be `NULL`.
*/
#define DEVICE_DT_DEFINE(node_id, init_fn, pm, data, config, level, prio, api, \
...) \
Z_DEVICE_STATE_DEFINE(Z_DEVICE_DT_DEV_ID(node_id)); \
Z_DEVICE_DEFINE(node_id, Z_DEVICE_DT_DEV_ID(node_id), \
DEVICE_DT_NAME(node_id), init_fn, pm, data, config, \
level, prio, api, \
&Z_DEVICE_STATE_NAME(Z_DEVICE_DT_DEV_ID(node_id)), \
__VA_ARGS__)
/**
* @brief Like DEVICE_DT_DEFINE(), but uses an instance of a `DT_DRV_COMPAT`
* compatible instead of a node identifier.
*
* @param inst Instance number. The `node_id` argument to DEVICE_DT_DEFINE() is
* set to `DT_DRV_INST(inst)`.
* @param ... Other parameters as expected by DEVICE_DT_DEFINE().
*/
#define DEVICE_DT_INST_DEFINE(inst, ...) \
DEVICE_DT_DEFINE(DT_DRV_INST(inst), __VA_ARGS__)
/**
* @brief The name of the global device object for @p node_id
*
* Returns the name of the global device structure as a C identifier. The device
* must be allocated using DEVICE_DT_DEFINE() or DEVICE_DT_INST_DEFINE() for
* this to work.
*
* This macro is normally only useful within device driver source code. In other
* situations, you are probably looking for DEVICE_DT_GET().
*
* @param node_id Devicetree node identifier
*
* @return The name of the device object as a C identifier
*/
#define DEVICE_DT_NAME_GET(node_id) DEVICE_NAME_GET(Z_DEVICE_DT_DEV_ID(node_id))
/**
* @brief Get a @ref device reference from a devicetree node identifier.
*
* Returns a pointer to a device object created from a devicetree node, if any
* device was allocated by a driver.
*
* If no such device was allocated, this will fail at linker time. If you get an
* error that looks like `undefined reference to __device_dts_ord_<N>`, that is
* what happened. Check to make sure your device driver is being compiled,
* usually by enabling the Kconfig options it requires.
*
* @param node_id A devicetree node identifier
*
* @return A pointer to the device object created for that node
*/
#define DEVICE_DT_GET(node_id) (&DEVICE_DT_NAME_GET(node_id))
/**
* @brief Get a @ref device reference for an instance of a `DT_DRV_COMPAT`
* compatible.
*
* This is equivalent to `DEVICE_DT_GET(DT_DRV_INST(inst))`.
*
* @param inst `DT_DRV_COMPAT` instance number
* @return A pointer to the device object created for that instance
*/
#define DEVICE_DT_INST_GET(inst) DEVICE_DT_GET(DT_DRV_INST(inst))
/**
* @brief Get a @ref device reference from a devicetree compatible.
*
* If an enabled devicetree node has the given compatible and a device
* object was created from it, this returns a pointer to that device.
*
* If there no such devices, this returns NULL.
*
* If there are multiple, this returns an arbitrary one.
*
* If this returns non-NULL, the device must be checked for readiness
* before use, e.g. with device_is_ready().
*
* @param compat lowercase-and-underscores devicetree compatible
* @return a pointer to a device, or NULL
*/
#define DEVICE_DT_GET_ANY(compat) \
COND_CODE_1(DT_HAS_COMPAT_STATUS_OKAY(compat), \
(DEVICE_DT_GET(DT_COMPAT_GET_ANY_STATUS_OKAY(compat))), \
(NULL))
/**
* @brief Get a @ref device reference from a devicetree compatible.
*
* If an enabled devicetree node has the given compatible and a device object
* was created from it, this returns a pointer to that device.
*
* If there are no such devices, this will fail at compile time.
*
* If there are multiple, this returns an arbitrary one.
*
* If this returns non-NULL, the device must be checked for readiness before
* use, e.g. with device_is_ready().
*
* @param compat lowercase-and-underscores devicetree compatible
* @return a pointer to a device
*/
#define DEVICE_DT_GET_ONE(compat) \
COND_CODE_1(DT_HAS_COMPAT_STATUS_OKAY(compat), \
(DEVICE_DT_GET(DT_COMPAT_GET_ANY_STATUS_OKAY(compat))), \
(ZERO_OR_COMPILE_ERROR(0)))
/**
* @brief Utility macro to obtain an optional reference to a device.
*
* If the node identifier refers to a node with status `okay`, this returns
* `DEVICE_DT_GET(node_id)`. Otherwise, it returns `NULL`.
*
* @param node_id devicetree node identifier
*
* @return a @ref device reference for the node identifier, which may be `NULL`.
*/
#define DEVICE_DT_GET_OR_NULL(node_id) \
COND_CODE_1(DT_NODE_HAS_STATUS_OKAY(node_id), \
(DEVICE_DT_GET(node_id)), (NULL))
/**
* @brief Get a @ref device reference from a devicetree phandles by idx.
*
* Returns a pointer to a device object referenced by a phandles property, by idx.
*
* @param node_id A devicetree node identifier
* @param prop lowercase-and-underscores property with type `phandle`,
* `phandles`, or `phandle-array`
* @param idx logical index into @p phs, which must be zero if @p phs
* has type `phandle`
*
* @return A pointer to the device object created for that node
*/
#define DEVICE_DT_GET_BY_IDX(node_id, prop, idx) \
DEVICE_DT_GET(DT_PHANDLE_BY_IDX(node_id, prop, idx))
/**
* @brief Obtain a pointer to a device object by name
*
* @details Return the address of a device object created by
* DEVICE_DEFINE(), using the dev_id provided to DEVICE_DEFINE().
*
* @param dev_id Device identifier.
*
* @return A pointer to the device object created by DEVICE_DEFINE()
*/
#define DEVICE_GET(dev_id) (&DEVICE_NAME_GET(dev_id))
/**
* @brief Declare a static device object
*
* This macro can be used at the top-level to declare a device, such
* that DEVICE_GET() may be used before the full declaration in
* DEVICE_DEFINE().
*
* This is often useful when configuring interrupts statically in a
* device's init or per-instance config function, as the init function
* itself is required by DEVICE_DEFINE() and use of DEVICE_GET()
* inside it creates a circular dependency.
*
* @param dev_id Device identifier.
*/
#define DEVICE_DECLARE(dev_id) \
static const struct device DEVICE_NAME_GET(dev_id)
/**
* @brief Get a @ref init_entry reference from a devicetree node.
*
* @param node_id A devicetree node identifier
*
* @return A pointer to the @ref init_entry object created for that node
*/
#define DEVICE_INIT_DT_GET(node_id) \
(&Z_INIT_ENTRY_NAME(DEVICE_DT_NAME_GET(node_id)))
/**
* @brief Get a @ref init_entry reference from a device identifier.
*
* @param dev_id Device identifier.
*
* @return A pointer to the init_entry object created for that device
*/
#define DEVICE_INIT_GET(dev_id) (&Z_INIT_ENTRY_NAME(DEVICE_NAME_GET(dev_id)))
/**
* @brief Runtime device dynamic structure (in RAM) per driver instance
*
* Fields in this are expected to be default-initialized to zero. The
* kernel driver infrastructure and driver access functions are
* responsible for ensuring that any non-zero initialization is done
* before they are accessed.
*/
struct device_state {
/**
* Device initialization return code (positive errno value).
*
* Device initialization functions return a negative errno code if they
* fail. In Zephyr, errno values do not exceed 255, so we can store the
* positive result value in a uint8_t type.
*/
uint8_t init_res;
/** Indicates the device initialization function has been
* invoked.
*/
bool initialized : 1;
};
struct pm_device_base;
struct pm_device;
struct pm_device_isr;
#if defined(CONFIG_DEVICE_DT_METADATA) || defined(__DOXYGEN__)
struct device_dt_metadata;
#endif
#ifdef CONFIG_DEVICE_DEPS_DYNAMIC
#define Z_DEVICE_DEPS_CONST
#else
#define Z_DEVICE_DEPS_CONST const
#endif
/**
* @brief Runtime device structure (in ROM) per driver instance
*/
struct device {
/** Name of the device instance */
const char *name;
/** Address of device instance config information */
const void *config;
/** Address of the API structure exposed by the device instance */
const void *api;
/** Address of the common device state */
struct device_state *state;
/** Address of the device instance private data */
void *data;
#if defined(CONFIG_DEVICE_DEPS) || defined(__DOXYGEN__)
/**
* Optional pointer to dependencies associated with the device.
*
* This encodes a sequence of sets of device handles that have some
* relationship to this node. The individual sets are extracted with
* dedicated API, such as device_required_handles_get(). Only available
* if @kconfig{CONFIG_DEVICE_DEPS} is enabled.
*/
Z_DEVICE_DEPS_CONST device_handle_t *deps;
#endif /* CONFIG_DEVICE_DEPS */
#if defined(CONFIG_PM_DEVICE) || defined(__DOXYGEN__)
/**
* Reference to the device PM resources (only available if
* @kconfig{CONFIG_PM_DEVICE} is enabled).
*/
union {
struct pm_device_base *pm_base;
struct pm_device *pm;
struct pm_device_isr *pm_isr;
};
#endif
#if defined(CONFIG_DEVICE_DT_METADATA) || defined(__DOXYGEN__)
const struct device_dt_metadata *dt_meta;
#endif /* CONFIG_DEVICE_DT_METADATA */
};
/**
* @brief Get the handle for a given device
*
* @param dev the device for which a handle is desired.
*
* @return the handle for the device, or DEVICE_HANDLE_NULL if the device does
* not have an associated handle.
*/
static inline device_handle_t device_handle_get(const struct device *dev)
{
device_handle_t ret = DEVICE_HANDLE_NULL;
STRUCT_SECTION_START_EXTERN(device);
/* TODO: If/when devices can be constructed that are not part of the
* fixed sequence we'll need another solution.
*/
if (dev != NULL) {
ret = 1 + (device_handle_t)(dev - STRUCT_SECTION_START(device));
}
return ret;
}
/**
* @brief Get the device corresponding to a handle.
*
* @param dev_handle the device handle
*
* @return the device that has that handle, or a null pointer if @p dev_handle
* does not identify a device.
*/
static inline const struct device *
device_from_handle(device_handle_t dev_handle)
{
STRUCT_SECTION_START_EXTERN(device);
const struct device *dev = NULL;
size_t numdev;
STRUCT_SECTION_COUNT(device, &numdev);
if ((dev_handle > 0) && ((size_t)dev_handle <= numdev)) {
dev = &STRUCT_SECTION_START(device)[dev_handle - 1];
}
return dev;
}
#if defined(CONFIG_DEVICE_DEPS) || defined(__DOXYGEN__)
/**
* @brief Prototype for functions used when iterating over a set of devices.
*
* Such a function may be used in API that identifies a set of devices and
* provides a visitor API supporting caller-specific interaction with each
* device in the set.
*
* The visit is said to succeed if the visitor returns a non-negative value.
*
* @param dev a device in the set being iterated
* @param context state used to support the visitor function
*
* @return A non-negative number to allow walking to continue, and a negative
* error code to case the iteration to stop.
*
* @see device_required_foreach()
* @see device_supported_foreach()
*/
typedef int (*device_visitor_callback_t)(const struct device *dev,
void *context);
/**
* @brief Get the device handles for devicetree dependencies of this device.
*
* This function returns a pointer to an array of device handles. The length of
* the array is stored in the @p count parameter.
*
* The array contains a handle for each device that @p dev requires directly, as
* determined from the devicetree. This does not include transitive
* dependencies; you must recursively determine those.
*
* @param dev the device for which dependencies are desired.
* @param count pointer to where this function should store the length of the
* returned array. No value is stored if the call returns a null pointer. The
* value may be set to zero if the device has no devicetree dependencies.
*
* @return a pointer to a sequence of @p count device handles, or a null pointer
* if @p dev does not have any dependency data.
*/
static inline const device_handle_t *
device_required_handles_get(const struct device *dev, size_t *count)
{
const device_handle_t *rv = dev->deps;
if (rv != NULL) {
size_t i = 0;
while ((rv[i] != Z_DEVICE_DEPS_ENDS) &&
(rv[i] != Z_DEVICE_DEPS_SEP)) {
++i;
}
*count = i;
}
return rv;
}
/**
* @brief Get the device handles for injected dependencies of this device.
*
* This function returns a pointer to an array of device handles. The length of
* the array is stored in the @p count parameter.
*
* The array contains a handle for each device that @p dev manually injected as
* a dependency, via providing extra arguments to Z_DEVICE_DEFINE. This does not
* include transitive dependencies; you must recursively determine those.
*
* @param dev the device for which injected dependencies are desired.
* @param count pointer to where this function should store the length of the
* returned array. No value is stored if the call returns a null pointer. The
* value may be set to zero if the device has no devicetree dependencies.
*
* @return a pointer to a sequence of @p *count device handles, or a null
* pointer if @p dev does not have any dependency data.
*/
static inline const device_handle_t *
device_injected_handles_get(const struct device *dev, size_t *count)
{
const device_handle_t *rv = dev->deps;
size_t region = 0;
size_t i = 0;
if (rv != NULL) {
/* Fast forward to injected devices */
while (region != 1) {
if (*rv == Z_DEVICE_DEPS_SEP) {
region++;
}
rv++;
}
while ((rv[i] != Z_DEVICE_DEPS_ENDS) &&
(rv[i] != Z_DEVICE_DEPS_SEP)) {
++i;
}
*count = i;
}
return rv;
}
/**
* @brief Get the set of handles that this device supports.
*
* This function returns a pointer to an array of device handles. The length of
* the array is stored in the @p count parameter.
*
* The array contains a handle for each device that @p dev "supports" -- that
* is, devices that require @p dev directly -- as determined from the
* devicetree. This does not include transitive dependencies; you must
* recursively determine those.
*
* @param dev the device for which supports are desired.
* @param count pointer to where this function should store the length of the
* returned array. No value is stored if the call returns a null pointer. The
* value may be set to zero if nothing in the devicetree depends on @p dev.
*
* @return a pointer to a sequence of @p *count device handles, or a null
* pointer if @p dev does not have any dependency data.
*/
static inline const device_handle_t *
device_supported_handles_get(const struct device *dev, size_t *count)
{
const device_handle_t *rv = dev->deps;
size_t region = 0;
size_t i = 0;
if (rv != NULL) {
/* Fast forward to supporting devices */
while (region != 2) {
if (*rv == Z_DEVICE_DEPS_SEP) {
region++;
}
rv++;
}
/* Count supporting devices.
* Trailing NULL's can be injected by gen_device_deps.py due to
* CONFIG_PM_DEVICE_POWER_DOMAIN_DYNAMIC_NUM
*/
while ((rv[i] != Z_DEVICE_DEPS_ENDS) &&
(rv[i] != DEVICE_HANDLE_NULL)) {
++i;
}
*count = i;
}
return rv;
}
/**
* @brief Visit every device that @p dev directly requires.
*
* Zephyr maintains information about which devices are directly required by
* another device; for example an I2C-based sensor driver will require an I2C
* controller for communication. Required devices can derive from
* statically-defined devicetree relationships or dependencies registered at
* runtime.
*
* This API supports operating on the set of required devices. Example uses
* include making sure required devices are ready before the requiring device is
* used, and releasing them when the requiring device is no longer needed.
*
* There is no guarantee on the order in which required devices are visited.
*
* If the @p visitor_cb function returns a negative value iteration is halted,
* and the returned value from the visitor is returned from this function.
*
* @note This API is not available to unprivileged threads.
*
* @param dev a device of interest. The devices that this device depends on will
* be used as the set of devices to visit. This parameter must not be null.
* @param visitor_cb the function that should be invoked on each device in the
* dependency set. This parameter must not be null.
* @param context state that is passed through to the visitor function. This
* parameter may be null if @p visitor_cb tolerates a null @p context.
*
* @return The number of devices that were visited if all visits succeed, or
* the negative value returned from the first visit that did not succeed.
*/
int device_required_foreach(const struct device *dev,
device_visitor_callback_t visitor_cb,
void *context);
/**
* @brief Visit every device that @p dev directly supports.
*
* Zephyr maintains information about which devices are directly supported by
* another device; for example an I2C controller will support an I2C-based
* sensor driver. Supported devices can derive from statically-defined
* devicetree relationships.
*
* This API supports operating on the set of supported devices. Example uses
* include iterating over the devices connected to a regulator when it is
* powered on.
*
* There is no guarantee on the order in which required devices are visited.
*
* If the @p visitor_cb function returns a negative value iteration is halted,
* and the returned value from the visitor is returned from this function.
*
* @note This API is not available to unprivileged threads.
*
* @param dev a device of interest. The devices that this device supports
* will be used as the set of devices to visit. This parameter must not be null.
* @param visitor_cb the function that should be invoked on each device in the
* support set. This parameter must not be null.
* @param context state that is passed through to the visitor function. This
* parameter may be null if @p visitor_cb tolerates a null @p context.
*
* @return The number of devices that were visited if all visits succeed, or the
* negative value returned from the first visit that did not succeed.
*/
int device_supported_foreach(const struct device *dev,
device_visitor_callback_t visitor_cb,
void *context);
#endif /* CONFIG_DEVICE_DEPS */
/**
* @brief Get a @ref device reference from its @ref device.name field.
*
* This function iterates through the devices on the system. If a device with
* the given @p name field is found, and that device initialized successfully at
* boot time, this function returns a pointer to the device.
*
* If no device has the given @p name, this function returns `NULL`.
*
* This function also returns NULL when a device is found, but it failed to
* initialize successfully at boot time. (To troubleshoot this case, set a
* breakpoint on your device driver's initialization function.)
*
* @param name device name to search for. A null pointer, or a pointer to an
* empty string, will cause NULL to be returned.
*
* @return pointer to device structure with the given name; `NULL` if the device
* is not found or if the device with that name's initialization function
* failed.
*/
__syscall const struct device *device_get_binding(const char *name);
/**
* @brief Get access to the static array of static devices.
*
* @param devices where to store the pointer to the array of statically
* allocated devices. The array must not be mutated through this pointer.
*
* @return the number of statically allocated devices.
*/
size_t z_device_get_all_static(const struct device **devices);
/**
* @brief Verify that a device is ready for use.
*
* Indicates whether the provided device pointer is for a device known to be
* in a state where it can be used with its standard API.
*
* This can be used with device pointers captured from DEVICE_DT_GET(), which
* does not include the readiness checks of device_get_binding(). At minimum
* this means that the device has been successfully initialized.
*
* @param dev pointer to the device in question.
*
* @retval true If the device is ready for use.
* @retval false If the device is not ready for use or if a NULL device pointer
* is passed as argument.
*/
__syscall bool device_is_ready(const struct device *dev);
/**
* @brief Initialize a device.
*
* A device whose initialization was deferred (by marking it as
* ``zephyr,deferred-init`` on devicetree) needs to be initialized manually via
* this call. Note that only devices whose initialization was deferred can be
* initialized via this call - one can not try to initialize a non
* initialization deferred device that failed initialization with this call.
*
* @param dev device to be initialized.
*
* @retval -ENOENT If device was not found - or isn't a deferred one.
* @retval -errno For other errors.
*/
__syscall int device_init(const struct device *dev);
/**
* @}
*/
/** @cond INTERNAL_HIDDEN */
/**
* @brief Synthesize a unique name for the device state associated with
* @p dev_id.
*/
#define Z_DEVICE_STATE_NAME(dev_id) _CONCAT(__devstate_, dev_id)
/**
* @brief Utility macro to define and initialize the device state.
*
* @param dev_id Device identifier.
*/
#define Z_DEVICE_STATE_DEFINE(dev_id) \
static Z_DECL_ALIGN(struct device_state) Z_DEVICE_STATE_NAME(dev_id) \
__attribute__((__section__(".z_devstate")))
#if defined(CONFIG_DEVICE_DEPS) || defined(__DOXYGEN__)
/**
* @brief Synthesize the name of the object that holds device ordinal and
* dependency data.
*
* @param dev_id Device identifier.
*/
#define Z_DEVICE_DEPS_NAME(dev_id) _CONCAT(__devicedeps_, dev_id)
/**
* @brief Expand extra dependencies with a comma in between.
*
* @param ... Extra dependencies.
*/
#define Z_DEVICE_EXTRA_DEPS(...) \
FOR_EACH_NONEMPTY_TERM(IDENTITY, (,), __VA_ARGS__)
/** @brief Linker section were device dependencies are placed. */
#define Z_DEVICE_DEPS_SECTION \
__attribute__((__section__(".__device_deps_pass1")))
#ifdef __cplusplus
#define Z_DEVICE_DEPS_EXTERN extern
#else
#define Z_DEVICE_DEPS_EXTERN
#endif
/**
* @brief Define device dependencies.
*
* Initial build provides a record that associates the device object with its
* devicetree ordinal, and provides the dependency ordinals. These are provided
* as weak definitions (to prevent the reference from being captured when the
* original object file is compiled), and in a distinct pass1 section (which
* will be replaced by postprocessing).
*
* Before processing in gen_device_deps.py, the array format is:
* {
* DEVICE_ORDINAL (or DEVICE_HANDLE_NULL if not a devicetree node),
* List of devicetree dependency ordinals (if any),
* Z_DEVICE_DEPS_SEP,
* List of injected dependency ordinals (if any),
* Z_DEVICE_DEPS_SEP,
* List of devicetree supporting ordinals (if any),
* }
*
* After processing in gen_device_deps.py, the format is updated to:
* {
* List of existing devicetree dependency handles (if any),
* Z_DEVICE_DEPS_SEP,
* List of injected devicetree dependency handles (if any),
* Z_DEVICE_DEPS_SEP,
* List of existing devicetree support handles (if any),
* DEVICE_HANDLE_NULL
* }
*
* It is also (experimentally) necessary to provide explicit alignment on each
* object. Otherwise x86-64 builds will introduce padding between objects in the
* same input section in individual object files, which will be retained in
* subsequent links both wasting space and resulting in aggregate size changes
* relative to pass2 when all objects will be in the same input section.
*/
#define Z_DEVICE_DEPS_DEFINE(node_id, dev_id, ...) \
extern Z_DEVICE_DEPS_CONST device_handle_t Z_DEVICE_DEPS_NAME( \
dev_id)[]; \
Z_DEVICE_DEPS_CONST Z_DECL_ALIGN(device_handle_t) \
Z_DEVICE_DEPS_SECTION Z_DEVICE_DEPS_EXTERN __weak \
Z_DEVICE_DEPS_NAME(dev_id)[] = { \
COND_CODE_1( \
DT_NODE_EXISTS(node_id), \
(DT_DEP_ORD(node_id), DT_REQUIRES_DEP_ORDS(node_id)), \
(DEVICE_HANDLE_NULL,)) /**/ \
Z_DEVICE_DEPS_SEP, \
Z_DEVICE_EXTRA_DEPS(__VA_ARGS__) /**/ \
Z_DEVICE_DEPS_SEP, \
COND_CODE_1(DT_NODE_EXISTS(node_id), \
(DT_SUPPORTS_DEP_ORDS(node_id)), ()) /**/ \
}
#endif /* CONFIG_DEVICE_DEPS */
#if defined(CONFIG_DEVICE_DT_METADATA) || defined(__DOXYGEN__)
/**
* @brief Devicetree node labels associated with a device
*/
struct device_dt_nodelabels {
/* @brief number of elements in the nodelabels array */
size_t num_nodelabels;
/* @brief array of node labels as strings, exactly as they
* appear in the final devicetree
*/
const char *nodelabels[];
};
/**
* @brief Devicetree metadata associated with a device
*
* This is currently limited to node labels, but the structure is
* generic enough to be extended later without requiring breaking
* changes.
*/
struct device_dt_metadata {
/**
* @brief Node labels associated with the device
* @see device_get_dt_nodelabels()
*/
const struct device_dt_nodelabels *nl;
};
/**
* @brief Get a @ref device reference from a devicetree node label.
*
* If:
*
* 1. a device was defined from a devicetree node, for example
* with DEVICE_DT_DEFINE() or another similar macro, and
* 2. that devicetree node has @p nodelabel as one of its node labels, and
* 3. the device initialized successfully at boot time,
*
* then this function returns a pointer to the device. Otherwise, it
* returns NULL.
*
* @param nodelabel a devicetree node label
* @return a device reference for a device created from a node with that
* node label, or NULL if either no such device exists or the device
* failed to initialize
*/
__syscall const struct device *device_get_by_dt_nodelabel(const char *nodelabel);
/**
* @brief Get the devicetree node labels associated with a device
* @param dev device whose metadata to look up
* @return information about the devicetree node labels or NULL if not available
*/
static inline const struct device_dt_nodelabels *
device_get_dt_nodelabels(const struct device *dev)
{
if (dev->dt_meta == NULL) {
return NULL;
}
return dev->dt_meta->nl;
}
/**
* @brief Maximum devicetree node label length.
*
* The maximum length is set so that device_get_by_dt_nodelabel() can
* be used from userspace.
*/
#define Z_DEVICE_MAX_NODELABEL_LEN Z_DEVICE_MAX_NAME_LEN
/**
* @brief Name of the identifier for a device's DT metadata structure
* @param dev_id device identifier
*/
#define Z_DEVICE_DT_METADATA_NAME_GET(dev_id) UTIL_CAT(__dev_dt_meta_, dev_id)