Tom Rini | 51b06fa | 2017-01-22 19:43:10 -0500 | [diff] [blame] | 1 | config CHAIN_OF_TRUST |
Udit Agarwal | 22ec238 | 2019-11-07 16:11:32 +0000 | [diff] [blame] | 2 | depends on !FIT_SIGNATURE && NXP_ESBC |
Simon Glass | 311ec4f | 2017-04-26 22:27:53 -0600 | [diff] [blame] | 3 | imply CMD_BLOB |
Simon Glass | 027608e | 2017-05-17 03:25:25 -0600 | [diff] [blame] | 4 | imply CMD_HASH if ARM |
Tom Rini | a5c4d40 | 2017-03-01 16:51:58 -0500 | [diff] [blame] | 5 | select FSL_CAAM |
Ley Foon Tan | 48fcc4a | 2017-05-03 17:13:32 +0800 | [diff] [blame] | 6 | select SPL_BOARD_INIT if (ARM && SPL) |
Alexandru Gagniuc | 97464ff | 2021-09-02 19:54:19 -0500 | [diff] [blame] | 7 | select SPL_HASH if (ARM && SPL) |
Tom Rini | 5bdd919 | 2017-05-15 12:17:49 -0400 | [diff] [blame] | 8 | select SHA_HW_ACCEL |
| 9 | select SHA_PROG_HW_ACCEL |
Simon Glass | 73c18b4 | 2017-07-23 21:19:39 -0600 | [diff] [blame] | 10 | select ENV_IS_NOWHERE |
Sumit Garg | 13ad290 | 2018-01-09 01:27:46 +0530 | [diff] [blame] | 11 | select CMD_EXT4 if ARM |
| 12 | select CMD_EXT4_WRITE if ARM |
Tom Rini | 51b06fa | 2017-01-22 19:43:10 -0500 | [diff] [blame] | 13 | bool |
| 14 | default y |
Simon Glass | a6a9ea4 | 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 | 241a3cc | 2018-01-17 16:13:04 +0530 | [diff] [blame] | 24 | |
Tom Rini | b643ebd | 2022-03-24 17:17:58 -0400 | [diff] [blame] | 25 | config DEEP_SLEEP |
| 26 | bool "Enable SoC deep sleep feature" |
| 27 | default y if ARCH_T1024 || ARCH_T1040 || ARCH_T1042 || ARCH_LS1021A |
| 28 | help |
| 29 | Indicates this SoC supports deep sleep feature. If deep sleep is |
| 30 | supported, core will start to execute uboot when wakes up. |
| 31 | |
Stephen Carlson | e36d49c | 2021-06-22 16:35:20 -0700 | [diff] [blame] | 32 | config FSL_USE_PCA9547_MUX |
| 33 | bool "Enable PCA9547 I2C Mux on Freescale boards" |
Stephen Carlson | e36d49c | 2021-06-22 16:35:20 -0700 | [diff] [blame] | 34 | help |
| 35 | This option enables the PCA9547 I2C mux on Freescale boards. |
| 36 | |
Stephen Carlson | c3301a2 | 2021-02-08 11:11:29 +0100 | [diff] [blame] | 37 | config VID |
Stephen Carlson | c3301a2 | 2021-02-08 11:11:29 +0100 | [diff] [blame] | 38 | bool "Enable Freescale VID" |
Tom Rini | 89cdcab | 2021-12-12 22:12:31 -0500 | [diff] [blame] | 39 | depends on I2C || DM_I2C |
Stephen Carlson | c3301a2 | 2021-02-08 11:11:29 +0100 | [diff] [blame] | 40 | help |
| 41 | This option enables setting core voltage based on individual |
| 42 | values saved in SoC fuses. |
| 43 | |
Tom Rini | 89cdcab | 2021-12-12 22:12:31 -0500 | [diff] [blame] | 44 | config SPL_VID |
| 45 | bool "Enable Freescale VID in SPL" |
| 46 | depends on I2C || DM_I2C |
| 47 | help |
| 48 | This option enables setting core voltage based on individual |
| 49 | values saved in SoC fuses, in SPL. |
| 50 | |
| 51 | if VID || SPL_VID |
| 52 | |
| 53 | config VID_FLS_ENV |
| 54 | string "Environment variable for overriding VDD" |
| 55 | help |
| 56 | This option allows for specifying the environment variable |
| 57 | to check to override VDD information. |
| 58 | |
| 59 | config VOL_MONITOR_INA220 |
| 60 | bool "Enable the INA220 voltage monitor read" |
| 61 | help |
| 62 | This option enables INA220 voltage monitor read |
| 63 | functionality. It is used by the common VID driver. |
| 64 | |
| 65 | config VOL_MONITOR_IR36021_READ |
| 66 | bool "Enable the IR36021 voltage monitor read" |
| 67 | help |
| 68 | This option enables IR36021 voltage monitor read |
| 69 | functionality. It is used by the common VID driver. |
| 70 | |
| 71 | config VOL_MONITOR_IR36021_SET |
| 72 | bool "Enable the IR36021 voltage monitor set" |
| 73 | help |
| 74 | This option enables IR36021 voltage monitor set |
| 75 | functionality. It is used by the common VID driver. |
| 76 | |
Rajesh Bhagat | 241a3cc | 2018-01-17 16:13:04 +0530 | [diff] [blame] | 77 | config VOL_MONITOR_LTC3882_READ |
Rajesh Bhagat | 241a3cc | 2018-01-17 16:13:04 +0530 | [diff] [blame] | 78 | bool "Enable the LTC3882 voltage monitor read" |
Rajesh Bhagat | 241a3cc | 2018-01-17 16:13:04 +0530 | [diff] [blame] | 79 | help |
| 80 | This option enables LTC3882 voltage monitor read |
Stephen Carlson | c3301a2 | 2021-02-08 11:11:29 +0100 | [diff] [blame] | 81 | functionality. It is used by the common VID driver. |
Rajesh Bhagat | 241a3cc | 2018-01-17 16:13:04 +0530 | [diff] [blame] | 82 | |
| 83 | config VOL_MONITOR_LTC3882_SET |
Rajesh Bhagat | 241a3cc | 2018-01-17 16:13:04 +0530 | [diff] [blame] | 84 | bool "Enable the LTC3882 voltage monitor set" |
Rajesh Bhagat | 241a3cc | 2018-01-17 16:13:04 +0530 | [diff] [blame] | 85 | help |
| 86 | This option enables LTC3882 voltage monitor set |
Stephen Carlson | c3301a2 | 2021-02-08 11:11:29 +0100 | [diff] [blame] | 87 | functionality. It is used by the common VID driver. |
| 88 | |
| 89 | config VOL_MONITOR_ISL68233_READ |
Stephen Carlson | c3301a2 | 2021-02-08 11:11:29 +0100 | [diff] [blame] | 90 | bool "Enable the ISL68233 voltage monitor read" |
| 91 | help |
| 92 | This option enables ISL68233 voltage monitor read |
| 93 | functionality. It is used by the common VID driver. |
| 94 | |
| 95 | config VOL_MONITOR_ISL68233_SET |
Stephen Carlson | c3301a2 | 2021-02-08 11:11:29 +0100 | [diff] [blame] | 96 | bool "Enable the ISL68233 voltage monitor set" |
| 97 | help |
| 98 | This option enables ISL68233 voltage monitor set |
| 99 | functionality. It is used by the common VID driver. |
Tom Rini | 89cdcab | 2021-12-12 22:12:31 -0500 | [diff] [blame] | 100 | |
| 101 | endif |
Tom Rini | e24547a | 2022-03-30 18:07:32 -0400 | [diff] [blame] | 102 | |
| 103 | config FSL_QIXIS |
| 104 | bool "Enable QIXIS support" |
| 105 | |
| 106 | config QIXIS_I2C_ACCESS |
| 107 | bool "Access to QIXIS is over i2c" |
| 108 | depends on FSL_QIXIS |
| 109 | default y |