diff options
author | Vikas Manocha <vikas.manocha@st.com> | 2017-05-28 19:55:11 (GMT) |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2017-06-09 15:23:59 (GMT) |
commit | c6d9e9dbc3d02c03ea1f6671034317593a2ea4ff (patch) | |
tree | d8e3b9133a3e8b7dfceed5ef2274e0bb12e5540b /arch/arm/include | |
parent | b97476965bf292c13074e01de4bd39253de0ef66 (diff) | |
download | u-boot-fsl-qoriq-c6d9e9dbc3d02c03ea1f6671034317593a2ea4ff.tar.xz |
SPL: Add XIP booting support
Enable support for XIP (execute in place) of U-Boot or kernel image. There is
no need to copy image from flash to ram if flash supports execute in place.
Signed-off-by: Vikas Manocha <vikas.manocha@st.com>
Reviewed-by: Alexandru Gagniuc <alex.g@adaptrum.com>
Diffstat (limited to 'arch/arm/include')
-rw-r--r-- | arch/arm/include/asm/spl.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/arm/include/asm/spl.h b/arch/arm/include/asm/spl.h index 5d7f7e6..0e67470 100644 --- a/arch/arm/include/asm/spl.h +++ b/arch/arm/include/asm/spl.h @@ -29,6 +29,7 @@ enum { BOOT_DEVICE_I2C, BOOT_DEVICE_BOARD, BOOT_DEVICE_DFU, + BOOT_DEVICE_XIP, BOOT_DEVICE_NONE }; #endif |