label:node-name@unit-address
格式:“manufacturer,model”厂商,驱动名字
根节点的compatible属性是为了匹配linux内核是否支持此设备
model也是一个字符串,描述设备模块信息
exp:model=“wm8960-audio”
也是字符串,表示设备的状态
值 | 描述 |
---|---|
okay | 可操作设备 |
disabled | 不可操作,但可变可操作 |
fail | 不可操作 |
fail-sss | 与上面相同,sss为检测到错误内容 |
#address-cells表示该节点的地址
#size-cells表示该节点所占的地址长度
//此为.dts文件 //example 1 / { #address-cells = <0x1>; //在 root node下使用1个u32来代表address。 #size-cells = <0x0>; // 在root node下使用0个u32来代表size。 ... ... memory { // memory device ... reg = <0x90000000>; // 0x90000000是存取memory的address ... }; ... ... } / { #address-cells = <0x1>; //在root node下使用1个u32来代表address。 #size-cells = <0x1>; //在root node下使用1个u32来代表size。 ... ... memory { // memory device ... reg = <0x90000000 0x800000>; // 0x90000000 是存取 memory 的 address // 0x800000 是 memory 的 size。 ... }; ... ... } / { #address-cells = <0x2>; // 在root node下使用2个u32来代表address。 #size-cells = <0x1>; // 在root node下使用1个u32来代表size。 ... ... memory { // memory device ... reg = <0x90000000 00000000 0x800000>; // 0x90000000 00000000 是存取memory的address // 0x800000 是memory的size。 ... }; ... ... } / { #address-cells = <0x2>; // 在root node下使用2个u32来代表address。 #size-cells = <0x2>; // 在root node下使用2个u32来代表size。 ... ... memory { // memory device ... reg = <0x90000000 00000000 0x800000 00000000>; // 0x90000000 00000000 是存取memory的address // 0x800000 00000000 是memory的size。 ... }; ... ... }
**reg格式:reg=
注意:reg格式与csdn例子有些不一样还需深究!!!
主要描述节点的设备地址空间资源信息!
格式:ranges=<child-bus-add,parent-bus-add,length>
aliases:别名
通常使用label:&label来方便访问节点
功能:传递
**这些函数都有个统一的前缀of_,所以统称为OF函数
of_find_node_by_name函数
原型:struct device_node *of_find_node_by_name( struct device_node *from const char *name)
from:起始节点;name:寻找节点;
从from节点开始递归查找相应的name,如果from为NULL,则从根节点开始
of_find_node_by_type函数
原型:struct device_node *of_find_node_by_type( struct device_node *from const char *type)
from:起始节点;type:寻找type字符串;
of_find_node_by_compatible函数
原型:struct device_node *of_find_node_by_compatible( struct device_node *from const char *type const char *compatible)
from:起始节点;type:寻找type字符串;; compatible:对于的compatible属性列表
of_find_node_by_path
原型:inline struct device_node *of_find_node_by_path(const char *path)
struct device_node *of_get_parent(const struct device_node *node)
struct device_node *of_get_next_child(
const struct device_node *node,
struct device_node *prev)
property *of_find_property(const struct device_node *np,
const char *name,int *lenp)
np:设备节点;name:属性名字;lenp:属性值的字节数
return: 找到的属性
int of_property_count_elems_of_size(const struct device_node *np,const char *propname,int elem_size)
**exp:获取属性中元素数量,比如reg属性值是个数组,即该函数返回数组的大小。
**
np:设备节点;proname:需要统计属性名字;elem_size:元素长度
int of_property_read_u32_index(const struct device_node *np
,const char *proname, u32 index,u32 *out_value)
index:读取值的标号;out_value:读取到的值
**同样地,也有相似的函数:
1.of_property_read_u8_array(const struct device_node *np,const char *proname,u8 *out_values,size_t sz)
2.of_property_read_u16_array(…)
3.of_property_read_u32_array(…)
4.of_property_read_u64_array(…)
5.of_property_read_string(struct device_node *np,
const char *proname,const char ****out_string)
6.of_n_addr_cells(struct device_node *np)
7.of_n_size_cells(struct device_node *np)