xref: /openbmc/u-boot/drivers/crypto/Kconfig (revision 4f7bd3b2)
1menu "Hardware crypto devices"
2
3config ASPEED_HACE
4	bool "ASPEED Hash and Crypto Engine"
5	depends on ASPEED_AST2600
6	imply SHA_HW_ACCEL
7	imply SHA_PROG_HW_ACCEL
8	imply CMD_HASH
9	help
10	 Select this option to enable a driver for using the SHA engine in
11	 the ASPEED BMC SoCs.
12
13	 Enabling this allows the use of SHA operations in hardware without requiring the
14	 SHA software implementations, saving code size.
15
16config ASPEED_ACRY
17	bool "ASPEED ECC/RSA Engine"
18	depends on ASPEED_AST2600
19	help
20	 Select this option to enable a driver for using the ECC/RSA engine in
21	 the ASPEED BMC SoCs.
22
23	 Enabling this allows the use of ECC/RSA operations in hardware without requiring the
24	 software implementations, saving code size.
25
26source drivers/crypto/fsl/Kconfig
27
28endmenu
29