Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

ARM: dts: imx35-pdk: Fix memory region description

On imx35pdk there are two DRAM chip selects that are used:

CS0 at 0x80000000
CS1 at 0x90000000

Each bank is connected to 128MB of DRAM, giving a total of 256MB of system DRAM.

Fix the memory layout to describe the hardware appropriately.

Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
Signed-off-by: Shawn Guo <shawn.guo@freescale.com>

authored by

Fabio Estevam and committed by
Shawn Guo
c6f0b878 75416cfe

+2 -1
+2 -1
arch/arm/boot/dts/imx35-pdk.dts
··· 18 18 compatible = "fsl,imx35-pdk", "fsl,imx35"; 19 19 20 20 memory { 21 - reg = <0x80000000 0x8000000>; 21 + reg = <0x80000000 0x8000000>, 22 + <0x90000000 0x8000000>; 22 23 }; 23 24 }; 24 25