diff options
Diffstat (limited to 'src/mainboard/intel/kblrvp/Kconfig')
-rw-r--r-- | src/mainboard/intel/kblrvp/Kconfig | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/src/mainboard/intel/kblrvp/Kconfig b/src/mainboard/intel/kblrvp/Kconfig index 7e27d89d70..1a23a9019a 100644 --- a/src/mainboard/intel/kblrvp/Kconfig +++ b/src/mainboard/intel/kblrvp/Kconfig @@ -17,6 +17,29 @@ config BOARD_SPECIFIC_OPTIONS # dummy config CHROMEOS select LID_SWITCH +choice + prompt "TPM to USE" + default KBLRVP_TPM1_2 + help + This option allows you to select the TPM to use. + Select whether the board does not have TPM, TPM 1.1 or TPM 2.0 + +config KBLRVP_NO_TPM + bool "No TPM" + select VBOOT_MOCK_SECDATA if VBOOT + +config KBLRVP_TPM1_2 + bool "TPM 1.1" + select MAINBOARD_HAS_LPC_TPM + +config KBLRVP_TPM2_0 + bool "TPM 2.0" + select TPM2 + select MAINBOARD_HAS_TPM2 + select MAINBOARD_HAS_LPC_TPM + +endchoice + config DRIVERS_GENERIC_MAX98357A default y |