Commit 951ebf58 authored by Shawn Guo's avatar Shawn Guo

ARM: dts: imx: ocram size is different between imx6q and imx6dl

The ocram on imx6q is 256 KiB while on imx6dl it's 128 KiB.  Let's
have separate node for imx6q and imx6dl.  It also changes imx6q size
0x3f000 to 0x40000 to match the hardware.
Signed-off-by: default avatarShawn Guo <shawn.guo@linaro.org>
Acked-by: default avatarLiu Ying <Ying.Liu@freescale.com>
parent e9c17866
...@@ -32,6 +32,12 @@ cpu@1 { ...@@ -32,6 +32,12 @@ cpu@1 {
}; };
soc { soc {
ocram: sram@00900000 {
compatible = "mmio-sram";
reg = <0x00900000 0x20000>;
clocks = <&clks 142>;
};
aips1: aips-bus@02000000 { aips1: aips-bus@02000000 {
iomuxc: iomuxc@020e0000 { iomuxc: iomuxc@020e0000 {
compatible = "fsl,imx6dl-iomuxc"; compatible = "fsl,imx6dl-iomuxc";
......
...@@ -61,6 +61,12 @@ cpu@3 { ...@@ -61,6 +61,12 @@ cpu@3 {
}; };
soc { soc {
ocram: sram@00900000 {
compatible = "mmio-sram";
reg = <0x00900000 0x40000>;
clocks = <&clks 142>;
};
aips-bus@02000000 { /* AIPS1 */ aips-bus@02000000 { /* AIPS1 */
spba-bus@02000000 { spba-bus@02000000 {
ecspi5: ecspi@02018000 { ecspi5: ecspi@02018000 {
......
...@@ -99,12 +99,6 @@ gpmi: gpmi-nand@00112000 { ...@@ -99,12 +99,6 @@ gpmi: gpmi-nand@00112000 {
status = "disabled"; status = "disabled";
}; };
ocram: sram@00900000 {
compatible = "mmio-sram";
reg = <0x00900000 0x3f000>;
clocks = <&clks 142>;
};
timer@00a00600 { timer@00a00600 {
compatible = "arm,cortex-a9-twd-timer"; compatible = "arm,cortex-a9-twd-timer";
reg = <0x00a00600 0x20>; reg = <0x00a00600 0x20>;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment