mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-28 07:31:15 +00:00
secure_boot: include/configs: make secure boot header file uniform
The file fsl_secure_boot.h must be included in config file for Secure Boot. This is not required to be protected by any macro. CONFIG_FSL_CAAM must be defined and CONFIG_CMD_HASH should be turned on. The above was missing in some config files and all files have been made uniform in this respect. Signed-off-by: Aneesh Bansal <aneesh.bansal@nxp.com> Acked-by: Ruchika Gupta <ruchika.gupta@nxp.com> Reviewed-by: York Sun <york.sun@nxp.com>
This commit is contained in:
parent
c088326597
commit
ef6c55a240
13 changed files with 57 additions and 16 deletions
|
@ -34,6 +34,11 @@
|
|||
#define CONFIG_FSL_ISBC_KEY_EXT
|
||||
#endif
|
||||
|
||||
#ifdef CONFIG_LS1043A
|
||||
/* For LS1043 (ARMv8), ESBC image Address in Header is 64 bit */
|
||||
#define CONFIG_ESBC_ADDR_64BIT
|
||||
#endif
|
||||
|
||||
#ifndef CONFIG_FIT_SIGNATURE
|
||||
|
||||
#define CONFIG_EXTRA_ENV \
|
||||
|
|
|
@ -567,4 +567,8 @@
|
|||
|
||||
#include <asm/fsl_secure_boot.h>
|
||||
|
||||
#ifdef CONFIG_SECURE_BOOT
|
||||
#define CONFIG_CMD_BLOB
|
||||
#endif
|
||||
|
||||
#endif /* __CONFIG_H */
|
||||
|
|
|
@ -39,6 +39,8 @@
|
|||
#define CONFIG_BOARD_EARLY_INIT_F
|
||||
#endif
|
||||
|
||||
#define CONFIG_FSL_CAAM /* Enable SEC/CAAM */
|
||||
|
||||
#ifdef CONFIG_RAMBOOT_PBL
|
||||
#define CONFIG_SYS_FSL_PBL_PBI board/freescale/t102xqds/t1024_pbi.cfg
|
||||
#define CONFIG_SYS_FSL_PBL_RCW board/freescale/t102xqds/t1024_rcw.cfg
|
||||
|
@ -936,8 +938,16 @@ unsigned long get_board_ddr_clk(void);
|
|||
|
||||
#define CONFIG_BOOTCOMMAND CONFIG_LINUX
|
||||
|
||||
#ifdef CONFIG_SECURE_BOOT
|
||||
/* Hash command with SHA acceleration supported in hardware */
|
||||
#ifdef CONFIG_FSL_CAAM
|
||||
#define CONFIG_CMD_HASH
|
||||
#define CONFIG_SHA_HW_ACCEL
|
||||
#endif
|
||||
|
||||
#include <asm/fsl_secure_boot.h>
|
||||
|
||||
#ifdef CONFIG_SECURE_BOOT
|
||||
#define CONFIG_CMD_BLOB
|
||||
#endif
|
||||
|
||||
#endif /* __T1024QDS_H */
|
||||
|
|
|
@ -33,6 +33,8 @@
|
|||
#define CONFIG_FSL_LAW /* Use common FSL init code */
|
||||
#define CONFIG_ENV_OVERWRITE
|
||||
|
||||
#define CONFIG_FSL_CAAM /* Enable SEC/CAAM */
|
||||
|
||||
/* support deep sleep */
|
||||
#ifdef CONFIG_PPC_T1024
|
||||
#define CONFIG_DEEP_SLEEP
|
||||
|
@ -948,8 +950,16 @@ unsigned long get_board_ddr_clk(void);
|
|||
|
||||
#define CONFIG_BOOTCOMMAND CONFIG_LINUX
|
||||
|
||||
#ifdef CONFIG_SECURE_BOOT
|
||||
/* Hash command with SHA acceleration supported in hardware */
|
||||
#ifdef CONFIG_FSL_CAAM
|
||||
#define CONFIG_CMD_HASH
|
||||
#define CONFIG_SHA_HW_ACCEL
|
||||
#endif
|
||||
|
||||
#include <asm/fsl_secure_boot.h>
|
||||
|
||||
#ifdef CONFIG_SECURE_BOOT
|
||||
#define CONFIG_CMD_BLOB
|
||||
#endif
|
||||
|
||||
#endif /* __T1024RDB_H */
|
||||
|
|
|
@ -835,8 +835,9 @@ unsigned long get_board_ddr_clk(void);
|
|||
|
||||
#define CONFIG_BOOTCOMMAND CONFIG_LINUX
|
||||
|
||||
#ifdef CONFIG_SECURE_BOOT
|
||||
#include <asm/fsl_secure_boot.h>
|
||||
|
||||
#ifdef CONFIG_SECURE_BOOT
|
||||
#define CONFIG_CMD_BLOB
|
||||
#endif
|
||||
|
||||
|
|
|
@ -938,8 +938,9 @@ $(SRCTREE)/board/freescale/t104xrdb/t1042d4_rcw.cfg
|
|||
|
||||
#define CONFIG_BOOTCOMMAND CONFIG_LINUX
|
||||
|
||||
#ifdef CONFIG_SECURE_BOOT
|
||||
#include <asm/fsl_secure_boot.h>
|
||||
|
||||
#ifdef CONFIG_SECURE_BOOT
|
||||
#define CONFIG_CMD_BLOB
|
||||
#endif
|
||||
|
||||
|
|
|
@ -933,8 +933,9 @@ unsigned long get_board_ddr_clk(void);
|
|||
|
||||
#define CONFIG_BOOTCOMMAND CONFIG_LINUX
|
||||
|
||||
#ifdef CONFIG_SECURE_BOOT
|
||||
#include <asm/fsl_secure_boot.h>
|
||||
|
||||
#ifdef CONFIG_SECURE_BOOT
|
||||
#define CONFIG_CMD_BLOB
|
||||
#undef CONFIG_CMD_USB
|
||||
#endif
|
||||
|
|
|
@ -889,8 +889,9 @@ unsigned long get_board_ddr_clk(void);
|
|||
|
||||
#define CONFIG_BOOTCOMMAND CONFIG_LINUX
|
||||
|
||||
#ifdef CONFIG_SECURE_BOOT
|
||||
#include <asm/fsl_secure_boot.h>
|
||||
|
||||
#ifdef CONFIG_SECURE_BOOT
|
||||
#define CONFIG_CMD_BLOB
|
||||
#undef CONFIG_CMD_USB
|
||||
#endif
|
||||
|
|
|
@ -659,12 +659,15 @@ unsigned long get_board_ddr_clk(void);
|
|||
#define CONFIG_MISC_INIT_R
|
||||
|
||||
/* Hash command with SHA acceleration supported in hardware */
|
||||
#ifdef CONFIG_FSL_CAAM
|
||||
#define CONFIG_CMD_HASH
|
||||
#define CONFIG_SHA_HW_ACCEL
|
||||
#endif
|
||||
|
||||
#include <asm/fsl_secure_boot.h>
|
||||
|
||||
#ifdef CONFIG_SECURE_BOOT
|
||||
#define CONFIG_CMD_BLOB
|
||||
#include <asm/fsl_secure_boot.h>
|
||||
#endif
|
||||
|
||||
#endif
|
||||
|
|
|
@ -517,12 +517,15 @@
|
|||
#define CONFIG_MISC_INIT_R
|
||||
|
||||
/* Hash command with SHA acceleration supported in hardware */
|
||||
#ifdef CONFIG_FSL_CAAM
|
||||
#define CONFIG_CMD_HASH
|
||||
#define CONFIG_SHA_HW_ACCEL
|
||||
#endif
|
||||
|
||||
#include <asm/fsl_secure_boot.h>
|
||||
|
||||
#ifdef CONFIG_SECURE_BOOT
|
||||
#define CONFIG_CMD_BLOB
|
||||
#include <asm/fsl_secure_boot.h>
|
||||
#endif
|
||||
|
||||
#endif
|
||||
|
|
|
@ -197,6 +197,8 @@
|
|||
#define CONFIG_DOS_PARTITION
|
||||
#endif
|
||||
|
||||
#define CONFIG_FSL_CAAM /* Enable SEC/CAAM */
|
||||
|
||||
/* FMan ucode */
|
||||
#define CONFIG_SYS_DPAA_FMAN
|
||||
#ifdef CONFIG_SYS_DPAA_FMAN
|
||||
|
@ -252,4 +254,10 @@
|
|||
|
||||
#define CONFIG_SYS_BOOTM_LEN (64 << 20) /* Increase max gunzip size */
|
||||
|
||||
/* Hash command with SHA acceleration supported in hardware */
|
||||
#ifdef CONFIG_FSL_CAAM
|
||||
#define CONFIG_CMD_HASH
|
||||
#define CONFIG_SHA_HW_ACCEL
|
||||
#endif
|
||||
|
||||
#endif /* __LS1043A_COMMON_H */
|
||||
|
|
|
@ -405,4 +405,6 @@ unsigned long get_board_ddr_clk(void);
|
|||
#define CONFIG_CMD_MII
|
||||
#define CONFIG_CMDLINE_TAG
|
||||
|
||||
#include <asm/fsl_secure_boot.h>
|
||||
|
||||
#endif /* __LS1043AQDS_H__ */
|
||||
|
|
|
@ -291,14 +291,6 @@
|
|||
#define CONFIG_CMD_EXT2
|
||||
#endif
|
||||
|
||||
#ifdef CONFIG_SECURE_BOOT
|
||||
#define CONFIG_CMD_HASH
|
||||
#define CONFIG_SHA_HW_ACCEL
|
||||
#define CONFIG_CMD_BLOB
|
||||
/* For LS1043 (ARMv8), ESBC image Address in Header is 64 bit */
|
||||
#define CONFIG_ESBC_ADDR_64BIT
|
||||
#endif
|
||||
|
||||
#include <asm/fsl_secure_boot.h>
|
||||
|
||||
#endif /* __LS1043ARDB_H__ */
|
||||
|
|
Loading…
Reference in a new issue