需求:通过设备树的键名获取键值
主要函数:
1. 通过键名获取32位的值
of_property_read_u32_index
2.通过键名获取32/8位值的数组
of_property_read_variable_u32_array
of_property_read_variable_u8_array
3.通过键名获取字符串
of_property_read_string
驱动代码
#include<linux/module.h>
#include<linux/init.h>
#include<linux/of.h>
/*
mynode@0x12345678{
compatible = "hqyj,mynode";
astring = "hello 22071";
uint = <0xaabbccdd 0x11223344>;
binary = [00 0c 29 7b f9 be];
mixed="hello",[11 22],<0x12345678>;
};
*/
struct device_node *node;
struct property *pr;
int len,i,ret;
unsigned int val;
unsigned int array[2];
unsigned char bin[8];
const char *str;
static int __init demo_init(void)
{
node=of_find_node_by_path("/mynode@0x12345678");
if(node==NULL)
{
printk("查找失败\n");
return -EIO;
}
//通过键名获取32位无符号整型数
ret=of_property_read_u32_index(node,"uint",0,&val);
if(ret)
{
printk("获取32位失败\n");
return EFAULT;
}
printk("32位整数=%#x\n",val);
//通过键名获得32位无符号数数组
ret=of_property_read_variable_u32_array(node,"uint",array,2,2);
if(ret<0)
{
printk("获取数组失败\n");
return EFAULT;
}
printk("32位整型数组=%#x, %#x\n",array[0],array[1]);
//通过键名获得字符串
ret=of_property_read_string(node,"astring",&str);
if(ret)
{
printk("获取字符串失败\n");
return EFAULT;
}
printk("字符串=%s\n",str);
//通过键名获得8位无符号数
ret=of_property_read_variable_u8_array(node,"binary",bin,2,8);
if(ret<0)
{
printk("获得8位数组失败\n");
return -EFAULT;
}
for(i=0;i<ret;i++)
{
printk("8位无符号数bin[%d]=%#x\n",i,bin[i]);
}
return 0;
}
static void __exit demo_exit(void)
{
}
module_init(demo_init);
module_exit(demo_exit);
MODULE_LICENSE("GPL");
串口工具运行结果