summaryrefslogtreecommitdiff
path: root/board/freescale/mx6slevk/imximage.cfg
diff options
context:
space:
mode:
authorYe Li <ye.li@nxp.com>2017-02-23 14:47:57 +0800
committerYe Li <ye.li@nxp.com>2017-04-05 14:04:38 +0800
commit9de30ce75fe9ebfb8daeb840385b7eccd4e78b77 (patch)
treea7b8f8a81625333e8b0316d3ee6b81416a6309c1 /board/freescale/mx6slevk/imximage.cfg
parent3eaf56494f3000f841531e8c219cf3dd9ca024f7 (diff)
downloadu-boot-imx-9de30ce75fe9ebfb8daeb840385b7eccd4e78b77.zip
u-boot-imx-9de30ce75fe9ebfb8daeb840385b7eccd4e78b77.tar.gz
u-boot-imx-9de30ce75fe9ebfb8daeb840385b7eccd4e78b77.tar.bz2
MLK-14250-1 mx6slevk: Add plugin boot support
Add plugin.S for plugin boot initialization. Need to set "CONFIG_USE_IMXIMG_PLUGIN" for this feature. Add the build configuration "mx6slevk_plugin_defconfig" to use the plugin. Signed-off-by: Ye Li <ye.li@nxp.com>
Diffstat (limited to 'board/freescale/mx6slevk/imximage.cfg')
-rw-r--r--board/freescale/mx6slevk/imximage.cfg11
1 files changed, 10 insertions, 1 deletions
diff --git a/board/freescale/mx6slevk/imximage.cfg b/board/freescale/mx6slevk/imximage.cfg
index 024de9c..a8c940e 100644
--- a/board/freescale/mx6slevk/imximage.cfg
+++ b/board/freescale/mx6slevk/imximage.cfg
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2013 Freescale Semiconductor, Inc.
+ * Copyright (C) 2013-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/mx6slevk/plugin.bin 0x00907000
+#else
+
/*
* Device Configuration Data (DCD)
*
@@ -113,3 +121,4 @@ DATA 4 0x021b08b8 0x00000800
DATA 4 0x021b0004 0x00025564
DATA 4 0x021b0404 0x00011006
DATA 4 0x021b001c 0x00000000
+#endif