diff options
author | Jincheng Li <jincheng.li@intel.com> | 2024-06-27 17:22:38 +0800 |
---|---|---|
committer | Lean Sheng Tan <sheng.tan@9elements.com> | 2024-07-19 12:35:09 +0000 |
commit | 04340496c121894af0155311c223eed2d5e6597e (patch) | |
tree | d155a4bcd928f8462f2144fa1ecb52defe7bb01c /src/cpu/intel/Makefile.mk | |
parent | 4cf322eda50f67ee948b9153e6d45904a813a661 (diff) |
cpu/intel: Add socket types
Add socket types for LGA1700, LGA3647_1, LGA4189, LGA4677.
Select the socket type for different boards.
For the socket types which are not defined in SMBIOS type4,
CPU_INTEL_SOCKET_OTHER could be used.
Change-Id: Ida3315694f3ce397b9ad9d676d3195da5f096cb7
Signed-off-by: Jincheng Li <jincheng.li@intel.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/83329
Reviewed-by: Jérémy Compostella <jeremy.compostella@intel.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Arthur Heymans <arthur@aheymans.xyz>
Diffstat (limited to 'src/cpu/intel/Makefile.mk')
-rw-r--r-- | src/cpu/intel/Makefile.mk | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/cpu/intel/Makefile.mk b/src/cpu/intel/Makefile.mk index bc8f5375c1..77b4618663 100644 --- a/src/cpu/intel/Makefile.mk +++ b/src/cpu/intel/Makefile.mk @@ -17,5 +17,10 @@ subdirs-$(CONFIG_CPU_INTEL_MODEL_206AX) += model_206ax subdirs-$(CONFIG_CPU_INTEL_HASWELL) += haswell subdirs-$(CONFIG_CPU_INTEL_SLOT_1) += slot_1 subdirs-$(CONFIG_CPU_INTEL_SOCKET_LGA775) += socket_LGA775 +subdirs-$(CONFIG_CPU_INTEL_SOCKET_LGA1700) += socket_LGA1700 +subdirs-$(CONFIG_CPU_INTEL_SOCKET_LGA3647_1) += socket_LGA3647_1 +subdirs-$(CONFIG_CPU_INTEL_SOCKET_LGA4189) += socket_LGA4189 +subdirs-$(CONFIG_CPU_INTEL_SOCKET_LGA4677) += socket_LGA4677 +subdirs-$(CONFIG_CPU_INTEL_SOCKET_OTHER) += socket_OTHER subdirs-y += common |