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 |
Gaurav Jain | 66e5471 | 2022-06-09 16:32:15 +0530 | [diff] [blame] | 6 | select ARCH_MISC_INIT |
Ley Foon Tan | 0680f1b | 2017-05-03 17:13:32 +0800 | [diff] [blame] | 7 | select SPL_BOARD_INIT if (ARM && SPL) |
Alexandru Gagniuc | 0721209 | 2021-09-02 19:54:19 -0500 | [diff] [blame] | 8 | select SPL_HASH if (ARM && SPL) |
Tom Rini | 089df18 | 2017-05-15 12:17:49 -0400 | [diff] [blame] | 9 | select SHA_HW_ACCEL |
| 10 | select SHA_PROG_HW_ACCEL |
Simon Glass | 2be2965 | 2017-07-23 21:19:39 -0600 | [diff] [blame] | 11 | select ENV_IS_NOWHERE |
Sumit Garg | 86c773f | 2018-01-09 01:27:46 +0530 | [diff] [blame] | 12 | select CMD_EXT4 if ARM |
| 13 | select CMD_EXT4_WRITE if ARM |
Tom Rini | 8807771 | 2017-01-22 19:43:10 -0500 | [diff] [blame] | 14 | bool |
| 15 | default y |
Simon Glass | ea7971f | 2017-05-17 03:25:16 -0600 | [diff] [blame] | 16 | |
| 17 | config CMD_ESBC_VALIDATE |
| 18 | bool "Enable the 'esbc_validate' and 'esbc_halt' commands" |
Tom Rini | 9314533 | 2022-06-16 14:04:35 -0400 | [diff] [blame^] | 19 | depends on CHAIN_OF_TRUST |
| 20 | default y |
Simon Glass | ea7971f | 2017-05-17 03:25:16 -0600 | [diff] [blame] | 21 | help |
| 22 | This option enables two commands used for secure booting: |
| 23 | |
| 24 | esbc_validate - validate signature using RSA verification |
| 25 | esbc_halt - put the core in spin loop (Secure Boot Only) |
Rajesh Bhagat | 6f2d0a5 | 2018-01-17 16:13:04 +0530 | [diff] [blame] | 26 | |
Tom Rini | 28f9c31 | 2022-03-24 17:17:58 -0400 | [diff] [blame] | 27 | config DEEP_SLEEP |
| 28 | bool "Enable SoC deep sleep feature" |
Tom Rini | 9314533 | 2022-06-16 14:04:35 -0400 | [diff] [blame^] | 29 | depends on ARCH_T1024 || ARCH_T1040 || ARCH_T1042 || ARCH_LS1021A |
| 30 | default y |
Tom Rini | 28f9c31 | 2022-03-24 17:17:58 -0400 | [diff] [blame] | 31 | help |
| 32 | Indicates this SoC supports deep sleep feature. If deep sleep is |
| 33 | supported, core will start to execute uboot when wakes up. |
| 34 | |
Stephen Carlson | 15347d2 | 2021-06-22 16:35:20 -0700 | [diff] [blame] | 35 | config FSL_USE_PCA9547_MUX |
| 36 | bool "Enable PCA9547 I2C Mux on Freescale boards" |
Tom Rini | 9314533 | 2022-06-16 14:04:35 -0400 | [diff] [blame^] | 37 | depends on PPC || ARCH_LS1021A || FSL_LSCH2 || FSL_LSCH3 |
Stephen Carlson | 15347d2 | 2021-06-22 16:35:20 -0700 | [diff] [blame] | 38 | help |
| 39 | This option enables the PCA9547 I2C mux on Freescale boards. |
| 40 | |
Stephen Carlson | b5ee48c | 2021-02-08 11:11:29 +0100 | [diff] [blame] | 41 | config VID |
Stephen Carlson | b5ee48c | 2021-02-08 11:11:29 +0100 | [diff] [blame] | 42 | bool "Enable Freescale VID" |
Tom Rini | 9314533 | 2022-06-16 14:04:35 -0400 | [diff] [blame^] | 43 | depends on (PPC || ARCH_LS1021A || FSL_LSCH2 || FSL_LSCH3) && (I2C || DM_I2C) |
Stephen Carlson | b5ee48c | 2021-02-08 11:11:29 +0100 | [diff] [blame] | 44 | help |
| 45 | This option enables setting core voltage based on individual |
| 46 | values saved in SoC fuses. |
| 47 | |
Tom Rini | d06e4b7 | 2021-12-12 22:12:31 -0500 | [diff] [blame] | 48 | config SPL_VID |
| 49 | bool "Enable Freescale VID in SPL" |
Tom Rini | 9314533 | 2022-06-16 14:04:35 -0400 | [diff] [blame^] | 50 | depends on (PPC || ARCH_LS1021A || FSL_LSCH2 || FSL_LSCH3) && (SPL_I2C || DM_SPL_I2C) |
Tom Rini | d06e4b7 | 2021-12-12 22:12:31 -0500 | [diff] [blame] | 51 | help |
| 52 | This option enables setting core voltage based on individual |
| 53 | values saved in SoC fuses, in SPL. |
| 54 | |
| 55 | if VID || SPL_VID |
| 56 | |
| 57 | config VID_FLS_ENV |
| 58 | string "Environment variable for overriding VDD" |
| 59 | help |
| 60 | This option allows for specifying the environment variable |
| 61 | to check to override VDD information. |
| 62 | |
| 63 | config VOL_MONITOR_INA220 |
| 64 | bool "Enable the INA220 voltage monitor read" |
| 65 | help |
| 66 | This option enables INA220 voltage monitor read |
| 67 | functionality. It is used by the common VID driver. |
| 68 | |
| 69 | config VOL_MONITOR_IR36021_READ |
| 70 | bool "Enable the IR36021 voltage monitor read" |
| 71 | help |
| 72 | This option enables IR36021 voltage monitor read |
| 73 | functionality. It is used by the common VID driver. |
| 74 | |
| 75 | config VOL_MONITOR_IR36021_SET |
| 76 | bool "Enable the IR36021 voltage monitor set" |
| 77 | help |
| 78 | This option enables IR36021 voltage monitor set |
| 79 | functionality. It is used by the common VID driver. |
| 80 | |
Rajesh Bhagat | 6f2d0a5 | 2018-01-17 16:13:04 +0530 | [diff] [blame] | 81 | config VOL_MONITOR_LTC3882_READ |
Rajesh Bhagat | 6f2d0a5 | 2018-01-17 16:13:04 +0530 | [diff] [blame] | 82 | bool "Enable the LTC3882 voltage monitor read" |
Rajesh Bhagat | 6f2d0a5 | 2018-01-17 16:13:04 +0530 | [diff] [blame] | 83 | help |
| 84 | This option enables LTC3882 voltage monitor read |
Stephen Carlson | b5ee48c | 2021-02-08 11:11:29 +0100 | [diff] [blame] | 85 | functionality. It is used by the common VID driver. |
Rajesh Bhagat | 6f2d0a5 | 2018-01-17 16:13:04 +0530 | [diff] [blame] | 86 | |
| 87 | config VOL_MONITOR_LTC3882_SET |
Rajesh Bhagat | 6f2d0a5 | 2018-01-17 16:13:04 +0530 | [diff] [blame] | 88 | bool "Enable the LTC3882 voltage monitor set" |
Rajesh Bhagat | 6f2d0a5 | 2018-01-17 16:13:04 +0530 | [diff] [blame] | 89 | help |
| 90 | This option enables LTC3882 voltage monitor set |
Stephen Carlson | b5ee48c | 2021-02-08 11:11:29 +0100 | [diff] [blame] | 91 | functionality. It is used by the common VID driver. |
| 92 | |
| 93 | config VOL_MONITOR_ISL68233_READ |
Stephen Carlson | b5ee48c | 2021-02-08 11:11:29 +0100 | [diff] [blame] | 94 | bool "Enable the ISL68233 voltage monitor read" |
| 95 | help |
| 96 | This option enables ISL68233 voltage monitor read |
| 97 | functionality. It is used by the common VID driver. |
| 98 | |
| 99 | config VOL_MONITOR_ISL68233_SET |
Stephen Carlson | b5ee48c | 2021-02-08 11:11:29 +0100 | [diff] [blame] | 100 | bool "Enable the ISL68233 voltage monitor set" |
| 101 | help |
| 102 | This option enables ISL68233 voltage monitor set |
| 103 | functionality. It is used by the common VID driver. |
Tom Rini | d06e4b7 | 2021-12-12 22:12:31 -0500 | [diff] [blame] | 104 | |
| 105 | endif |
Tom Rini | d43cd48 | 2022-03-30 18:07:32 -0400 | [diff] [blame] | 106 | |
| 107 | config FSL_QIXIS |
| 108 | bool "Enable QIXIS support" |
Tom Rini | 9314533 | 2022-06-16 14:04:35 -0400 | [diff] [blame^] | 109 | depends on PPC || ARCH_LS1021A || FSL_LSCH2 || FSL_LSCH3 |
Tom Rini | d43cd48 | 2022-03-30 18:07:32 -0400 | [diff] [blame] | 110 | |
| 111 | config QIXIS_I2C_ACCESS |
| 112 | bool "Access to QIXIS is over i2c" |
| 113 | depends on FSL_QIXIS |
| 114 | default y |
Tom Rini | 5cc1d92 | 2022-06-08 08:24:28 -0400 | [diff] [blame] | 115 | |
| 116 | config HAS_FSL_DR_USB |
| 117 | def_bool y |
| 118 | depends on USB_EHCI_HCD && PPC |