diff options
Diffstat (limited to 'src/soc/amd/common/block')
-rw-r--r-- | src/soc/amd/common/block/cpu/Kconfig | 6 | ||||
-rw-r--r-- | src/soc/amd/common/block/cpu/tsc/Makefile.inc | 4 |
2 files changed, 5 insertions, 5 deletions
diff --git a/src/soc/amd/common/block/cpu/Kconfig b/src/soc/amd/common/block/cpu/Kconfig index 056e133f41..5a1f86a6fa 100644 --- a/src/soc/amd/common/block/cpu/Kconfig +++ b/src/soc/amd/common/block/cpu/Kconfig @@ -96,15 +96,15 @@ config SOC_AMD_COMMON_BLOCK_SVI3 Select this option is the SoC uses the serial VID 3 standard for encoding the voltage it requests from the VRM. -config SOC_AMD_COMMON_BLOCK_TSC_FAM17H_19H +config SOC_AMD_COMMON_BLOCK_TSC bool select COLLECT_TIMESTAMPS_NO_TSC # selected use SoC-specific timestamp function select TSC_SYNC_LFENCE select UDELAY_TSC help Select this option to add the common functions for getting the TSC - frequency of AMD family 17h and 19h CPUs/APUs and to provide TSC- - based monotonic timer functionality to the build. + frequency of AMD family 17h, 19h and 1Ah CPUs/APUs and to provide + TSC-based monotonic timer functionality to the build. config SOC_AMD_COMMON_BLOCK_UCODE bool diff --git a/src/soc/amd/common/block/cpu/tsc/Makefile.inc b/src/soc/amd/common/block/cpu/tsc/Makefile.inc index 77bdf77886..67bd6fbaeb 100644 --- a/src/soc/amd/common/block/cpu/tsc/Makefile.inc +++ b/src/soc/amd/common/block/cpu/tsc/Makefile.inc @@ -20,7 +20,7 @@ smm-$(CONFIG_SOC_AMD_COMMON_BLOCK_CPUFREQ_FAM15H_16H) += cpufreq_15_16.c smm-$(CONFIG_SOC_AMD_COMMON_BLOCK_CPUFREQ_FAM17H_19H) += cpufreq_17_19.c smm-$(CONFIG_SOC_AMD_COMMON_BLOCK_CPUFREQ_FAM1AH) += cpufreq_1a.c -ifeq ($(CONFIG_SOC_AMD_COMMON_BLOCK_TSC_FAM17H_19H),y) +ifeq ($(CONFIG_SOC_AMD_COMMON_BLOCK_TSC),y) bootblock-y += tsc_freq.c bootblock-y += monotonic_timer.c @@ -37,4 +37,4 @@ ramstage-y += monotonic_timer.c smm-y += tsc_freq.c smm-y += monotonic_timer.c -endif # CONFIG_SOC_AMD_COMMON_BLOCK_TSC_FAM17H_19H +endif # CONFIG_SOC_AMD_COMMON_BLOCK_TSC |