blob: 3ccd196714a6fa2f9528e162194040977a3249a4 [file] [log] [blame]
Ruchika Gupta34276472015-01-23 16:01:55 +05301config FSL_CAAM
2 bool "Freescale Crypto Driver Support"
Tom Rini089df182017-05-15 12:17:49 -04003 select SHA_HW_ACCEL
Ruchika Gupta34276472015-01-23 16:01:55 +05304 help
5 Enables the Freescale's Cryptographic Accelerator and Assurance
6 Module (CAAM), also known as the SEC version 4 (SEC4). The driver uses
7 Job Ring as interface to communicate with CAAM.
York Sun2c2e2c92016-12-28 08:43:30 -08008
9config SYS_FSL_HAS_SEC
10 bool
11 help
12 Enable Freescale Secure Boot and Trusted Architecture
13
14config SYS_FSL_SEC_COMPAT_2
15 bool
16 help
17 Secure boot and trust architecture compatible version 2
18
19config SYS_FSL_SEC_COMPAT_4
20 bool
21 help
22 Secure boot and trust architecture compatible version 4
23
24config SYS_FSL_SEC_COMPAT_5
25 bool
26 help
27 Secure boot and trust architecture compatible version 5
28
29config SYS_FSL_SEC_COMPAT_6
30 bool
31 help
32 Secure boot and trust architecture compatible version 6
33
York Sun90b80382016-12-28 08:43:31 -080034config SYS_FSL_SEC_BE
35 bool "Big-endian access to Freescale Secure Boot"
36
York Sun2c2e2c92016-12-28 08:43:30 -080037config SYS_FSL_SEC_COMPAT
38 int "Freescale Secure Boot compatibility"
39 depends on SYS_FSL_HAS_SEC
40 default 2 if SYS_FSL_SEC_COMPAT_2
41 default 4 if SYS_FSL_SEC_COMPAT_4
42 default 5 if SYS_FSL_SEC_COMPAT_5
43 default 6 if SYS_FSL_SEC_COMPAT_6
York Sun90b80382016-12-28 08:43:31 -080044
45config SYS_FSL_SEC_LE
46 bool "Little-endian access to Freescale Secure Boot"