Ruchika Gupta | 3427647 | 2015-01-23 16:01:55 +0530 | [diff] [blame] | 1 | config FSL_CAAM |
| 2 | bool "Freescale Crypto Driver Support" |
Tom Rini | 089df18 | 2017-05-15 12:17:49 -0400 | [diff] [blame] | 3 | select SHA_HW_ACCEL |
Alexandru Gagniuc | 92055e1 | 2021-09-02 19:54:21 -0500 | [diff] [blame^] | 4 | # hw_sha1() under drivers/crypto, and needed with SHA_HW_ACCEL |
| 5 | imply SPL_CRYPTO if (ARM && SPL) |
Simon Glass | 551c393 | 2017-05-17 03:25:25 -0600 | [diff] [blame] | 6 | imply CMD_HASH |
Ruchika Gupta | 3427647 | 2015-01-23 16:01:55 +0530 | [diff] [blame] | 7 | help |
| 8 | Enables the Freescale's Cryptographic Accelerator and Assurance |
| 9 | Module (CAAM), also known as the SEC version 4 (SEC4). The driver uses |
| 10 | Job Ring as interface to communicate with CAAM. |
York Sun | 2c2e2c9 | 2016-12-28 08:43:30 -0800 | [diff] [blame] | 11 | |
Ye Li | 2ff17d2 | 2021-03-25 17:30:36 +0800 | [diff] [blame] | 12 | config CAAM_64BIT |
| 13 | bool |
| 14 | default y if PHYS_64BIT && !ARCH_IMX8M |
| 15 | help |
| 16 | Select Crypto driver for 64 bits CAAM version |
| 17 | |
York Sun | 2c2e2c9 | 2016-12-28 08:43:30 -0800 | [diff] [blame] | 18 | config SYS_FSL_HAS_SEC |
| 19 | bool |
| 20 | help |
| 21 | Enable Freescale Secure Boot and Trusted Architecture |
| 22 | |
| 23 | config SYS_FSL_SEC_COMPAT_2 |
| 24 | bool |
| 25 | help |
| 26 | Secure boot and trust architecture compatible version 2 |
| 27 | |
| 28 | config SYS_FSL_SEC_COMPAT_4 |
| 29 | bool |
| 30 | help |
| 31 | Secure boot and trust architecture compatible version 4 |
| 32 | |
| 33 | config SYS_FSL_SEC_COMPAT_5 |
| 34 | bool |
| 35 | help |
| 36 | Secure boot and trust architecture compatible version 5 |
| 37 | |
| 38 | config SYS_FSL_SEC_COMPAT_6 |
| 39 | bool |
| 40 | help |
| 41 | Secure boot and trust architecture compatible version 6 |
| 42 | |
York Sun | 90b8038 | 2016-12-28 08:43:31 -0800 | [diff] [blame] | 43 | config SYS_FSL_SEC_BE |
| 44 | bool "Big-endian access to Freescale Secure Boot" |
| 45 | |
York Sun | 2c2e2c9 | 2016-12-28 08:43:30 -0800 | [diff] [blame] | 46 | config SYS_FSL_SEC_COMPAT |
| 47 | int "Freescale Secure Boot compatibility" |
| 48 | depends on SYS_FSL_HAS_SEC |
| 49 | default 2 if SYS_FSL_SEC_COMPAT_2 |
| 50 | default 4 if SYS_FSL_SEC_COMPAT_4 |
| 51 | default 5 if SYS_FSL_SEC_COMPAT_5 |
| 52 | default 6 if SYS_FSL_SEC_COMPAT_6 |
York Sun | 90b8038 | 2016-12-28 08:43:31 -0800 | [diff] [blame] | 53 | |
| 54 | config SYS_FSL_SEC_LE |
| 55 | bool "Little-endian access to Freescale Secure Boot" |
Michael Walle | ea95f21 | 2020-06-27 22:58:53 +0200 | [diff] [blame] | 56 | |
| 57 | if FSL_CAAM |
| 58 | |
| 59 | config FSL_CAAM_RNG |
| 60 | bool "Enable Random Number Generator support" |
| 61 | depends on DM_RNG |
| 62 | default y |
| 63 | help |
| 64 | Enable support for the hardware based random number generator |
| 65 | module of the CAAM. The random data is fetched from the DRGB |
| 66 | using the prediction resistance flag which means the DRGB is |
| 67 | reseeded from the TRNG every time random data is generated. |
| 68 | |
| 69 | endif |