mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-14 17:07:38 +00:00
9fcdd98e54
Hash and Crypto Engine (HACE) is designed to accelerate the throughput of hash data digest, and symmetric-key encryption. Signed-off-by: Johnny Huang <johnny_huang@aspeedtech.com> Signed-off-by: Chia-Wei Wang <chiawei_wang@aspeedtech.com> Reviewed-by: Simon Glass <sjg@chromium.org>
24 lines
634 B
Text
24 lines
634 B
Text
config DM_HASH
|
|
bool "Enable Driver Model for Hash"
|
|
depends on DM
|
|
help
|
|
If you want to use driver model for Hash, say Y.
|
|
|
|
config HASH_SOFTWARE
|
|
bool "Enable driver for Hash in software"
|
|
depends on DM_HASH
|
|
depends on MD5
|
|
depends on SHA1
|
|
depends on SHA256
|
|
depends on SHA512_ALGO
|
|
help
|
|
Enable driver for hashing operations in software. Currently
|
|
it support multiple hash algorithm including CRC/MD5/SHA.
|
|
|
|
config HASH_ASPEED
|
|
bool "Enable Hash with ASPEED hash accelerator"
|
|
depends on DM_HASH
|
|
select ASPEED_HACE
|
|
help
|
|
Enable this to support HW-assisted hashing operations using ASPEED Hash
|
|
and Crypto engine - HACE
|