diff options
author | Prabhakar Kushwaha <prabhakar.kushwaha@nxp.com> | 2016-02-03 17:04:07 +0530 |
---|---|---|
committer | York Sun <york.sun@nxp.com> | 2016-02-24 08:40:57 -0800 |
commit | 9f3e1b8a55060bcb2c52e2e3a828a70c7e106219 (patch) | |
tree | 4918a01f8f6f956988045360559aac8a3db8c244 /include/configs/ls2080a_common.h | |
parent | 16ed85601918cff4b99ac01afa4cfa0581eb2588 (diff) | |
download | u-boot-9f3e1b8a55060bcb2c52e2e3a828a70c7e106219.tar.gz u-boot-9f3e1b8a55060bcb2c52e2e3a828a70c7e106219.tar.xz u-boot-9f3e1b8a55060bcb2c52e2e3a828a70c7e106219.zip |
armv8: ls2080: Update bootcmd env variable
Before Linux boot DPL must be deployed to DPAA2 interface.
So update bootcmd env variable to make sure DPL deployment before
Linux boot.
Signed-off-by: Prabhakar Kushwaha <prabhakar.kushwaha@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 | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/include/configs/ls2080a_common.h b/include/configs/ls2080a_common.h index 51c3a17ed7..64b82e8388 100644 --- a/include/configs/ls2080a_common.h +++ b/include/configs/ls2080a_common.h @@ -272,8 +272,9 @@ unsigned long long get_qixis_addr(void); "earlycon=uart8250,mmio,0x21c0500" \ "ramdisk_size=0x2000000 default_hugepagesz=2m" \ " hugepagesz=2m hugepages=256" -#define CONFIG_BOOTCOMMAND "cp.b $kernel_start $kernel_load " \ - "$kernel_size && bootm $kernel_load" +#define CONFIG_BOOTCOMMAND "fsl_mc apply dpl 0x580700000 &&" \ + " cp.b $kernel_start $kernel_load" \ + " $kernel_size && bootm $kernel_load" #define CONFIG_BOOTDELAY 10 /* Monitor Command Prompt */ |