diff options
author | Ye Li <ye.li@nxp.com> | 2016-02-24 11:20:29 +0800 |
---|---|---|
committer | Ye Li <ye.li@nxp.com> | 2016-03-25 14:19:00 +0800 |
commit | f86a2d38ca91863c797928ea69737cb3eddbb9d5 (patch) | |
tree | 913ad275ab9fbd912fb2e036c597b8b16225c12f /board/freescale/mx6qsabreauto/imximage.cfg | |
parent | 9401668b6b5721b557ba15cf40810770408bfd23 (diff) | |
download | u-boot-imx-f86a2d38ca91863c797928ea69737cb3eddbb9d5.zip u-boot-imx-f86a2d38ca91863c797928ea69737cb3eddbb9d5.tar.gz u-boot-imx-f86a2d38ca91863c797928ea69737cb3eddbb9d5.tar.bz2 |
MLK-12440-9 mx6dq/dl/dqp: Add plugin boot support for sabre boards
Add plugin.S for plugin boot initialization on mx6dq/dl/dqp sabresd board
and sabreauto board.
Need to enable "CONFIG_USE_PLUGIN" for this feature.
Signed-off-by: Ye Li <ye.li@nxp.com>
Diffstat (limited to 'board/freescale/mx6qsabreauto/imximage.cfg')
-rw-r--r-- | board/freescale/mx6qsabreauto/imximage.cfg | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/board/freescale/mx6qsabreauto/imximage.cfg b/board/freescale/mx6qsabreauto/imximage.cfg index 16bf473..8791aa8 100644 --- a/board/freescale/mx6qsabreauto/imximage.cfg +++ b/board/freescale/mx6qsabreauto/imximage.cfg @@ -1,5 +1,5 @@ /* - * Copyright (C) 2012 Freescale Semiconductor, Inc. + * Copyright (C) 2012-2016 Freescale Semiconductor, Inc. * * SPDX-License-Identifier: GPL-2.0+ * @@ -18,6 +18,11 @@ IMAGE_VERSION 2 */ BOOT_FROM sd +#ifdef CONFIG_USE_PLUGIN +/*PLUGIN plugin-binary-file IRAM_FREE_START_ADDR*/ +PLUGIN board/freescale/mx6qsabreauto/plugin.bin 0x00907000 +#else + /* * Device Configuration Data (DCD) * @@ -127,3 +132,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 |