Tom Rini | 8807771 | 2017-01-22 19:43:10 -0500 | [diff] [blame] | 1 | config CHAIN_OF_TRUST |
Udit Agarwal | 5536c3c | 2019-11-07 16:11:32 +0000 | [diff] [blame] | 2 | depends on !FIT_SIGNATURE && NXP_ESBC |
Simon Glass | c04b9b3 | 2017-04-26 22:27:53 -0600 | [diff] [blame] | 3 | imply CMD_BLOB |
Simon Glass | 551c393 | 2017-05-17 03:25:25 -0600 | [diff] [blame] | 4 | imply CMD_HASH if ARM |
Tom Rini | 2852267 | 2017-03-01 16:51:58 -0500 | [diff] [blame] | 5 | select FSL_CAAM |
Ley Foon Tan | 0680f1b | 2017-05-03 17:13:32 +0800 | [diff] [blame] | 6 | select SPL_BOARD_INIT if (ARM && SPL) |
Alexandru Gagniuc | 0721209 | 2021-09-02 19:54:19 -0500 | [diff] [blame] | 7 | select SPL_HASH if (ARM && SPL) |
Tom Rini | 089df18 | 2017-05-15 12:17:49 -0400 | [diff] [blame] | 8 | select SHA_HW_ACCEL |
| 9 | select SHA_PROG_HW_ACCEL |
Simon Glass | 2be2965 | 2017-07-23 21:19:39 -0600 | [diff] [blame] | 10 | select ENV_IS_NOWHERE |
Sumit Garg | 86c773f | 2018-01-09 01:27:46 +0530 | [diff] [blame] | 11 | select CMD_EXT4 if ARM |
| 12 | select CMD_EXT4_WRITE if ARM |
Tom Rini | 8807771 | 2017-01-22 19:43:10 -0500 | [diff] [blame] | 13 | bool |
| 14 | default y |
Simon Glass | ea7971f | 2017-05-17 03:25:16 -0600 | [diff] [blame] | 15 | |
| 16 | config CMD_ESBC_VALIDATE |
| 17 | bool "Enable the 'esbc_validate' and 'esbc_halt' commands" |
| 18 | default y if CHAIN_OF_TRUST |
| 19 | help |
| 20 | This option enables two commands used for secure booting: |
| 21 | |
| 22 | esbc_validate - validate signature using RSA verification |
| 23 | esbc_halt - put the core in spin loop (Secure Boot Only) |
Rajesh Bhagat | 6f2d0a5 | 2018-01-17 16:13:04 +0530 | [diff] [blame] | 24 | |
Stephen Carlson | 15347d2 | 2021-06-22 16:35:20 -0700 | [diff] [blame] | 25 | config FSL_USE_PCA9547_MUX |
| 26 | bool "Enable PCA9547 I2C Mux on Freescale boards" |
Stephen Carlson | 15347d2 | 2021-06-22 16:35:20 -0700 | [diff] [blame] | 27 | help |
| 28 | This option enables the PCA9547 I2C mux on Freescale boards. |
| 29 | |
Stephen Carlson | b5ee48c | 2021-02-08 11:11:29 +0100 | [diff] [blame] | 30 | config VID |
Stephen Carlson | b5ee48c | 2021-02-08 11:11:29 +0100 | [diff] [blame] | 31 | bool "Enable Freescale VID" |
Tom Rini | d06e4b7 | 2021-12-12 22:12:31 -0500 | [diff] [blame^] | 32 | depends on I2C || DM_I2C |
Stephen Carlson | b5ee48c | 2021-02-08 11:11:29 +0100 | [diff] [blame] | 33 | help |
| 34 | This option enables setting core voltage based on individual |
| 35 | values saved in SoC fuses. |
| 36 | |
Tom Rini | d06e4b7 | 2021-12-12 22:12:31 -0500 | [diff] [blame^] | 37 | config SPL_VID |
| 38 | bool "Enable Freescale VID in SPL" |
| 39 | depends on I2C || DM_I2C |
| 40 | help |
| 41 | This option enables setting core voltage based on individual |
| 42 | values saved in SoC fuses, in SPL. |
| 43 | |
| 44 | if VID || SPL_VID |
| 45 | |
| 46 | config VID_FLS_ENV |
| 47 | string "Environment variable for overriding VDD" |
| 48 | help |
| 49 | This option allows for specifying the environment variable |
| 50 | to check to override VDD information. |
| 51 | |
| 52 | config VOL_MONITOR_INA220 |
| 53 | bool "Enable the INA220 voltage monitor read" |
| 54 | help |
| 55 | This option enables INA220 voltage monitor read |
| 56 | functionality. It is used by the common VID driver. |
| 57 | |
| 58 | config VOL_MONITOR_IR36021_READ |
| 59 | bool "Enable the IR36021 voltage monitor read" |
| 60 | help |
| 61 | This option enables IR36021 voltage monitor read |
| 62 | functionality. It is used by the common VID driver. |
| 63 | |
| 64 | config VOL_MONITOR_IR36021_SET |
| 65 | bool "Enable the IR36021 voltage monitor set" |
| 66 | help |
| 67 | This option enables IR36021 voltage monitor set |
| 68 | functionality. It is used by the common VID driver. |
| 69 | |
Rajesh Bhagat | 6f2d0a5 | 2018-01-17 16:13:04 +0530 | [diff] [blame] | 70 | config VOL_MONITOR_LTC3882_READ |
Rajesh Bhagat | 6f2d0a5 | 2018-01-17 16:13:04 +0530 | [diff] [blame] | 71 | bool "Enable the LTC3882 voltage monitor read" |
Rajesh Bhagat | 6f2d0a5 | 2018-01-17 16:13:04 +0530 | [diff] [blame] | 72 | help |
| 73 | This option enables LTC3882 voltage monitor read |
Stephen Carlson | b5ee48c | 2021-02-08 11:11:29 +0100 | [diff] [blame] | 74 | functionality. It is used by the common VID driver. |
Rajesh Bhagat | 6f2d0a5 | 2018-01-17 16:13:04 +0530 | [diff] [blame] | 75 | |
| 76 | config VOL_MONITOR_LTC3882_SET |
Rajesh Bhagat | 6f2d0a5 | 2018-01-17 16:13:04 +0530 | [diff] [blame] | 77 | bool "Enable the LTC3882 voltage monitor set" |
Rajesh Bhagat | 6f2d0a5 | 2018-01-17 16:13:04 +0530 | [diff] [blame] | 78 | help |
| 79 | This option enables LTC3882 voltage monitor set |
Stephen Carlson | b5ee48c | 2021-02-08 11:11:29 +0100 | [diff] [blame] | 80 | functionality. It is used by the common VID driver. |
| 81 | |
| 82 | config VOL_MONITOR_ISL68233_READ |
Stephen Carlson | b5ee48c | 2021-02-08 11:11:29 +0100 | [diff] [blame] | 83 | bool "Enable the ISL68233 voltage monitor read" |
| 84 | help |
| 85 | This option enables ISL68233 voltage monitor read |
| 86 | functionality. It is used by the common VID driver. |
| 87 | |
| 88 | config VOL_MONITOR_ISL68233_SET |
Stephen Carlson | b5ee48c | 2021-02-08 11:11:29 +0100 | [diff] [blame] | 89 | bool "Enable the ISL68233 voltage monitor set" |
| 90 | help |
| 91 | This option enables ISL68233 voltage monitor set |
| 92 | functionality. It is used by the common VID driver. |
Tom Rini | d06e4b7 | 2021-12-12 22:12:31 -0500 | [diff] [blame^] | 93 | |
| 94 | endif |