- #include <linux/init.h>
- #include <linux/module.h>
- #include <linux/of.h>
- /*mynode@0x12345678{
- compatible = "hqyj,mynode";
- astring="hello 22071";
- uint =<0xaabbccdd 0x11223344>;
- binarry=[00 0c 29 7b f9 be];
- mixed ="hello",[11 22],<0x12345678>;
- };*/
-
- //定义指针指向获取的设备树节点信息空间
- struct device_node *node;
- int ret;
- unsigned int val;
- unsigned int array[2];
- const char *str;
- static int __init mycdev_init(void)
- {
- //通过路径获取设备树节点信息
- node=of_find_node_by_path("/mynode@0x12345678");
- if(node==NULL)
- {
- printk("通过路径解析设备树节点失败\n");
- return -EFAULT;
- }
- printk("成功解析到设备树节点\n");
- //获取u32的值
- ret=of_property_read_u32_index(node,"uint",1,&val);
- if(ret)
- {
- printk("获取u32失败\n");
- return -EFAULT;
- }
- printk("vaule=%#x\n",val);
- //获取u32数组
- ret=of_property_read_variable_u32_array(node,"uint",array,2,2);
- if(ret<0)
- {
- printk("获取u32数组失败\n");
- return -EFAULT;
- }
- printk("vaule:%#x %#x\n",array[0],array[1]);
- //循环遍历单字节属性
- ret=of_property_read_string(node,"astring",&str);
- if(ret)
- {
- printk("获取字符串失败\n");
- return -EFAULT;
- }
- printk("value=%s\n",str);
- return 0;
- }
- static void __exit mycdev_exit(void)
- {
- }
- module_init(mycdev_init);
- module_exit(mycdev_exit);
- MODULE_LICENSE("GPL");
设备树结点信息空间路径:自定义节点的名称
代码思路:设置节点struct device_node *node---->通过路径给节点导入信息:node=of_find_node_by_path("/mynode@0x12345678");---->通过不同类型函数接口,从节点获得数据,再从接口输出