blob: 5e0c71fc08f88a3e5775bac7f62ff613cc3c50cd [file] [log] [blame]
Felix Held3c44c622022-01-10 20:57:29 +01001# SPDX-License-Identifier: GPL-2.0-only
2
3# TODO: Check if this is still correct
4
5config SOC_AMD_SABRINA
6 bool
7 help
8 AMD Sabrina support
9
10if SOC_AMD_SABRINA
11
12config SOC_SPECIFIC_OPTIONS
13 def_bool y
14 select ACPI_SOC_NVS
15 select ARCH_BOOTBLOCK_X86_32
16 select ARCH_VERSTAGE_X86_32 if !VBOOT_STARTS_BEFORE_BOOTBLOCK
17 select ARCH_ROMSTAGE_X86_32
18 select ARCH_RAMSTAGE_X86_32
19 select ARCH_X86
20 select BOOT_DEVICE_SUPPORTS_WRITES if BOOT_DEVICE_SPI_FLASH
21 select CONSOLE_CBMEM_PRINT_PRE_BOOTBLOCK_CONTENTS if VBOOT_STARTS_BEFORE_BOOTBLOCK
22 select DRIVERS_USB_ACPI
23 select DRIVERS_I2C_DESIGNWARE
24 select DRIVERS_USB_PCI_XHCI
25 select FSP_COMPRESS_FSP_M_LZMA if !ASYNC_FILE_LOADING
26 select FSP_COMPRESS_FSP_M_LZ4 if ASYNC_FILE_LOADING
27 select FSP_COMPRESS_FSP_S_LZ4
28 select GENERIC_GPIO_LIB
29 select HAVE_ACPI_TABLES
30 select HAVE_CF9_RESET
31 select HAVE_EM100_SUPPORT
32 select HAVE_FSP_GOP
33 select HAVE_SMI_HANDLER
34 select IDT_IN_EVERY_STAGE
35 select PARALLEL_MP_AP_WORK
36 select PLATFORM_USES_FSP2_0
37 select PROVIDES_ROM_SHARING
38 select PSP_VERSTAGE_CCP_DMA if VBOOT_STARTS_BEFORE_BOOTBLOCK
39 select RESET_VECTOR_IN_RAM
40 select RTC
41 select SOC_AMD_COMMON
42 select SOC_AMD_COMMON_BLOCK_ACP # TODO: Check if this is still correct
43 select SOC_AMD_COMMON_BLOCK_ACPI # TODO: Check if this is still correct
44 select SOC_AMD_COMMON_BLOCK_ACPIMMIO # TODO: Check if this is still correct
45 select SOC_AMD_COMMON_BLOCK_ACPI_ALIB # TODO: Check if this is still correct
46 select SOC_AMD_COMMON_BLOCK_ACPI_GPIO # TODO: Check if this is still correct
47 select SOC_AMD_COMMON_BLOCK_ACPI_IVRS # TODO: Check if this is still correct
48 select SOC_AMD_COMMON_BLOCK_AOAC # TODO: Check if this is still correct
49 select SOC_AMD_COMMON_BLOCK_APOB # TODO: Check if this is still correct
50 select SOC_AMD_COMMON_BLOCK_BANKED_GPIOS # TODO: Check if this is still correct
51 select SOC_AMD_COMMON_BLOCK_DATA_FABRIC # TODO: Check if this is still correct
52 select SOC_AMD_COMMON_BLOCK_GRAPHICS # TODO: Check if this is still correct
53 select SOC_AMD_COMMON_BLOCK_HAS_ESPI # TODO: Check if this is still correct
54 select SOC_AMD_COMMON_BLOCK_I2C # TODO: Check if this is still correct
55 select SOC_AMD_COMMON_BLOCK_IOMMU # TODO: Check if this is still correct
56 select SOC_AMD_COMMON_BLOCK_LPC # TODO: Check if this is still correct
57 select SOC_AMD_COMMON_BLOCK_MCAX # TODO: Check if this is still correct
58 select SOC_AMD_COMMON_BLOCK_NONCAR # TODO: Check if this is still correct
59 select SOC_AMD_COMMON_BLOCK_PCI # TODO: Check if this is still correct
60 select SOC_AMD_COMMON_BLOCK_PCI_MMCONF # TODO: Check if this is still correct
61 select SOC_AMD_COMMON_BLOCK_PCIE_GPP_DRIVER # TODO: Check if this is still correct
62 select SOC_AMD_COMMON_BLOCK_PM # TODO: Check if this is still correct
63 select SOC_AMD_COMMON_BLOCK_PM_CHIPSET_STATE_SAVE # TODO: Check if this is still correct
64 select SOC_AMD_COMMON_BLOCK_PSP_GEN2 # TODO: Check if this is still correct
65 select SOC_AMD_COMMON_BLOCK_SMBUS # TODO: Check if this is still correct
66 select SOC_AMD_COMMON_BLOCK_SMI # TODO: Check if this is still correct
67 select SOC_AMD_COMMON_BLOCK_SMM # TODO: Check if this is still correct
68 select SOC_AMD_COMMON_BLOCK_SMU # TODO: Check if this is still correct
69 select SOC_AMD_COMMON_BLOCK_SPI # TODO: Check if this is still correct
70 select SOC_AMD_COMMON_BLOCK_TSC_FAM17H_19H # TODO: Check if this is still correct
71 select SOC_AMD_COMMON_BLOCK_UART # TODO: Check if this is still correct
72 select SOC_AMD_COMMON_BLOCK_UCODE # TODO: Check if this is still correct
73 select SOC_AMD_COMMON_FSP_DMI_TABLES # TODO: Check if this is still correct
74 select SOC_AMD_COMMON_FSP_PCI # TODO: Check if this is still correct
75 select SSE2
76 select UDK_2017_BINDING
77 select VBOOT_DEFINE_WIDEVINE_COUNTERS if VBOOT_STARTS_BEFORE_BOOTBLOCK
78 select X86_AMD_FIXED_MTRRS
79 select X86_INIT_NEED_1_SIPI
80
81config ARCH_ALL_STAGES_X86
82 default n
83
84config SOC_AMD_COMMON_BLOCK_UCODE_SIZE
85 default 5568
86
87config CHIPSET_DEVICETREE
88 string
89 default "soc/amd/sabrina/chipset.cb"
90
91config EARLY_RESERVED_DRAM_BASE
92 hex
93 default 0x2000000
94 help
95 This variable defines the base address of the DRAM which is reserved
96 for usage by coreboot in early stages (i.e. before ramstage is up).
97 This memory gets reserved in BIOS tables to ensure that the OS does
98 not use it, thus preventing corruption of OS memory in case of S3
99 resume.
100
101config EARLYRAM_BSP_STACK_SIZE
102 hex
103 default 0x1000
104
105config PSP_APOB_DRAM_ADDRESS
106 hex
107 default 0x2001000
108 help
109 Location in DRAM where the PSP will copy the AGESA PSP Output
110 Block.
111
112config PSP_SHAREDMEM_BASE
113 hex
114 default 0x2011000 if VBOOT
115 default 0x0
116 help
117 This variable defines the base address in DRAM memory where PSP copies
118 the vboot workbuf. This is used in the linker script to have a static
119 allocation for the buffer as well as for adding relevant entries in
120 the BIOS directory table for the PSP.
121
122config PSP_SHAREDMEM_SIZE
123 hex
124 default 0x8000 if VBOOT
125 default 0x0
126 help
127 Sets the maximum size for the PSP to pass the vboot workbuf and
128 any logs or timestamps back to coreboot. This will be copied
129 into main memory by the PSP and will be available when the x86 is
130 started. The workbuf's base depends on the address of the reset
131 vector.
132
133config PRERAM_CBMEM_CONSOLE_SIZE
134 hex
135 default 0x1600
136 help
137 Increase this value if preram cbmem console is getting truncated
138
139config CBFS_MCACHE_SIZE
140 hex
141 default 0x2000 if VBOOT_STARTS_BEFORE_BOOTBLOCK
142
143config C_ENV_BOOTBLOCK_SIZE
144 hex
145 default 0x10000
146 help
147 Sets the size of the bootblock stage that should be loaded in DRAM.
148 This variable controls the DRAM allocation size in linker script
149 for bootblock stage.
150
151config ROMSTAGE_ADDR
152 hex
153 default 0x2040000
154 help
155 Sets the address in DRAM where romstage should be loaded.
156
157config ROMSTAGE_SIZE
158 hex
159 default 0x80000
160 help
161 Sets the size of DRAM allocation for romstage in linker script.
162
163config FSP_M_ADDR
164 hex
165 default 0x20C0000
166 help
167 Sets the address in DRAM where FSP-M should be loaded. cbfstool
168 performs relocation of FSP-M to this address.
169
170config FSP_M_SIZE
171 hex
172 default 0xC0000
173 help
174 Sets the size of DRAM allocation for FSP-M in linker script.
175
176config FSP_TEMP_RAM_SIZE
177 hex
178 default 0x40000
179 help
180 The amount of coreboot-allocated heap and stack usage by the FSP.
181
182config VERSTAGE_ADDR
183 hex
184 depends on VBOOT_SEPARATE_VERSTAGE
185 default 0x2180000
186 help
187 Sets the address in DRAM where verstage should be loaded if running
188 as a separate stage on x86.
189
190config VERSTAGE_SIZE
191 hex
192 depends on VBOOT_SEPARATE_VERSTAGE
193 default 0x80000
194 help
195 Sets the size of DRAM allocation for verstage in linker script if
196 running as a separate stage on x86.
197
198config ASYNC_FILE_LOADING
199 bool "Loads files from SPI asynchronously"
200 select COOP_MULTITASKING
201 select SOC_AMD_COMMON_BLOCK_LPC_SPI_DMA
202 select CBFS_PRELOAD
203 help
204 When enabled, the platform will use the LPC SPI DMA controller to
205 asynchronously load contents from the SPI ROM. This will improve
206 boot time because the CPUs can be performing useful work while the
207 SPI contents are being preloaded.
208
209config CBFS_CACHE_SIZE
210 hex
211 default 0x40000 if CBFS_PRELOAD
212
213config RAMBASE
214 hex
215 default 0x10000000
216
217config RO_REGION_ONLY
218 string
219 depends on VBOOT_SLOTS_RW_AB || VBOOT_SLOTS_RW_A
220 default "apu/amdfw"
221
222config ECAM_MMCONF_BASE_ADDRESS
223 default 0xF8000000
224
225config ECAM_MMCONF_BUS_NUMBER
226 default 64
227
228config MAX_CPUS
229 int
230 default 16
231 help
232 Maximum number of threads the platform can have.
233
234config CONSOLE_UART_BASE_ADDRESS
235 depends on CONSOLE_SERIAL && AMD_SOC_CONSOLE_UART
236 hex
237 default 0xfedc9000 if UART_FOR_CONSOLE = 0
238 default 0xfedca000 if UART_FOR_CONSOLE = 1
Felix Heldb1fe9de2022-01-12 23:18:54 +0100239 default 0xfedce000 if UART_FOR_CONSOLE = 2
240 default 0xfedcf000 if UART_FOR_CONSOLE = 3
241 default 0xfedd1000 if UART_FOR_CONSOLE = 4
Felix Held3c44c622022-01-10 20:57:29 +0100242
243config SMM_TSEG_SIZE
244 hex
245 default 0x800000 if HAVE_SMI_HANDLER
246 default 0x0
247
248config SMM_RESERVED_SIZE
249 hex
250 default 0x180000
251
252config SMM_MODULE_STACK_SIZE
253 hex
254 default 0x800
255
256config ACPI_BERT
257 bool "Build ACPI BERT Table"
258 default y
259 depends on HAVE_ACPI_TABLES
260 help
261 Report Machine Check errors identified in POST to the OS in an
262 ACPI Boot Error Record Table.
263
264config ACPI_BERT_SIZE
265 hex
266 default 0x4000 if ACPI_BERT
267 default 0x0
268 help
269 Specify the amount of DRAM reserved for gathering the data used to
270 generate the ACPI table.
271
272config DRIVERS_I2C_DESIGNWARE_CLOCK_MHZ
273 int
274 default 150
275
276config DISABLE_SPI_FLASH_ROM_SHARING
277 def_bool n
278 help
279 Instruct the chipset to not honor the EGPIO67_SPI_ROM_REQ pin
280 which indicates a board level ROM transaction request. This
281 removes arbitration with board and assumes the chipset controls
282 the SPI flash bus entirely.
283
284config DISABLE_KEYBOARD_RESET_PIN
285 bool
286 help
287 Instruct the SoC to not use the state of GPIO_129 as keyboard reset
288 signal. When this pin is used as GPIO and the keyboard reset
289 functionality isn't disabled, configuring it as an output and driving
290 it as 0 will cause a reset.
291
292config ACPI_SSDT_PSD_INDEPENDENT
293 bool "Allow core p-state independent transitions"
294 default y
295 help
296 AMD recommends the ACPI _PSD object to be configured to cause
297 cores to transition between p-states independently. A vendor may
298 choose to generate _PSD object to allow cores to transition together.
299
300menu "PSP Configuration Options"
301
302config AMD_FWM_POSITION_INDEX
303 int "Firmware Directory Table location (0 to 5)"
304 range 0 5
305 default 0 if BOARD_ROMSIZE_KB_512
306 default 1 if BOARD_ROMSIZE_KB_1024
307 default 2 if BOARD_ROMSIZE_KB_2048
308 default 3 if BOARD_ROMSIZE_KB_4096
309 default 4 if BOARD_ROMSIZE_KB_8192
310 default 5 if BOARD_ROMSIZE_KB_16384
311 help
312 Typically this is calculated by the ROM size, but there may
313 be situations where you want to put the firmware directory
314 table in a different location.
315 0: 512 KB - 0xFFFA0000
316 1: 1 MB - 0xFFF20000
317 2: 2 MB - 0xFFE20000
318 3: 4 MB - 0xFFC20000
319 4: 8 MB - 0xFF820000
320 5: 16 MB - 0xFF020000
321
322comment "AMD Firmware Directory Table set to location for 512KB ROM"
323 depends on AMD_FWM_POSITION_INDEX = 0
324comment "AMD Firmware Directory Table set to location for 1MB ROM"
325 depends on AMD_FWM_POSITION_INDEX = 1
326comment "AMD Firmware Directory Table set to location for 2MB ROM"
327 depends on AMD_FWM_POSITION_INDEX = 2
328comment "AMD Firmware Directory Table set to location for 4MB ROM"
329 depends on AMD_FWM_POSITION_INDEX = 3
330comment "AMD Firmware Directory Table set to location for 8MB ROM"
331 depends on AMD_FWM_POSITION_INDEX = 4
332comment "AMD Firmware Directory Table set to location for 16MB ROM"
333 depends on AMD_FWM_POSITION_INDEX = 5
334
335config AMDFW_CONFIG_FILE
336 string
337 default "src/soc/amd/sabrina/fw.cfg"
338
339config PSP_DISABLE_POSTCODES
340 bool "Disable PSP post codes"
341 help
342 Disables the output of port80 post codes from PSP.
343
344config PSP_POSTCODES_ON_ESPI
345 bool "Use eSPI bus for PSP post codes"
346 default y
347 depends on !PSP_DISABLE_POSTCODES
348 help
349 Select to send PSP port80 post codes on eSPI bus.
350 If not selected, PSP port80 codes will be sent on LPC bus.
351
352config PSP_LOAD_MP2_FW
353 bool
354 default n
355 help
356 Include the MP2 firmwares and configuration into the PSP build.
357
358 If unsure, answer 'n'
359
360config PSP_UNLOCK_SECURE_DEBUG
361 bool "Unlock secure debug"
362 default y
363 help
364 Select this item to enable secure debug options in PSP.
365
366config HAVE_PSP_WHITELIST_FILE
367 bool "Include a debug whitelist file in PSP build"
368 default n
369 help
370 Support secured unlock prior to reset using a whitelisted
371 serial number. This feature requires a signed whitelist image
372 and bootloader from AMD.
373
374 If unsure, answer 'n'
375
376config PSP_WHITELIST_FILE
377 string "Debug whitelist file path"
378 depends on HAVE_PSP_WHITELIST_FILE
379 default "3rdparty/amd_blobs/cezanne/PSP/wtl-czn.sbin"
380
381config PSP_SOFTFUSE_BITS
382 string "PSP Soft Fuse bits to enable"
383 default "28 6"
384 help
385 Space separated list of Soft Fuse bits to enable.
386 Bit 0: Enable secure debug (Set by PSP_UNLOCK_SECURE_DEBUG)
387 Bit 7: Disable PSP postcodes on Renoir and newer chips only
388 (Set by PSP_DISABLE_PORT80)
389 Bit 15: PSP post code destination: 0=LPC 1=eSPI
390 (Set by PSP_INITIALIZE_ESPI)
391 Bit 29: Disable MP2 firmware loading (Set by PSP_LOAD_MP2_FW)
392
393 See #55758 (NDA) for additional bit definitions.
394
395config PSP_VERSTAGE_FILE
396 string "Specify the PSP_verstage file path"
397 depends on VBOOT_STARTS_BEFORE_BOOTBLOCK
398 default "\$(obj)/psp_verstage.bin"
399 help
400 Add psp_verstage file to the build & PSP Directory Table
401
402config PSP_VERSTAGE_SIGNING_TOKEN
403 string "Specify the PSP_verstage Signature Token file path"
404 depends on VBOOT_STARTS_BEFORE_BOOTBLOCK
405 default ""
406 help
407 Add psp_verstage signature token to the build & PSP Directory Table
408
409endmenu
410
411config VBOOT
412 select VBOOT_VBNV_CMOS
413 select VBOOT_VBNV_CMOS_BACKUP_TO_FLASH
414
415config VBOOT_STARTS_BEFORE_BOOTBLOCK
416 def_bool n
417 depends on VBOOT
418 select ARCH_VERSTAGE_ARMV7
419 help
420 Runs verstage on the PSP. Only available on
421 certain Chrome OS branded parts from AMD.
422
423config VBOOT_HASH_BLOCK_SIZE
424 hex
425 default 0x9000
426 depends on VBOOT_STARTS_BEFORE_BOOTBLOCK
427 help
428 Because the bulk of the time in psp_verstage to hash the RO cbfs is
429 spent in the overhead of doing svc calls, increasing the hash block
430 size significantly cuts the verstage hashing time as seen below.
431
432 4k takes 180ms
433 16k takes 44ms
434 32k takes 33.7ms
435 36k takes 32.5ms
436 There's actually still room for an even bigger stack, but we've
437 reached a point of diminishing returns.
438
439config CMOS_RECOVERY_BYTE
440 hex
441 default 0x51
442 depends on VBOOT_STARTS_BEFORE_BOOTBLOCK
443 help
444 If the workbuf is not passed from the PSP to coreboot, set the
445 recovery flag and reboot. The PSP will read this byte, mark the
446 recovery request in VBNV, and reset the system into recovery mode.
447
448 This is the byte before the default first byte used by VBNV
449 (0x26 + 0x0E - 1)
450
451if VBOOT_SLOTS_RW_AB && VBOOT_STARTS_BEFORE_BOOTBLOCK
452
453config RWA_REGION_ONLY
454 string
455 default "apu/amdfw_a"
456 help
457 Add a space-delimited list of filenames that should only be in the
458 RW-A section.
459
460config RWB_REGION_ONLY
461 string
462 default "apu/amdfw_b"
463 help
464 Add a space-delimited list of filenames that should only be in the
465 RW-B section.
466
467endif # VBOOT_SLOTS_RW_AB && VBOOT_STARTS_BEFORE_BOOTBLOCK
468
469endif # SOC_AMD_SABRINA