读取节点属性的函数——常用OF API

在Linux的BSP和驱动代码中,还经常会使用到Linux中一组Device Tree的API,这些API通常被冠以of_前缀,它们的实现代码位于内核的drivers/of目录。这些常用的API包括:

一、

int of_device_is_compatible(const struct device_node *device,const char *compat);

判断设备结点的compatible 属性是否包含compat指定的字符串。当一个驱动支持2个或多个设备的时候,这些不同.dts文件中设备的compatible 属性都会进入驱动 OF匹配表。因此驱动可以透过Bootloader传递给内核的Device Tree中的真正结点的compatible 属性以确定究竟是哪一种设备,从而根据不同的设备类型进行不同的处理。如drivers/pinctrl/pinctrl-sirf.c即兼容于"sirf,prima2-pinctrl",又兼容于"sirf,prima2-pinctrl",在驱动中就有相应分支处理:

[cpp]  view plain copy
  1. 1682 if (of_device_is_compatible(np, "sirf,marco-pinctrl"))  
  2. 1683      is_marco = 1;  

二。

struct device_node *of_find_compatible_node(struct device_node *from,

         const char *type, const char *compatible);

根据compatible属性,获得设备结点。遍历Device Tree中所有的设备结点,看看哪个结点的类型、compatible属性与本函数的输入参数匹配,大多数情况下,from、type为NULL。

三。

int of_property_read_u8_array(const struct device_node *np,

                     const char *propname, u8 *out_values, size_t sz);

int of_property_read_u16_array(const struct device_node *np,

                      const char *propname, u16 *out_values, size_t sz);

int of_property_read_u32_array(const struct device_node *np,

                      const char *propname, u32 *out_values, size_t sz);

int of_property_read_u64(const struct device_node *np, const char

*propname, u64 *out_value);

读取设备结点np的属性名为propname,类型为8、16、32、64位整型数组的属性。对于32位处理器来讲,最常用的是of_property_read_u32_array()。如在arch/arm/mm/cache-l2x0.c中,透过如下语句读取L2 cache的"arm,data-latency"属性:

[cpp]  view plain copy
  1. 534         of_property_read_u32_array(np, "arm,data-latency",  
  2. 535                                    data, ARRAY_SIZE(data));  

在arch/arm/boot/dts/vexpress-v2p-ca9.dts中,含有"arm,data-latency"属性的L2 cache结点如下:

[cpp]  view plain copy
  1. 137         L2: cache-controller@1e00a000 {  
  2. 138                 compatible = "arm,pl310-cache";  
  3. 139                 reg = <0x1e00a000 0x1000>;  
  4. 140                 interrupts = <0 43 4>;  
  5. 141                 cache-level = <2>;  
  6. 142                 arm,data-latency = <1 1 1>;  
  7. 143                 arm,tag-latency = <1 1 1>;  
  8. 144         }  

有些情况下,整形属性的长度可能为1,于是内核为了方便调用者,又在上述API的基础上封装出了更加简单的读单一整形属性的API,它们为int of_property_read_u8()、of_property_read_u16()等,实现于include/linux/of.h:

[cpp]  view plain copy
  1. 513 static inline int of_property_read_u8(const struct device_node *np,  
  2. 514                                        const char *propname,  
  3. 515                                        u8 *out_value)  
  4. 516 {  
  5. 517         return of_property_read_u8_array(np, propname, out_value, 1);  
  6. 518 }  
  7. 519  
  8. 520 static inline int of_property_read_u16(const struct device_node *np,  
  9. 521                                        const char *propname,  
  10. 522                                        u16 *out_value)  
  11. 523 {  
  12. 524         return of_property_read_u16_array(np, propname, out_value, 1);  
  13. 525 }  
  14. 526  
  15. 527 static inline int of_property_read_u32(const struct device_node *np,  
  16. 528                                        const char *propname,  
  17. 529                                        u32 *out_value)  
  18. 530 {  
  19. 531         return of_property_read_u32_array(np, propname, out_value, 1);  
  20. 532 }  
四。
int of_property_read_string(struct device_node *np, const char

*propname, const char **out_string);

int of_property_read_string_index(struct device_node *np, const char

    *propname, int index, const char **output);

前者读取字符串属性,后者读取字符串数组属性中的第index个字符串。如drivers/clk/clk.c中的of_clk_get_parent_name()透过of_property_read_string_index()遍历clkspec结点的所有"clock-output-names"字符串数组属性。

[cpp]  view plain copy
  1. 1759 const char *of_clk_get_parent_name(struct device_node *np, int index)  
  2. 1760 {  
  3. 1761         struct of_phandle_args clkspec;  
  4. 1762         const char *clk_name;  
  5. 1763         int rc;  
  6. 1764  
  7. 1765         if (index < 0)  
  8. 1766                 return NULL;  
  9. 1767  
  10. 1768         rc = of_parse_phandle_with_args(np, "clocks""#clock-cells", index,  
  11. 1769                                         &clkspec);  
  12. 1770         if (rc)  
  13. 1771                 return NULL;  
  14. 1772  
  15. 1773         if (of_property_read_string_index(clkspec.np, "clock-output-names",  
  16. 1774                                   clkspec.args_count ? clkspec.args[0] : 0,  
  17. 1775                                           &clk_name) < 0)  
  18. 1776                 clk_name = clkspec.np->name;  
  19. 1777  
  20. 1778         of_node_put(clkspec.np);  
  21. 1779         return clk_name;  
  22. 1780 }  
  23. 1781 EXPORT_SYMBOL_GPL(of_clk_get_parent_name);  
五。
static inline bool of_property_read_bool(const struct device_node *np,

                                         const char *propname);

如果设备结点np含有propname属性,则返回true,否则返回false。一般用于检查空属性是否存在

六。

void __iomem *of_iomap(struct device_node *node, int index);

通过设备结点直接进行设备内存区间的 ioremap(),index是内存段的索引。若设备结点的reg属性有多段,可通过index标示要ioremap的是哪一段,只有1段的情况,index为0。采用Device Tree后,大量的设备驱动通过of_iomap()进行映射,而不再通过传统的ioremap。

七。

unsigned int irq_of_parse_and_map(struct device_node *dev, int index);

透过Device Tree或者设备的中断号,实际上是从.dts中的interrupts属性解析出中断号。若设备使用了多个中断,index指定中断的索引号

还有一些OF API,这里不一一列举,具体可参考include/linux/of.h头文件。

你可能感兴趣的:(读取节点属性的函数——常用OF API)