diff options
author | Elyes Haouas <ehaouas@noos.fr> | 2023-07-21 07:38:54 +0200 |
---|---|---|
committer | Elyes Haouas <ehaouas@noos.fr> | 2023-08-04 03:00:25 +0000 |
commit | 86f4f2fb34aa4a25f79ebca59b3cd6eea3e89c72 (patch) | |
tree | 110a54d6ecfc9ffc83fa18eb207ed239f9dcafa1 /src/cpu/intel/haswell/Kconfig | |
parent | 33201ab49f8a37d8a7a06d7c1c88b4bc243545d6 (diff) |
cpu: Get rid of CPU_SPECIFIC_OPTIONS
Remove dummy CPU_SPECIFIC_OPTIONS.
Change-Id: I267b2a7c6dfc887b572e1b63b0f59fbfa4d20f0e
Signed-off-by: Elyes Haouas <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/76681
Reviewed-by: Martin L Roth <gaumless@gmail.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/cpu/intel/haswell/Kconfig')
-rw-r--r-- | src/cpu/intel/haswell/Kconfig | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/src/cpu/intel/haswell/Kconfig b/src/cpu/intel/haswell/Kconfig index 5b4f6fc752..5bcdd98ce9 100644 --- a/src/cpu/intel/haswell/Kconfig +++ b/src/cpu/intel/haswell/Kconfig @@ -1,11 +1,6 @@ config CPU_INTEL_HASWELL bool - -if CPU_INTEL_HASWELL - -config CPU_SPECIFIC_OPTIONS - def_bool y select ARCH_X86 select SSE2 select UDELAY_TSC @@ -19,6 +14,8 @@ config CPU_SPECIFIC_OPTIONS select HAVE_ASAN_IN_ROMSTAGE select CPU_INTEL_COMMON_VOLTAGE +if CPU_INTEL_HASWELL + config SMM_TSEG_SIZE hex default 0x800000 |