Zephyr RTOS

Device Tree

Zephyr Device Tree Mysteries, Solved.
The device tree is parsed at compile time and converted in to C header files

All device tree info is accessible at compile time via the zepher/devicetree api

How zephyr.dts gets converted to devicetree_unfixed.h

Pasted image 20250309194558.png

Macrobatics is the solution to having quotes in fields

Pasted image 20250309194841.png
DT_N = devicetree node
Anytime there is a slash, it's replaced with a capital S
DT_N_S_parent_S_child would be /parent/child
so DT_N_S_foo_S_bar would be /foo/bar

These ARE NOT VALUES they are just tokens
But...we can use them to get the value without any over the overhead that we're trying to avoid

Pasted image 20250309195425.png

Capital P is property, followed by the name of the property, in this case, "size "

This is why we lowercase and underscore
Pasted image 20250309195741.png

Device Tree Bindings

Device tree bindings are basically schema for nodes and is a description of what the node may contain. Necessary to preform the conversion to C
Pasted image 20250309193855.png

Important Device Tree Properties

You can have multiple instances of a device and each can have its own properties