aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSubrata Banik <subratabanik@google.com>2023-06-02 15:42:08 +0530
committerSubrata Banik <subratabanik@google.com>2023-06-04 18:19:08 +0000
commit807d3330d4e8131169e2fce02f1d7b81902e16ab (patch)
tree89b153c43e8f6fbf6568a344e7dbd33ac8575287
parentb807a1d0352d1b5c8996c0a04f71d61ae663db63 (diff)
soc/intel/meteorlake: Introduce different SoC flavors of Meteor Lake
This patch introduces the different SoC flavors of Intel Meteor Lake as: * MTL-U * MTL-P * MTL-S MTL-U and MTL-P are PCH less designs, while MTL-S is with PCH die. The task for mainboard is to specify the correct SoC type rather than selecting the MTL SoC by default. This change is necessary to support the different SoC flavors of Intel Meteor Lake. BUG=b:276697173 TEST=Able to build and boot google/rex. Change-Id: I27404bbbd0b489412953118e140f6f39b6e43426 Signed-off-by: Subrata Banik <subratabanik@google.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/75606 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Eric Lai <eric_lai@quanta.corp-partner.google.com> Reviewed-by: Kapil Porwal <kapilporwal@google.com> Reviewed-by: Tarun Tuli <taruntuli@google.com>
-rw-r--r--src/soc/intel/meteorlake/Kconfig18
1 files changed, 17 insertions, 1 deletions
diff --git a/src/soc/intel/meteorlake/Kconfig b/src/soc/intel/meteorlake/Kconfig
index db347af8b6..3f7f883602 100644
--- a/src/soc/intel/meteorlake/Kconfig
+++ b/src/soc/intel/meteorlake/Kconfig
@@ -1,7 +1,23 @@
config SOC_INTEL_METEORLAKE
bool
help
- Intel Meteorlake support
+ Intel Meteorlake support. Mainboards should specify the SoC
+ type using the `SOC_INTEL_METEORLAKE_*` options instead
+ of selecting this option directly.
+
+config SOC_INTEL_METEORLAKE_U_P
+ bool
+ select SOC_INTEL_METEORLAKE
+ help
+ Choose this option if your mainboard has a MTL-U (15W) or MTL-P (28W) SoC.
+ Note, MTL-U/P SoC combines Compute, GFX, SoC and IOE die.
+
+config SOC_INTEL_METEORLAKE_S
+ bool
+ select SOC_INTEL_METEORLAKE
+ help
+ Choose this option if your mainboard has a MTL-S (45W) SoC.
+ Note, MTL-S SoC combines Compute, GFX, SoC, IOE and PCH die.
if SOC_INTEL_METEORLAKE