What is address-cell
and size-cells
in the device tree? Is reg
is related to address-cell
and size-cell
? If yes, then how?
For example:
memory: memory@20000000 {
#address-cells = <1>;
#size-cells = <1>;
device_type = "memory";
reg = <0x20000000 0x80000000>;
};
What is 0x20000000 ? from where we can get this ?