blob: b4caa5685f4af20cf35b8d4c02051b221dc27db6 [file] [log] [blame]
Arthur Heymans6d3682e2023-07-13 12:34:04 +02001config SOC_AMD_GENOA
2 bool
3
4if SOC_AMD_GENOA
5
6config SOC_SPECIFIC_OPTIONS
7 def_bool y
8 select ARCH_X86
9 select HAVE_EXP_X86_64_SUPPORT
Arthur Heymans6d3682e2023-07-13 12:34:04 +020010 select RESET_VECTOR_IN_RAM
11 select SOC_AMD_COMMON
12 select SOC_AMD_COMMON_BLOCK_ACPIMMIO
Arthur Heymans4da9d6b42023-07-13 14:19:09 +020013 select SOC_AMD_COMMON_BLOCK_AOAC
Varshit Pandya95d78d92023-10-04 19:30:21 +053014 select SOC_AMD_COMMON_BLOCK_BANKED_GPIOS
Arthur Heymans48167b12023-07-13 14:07:54 +020015 select SOC_AMD_COMMON_BLOCK_CPUFREQ_FAM17H_19H
Arthur Heymansc666a912023-07-13 14:34:10 +020016 select SOC_AMD_COMMON_BLOCK_HAS_ESPI
17 select SOC_AMD_COMMON_BLOCK_LPC
Arthur Heymans6d3682e2023-07-13 12:34:04 +020018 select SOC_AMD_COMMON_BLOCK_NONCAR
19 select SOC_AMD_COMMON_BLOCK_PCI_MMCONF
Varshit Pandyac0f19832023-10-04 19:26:21 +053020 select SOC_AMD_COMMON_BLOCK_SMI
Arthur Heymans48167b12023-07-13 14:07:54 +020021 select SOC_AMD_COMMON_BLOCK_TSC
Arthur Heymansc666a912023-07-13 14:34:10 +020022 select SOC_AMD_COMMON_BLOCK_USE_ESPI
Arthur Heymanse4eba132023-07-13 14:02:42 +020023 select X86_CUSTOM_BOOTMEDIA
Arthur Heymans6d3682e2023-07-13 12:34:04 +020024
25config USE_EXP_X86_64_SUPPORT
26 default y
27
vbpandya87d8b8c2023-09-22 20:49:37 +053028config CHIPSET_DEVICETREE
29 string
30 default "soc/amd/genoa/chipset.cb"
31
Arthur Heymans6d3682e2023-07-13 12:34:04 +020032config EARLY_RESERVED_DRAM_BASE
33 hex
34 default 0x7000000
35 help
36 This variable defines the base address of the DRAM which is reserved
37 for usage by coreboot in early stages (i.e. before ramstage is up).
38 This memory gets reserved in BIOS tables to ensure that the OS does
39 not use it, thus preventing corruption of OS memory in case of S3
40 resume.
41
42config EARLYRAM_BSP_STACK_SIZE
43 hex
44 default 0x1000
45
46config PSP_APOB_DRAM_ADDRESS
47 hex
48 default 0x7001000
49 help
50 Location in DRAM where the PSP will copy the AGESA PSP Output
51 Block.
52
53config PSP_APOB_DRAM_SIZE
54 hex
55 default 0x20000
56
57config PRERAM_CBMEM_CONSOLE_SIZE
58 hex
59 default 0x1600
60 help
61 Increase this value if preram cbmem console is getting truncated
62
63config C_ENV_BOOTBLOCK_SIZE
64 hex
65 default 0x10000
66 help
67 Sets the size of the bootblock stage that should be loaded in DRAM.
68 This variable controls the DRAM allocation size in linker script
69 for bootblock stage.
70
71config ROMSTAGE_ADDR
72 hex
73 default 0x7040000
74 help
75 Sets the address in DRAM where romstage should be loaded.
76
77config ROMSTAGE_SIZE
78 hex
79 default 0x80000
80 help
81 Sets the size of DRAM allocation for romstage in linker script.
82
Arthur Heymans901f0402023-07-13 14:14:55 +020083config ECAM_MMCONF_BASE_ADDRESS
84 hex
85 default 0xE0000000
86
87config ECAM_MMCONF_BUS_NUMBER
88 int
89 default 256
90
Arthur Heymans8f1c7072023-07-13 12:52:49 +020091menu "PSP Configuration Options"
92
93config AMDFW_CONFIG_FILE
94 string
95 default "src/soc/amd/genoa/fw.cfg"
96
97config PSP_DISABLE_POSTCODES
98 bool "Disable PSP post codes"
99 help
100 Disables the output of port80 post codes from PSP.
101
102config PSP_INIT_ESPI
103 bool "Initialize eSPI in PSP Stage 2 Boot Loader"
104 help
105 Select to initialize the eSPI controller in the PSP Stage 2 Boot
106 Loader.
107
108config PSP_UNLOCK_SECURE_DEBUG
109 bool
110 default y
111
112config HAVE_PSP_WHITELIST_FILE
113 bool "Include a debug whitelist file in PSP build"
114 default n
115 help
116 Support secured unlock prior to reset using a whitelisted
117 serial number. This feature requires a signed whitelist image
118 and bootloader from AMD.
119
120 If unsure, answer 'n'
121
122config PSP_WHITELIST_FILE
123 string "Debug whitelist file path"
124 depends on HAVE_PSP_WHITELIST_FILE
125
Felix Held4ab1db82023-09-28 19:54:55 +0200126config PERFORM_SPL_FUSING
127 bool "Send SPL fuse command to PSP"
128 default n
129 help
130 Send the Security Patch Level (SPL) fusing command to the PSP in
131 order to update the minimum SPL version to be written to the SoC's
132 fuse bits. This will prevent using any embedded firmware components
133 with lower SPL version.
134
135 If unsure, answer 'n'
Arthur Heymans8f1c7072023-07-13 12:52:49 +0200136
137config SPL_TABLE_FILE
Felix Held4ab1db82023-09-28 19:54:55 +0200138 string "SPL table file override"
139 help
140 Provide a mainboard-specific Security Patch Level (SPL) table file
141 override. The SPL file is required to support PSP FW anti-rollback
142 and needs to be created by AMD. The default SPL file specified in the
143 SoC's fw.cfg is in the corresponding folder of the amd_blobs submodule
144 and applies to all boards that use the SoC without verstage on PSP.
145 In the verstage on PSP case, a different SPL file is specific as an
146 override via this Kconfig option.
Arthur Heymans8f1c7072023-07-13 12:52:49 +0200147
148config PSP_SOFTFUSE_BITS
149 string "PSP Soft Fuse bits to enable"
150 default ""
151 help
152 Space separated list of Soft Fuse bits to enable.
153 Bit 0: Enable secure debug (Set by PSP_UNLOCK_SECURE_DEBUG)
154 Bit 7: Disable PSP postcodes on Renoir and newer chips only
155 (Set by PSP_DISABLE_PORT80)
156 Bit 15: PSP debug output destination:
157 0=SoC MMIO UART, 1=IO port 0x3F8
158
159 See #57299 (NDA) for additional bit definitions.
160endmenu
161
162
163endif # SOC_AMD_GENOA