lib: move hash CONFIG options to Kconfig

Commit 94e3c8c4fd ("crypto/fsl - Add progressive hashing support
using hardware acceleration.") created entries for CONFIG_SHA1,
CONFIG_SHA256, CONFIG_SHA_HW_ACCEL, and CONFIG_SHA_PROG_HW_ACCEL.
However, no defconfig has migrated to it.  Complete the move by first
adding additional logic to various Kconfig files to select this when
required and then use the moveconfig tool.  In many cases we can select
these because they are required to implement other drivers.  We also
correct how we include the various hashing algorithms in SPL.

This commit was generated as follows (after Kconfig additions):

[1] tools/moveconfig.py -y SHA1 SHA256 SHA_HW_ACCEL
[2] tools/moveconfig.py -y SHA_PROG_HW_ACCEL

Note:
We cannot move SHA_HW_ACCEL and SHA_PROG_HW_ACCEL simultaneously
because there is dependency between them.

Cc: Poonam Aggrwal <poonam.aggrwal@freescale.com>
Cc: Naveen Burmi <NaveenBurmi@freescale.com>
Cc: Po Liu <po.liu@freescale.com>
Cc: Shengzhou Liu <Shengzhou.Liu@freescale.com>
Cc: Priyanka Jain <Priyanka.Jain@freescale.com>
Cc: Shaohui Xie <Shaohui.Xie@freescale.com>
Cc: Chunhe Lan <Chunhe.Lan@freescale.com>
Cc: Chander Kashyap <k.chander@samsung.com>
Cc: Steve Rae <steve.rae@raedomain.com>
Cc: Dirk Eibach <eibach@gdsys.de>
Cc: Feng Li <feng.li_2@nxp.com>
Cc: Alison Wang <alison.wang@freescale.com>
Cc: Sumit Garg <sumit.garg@nxp.com>
Cc: Mingkai Hu <Mingkai.Hu@freescale.com>
Cc: York Sun <york.sun@nxp.com>
Cc: Prabhakar Kushwaha <prabhakar.kushwaha@nxp.com>
Cc: Jaehoon Chung <jh80.chung@samsung.com>
Cc: Akshay Saraswat <akshay.s@samsung.com>
Cc: Heiko Schocher <hs@denx.de>
Cc: Jagan Teki <jagan@amarulasolutions.com>
Signed-off-by: Tom Rini <trini@konsulko.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Signed-off-by: Tom Rini <trini@konsulko.com>
This commit is contained in:
Tom Rini 2017-05-15 12:17:49 -04:00
parent 0db7f6859f
commit 089df18bfe
49 changed files with 31 additions and 66 deletions

View file

@ -145,6 +145,7 @@ menu "Boot images"
config FIT config FIT
bool "Support Flattened Image Tree" bool "Support Flattened Image Tree"
select MD5 select MD5
select SHA1
help help
This option allows you to boot the new uImage structure, This option allows you to boot the new uImage structure,
Flattened Image Tree. FIT is formally a FDT, which can include Flattened Image Tree. FIT is formally a FDT, which can include
@ -159,6 +160,7 @@ if FIT
config FIT_ENABLE_SHA256_SUPPORT config FIT_ENABLE_SHA256_SUPPORT
bool "Support SHA256 checksum of FIT image contents" bool "Support SHA256 checksum of FIT image contents"
select SHA256
default y default y
help help
Enable this to support SHA256 checksum of FIT image contents. A Enable this to support SHA256 checksum of FIT image contents. A

13
README
View file

@ -2756,19 +2756,6 @@ The following options need to be configured:
Enable the hash verify command (hash -v). This adds to code Enable the hash verify command (hash -v). This adds to code
size a little. size a little.
CONFIG_SHA1 - This option enables support of hashing using SHA1
algorithm. The hash is calculated in software.
CONFIG_SHA256 - This option enables support of hashing using
SHA256 algorithm. The hash is calculated in software.
CONFIG_SHA_HW_ACCEL - This option enables hardware acceleration
for SHA1/SHA256 hashing.
This affects the 'hash' command and also the
hash_lookup_algo() function.
CONFIG_SHA_PROG_HW_ACCEL - This option enables
hardware-acceleration for SHA1/SHA256 progressive hashing.
Data can be streamed in a block at a time and the hashing
is performed in hardware.
Note: There is also a sha1sum command, which should perhaps Note: There is also a sha1sum command, which should perhaps
be deprecated in favour of 'hash sha1'. be deprecated in favour of 'hash sha1'.

View file

@ -10,8 +10,6 @@
#ifdef CONFIG_CHAIN_OF_TRUST #ifdef CONFIG_CHAIN_OF_TRUST
#define CONFIG_CMD_ESBC_VALIDATE #define CONFIG_CMD_ESBC_VALIDATE
#define CONFIG_FSL_SEC_MON #define CONFIG_FSL_SEC_MON
#define CONFIG_SHA_HW_ACCEL
#define CONFIG_SHA_PROG_HW_ACCEL
#ifdef CONFIG_SPL_BUILD #ifdef CONFIG_SPL_BUILD
/* /*

View file

@ -17,6 +17,7 @@ config ARCH_EXYNOS5
bool "Exynos5 SoC family" bool "Exynos5 SoC family"
select CPU_V7 select CPU_V7
select BOARD_EARLY_INIT_F select BOARD_EARLY_INIT_F
select SHA_HW_ACCEL
help help
Samsung Exynos5 SoC family are based on ARM Cortex-A15 CPU (and Samsung Exynos5 SoC family are based on ARM Cortex-A15 CPU (and
Cortex-A7 CPU in big.LITTLE configuration). There are multiple SoCs Cortex-A7 CPU in big.LITTLE configuration). There are multiple SoCs

View file

@ -101,7 +101,6 @@
#define CONFIG_CMD_ESBC_VALIDATE #define CONFIG_CMD_ESBC_VALIDATE
#define CONFIG_FSL_SEC_MON #define CONFIG_FSL_SEC_MON
#define CONFIG_SHA_PROG_HW_ACCEL
#ifndef CONFIG_SPL_BUILD #ifndef CONFIG_SPL_BUILD
/* /*

View file

@ -3,5 +3,7 @@ config CHAIN_OF_TRUST
imply CMD_BLOB imply CMD_BLOB
select FSL_CAAM select FSL_CAAM
select SPL_BOARD_INIT if (ARM && SPL) select SPL_BOARD_INIT if (ARM && SPL)
select SHA_HW_ACCEL
select SHA_PROG_HW_ACCEL
bool bool
default y default y

View file

@ -187,6 +187,7 @@ config SPL_MD5_SUPPORT
config SPL_SHA1_SUPPORT config SPL_SHA1_SUPPORT
bool "Support SHA1" bool "Support SHA1"
depends on SPL_FIT depends on SPL_FIT
select SHA1
help help
Enable this to support SHA1 in FIT images within SPL. A SHA1 Enable this to support SHA1 in FIT images within SPL. A SHA1
checksum is a 160-bit (20-byte) hash value used to check that the checksum is a 160-bit (20-byte) hash value used to check that the
@ -198,6 +199,7 @@ config SPL_SHA1_SUPPORT
config SPL_SHA256_SUPPORT config SPL_SHA256_SUPPORT
bool "Support SHA256" bool "Support SHA256"
depends on SPL_FIT depends on SPL_FIT
select SHA256
help help
Enable this to support SHA256 in FIT images within SPL. A SHA256 Enable this to support SHA256 in FIT images within SPL. A SHA256
checksum is a 256-bit (32-byte) hash value used to check that the checksum is a 256-bit (32-byte) hash value used to check that the
@ -229,6 +231,8 @@ config SPL_CRYPTO_SUPPORT
config SPL_HASH_SUPPORT config SPL_HASH_SUPPORT
bool "Support hashing drivers" bool "Support hashing drivers"
select SHA1
select SHA256
depends on SPL depends on SPL
help help
Enable hashing drivers in SPL. These drivers can be used to Enable hashing drivers in SPL. These drivers can be used to

View file

@ -18,4 +18,6 @@ CONFIG_CMD_TIME=y
CONFIG_CMD_FAT=y CONFIG_CMD_FAT=y
# CONFIG_MMC is not set # CONFIG_MMC is not set
CONFIG_SYS_NS16550=y CONFIG_SYS_NS16550=y
CONFIG_SHA1=y
CONFIG_SHA256=y
CONFIG_OF_LIBFDT=y CONFIG_OF_LIBFDT=y

View file

@ -18,4 +18,6 @@ CONFIG_CMD_TIME=y
CONFIG_CMD_FAT=y CONFIG_CMD_FAT=y
# CONFIG_MMC is not set # CONFIG_MMC is not set
CONFIG_SYS_NS16550=y CONFIG_SYS_NS16550=y
CONFIG_SHA1=y
CONFIG_SHA256=y
CONFIG_OF_LIBFDT=y CONFIG_OF_LIBFDT=y

View file

@ -18,4 +18,6 @@ CONFIG_CMD_TIME=y
CONFIG_CMD_FAT=y CONFIG_CMD_FAT=y
# CONFIG_MMC is not set # CONFIG_MMC is not set
CONFIG_SYS_NS16550=y CONFIG_SYS_NS16550=y
CONFIG_SHA1=y
CONFIG_SHA256=y
CONFIG_OF_LIBFDT=y CONFIG_OF_LIBFDT=y

View file

@ -18,4 +18,6 @@ CONFIG_CMD_TIME=y
CONFIG_CMD_FAT=y CONFIG_CMD_FAT=y
# CONFIG_MMC is not set # CONFIG_MMC is not set
CONFIG_SYS_NS16550=y CONFIG_SYS_NS16550=y
CONFIG_SHA1=y
CONFIG_SHA256=y
CONFIG_OF_LIBFDT=y CONFIG_OF_LIBFDT=y

View file

@ -18,4 +18,6 @@ CONFIG_CMD_TIME=y
CONFIG_CMD_FAT=y CONFIG_CMD_FAT=y
# CONFIG_MMC is not set # CONFIG_MMC is not set
CONFIG_SYS_NS16550=y CONFIG_SYS_NS16550=y
CONFIG_SHA1=y
CONFIG_SHA256=y
CONFIG_OF_LIBFDT=y CONFIG_OF_LIBFDT=y

View file

@ -18,4 +18,6 @@ CONFIG_CMD_TIME=y
CONFIG_CMD_FAT=y CONFIG_CMD_FAT=y
# CONFIG_MMC is not set # CONFIG_MMC is not set
CONFIG_SYS_NS16550=y CONFIG_SYS_NS16550=y
CONFIG_SHA1=y
CONFIG_SHA256=y
CONFIG_OF_LIBFDT=y CONFIG_OF_LIBFDT=y

View file

@ -16,4 +16,6 @@ CONFIG_CMD_TIME=y
CONFIG_CMD_FAT=y CONFIG_CMD_FAT=y
# CONFIG_MMC is not set # CONFIG_MMC is not set
CONFIG_SYS_NS16550=y CONFIG_SYS_NS16550=y
CONFIG_SHA1=y
CONFIG_SHA256=y
CONFIG_OF_LIBFDT=y CONFIG_OF_LIBFDT=y

View file

@ -19,3 +19,4 @@ CONFIG_DM=y
CONFIG_SYS_NS16550=y CONFIG_SYS_NS16550=y
CONFIG_TPM_AUTH_SESSIONS=y CONFIG_TPM_AUTH_SESSIONS=y
CONFIG_TPM=y CONFIG_TPM=y
CONFIG_SHA1=y

View file

@ -19,3 +19,4 @@ CONFIG_DM=y
CONFIG_SYS_NS16550=y CONFIG_SYS_NS16550=y
CONFIG_TPM_AUTH_SESSIONS=y CONFIG_TPM_AUTH_SESSIONS=y
CONFIG_TPM=y CONFIG_TPM=y
CONFIG_SHA1=y

View file

@ -1,5 +1,6 @@
config FSL_CAAM config FSL_CAAM
bool "Freescale Crypto Driver Support" bool "Freescale Crypto Driver Support"
select SHA_HW_ACCEL
help help
Enables the Freescale's Cryptographic Accelerator and Assurance Enables the Freescale's Cryptographic Accelerator and Assurance
Module (CAAM), also known as the SEC version 4 (SEC4). The driver uses Module (CAAM), also known as the SEC version 4 (SEC4). The driver uses

View file

@ -714,7 +714,6 @@ unsigned long get_board_ddr_clk(void);
/* Hash command with SHA acceleration supported in hardware */ /* Hash command with SHA acceleration supported in hardware */
#ifdef CONFIG_FSL_CAAM #ifdef CONFIG_FSL_CAAM
#define CONFIG_CMD_HASH #define CONFIG_CMD_HASH
#define CONFIG_SHA_HW_ACCEL
#endif #endif
/* /*

View file

@ -331,7 +331,6 @@ extern unsigned long get_sdram_size(void);
/* Hash command with SHA acceleration supported in hardware */ /* Hash command with SHA acceleration supported in hardware */
#ifdef CONFIG_FSL_CAAM #ifdef CONFIG_FSL_CAAM
#define CONFIG_CMD_HASH #define CONFIG_CMD_HASH
#define CONFIG_SHA_HW_ACCEL
#endif #endif
#ifdef CONFIG_USB_EHCI_HCD #ifdef CONFIG_USB_EHCI_HCD

View file

@ -528,7 +528,6 @@ combinations. this should be removed later
/* Hash command with SHA acceleration supported in hardware */ /* Hash command with SHA acceleration supported in hardware */
#ifdef CONFIG_FSL_CAAM #ifdef CONFIG_FSL_CAAM
#define CONFIG_CMD_HASH #define CONFIG_CMD_HASH
#define CONFIG_SHA_HW_ACCEL
#endif #endif
/* /*

View file

@ -444,7 +444,6 @@
/* Hash command with SHA acceleration supported in hardware */ /* Hash command with SHA acceleration supported in hardware */
#ifdef CONFIG_FSL_CAAM #ifdef CONFIG_FSL_CAAM
#define CONFIG_CMD_HASH #define CONFIG_CMD_HASH
#define CONFIG_SHA_HW_ACCEL
#endif #endif
/* /*

View file

@ -738,7 +738,6 @@ extern unsigned long get_sdram_size(void);
/* Hash command with SHA acceleration supported in hardware */ /* Hash command with SHA acceleration supported in hardware */
#ifdef CONFIG_FSL_CAAM #ifdef CONFIG_FSL_CAAM
#define CONFIG_CMD_HASH #define CONFIG_CMD_HASH
#define CONFIG_SHA_HW_ACCEL
#endif #endif
/* /*

View file

@ -607,7 +607,6 @@ unsigned long get_board_sys_clk(unsigned long dummy);
/* Hash command with SHA acceleration supported in hardware */ /* Hash command with SHA acceleration supported in hardware */
#ifdef CONFIG_FSL_CAAM #ifdef CONFIG_FSL_CAAM
#define CONFIG_CMD_HASH #define CONFIG_CMD_HASH
#define CONFIG_SHA_HW_ACCEL
#endif #endif
/* /*

View file

@ -868,7 +868,6 @@ unsigned long get_board_ddr_clk(void);
/* Hash command with SHA acceleration supported in hardware */ /* Hash command with SHA acceleration supported in hardware */
#ifdef CONFIG_FSL_CAAM #ifdef CONFIG_FSL_CAAM
#define CONFIG_CMD_HASH #define CONFIG_CMD_HASH
#define CONFIG_SHA_HW_ACCEL
#endif #endif
#include <asm/fsl_secure_boot.h> #include <asm/fsl_secure_boot.h>

View file

@ -887,7 +887,6 @@ unsigned long get_board_ddr_clk(void);
/* Hash command with SHA acceleration supported in hardware */ /* Hash command with SHA acceleration supported in hardware */
#ifdef CONFIG_FSL_CAAM #ifdef CONFIG_FSL_CAAM
#define CONFIG_CMD_HASH #define CONFIG_CMD_HASH
#define CONFIG_SHA_HW_ACCEL
#endif #endif
#include <asm/fsl_secure_boot.h> #include <asm/fsl_secure_boot.h>

View file

@ -671,7 +671,6 @@ unsigned long get_board_ddr_clk(void);
/* Hash command with SHA acceleration supported in hardware */ /* Hash command with SHA acceleration supported in hardware */
#ifdef CONFIG_FSL_CAAM #ifdef CONFIG_FSL_CAAM
#define CONFIG_CMD_HASH #define CONFIG_CMD_HASH
#define CONFIG_SHA_HW_ACCEL
#endif #endif
/* /*

View file

@ -783,7 +783,6 @@ $(SRCTREE)/board/freescale/t104xrdb/t1042d4_sd_rcw.cfg
/* Hash command with SHA acceleration supported in hardware */ /* Hash command with SHA acceleration supported in hardware */
#ifdef CONFIG_FSL_CAAM #ifdef CONFIG_FSL_CAAM
#define CONFIG_CMD_HASH #define CONFIG_CMD_HASH
#define CONFIG_SHA_HW_ACCEL
#endif #endif
/* /*

View file

@ -755,7 +755,6 @@ unsigned long get_board_ddr_clk(void);
/* Hash command with SHA acceleration supported in hardware */ /* Hash command with SHA acceleration supported in hardware */
#ifdef CONFIG_FSL_CAAM #ifdef CONFIG_FSL_CAAM
#define CONFIG_CMD_HASH #define CONFIG_CMD_HASH
#define CONFIG_SHA_HW_ACCEL
#endif #endif
/* /*

View file

@ -700,7 +700,6 @@ unsigned long get_board_ddr_clk(void);
/* Hash command with SHA acceleration supported in hardware */ /* Hash command with SHA acceleration supported in hardware */
#ifdef CONFIG_FSL_CAAM #ifdef CONFIG_FSL_CAAM
#define CONFIG_CMD_HASH #define CONFIG_CMD_HASH
#define CONFIG_SHA_HW_ACCEL
#endif #endif
/* /*

View file

@ -501,7 +501,6 @@ unsigned long get_board_ddr_clk(void);
/* Hash command with SHA acceleration supported in hardware */ /* Hash command with SHA acceleration supported in hardware */
#ifdef CONFIG_FSL_CAAM #ifdef CONFIG_FSL_CAAM
#define CONFIG_CMD_HASH #define CONFIG_CMD_HASH
#define CONFIG_SHA_HW_ACCEL
#endif #endif
/* /*

View file

@ -699,7 +699,6 @@ unsigned long get_board_ddr_clk(void);
/* Hash command with SHA acceleration supported in hardware */ /* Hash command with SHA acceleration supported in hardware */
#ifdef CONFIG_FSL_CAAM #ifdef CONFIG_FSL_CAAM
#define CONFIG_CMD_HASH #define CONFIG_CMD_HASH
#define CONFIG_SHA_HW_ACCEL
#endif #endif

View file

@ -69,8 +69,6 @@
/* SHA hashing */ /* SHA hashing */
#define CONFIG_CMD_HASH #define CONFIG_CMD_HASH
#define CONFIG_HASH_VERIFY #define CONFIG_HASH_VERIFY
#define CONFIG_SHA1
#define CONFIG_SHA256
/* Enable Time Command */ /* Enable Time Command */

View file

@ -199,8 +199,6 @@
#define CONFIG_SF_DEFAULT_MODE 0 #define CONFIG_SF_DEFAULT_MODE 0
#endif #endif
#define CONFIG_SHA1
/* /*
* MMC * MMC
*/ */

View file

@ -621,7 +621,6 @@
/* Hash command with SHA acceleration supported in hardware */ /* Hash command with SHA acceleration supported in hardware */
#ifdef CONFIG_FSL_CAAM #ifdef CONFIG_FSL_CAAM
#define CONFIG_CMD_HASH #define CONFIG_CMD_HASH
#define CONFIG_SHA_HW_ACCEL
#endif #endif
/* /*

View file

@ -26,7 +26,6 @@
/* Enable ACE acceleration for SHA1 and SHA256 */ /* Enable ACE acceleration for SHA1 and SHA256 */
#define CONFIG_EXYNOS_ACE_SHA #define CONFIG_EXYNOS_ACE_SHA
#define CONFIG_SHA_HW_ACCEL
/* Power Down Modes */ /* Power Down Modes */
#define S5P_CHECK_SLEEP 0x00000BAD #define S5P_CHECK_SLEEP 0x00000BAD
@ -139,8 +138,6 @@
/* SHA hashing */ /* SHA hashing */
#define CONFIG_CMD_HASH #define CONFIG_CMD_HASH
#define CONFIG_HASH_VERIFY #define CONFIG_HASH_VERIFY
#define CONFIG_SHA1
#define CONFIG_SHA256
/* Enable Time Command */ /* Enable Time Command */

View file

@ -542,7 +542,5 @@
#define CONFIG_IMAGE_FORMAT_LEGACY #define CONFIG_IMAGE_FORMAT_LEGACY
#define CONFIG_CMD_HASH #define CONFIG_CMD_HASH
#define CONFIG_SHA1
#define CONFIG_SHA256
#endif /* __CONFIG_H */ #endif /* __CONFIG_H */

View file

@ -126,8 +126,6 @@
/* FIT */ /* FIT */
#ifdef CONFIG_FIT #ifdef CONFIG_FIT
# define CONFIG_HASH_VERIFY # define CONFIG_HASH_VERIFY
# define CONFIG_SHA1
# define CONFIG_SHA256
# define CONFIG_IMAGE_FORMAT_LEGACY # define CONFIG_IMAGE_FORMAT_LEGACY
#endif #endif

View file

@ -108,8 +108,6 @@
/* FIT */ /* FIT */
#ifdef CONFIG_FIT #ifdef CONFIG_FIT
# define CONFIG_HASH_VERIFY # define CONFIG_HASH_VERIFY
# define CONFIG_SHA1
# define CONFIG_SHA256
# define CONFIG_IMAGE_FORMAT_LEGACY # define CONFIG_IMAGE_FORMAT_LEGACY
#endif #endif

View file

@ -125,8 +125,6 @@
/* FIT */ /* FIT */
#ifdef CONFIG_FIT #ifdef CONFIG_FIT
# define CONFIG_HASH_VERIFY # define CONFIG_HASH_VERIFY
# define CONFIG_SHA1
# define CONFIG_SHA256
# define CONFIG_IMAGE_FORMAT_LEGACY # define CONFIG_IMAGE_FORMAT_LEGACY
#endif #endif

View file

@ -125,8 +125,6 @@
/* FIT */ /* FIT */
#ifdef CONFIG_FIT #ifdef CONFIG_FIT
# define CONFIG_HASH_VERIFY # define CONFIG_HASH_VERIFY
# define CONFIG_SHA1
# define CONFIG_SHA256
# define CONFIG_IMAGE_FORMAT_LEGACY # define CONFIG_IMAGE_FORMAT_LEGACY
#endif #endif

View file

@ -306,13 +306,8 @@
#define CONFIG_MISC_INIT_R #define CONFIG_MISC_INIT_R
/* Hash command with SHA acceleration supported in hardware */ /* Hash command with SHA acceleration supported in hardware */
#ifdef CONFIG_FSL_CAAM #ifdef CONFIG_FSL_CAAM
#define CONFIG_CMD_HASH #define CONFIG_CMD_HASH
#define CONFIG_SHA_HW_ACCEL
#endif #endif
#include <asm/fsl_secure_boot.h> #include <asm/fsl_secure_boot.h>

View file

@ -573,7 +573,6 @@ unsigned long get_board_ddr_clk(void);
/* Hash command with SHA acceleration supported in hardware */ /* Hash command with SHA acceleration supported in hardware */
#ifdef CONFIG_FSL_CAAM #ifdef CONFIG_FSL_CAAM
#define CONFIG_CMD_HASH #define CONFIG_CMD_HASH
#define CONFIG_SHA_HW_ACCEL
#endif #endif
#include <asm/fsl_secure_boot.h> #include <asm/fsl_secure_boot.h>

View file

@ -437,7 +437,6 @@
/* Hash command with SHA acceleration supported in hardware */ /* Hash command with SHA acceleration supported in hardware */
#ifdef CONFIG_FSL_CAAM #ifdef CONFIG_FSL_CAAM
#define CONFIG_CMD_HASH #define CONFIG_CMD_HASH
#define CONFIG_SHA_HW_ACCEL
#endif #endif
#include <asm/fsl_secure_boot.h> #include <asm/fsl_secure_boot.h>

View file

@ -304,7 +304,6 @@
/* Hash command with SHA acceleration supported in hardware */ /* Hash command with SHA acceleration supported in hardware */
#ifdef CONFIG_FSL_CAAM #ifdef CONFIG_FSL_CAAM
#define CONFIG_CMD_HASH #define CONFIG_CMD_HASH
#define CONFIG_SHA_HW_ACCEL
#endif #endif
#endif /* __LS1043A_COMMON_H */ #endif /* __LS1043A_COMMON_H */

View file

@ -233,7 +233,6 @@
/* Hash command with SHA acceleration supported in hardware */ /* Hash command with SHA acceleration supported in hardware */
#ifdef CONFIG_FSL_CAAM #ifdef CONFIG_FSL_CAAM
#define CONFIG_CMD_HASH #define CONFIG_CMD_HASH
#define CONFIG_SHA_HW_ACCEL
#endif #endif
#endif /* __LS1046A_COMMON_H */ #endif /* __LS1046A_COMMON_H */

View file

@ -233,7 +233,6 @@ unsigned long long get_qixis_addr(void);
/* Hash command with SHA acceleration supported in hardware */ /* Hash command with SHA acceleration supported in hardware */
#ifdef CONFIG_FSL_CAAM #ifdef CONFIG_FSL_CAAM
#define CONFIG_CMD_HASH #define CONFIG_CMD_HASH
#define CONFIG_SHA_HW_ACCEL
#endif #endif
#endif /* __LS2_COMMON_H */ #endif /* __LS2_COMMON_H */

View file

@ -104,8 +104,6 @@
#define CONFIG_CMD_HASH #define CONFIG_CMD_HASH
#define CONFIG_HASH_VERIFY #define CONFIG_HASH_VERIFY
#define CONFIG_SHA1
#define CONFIG_SHA256
#define CONFIG_CMD_SANDBOX #define CONFIG_CMD_SANDBOX

View file

@ -30,6 +30,8 @@ struct lmb;
#define IMAGE_ENABLE_OF_LIBFDT 1 #define IMAGE_ENABLE_OF_LIBFDT 1
#define CONFIG_FIT_VERBOSE 1 /* enable fit_format_{error,warning}() */ #define CONFIG_FIT_VERBOSE 1 /* enable fit_format_{error,warning}() */
#define CONFIG_FIT_ENABLE_SHA256_SUPPORT #define CONFIG_FIT_ENABLE_SHA256_SUPPORT
#define CONFIG_SHA1
#define CONFIG_SHA256
#define IMAGE_ENABLE_IGNORE 0 #define IMAGE_ENABLE_IGNORE 0
#define IMAGE_INDENT_STRING "" #define IMAGE_INDENT_STRING ""
@ -65,8 +67,6 @@ struct lmb;
# endif # endif
# else # else
# define CONFIG_CRC32 /* FIT images need CRC32 support */ # define CONFIG_CRC32 /* FIT images need CRC32 support */
# define CONFIG_SHA1 /* and SHA1 */
# define CONFIG_SHA256 /* and SHA256 */
# define IMAGE_ENABLE_CRC32 1 # define IMAGE_ENABLE_CRC32 1
# define IMAGE_ENABLE_MD5 1 # define IMAGE_ENABLE_MD5 1
# define IMAGE_ENABLE_SHA1 1 # define IMAGE_ENABLE_SHA1 1
@ -86,7 +86,6 @@ struct lmb;
#if defined(CONFIG_FIT_ENABLE_SHA256_SUPPORT) || \ #if defined(CONFIG_FIT_ENABLE_SHA256_SUPPORT) || \
defined(CONFIG_SPL_SHA256_SUPPORT) defined(CONFIG_SPL_SHA256_SUPPORT)
#define CONFIG_SHA256
#define IMAGE_ENABLE_SHA256 1 #define IMAGE_ENABLE_SHA256 1
#else #else
#define IMAGE_ENABLE_SHA256 0 #define IMAGE_ENABLE_SHA256 0

View file

@ -44,9 +44,9 @@ obj-$(CONFIG_BITREVERSE) += bitrev.o
obj-y += list_sort.o obj-y += list_sort.o
endif endif
obj-$(CONFIG_$(SPL_)RSA) += rsa/ obj-$(CONFIG_RSA) += rsa/
obj-$(CONFIG_$(SPL_)SHA1) += sha1.o obj-$(CONFIG_SHA1) += sha1.o
obj-$(CONFIG_$(SPL_)SHA256) += sha256.o obj-$(CONFIG_SHA256) += sha256.o
obj-$(CONFIG_SPL_SAVEENV) += qsort.o obj-$(CONFIG_SPL_SAVEENV) += qsort.o
obj-$(CONFIG_$(SPL_)OF_LIBFDT) += libfdt/ obj-$(CONFIG_$(SPL_)OF_LIBFDT) += libfdt/