diff options
author | Ye Li <ye.li@nxp.com> | 2017-03-22 18:20:44 +0800 |
---|---|---|
committer | Ye Li <ye.li@nxp.com> | 2017-04-05 19:48:58 +0800 |
commit | 39f0f68ed6db8ef10606ddd76a3362aa474633d3 (patch) | |
tree | 334a1c3ac8c78b4292f2f7cefe1c926206d9da4a /include | |
parent | 65e74eb0b354cb01c8422f30f9e14dead42201b9 (diff) | |
download | u-boot-imx-39f0f68ed6db8ef10606ddd76a3362aa474633d3.zip u-boot-imx-39f0f68ed6db8ef10606ddd76a3362aa474633d3.tar.gz u-boot-imx-39f0f68ed6db8ef10606ddd76a3362aa474633d3.tar.bz2 |
MLK-14506-1 HAB: Change CSF size to 0x4000
Modify the CONFIG_CSF_SIZE to 0x4000 to align with v2016.03. Also remove
the duplicated setting for CSF size.
Signed-off-by: Ye Li <ye.li@nxp.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/configs/mx6_common.h | 2 | ||||
-rw-r--r-- | include/configs/mx6sllevk.h | 6 | ||||
-rw-r--r-- | include/configs/mx7_common.h | 2 |
3 files changed, 2 insertions, 8 deletions
diff --git a/include/configs/mx6_common.h b/include/configs/mx6_common.h index 568f236..8d90e14 100644 --- a/include/configs/mx6_common.h +++ b/include/configs/mx6_common.h @@ -110,7 +110,7 @@ defined(CONFIG_MX6DL)) && !defined(CONFIG_MX6S) /* Secure boot (HAB) support */ #ifdef CONFIG_SECURE_BOOT -#define CONFIG_CSF_SIZE 0x2000 +#define CONFIG_CSF_SIZE 0x4000 #define CONFIG_CMD_DEKBLOB #ifdef CONFIG_SPL_BUILD #define CONFIG_SPL_DRIVERS_MISC_SUPPORT diff --git a/include/configs/mx6sllevk.h b/include/configs/mx6sllevk.h index 7e38a05..f68a30b 100644 --- a/include/configs/mx6sllevk.h +++ b/include/configs/mx6sllevk.h @@ -11,12 +11,6 @@ #include "mx6_common.h" -#ifdef CONFIG_SECURE_BOOT -#ifndef CONFIG_CSF_SIZE -#define CONFIG_CSF_SIZE 0x4000 -#endif -#endif - /* Size of malloc() pool */ #define CONFIG_SYS_MALLOC_LEN (16 * SZ_1M) diff --git a/include/configs/mx7_common.h b/include/configs/mx7_common.h index 26894cb..c90c5d2 100644 --- a/include/configs/mx7_common.h +++ b/include/configs/mx7_common.h @@ -70,7 +70,7 @@ /* Secure boot (HAB) support */ #ifdef CONFIG_SECURE_BOOT -#define CONFIG_CSF_SIZE 0x2000 +#define CONFIG_CSF_SIZE 0x4000 #define CONFIG_CMD_DEKBLOB #endif |