ARM: mx6: Change the FDT loading address to avoid overlaping
authorOtavio Salvador <otavio@ossystems.com.br>
Mon, 16 Dec 2013 22:44:04 +0000 (20:44 -0200)
committerStefano Babic <sbabic@denx.de>
Fri, 3 Jan 2014 14:44:05 +0000 (15:44 +0100)
This patch fixes allow for the DeviceTree and initrd relocation fixing
the boot of FSL 3.10.9-1.0.0-alpha kernel.

This changes following boards:

 - mx6sabreauto
 - mx6sabresd
 - wandboard
 - udoo
 - nitrogen6x
 - cgtqmx6eval

The reasoning, as explained by Hui Liu, is:

,----
| The FDT blob will be placed at DDR physical addr: 0x11000000. When Linux kernel
| Boot up, it will decompress the compressed kernel image and place the decompressed
| kernel image at the low end of the DDR memory and start running from it. If the
| decompressed kernel image is bigger for example than 16M, it may over written the
| fdt blob which u-boot loaded to the DDR memory @0x11000000 with fdt_addr=0x11000000
|
| To expand the fdt_addr from 0x11000000 to 0x18000000, which can avoid the override
| Since we will not likely have one kernel image larger than 128MB.
`----

Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
Acked-by: Stefano Babic <sbabic@denx.de>
include/configs/cgtqmx6eval.h
include/configs/mx6sabre_common.h
include/configs/nitrogen6x.h
include/configs/udoo.h
include/configs/wandboard.h

index d5db8f504fcd2f285f851617d77348e7aa0510f2..29a023c499a108ea5280561b100f0c13b1ba997f 100644 (file)
@@ -81,7 +81,7 @@
        "console=ttymxc1\0" \
        "fdt_high=0xffffffff\0" \
        "initrd_high=0xffffffff\0" \
-       "fdt_addr=0x11000000\0" \
+       "fdt_addr=0x18000000\0" \
        "boot_fdt=try\0" \
        "mmcdev=1\0" \
        "mmcpart=1\0" \
index 63405aa708ed6e829a7e65e48e58d0c2fdf8d963..21c848f90bd2d0ee52bf422089dfd1f78f782969 100644 (file)
@@ -99,7 +99,7 @@
        "script=boot.scr\0" \
        "uimage=uImage\0" \
        "fdt_file=" CONFIG_DEFAULT_FDT_FILE "\0" \
-       "fdt_addr=0x11000000\0" \
+       "fdt_addr=0x18000000\0" \
        "boot_fdt=try\0" \
        "ip_dyn=yes\0" \
        "console=" CONFIG_CONSOLE_DEV "\0" \
index 9c9f8f7a74e2e2c4207ae878b8bf3b3407df9b5f..f4ff5cd1b5c69bee2b2622c3d3848686db72cc8c 100644 (file)
        "fdt_high=0xffffffff\0" \
        "initrd_high=0xffffffff\0" \
        "fdt_file=imx6q-sabrelite.dtb\0" \
-       "fdt_addr=0x11000000\0" \
+       "fdt_addr=0x18000000\0" \
        "boot_fdt=try\0" \
        "ip_dyn=yes\0" \
        "mmcdev=0\0" \
index 4d96f18b08949b1a248c73f266c8a2ee96ee1fc5..614e1fe3b5efc119a0cdebb01e740c0d25701ddd 100644 (file)
        "fdt_high=0xffffffff\0" \
        "initrd_high=0xffffffff\0" \
        "fdt_file=" CONFIG_DEFAULT_FDT_FILE "\0" \
-       "fdt_addr=0x11000000\0" \
+       "fdt_addr=0x18000000\0" \
        "boot_fdt=try\0" \
        "ip_dyn=yes\0" \
        "mmcdev=0\0" \
index 8ce2d6e1708acfc2ada6f54a980f02bfeb100ea8..ae8480dd24d169540885e13dc494411a6716a807 100644 (file)
        "fdt_high=0xffffffff\0" \
        "initrd_high=0xffffffff\0" \
        "fdt_file=" CONFIG_DEFAULT_FDT_FILE "\0" \
-       "fdt_addr=0x11000000\0" \
+       "fdt_addr=0x18000000\0" \
        "boot_fdt=try\0" \
        "ip_dyn=yes\0" \
        "mmcdev=" __stringify(CONFIG_SYS_MMC_ENV_DEV) "\0" \