diff options
author | Santan Kumar <santan.kumar@nxp.com> | 2017-04-28 12:47:24 +0530 |
---|---|---|
committer | York Sun <york.sun@nxp.com> | 2017-05-23 09:52:29 -0700 |
commit | f5bf23d8278b2fdfb9ce41fa36369cebc882ab02 (patch) | |
tree | 5ec5f0018f3182e42a67f2a09a958c27935031e2 /include/configs/ls2080a_common.h | |
parent | 8104deb2d6b77d3793a66016bf993bccd8f6afe2 (diff) | |
download | u-boot-f5bf23d8278b2fdfb9ce41fa36369cebc882ab02.tar.gz |
armv8: ls2080ardb, ls2080aqds: Adjust memory map for NOR-boot
This patch adjusts memory map for images on LS2080ARDB and
LS2080AQDS NOR flash as below
Image Flash Offset
RCW+PBI 0x00000000
Boot firmware (U-Boot) 0x00100000
Boot firmware Environment 0x00300000
PPA firmware 0x00400000
PHY firmware 0x00980000
DPAA2 MC 0x00A00000
DPAA2 DPL 0x00D00000
DPAA2 DPC 0x00E00000
Kernel.itb 0x01000000
Signed-off-by: Santan Kumar <santan.kumar@nxp.com>
Signed-off-by: Priyanka Jain <priyanka.jain@nxp.com>
Reviewed-by: York Sun <york.sun@nxp.com>
Diffstat (limited to 'include/configs/ls2080a_common.h')
-rw-r--r-- | include/configs/ls2080a_common.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/configs/ls2080a_common.h b/include/configs/ls2080a_common.h index 363bfd4e95..7b73139879 100644 --- a/include/configs/ls2080a_common.h +++ b/include/configs/ls2080a_common.h @@ -193,18 +193,18 @@ unsigned long long get_qixis_addr(void); "ramdisk_size=0x2000000\0" \ "fdt_high=0xa0000000\0" \ "initrd_high=0xffffffffffffffff\0" \ - "kernel_start=0x581200000\0" \ + "kernel_start=0x581000000\0" \ "kernel_load=0xa0000000\0" \ "kernel_size=0x2800000\0" \ "console=ttyAMA0,38400n8\0" \ - "mcinitcmd=fsl_mc start mc 0x580300000" \ - " 0x580800000 \0" + "mcinitcmd=fsl_mc start mc 0x580a00000" \ + " 0x580e00000 \0" #define CONFIG_BOOTARGS "console=ttyS0,115200 root=/dev/ram0 " \ "earlycon=uart8250,mmio,0x21c0500 " \ "ramdisk_size=0x2000000 default_hugepagesz=2m" \ " hugepagesz=2m hugepages=256" -#define CONFIG_BOOTCOMMAND "fsl_mc apply dpl 0x580700000 &&" \ +#define CONFIG_BOOTCOMMAND "fsl_mc apply dpl 0x580d00000 &&" \ " cp.b $kernel_start $kernel_load" \ " $kernel_size && bootm $kernel_load" |