2

Was reading the Device Tree Usage and reached to the section describing the ranges key attribute for a node.

external-bus {
        #address-cells = <2>
        #size-cells = <1>;
        ranges = <0 0  0x10100000   0x10000     // Chipselect 1, Ethernet
                  1 0  0x10160000   0x10000     // Chipselect 2, i2c controller
                  2 0  0x30000000   0x1000000>; // Chipselect 3, NOR Flash

        ethernet@0,0 {
            compatible = "smc,smc91c111";
            reg = <0 0 0x1000>;
            interrupts = < 5 2 >;
        };

        i2c@1,0 {
            compatible = "acme,a1234-i2c-bus";
            #address-cells = <1>;
            #size-cells = <0>;
            reg = <1 0 0x1000>;
            interrupts = < 6 2 >;
            rtc@58 {
                compatible = "maxim,ds1338";
                reg = <58>;
                interrupts = < 7 3 >;
            };
        };

        flash@2,0 {
            compatible = "samsung,k8f1315ebm", "cfi-flash";
            reg = <2 0 0x4000000>;
        };
    };
  1. What is the difference between ranges and reg ?
  2. What are the dimensions for the ranges, how the parser figure out what is written in it?
  3. One missing part I didn't understand yet? Can't include .h files instead of hard-coding values in a the .dts file?
4

2 回答 2

4

“范围”属性将当前节点(“外部总线”节点)中的一个或多个地址(范围左侧的第二个数字)映射到父节点(可能是 CPU)地址空间中的地址(第三个数字)在范围内)。第四个数字是范围的长度。总线可以对连接外围设备的外部地址有自己的想法,因此管理总线上外围设备的驱动程序需要知道这些范围,以便从设备读取或写入。

“reg”属性表示设备在定义设备的节点(在本例中为“外部总线”)的地址范围内的地址。所以在这种情况下,flash@2,0位于外部总线范围内的地址 0,并扩展到地址 0x04000000。这对应于父 (CPU) 地址空间中的地址范围 0x30000000 到 0x34000000。

我假设第三个范围的长度说明符2 0 0x30000000 0x1000000>; // Chipselect 3, NOR Flash实际上应该是0x04000000而不是0x1000000.

于 2013-12-11T21:51:00.027 回答
1

对于这个特定的例子,Jonathan Ben-Avraham 的解释是正确的。但是最好了解ranges设备树中属性的详细结构。

  • 范围是地址转换的列表。
  • 范围表中的每个条目都是一个元组,其中包含子地址父地址和子地址空间中区域的大小

喜欢

ranges = < Child1Address ParentAddressForChild1 sizeofchild1 
           Child2Address ParentAddressForChild2 sizeofchild2
           Child3Address ParentAddressForChild3 sizeofchild3
>;
  • 每个字段的大小确定如下

用于获取子节点的子地址大小检查#address-cells值。

计算其父节点的父地址大小校验#address-cells值,

#size-cells用于取子节点大小校验值的长度 。


Example1:在问题中提到

    #address-cells = <1>;
    #size-cells = <1>;
    external-bus {
        #address-cells = <2>;
        #size-cells = <1>;
        ranges = <0 0  0x10100000   0x10000     // Chipselect 1, Ethernet
                  1 0  0x10160000   0x10000     // Chipselect 2, i2c controller
                  2 0  0x30000000   0x1000000>; // Chipselect 3, NOR Flash

让我们解码第一个条目。

  1. 子地址单元大小为 2,因此前两个条目提到子地址。(此地址仅特定于本地子寻址)此外,如何解码这两个条目是设备特定的。设备驱动程序应该有这些文件)
  2. parent address-cells 大小为 1,因此下一个条目是该孩子的父地址。
  3. child size-cells 是 1 所以下一个条目是孩子的范围(写到父地址。)

Example2: PCI 设备入口

#address-cells = <1>;
#size-cells = <1>;
pci@0x10180000 {
    compatible = "arm,versatile-pci-hostbridge", "pci";
    reg = <0x10180000 0x1000>;
    interrupts = <8 0>;
    bus-range = <0 0>;

    #address-cells = <3>
    #size-cells = <2>;
    ranges = <0x42000000 0 0x80000000 0x80000000 0 0x20000000
              0x02000000 0 0xa0000000 0xa0000000 0 0x10000000
              0x01000000 0 0x00000000 0xb0000000 0 0x01000000>;

这里

0x42000000 0 0x80000000是child1的地址。PCI 驱动程序文档中提到了如何解码这 3 个条目。

0x80000000 是父地址。父节点是 cpu,所以从 cpu 这个地址用来和这个设备通信。

0 0x20000000 是该设备在父地址空间中的大小。(0 到 512MB 地址)

于 2021-03-04T01:45:13.873 回答