summaryrefslogtreecommitdiff
path: root/board/freescale/mx6sabresd/mx6dlsabresd.cfg
diff options
context:
space:
mode:
authorYe Li <ye.li@nxp.com>2017-02-24 15:24:20 +0800
committerYe Li <ye.li@nxp.com>2017-04-05 14:04:38 +0800
commitdb5e443ad7dcb76cb03cea79e1072c558e1daa1d (patch)
tree214140d5bf679bb36ccb6efe36ef8b417375c497 /board/freescale/mx6sabresd/mx6dlsabresd.cfg
parent4818df5d5c9056fcfd507d201e826cac773543a5 (diff)
downloadu-boot-imx-db5e443ad7dcb76cb03cea79e1072c558e1daa1d.zip
u-boot-imx-db5e443ad7dcb76cb03cea79e1072c558e1daa1d.tar.gz
u-boot-imx-db5e443ad7dcb76cb03cea79e1072c558e1daa1d.tar.bz2
MLK-14250-4 mx6dq/dl/dqp: Add plugin boot support for sabre boards
Add plugin.S for plugin boot initialization on mx6dq/dl/dqp sabresd and sabreauto boards. Need to set "CONFIG_USE_IMXIMG_PLUGIN" for this feature. Add the configurations for the plugin enabled buiding. Signed-off-by: Ye Li <ye.li@nxp.com>
Diffstat (limited to 'board/freescale/mx6sabresd/mx6dlsabresd.cfg')
-rw-r--r--board/freescale/mx6sabresd/mx6dlsabresd.cfg11
1 files changed, 10 insertions, 1 deletions
diff --git a/board/freescale/mx6sabresd/mx6dlsabresd.cfg b/board/freescale/mx6sabresd/mx6dlsabresd.cfg
index be9f87f..9e2cbee 100644
--- a/board/freescale/mx6sabresd/mx6dlsabresd.cfg
+++ b/board/freescale/mx6sabresd/mx6dlsabresd.cfg
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2014 Freescale Semiconductor, Inc.
+ * Copyright (C) 2014-2016 Freescale Semiconductor, Inc.
*
* SPDX-License-Identifier: GPL-2.0+
*
@@ -9,6 +9,9 @@
* The syntax is taken as close as possible with the kwbimage
*/
+#define __ASSEMBLY__
+#include <config.h>
+
/* image version */
IMAGE_VERSION 2
@@ -20,6 +23,11 @@ IMAGE_VERSION 2
BOOT_FROM sd
+#ifdef CONFIG_USE_IMXIMG_PLUGIN
+/*PLUGIN plugin-binary-file IRAM_FREE_START_ADDR*/
+PLUGIN board/freescale/mx6sabresd/plugin.bin 0x00907000
+#else
+
/*
* Device Configuration Data (DCD)
*
@@ -129,3 +137,4 @@ DATA 4 0x020e0010 0xF00000CF
/* set IPU AXI-id0 Qos=0xf(bypass) AXI-id1 Qos=0x7 */
DATA 4 0x020e0018 0x007F007F
DATA 4 0x020e001c 0x007F007F
+#endif