diff options
author | Jeremy Compostella <jeremy.compostella@intel.com> | 2024-08-16 14:15:44 -0700 |
---|---|---|
committer | Jérémy Compostella <jeremy.compostella@intel.com> | 2024-10-21 17:00:10 +0000 |
commit | 5a5f39ce8637f61514da9ce47515126218befb8c (patch) | |
tree | 6cad7b47593ee87225890cee655552b162d35042 /src/soc | |
parent | 89740558558020c575875fecb913d47904da7180 (diff) |
soc/intel: Use NEM+ effective way size for for ADL, MTL and PTL
Alder Lake, Meteor Lake and Panther Lake use the effective way size
when setting up the Enhanced No-Eviction Mode (cf.
`INTEL_CAR_ENEM_USE_EFFECTIVE_WAY_SIZE').
BUG=b:360332771
TEST=Verified on PTL Intel reference platform
Change-Id: I5cb66da0aa977eecb64a0021268a6827747c521b
Signed-off-by: Jeremy Compostella <jeremy.compostella@intel.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/83947
Reviewed-by: Bora Guvendik <bora.guvendik@intel.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Subrata Banik <subratabanik@google.com>
Reviewed-by: Anil Kumar K <anil.kumar.k@intel.com>
Reviewed-by: Jayvik Desai <jayvik@google.com>
Diffstat (limited to 'src/soc')
-rw-r--r-- | src/soc/intel/alderlake/Kconfig | 1 | ||||
-rw-r--r-- | src/soc/intel/meteorlake/Kconfig | 1 | ||||
-rw-r--r-- | src/soc/intel/pantherlake/Kconfig | 1 |
3 files changed, 3 insertions, 0 deletions
diff --git a/src/soc/intel/alderlake/Kconfig b/src/soc/intel/alderlake/Kconfig index 3afd9931fc..6ed43bf257 100644 --- a/src/soc/intel/alderlake/Kconfig +++ b/src/soc/intel/alderlake/Kconfig @@ -173,6 +173,7 @@ config ALDERLAKE_CAR_ENHANCED_NEM select CAR_HAS_SF_MASKS select COS_MAPPED_TO_MSB select CAR_HAS_L3_PROTECTED_WAYS + select INTEL_CAR_ENEM_USE_EFFECTIVE_WAY_SIZE config MAX_CPUS int diff --git a/src/soc/intel/meteorlake/Kconfig b/src/soc/intel/meteorlake/Kconfig index b6252c5a93..6a21781346 100644 --- a/src/soc/intel/meteorlake/Kconfig +++ b/src/soc/intel/meteorlake/Kconfig @@ -154,6 +154,7 @@ config METEORLAKE_CAR_ENHANCED_NEM select CAR_HAS_SF_MASKS select COS_MAPPED_TO_MSB select CAR_HAS_L3_PROTECTED_WAYS + select INTEL_CAR_ENEM_USE_EFFECTIVE_WAY_SIZE config MAX_CPUS int diff --git a/src/soc/intel/pantherlake/Kconfig b/src/soc/intel/pantherlake/Kconfig index 8cb0aa8f1b..9d17cb2050 100644 --- a/src/soc/intel/pantherlake/Kconfig +++ b/src/soc/intel/pantherlake/Kconfig @@ -142,6 +142,7 @@ config CAR_ENHANCED_NEM select CAR_HAS_SF_MASKS select COS_MAPPED_TO_MSB select CAR_HAS_L3_PROTECTED_WAYS + select INTEL_CAR_ENEM_USE_EFFECTIVE_WAY_SIZE config MAX_CPUS int |