coreboot
coreboot is an Open Source project aimed at replacing the proprietary BIOS found in most computers.
buildOpts.c
Go to the documentation of this file.
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 
3 /* Select the CPU family */
4 #define INSTALL_FAMILY_14_SUPPORT TRUE
5 
6 /* Select the CPU socket type */
7 #define INSTALL_FT1_SOCKET_SUPPORT TRUE
8 
9 /* Agesa optional capabilities selection */
10 #define BLDOPT_REMOVE_UDIMMS_SUPPORT FALSE
11 #define BLDOPT_REMOVE_RDIMMS_SUPPORT TRUE
12 #define BLDOPT_REMOVE_LRDIMMS_SUPPORT FALSE
13 #define BLDOPT_REMOVE_ECC_SUPPORT FALSE
14 #define BLDOPT_REMOVE_BANK_INTERLEAVE FALSE
15 #define BLDOPT_REMOVE_WHEA FALSE
16 #define BLDOPT_ENABLE_DMI TRUE
17 
18 #define BLDCFG_VRM_NB_LOW_POWER_THRESHOLD 1
19 
20 #define BLDCFG_AMD_PLATFORM_TYPE AMD_PLATFORM_MOBILE
21 #define BLDCFG_CFG_GNB_HD_AUDIO FALSE
22 #define BLDCFG_MEMORY_SODIMM_CAPABLE TRUE
23 #define BLDCFG_MEMORY_LRDIMM_CAPABLE FALSE
24 #define BLDCFG_MEMORY_CHANNEL_INTERLEAVING FALSE
25 #define BLDCFG_UMA_ALLOCATION_MODE UMA_NONE
26 
27 /* Agesa configuration values selection */
28 #include <AGESA.h>
29 
30 /* Include the files that instantiate the configuration definitions */
31 #include "cpuRegisters.h"
32 #include "cpuFamRegisters.h"
33 #include "cpuFamilyTranslation.h"
34 #include "AdvancedApi.h"
35 #include "heapManager.h"
36 #include "CreateStruct.h"
37 #include "cpuFeatures.h"
38 #include "Table.h"
39 #include "cpuEarlyInit.h"
40 #include "cpuLateInit.h"
41 #include "GnbInterface.h"
42 
43 /* Instantiate all solution relevant data */
44 #include <PlatformInstall.h>