mirror of https://gitee.com/openkylin/linux.git
ARM: dts: imx6sx: Fix memory node duplication
Boards based on imx6sx have duplicate memory nodes: - One coming from the board dts file: memory@ - One coming from the imx6sx.dtsi file. Fix the duplication by removing the memory node from the dtsi file and by adding 'device_type = "memory";' in the board dts. Reported-by: Rob Herring <robh@kernel.org> Signed-off-by: Fabio Estevam <festevam@gmail.com> Signed-off-by: Shawn Guo <shawnguo@kernel.org>
This commit is contained in:
parent
750d8df6e7
commit
216f35fedd
|
@ -12,6 +12,7 @@ / {
|
||||||
compatible = "boundary,imx6sx-nitrogen6sx", "fsl,imx6sx";
|
compatible = "boundary,imx6sx-nitrogen6sx", "fsl,imx6sx";
|
||||||
|
|
||||||
memory@80000000 {
|
memory@80000000 {
|
||||||
|
device_type = "memory";
|
||||||
reg = <0x80000000 0x40000000>;
|
reg = <0x80000000 0x40000000>;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -11,6 +11,7 @@ / {
|
||||||
compatible = "fsl,imx6sx-sabreauto", "fsl,imx6sx";
|
compatible = "fsl,imx6sx-sabreauto", "fsl,imx6sx";
|
||||||
|
|
||||||
memory@80000000 {
|
memory@80000000 {
|
||||||
|
device_type = "memory";
|
||||||
reg = <0x80000000 0x80000000>;
|
reg = <0x80000000 0x80000000>;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -21,6 +21,7 @@ chosen {
|
||||||
};
|
};
|
||||||
|
|
||||||
memory@80000000 {
|
memory@80000000 {
|
||||||
|
device_type = "memory";
|
||||||
reg = <0x80000000 0x40000000>;
|
reg = <0x80000000 0x40000000>;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -21,6 +21,7 @@ chosen {
|
||||||
};
|
};
|
||||||
|
|
||||||
memory@80000000 {
|
memory@80000000 {
|
||||||
|
device_type = "memory";
|
||||||
reg = <0x80000000 0x40000000>;
|
reg = <0x80000000 0x40000000>;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -49,6 +49,7 @@ / {
|
||||||
compatible = "udoo,neobasic", "fsl,imx6sx";
|
compatible = "udoo,neobasic", "fsl,imx6sx";
|
||||||
|
|
||||||
memory@80000000 {
|
memory@80000000 {
|
||||||
|
device_type = "memory";
|
||||||
reg = <0x80000000 0x20000000>;
|
reg = <0x80000000 0x20000000>;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
@ -49,6 +49,7 @@ / {
|
||||||
compatible = "udoo,neoextended", "fsl,imx6sx";
|
compatible = "udoo,neoextended", "fsl,imx6sx";
|
||||||
|
|
||||||
memory@80000000 {
|
memory@80000000 {
|
||||||
|
device_type = "memory";
|
||||||
reg = <0x80000000 0x40000000>;
|
reg = <0x80000000 0x40000000>;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
@ -49,6 +49,7 @@ / {
|
||||||
compatible = "udoo,neofull", "fsl,imx6sx";
|
compatible = "udoo,neofull", "fsl,imx6sx";
|
||||||
|
|
||||||
memory@80000000 {
|
memory@80000000 {
|
||||||
|
device_type = "memory";
|
||||||
reg = <0x80000000 0x40000000>;
|
reg = <0x80000000 0x40000000>;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
@ -15,10 +15,8 @@ / {
|
||||||
* The decompressor and also some bootloaders rely on a
|
* The decompressor and also some bootloaders rely on a
|
||||||
* pre-existing /chosen node to be available to insert the
|
* pre-existing /chosen node to be available to insert the
|
||||||
* command line and merge other ATAGS info.
|
* command line and merge other ATAGS info.
|
||||||
* Also for U-Boot there must be a pre-existing /memory node.
|
|
||||||
*/
|
*/
|
||||||
chosen {};
|
chosen {};
|
||||||
memory { device_type = "memory"; };
|
|
||||||
|
|
||||||
aliases {
|
aliases {
|
||||||
can0 = &flexcan1;
|
can0 = &flexcan1;
|
||||||
|
|
Loading…
Reference in New Issue