zoukankan      html  css  js  c++  java
  • device tree --- #address-cells and #size-cells property

    device tree source


    Example1

    / {
            #address-cells = <0x1>;    // 在 root node 下使用 1 個 u32 來代表 address。
            #size-cells = <0x0>;       // 在 root node 下使用 0 個 u32 來代表 size。
            ...
            ...
            memory {        // memory device
                    ...
                    reg = <0x90000000>;
                    // 0x90000000 是存取 memory 的 address
                    ...
    	};
            ...
            ...
    }
    

    Example2

    / {
            #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。
                    ...
            };
            ...
            ...
    }
    

    Example3

    / {
            #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。
                    ...
    	};
            ...
            ...
    }
    

    Example4

    / {
            #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。
                    ...
            };
            ...
            ...
    }
    
  • 相关阅读:
    iOS缓存
    哈希表
    查找
    基数排序
    归并排序
    快速排序
    redis 的高并发的理解
    springboot的理解
    使用maven命令安装jar包到本地仓库
    linux Centos7 安装docker步骤
  • 原文地址:https://www.cnblogs.com/youchihwang/p/7050846.html
Copyright © 2011-2022 走看看