Maulik V Vaghela has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/37112 )
Change subject: soc/intel/tigerlake: Add Jasperlake soc support ......................................................................
soc/intel/tigerlake: Add Jasperlake soc support
Add Kconfig option for Jasperlake soc and make tigerlake as a base soc. This will allow us to differentiate between soc features.
Change-Id: Id5001dc498a7d7d5c7903dc3a3762da740fc9c8e Signed-off-by: Maulik V Vaghela maulik.v.vaghela@intel.com --- M src/soc/intel/tigerlake/Kconfig 1 file changed, 11 insertions(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/12/37112/1
diff --git a/src/soc/intel/tigerlake/Kconfig b/src/soc/intel/tigerlake/Kconfig index 2824e52..364d573 100644 --- a/src/soc/intel/tigerlake/Kconfig +++ b/src/soc/intel/tigerlake/Kconfig @@ -1,9 +1,19 @@ +config SOC_INTEL_TIGERLAKE_BASE + bool + config SOC_INTEL_TIGERLAKE bool + select SOC_INTEL_TIGERLAKE_BASE help Intel Tigerlake support
-if SOC_INTEL_TIGERLAKE +config SOC_INTEL_JASPERLAKE + bool + select SOC_INTEL_TIGERLAKE_BASE + help + Intel Jasperlake support + +if SOC_INTEL_TIGERLAKE_BASE
config CPU_SPECIFIC_OPTIONS def_bool y