Enable SMBIOS Processor Upgrade Type reporting for Socket BGA1744.
- Add CPU_INTEL_SOCKET_BGA1744 Kconfig option
- Add socket_BGA1744 subdirectory to build system
- Map to PROCESSOR_UPGRADE_SOCKET_BGA1744 in SMBIOS Type 4
TEST=Built for mc_rpl1, verified `dmidecode -t processor | grep Upgrade`
shows "Socket BGA1744"
Change-Id: I18123f8ab656d4ca8c540be402f47929f8550ede
Signed-off-by: Kilian Krause <kilian.krause@siemens.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/89899
Reviewed-by: Maximilian Brune <maximilian.brune@9elements.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Mario Scheithauer <mario.scheithauer@siemens.com>
27 lines
1.2 KiB
Makefile
27 lines
1.2 KiB
Makefile
## SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
# Note: From here on down, we are socket-centric. Socket choice determines
|
|
# what other CPU files are included.
|
|
#
|
|
# Therefore: ONLY include Makefiles from socket directories!
|
|
|
|
subdirs-$(CONFIG_CPU_INTEL_FIRMWARE_INTERFACE_TABLE) += fit
|
|
subdirs-$(CONFIG_CPU_INTEL_SOCKET_441) += socket_441
|
|
subdirs-$(CONFIG_CPU_INTEL_SOCKET_BGA956) += socket_BGA956
|
|
subdirs-$(CONFIG_CPU_INTEL_SOCKET_BGA1744) += socket_BGA1744
|
|
subdirs-$(CONFIG_CPU_INTEL_SOCKET_FCBGA559) += socket_FCBGA559
|
|
subdirs-$(CONFIG_CPU_INTEL_SOCKET_M) += socket_m
|
|
subdirs-$(CONFIG_CPU_INTEL_SOCKET_P) += socket_p
|
|
subdirs-$(CONFIG_CPU_INTEL_SOCKET_MPGA604) += socket_mPGA604
|
|
subdirs-$(CONFIG_CPU_INTEL_MODEL_2065X) += model_2065x
|
|
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
|