dts: arm: nxp: imx: Use 'nxp,imx-{i,d}tcm' compatible

On i.mx6/7 the TCMU and TCML regions are specific to instruction or
data.  So use the nxp,imx-itcm for TCML and nxp,imx-dtcm for TCMU.

Signed-off-by: Kumar Gala <kumar.gala@linaro.org>
This commit is contained in:
Kumar Gala 2018-12-14 13:44:37 -06:00 committed by Maureen Helm
commit e9a1d6493d
2 changed files with 4 additions and 7 deletions

View file

@ -28,15 +28,13 @@
};
tcml:memory@1fff8000 {
device_type = "memory";
compatible = "nxp,imx-code-bus";
compatible = "nxp,imx-itcm";
reg = <0x1fff8000 0x00008000>;
label = "TCML";
};
tcmu:memory@20000000 {
device_type = "memory";
compatible = "nxp,imx-sys-bus";
compatible = "nxp,imx-dtcm";
reg = <0x20000000 0x00008000>;
label = "TCMU";
};

View file

@ -37,14 +37,13 @@
};
tcml_code: code@1fff8000 {
compatible = "nxp,imx-code-bus";
compatible = "nxp,imx-itcm";
reg = <0x1fff8000 0x8000>;
label = "TCML CODE";
};
tcmu_sys: memory@20000000 {
device_type = "memory";
compatible = "nxp,imx-sys-bus";
compatible = "nxp,imx-dtcm";
reg = <0x20000000 0x8000>;
label = "TCMU SYSTEM";
};