blob: 87d8c51b475f5beb8a9e2a8a358e36f9ea117283 [file] [log] [blame]
Felix Held4a8cd722020-04-18 22:26:39 +02001# SPDX-License-Identifier: GPL-2.0-only
Martin Roth5c354b92019-04-22 14:55:16 -06002
Martin Roth1f337622019-04-22 16:08:31 -06003config SOC_AMD_PICASSO
Martin Roth5c354b92019-04-22 14:55:16 -06004 bool
5 help
Martin Roth1f337622019-04-22 16:08:31 -06006 AMD Picasso support
Martin Roth5c354b92019-04-22 14:55:16 -06007
Martin Roth1f337622019-04-22 16:08:31 -06008if SOC_AMD_PICASSO
Martin Roth5c354b92019-04-22 14:55:16 -06009
10config CPU_SPECIFIC_OPTIONS
11 def_bool y
12 select ARCH_BOOTBLOCK_X86_32
Martin Rothc7acf162020-05-28 00:44:50 -060013 select ARCH_VERSTAGE_X86_32 if !VBOOT_STARTS_BEFORE_BOOTBLOCK
Martin Roth5c354b92019-04-22 14:55:16 -060014 select ARCH_ROMSTAGE_X86_32
15 select ARCH_RAMSTAGE_X86_32
Felix Held46673222020-04-04 02:37:04 +020016 select RESET_VECTOR_IN_RAM
Martin Roth5c354b92019-04-22 14:55:16 -060017 select X86_AMD_FIXED_MTRRS
Marshall Dawson34c30562019-07-16 15:18:00 -060018 select X86_AMD_INIT_SIPI
Martin Roth5c354b92019-04-22 14:55:16 -060019 select ACPI_AMD_HARDWARE_SLEEP_VALUES
Martin Roth5c354b92019-04-22 14:55:16 -060020 select DRIVERS_I2C_DESIGNWARE
21 select GENERIC_GPIO_LIB
Furquan Shaikh8e915092020-06-17 23:15:35 -070022 select IDT_IN_EVERY_STAGE
Martin Roth5c354b92019-04-22 14:55:16 -060023 select IOAPIC
Furquan Shaikh0eabe132020-04-28 21:57:07 -070024 select HAVE_EM100_SUPPORT
Martin Roth5c354b92019-04-22 14:55:16 -060025 select HAVE_USBDEBUG_OPTIONS
Marshall Dawson80d0b012019-06-19 12:29:23 -060026 select TSC_MONOTONIC_TIMER
Richard Spiegel65562cd652019-08-21 10:27:05 -070027 select SOC_AMD_COMMON_BLOCK_SPI
Martin Roth5c354b92019-04-22 14:55:16 -060028 select TSC_SYNC_LFENCE
Marshall Dawson80d0b012019-06-19 12:29:23 -060029 select UDELAY_TSC
Martin Roth5c354b92019-04-22 14:55:16 -060030 select SOC_AMD_COMMON
31 select SOC_AMD_COMMON_BLOCK
Furquan Shaikh702cf302020-05-09 18:30:51 -070032 select SOC_AMD_COMMON_BLOCK_HAS_ESPI
Martin Roth5c354b92019-04-22 14:55:16 -060033 select SOC_AMD_COMMON_BLOCK_IOMMU
34 select SOC_AMD_COMMON_BLOCK_ACPIMMIO
35 select SOC_AMD_COMMON_BLOCK_BANKED_GPIOS
36 select SOC_AMD_COMMON_BLOCK_ACPI
Furquan Shaikh9e1a49c2020-04-23 14:01:12 -070037 select SOC_AMD_COMMON_BLOCK_GRAPHICS
Martin Roth5c354b92019-04-22 14:55:16 -060038 select SOC_AMD_COMMON_BLOCK_LPC
39 select SOC_AMD_COMMON_BLOCK_PCI
40 select SOC_AMD_COMMON_BLOCK_HDA
41 select SOC_AMD_COMMON_BLOCK_SATA
Aaron Durbin3d2e18a2020-01-28 11:20:05 -070042 select SOC_AMD_COMMON_BLOCK_SMBUS
Marshall Dawson5a73fc32020-01-24 09:42:57 -070043 select SOC_AMD_COMMON_BLOCK_PSP_GEN2
Aaron Durbin1d0b99b2020-04-11 11:58:57 -060044 select PROVIDES_ROM_SHARING
Martin Roth5c354b92019-04-22 14:55:16 -060045 select BOOT_DEVICE_SUPPORTS_WRITES if BOOT_DEVICE_SPI_FLASH
46 select BOOT_DEVICE_SPI_FLASH_RW_NOMMAP_EARLY if BOOT_DEVICE_SPI_FLASH
Martin Roth5c354b92019-04-22 14:55:16 -060047 select PARALLEL_MP
48 select PARALLEL_MP_AP_WORK
49 select HAVE_SMI_HANDLER
Martin Roth5c354b92019-04-22 14:55:16 -060050 select SSE2
51 select RTC
Marshall Dawson00a22082020-01-20 23:05:31 -070052 select PLATFORM_USES_FSP2_0
Furquan Shaikhc3063c52020-05-28 11:58:20 -070053 select FSP_COMPRESS_FSP_M_LZMA
54 select FSP_COMPRESS_FSP_S_LZMA
Marshall Dawson00a22082020-01-20 23:05:31 -070055 select FSP_USES_CB_STACK
56 select UDK_2017_BINDING
57 select HAVE_CF9_RESET
Zheng Bao6ba591b2020-06-09 09:47:06 +080058 select SUPPORT_CPU_UCODE_IN_CBFS
Kyösti Mälkkic3c55212020-06-17 10:34:26 +030059 select ACPI_NO_SMI_GNVS
Martin Roth5c354b92019-04-22 14:55:16 -060060
Furquan Shaikh3b032062020-06-10 11:52:49 -070061config MEMLAYOUT_LD_FILE
62 string
63 default "src/soc/amd/picasso/memlayout.ld"
64
Furquan Shaikhbc456502020-06-10 16:37:23 -070065config EARLY_RESERVED_DRAM_BASE
66 hex
67 default 0x2000000
68 help
69 This variable defines the base address of the DRAM which is reserved
70 for usage by coreboot in early stages (i.e. before ramstage is up).
71 This memory gets reserved in BIOS tables to ensure that the OS does
72 not use it, thus preventing corruption of OS memory in case of S3
73 resume.
74
75config EARLYRAM_BSP_STACK_SIZE
76 hex
77 default 0x1000
78
79config PSP_APOB_DRAM_ADDRESS
80 hex
81 default 0x2001000
82 help
83 Location in DRAM where the PSP will copy the AGESA PSP Output
84 Block.
85
86config PSP_SHAREDMEM_BASE
87 hex
88 default 0x2011000 if VBOOT
89 default 0x0
90 help
91 This variable defines the base address in DRAM memory where PSP copies
92 vboot workbuf to. This is used in linker script to have a static
93 allocation for the buffer as well as for adding relevant entries in
94 BIOS directory table for the PSP.
95
96config PSP_SHAREDMEM_SIZE
97 hex
98 default 0x8000 if VBOOT
99 default 0x0
100 help
101 Sets the maximum size for the PSP to pass the vboot workbuf and
102 any logs or timestamps back to coreboot. This will be copied
103 into main memory by the PSP and will be available when the x86 is
104 started. The workbuf's base depends on the address of the reset
105 vector.
106
Martin Roth5c354b92019-04-22 14:55:16 -0600107config PRERAM_CBMEM_CONSOLE_SIZE
108 hex
109 default 0x1600
110 help
111 Increase this value if preram cbmem console is getting truncated
112
Furquan Shaikhbc456502020-06-10 16:37:23 -0700113config BOOTBLOCK_ADDR
114 hex
115 default 0x2030000
116 help
117 Sets the address in DRAM where bootblock should be loaded.
118
119config C_ENV_BOOTBLOCK_SIZE
120 hex
121 default 0x10000
122 help
123 Sets the size of the bootblock stage that should be loaded in DRAM.
124 This variable controls the DRAM allocation size in linker script
125 for bootblock stage.
126
127config X86_RESET_VECTOR
128 hex
129 depends on ARCH_X86
130 default 0x203fff0
131 help
132 Sets the reset vector within bootblock where x86 starts execution.
133 Reset vector is supposed to live at offset -0x10 from end of
134 bootblock i.e. BOOTBLOCK_ADDR + C_ENV_BOOTBLOCK_SIZE - 0x10.
135
136config ROMSTAGE_ADDR
137 hex
138 default 0x2040000
139 help
140 Sets the address in DRAM where romstage should be loaded.
141
142config ROMSTAGE_SIZE
143 hex
144 default 0x80000
145 help
146 Sets the size of DRAM allocation for romstage in linker script.
147
148config FSP_M_ADDR
149 hex
150 default 0x20C0000
151 help
152 Sets the address in DRAM where FSP-M should be loaded. cbfstool
153 performs relocation of FSP-M to this address.
154
155config FSP_M_SIZE
156 hex
157 default 0x80000
158 help
159 Sets the size of DRAM allocation for FSP-M in linker script.
160
161config VERSTAGE_ADDR
162 hex
163 depends on VBOOT_SEPARATE_VERSTAGE
164 default 0x2140000
165 help
166 Sets the address in DRAM where verstage should be loaded if running
167 as a separate stage on x86.
168
169config VERSTAGE_SIZE
170 hex
171 depends on VBOOT_SEPARATE_VERSTAGE
172 default 0x80000
173 help
174 Sets the size of DRAM allocation for verstage in linker script if
175 running as a separate stage on x86.
176
177config RAMBASE
178 hex
179 default 0x10000000
180
Martin Roth5c354b92019-04-22 14:55:16 -0600181config CPU_ADDR_BITS
182 int
183 default 48
184
Martin Roth5c354b92019-04-22 14:55:16 -0600185config MMCONF_BASE_ADDRESS
186 hex
187 default 0xF8000000
188
189config MMCONF_BUS_NUMBER
190 int
191 default 64
192
Raul E Rangel5f52c0e2020-05-13 13:22:48 -0600193config VERSTAGE_ADDR
194 hex
195 default 0x4000000
196
Martin Roth5c354b92019-04-22 14:55:16 -0600197config VGA_BIOS_ID
198 string
Martin Roth86ba0d72020-02-05 16:46:30 -0700199 default "1002,15d8,c1"
Martin Roth5c354b92019-04-22 14:55:16 -0600200 help
201 The default VGA BIOS PCI vendor/device ID should be set to the
Martin Roth86ba0d72020-02-05 16:46:30 -0700202 result of the map_oprom_vendev_rev() function in northbridge.c.
Martin Roth5c354b92019-04-22 14:55:16 -0600203
204config VGA_BIOS_FILE
205 string
Raul E Rangelf39dab12020-05-13 16:46:57 -0600206 default "3rdparty/amd_blobs/picasso/PicassoGenericVbios.bin"
Martin Roth5c354b92019-04-22 14:55:16 -0600207
Martin Roth86ba0d72020-02-05 16:46:30 -0700208config VGA_BIOS_SECOND
209 def_bool y
210
211config VGA_BIOS_SECOND_ID
212 string
213 default "1002,15dd,c4"
214 help
215 Because Dali and Picasso need different video BIOSes, but have the
216 same vendor/device IDs, we need an alternate method to determine the
217 correct video BIOS. In map_oprom_vendev_rev(), we look at the cpuid
218 and decide which rom to load.
219
220 Even though the hardware has the same vendor/device IDs, the vBIOS
221 contains a *different* device ID, confusing the situation even more.
222
223config VGA_BIOS_SECOND_FILE
224 string
225 default "3rdparty/amd_blobs/picasso/Raven2GenericVbios.bin"
226
227config CHECK_REV_IN_OPROM_NAME
228 bool
229 default y
230 help
231 Select this in the platform BIOS or chipset if the option rom has a
232 revision that needs to be checked when searching CBFS.
233
Martin Roth5c354b92019-04-22 14:55:16 -0600234config S3_VGA_ROM_RUN
235 bool
236 default n
237
238config HEAP_SIZE
239 hex
240 default 0xc0000
241
242config EHCI_BAR
243 hex
244 default 0xfef00000
245
Martin Roth5c354b92019-04-22 14:55:16 -0600246config SERIRQ_CONTINUOUS_MODE
247 bool
248 default n
249 help
250 Set this option to y for serial IRQ in continuous mode.
251 Otherwise it is in quiet mode.
252
Marshall Dawsonbc4c9032019-06-11 12:18:20 -0600253config PICASSO_ACPI_IO_BASE
Martin Roth5c354b92019-04-22 14:55:16 -0600254 hex
255 default 0x400
256 help
257 Base address for the ACPI registers.
Martin Roth5c354b92019-04-22 14:55:16 -0600258
Felix Held097e4492020-06-16 15:35:20 +0200259config PICASSO_CONSOLE_UART
260 bool "Use Picasso UART controller for console"
Martin Roth5c354b92019-04-22 14:55:16 -0600261 default n
262 select DRIVERS_UART_8250MEM
263 select DRIVERS_UART_8250MEM_32
264 select NO_UART_ON_SUPERIO
265 select UART_OVERRIDE_REFCLK
266 help
Marshall Dawsonc0b8d0d2019-06-20 10:29:29 -0600267 There are four memory-mapped UARTs controllers in Picasso at:
268 0: 0xfedc9000
269 1: 0xfedca000
270 2: 0xfedc3000
271 3: 0xfedcf000
272
273choice PICASSO_UART_CLOCK_SOURCE
274 prompt "UART Frequency"
Felix Held097e4492020-06-16 15:35:20 +0200275 depends on PICASSO_CONSOLE_UART
Marshall Dawsonc0b8d0d2019-06-20 10:29:29 -0600276 default PICASSO_UART_48MZ
277
278config PICASSO_UART_48MZ
279 bool "48 MHz clock"
280 help
281 Select this option for the most compatibility.
282
283config PICASSO_UART_1_8MZ
284 bool "1.8432 MHz clock"
285 help
286 Select this option if an old payload or Linux ttyS0 arguments
287 require it.
288
289endchoice
290
291config PICASSO_UART_LEGACY
292 bool "Decode legacy I/O range"
Felix Held097e4492020-06-16 15:35:20 +0200293 depends on PICASSO_CONSOLE_UART # TODO: shouldn't depend on this
Marshall Dawsonc0b8d0d2019-06-20 10:29:29 -0600294 help
295 Assign I/O 3F8, 2F8, etc. to a Picasso UART. Only a single UART may
296 decode legacy addresses and this option enables the one used for the
297 console. A UART accessed with I/O does not allow all the features
298 of MMIO. The MMIO decode is still present when this option is used.
Martin Roth5c354b92019-04-22 14:55:16 -0600299
300config CONSOLE_UART_BASE_ADDRESS
Felix Held097e4492020-06-16 15:35:20 +0200301 depends on CONSOLE_SERIAL && PICASSO_CONSOLE_UART
Martin Roth5c354b92019-04-22 14:55:16 -0600302 hex
Marshall Dawsonc0b8d0d2019-06-20 10:29:29 -0600303 default 0xfedc9000 if UART_FOR_CONSOLE = 0
304 default 0xfedca000 if UART_FOR_CONSOLE = 1
305 default 0xfedc3000 if UART_FOR_CONSOLE = 2
306 default 0xfedcf000 if UART_FOR_CONSOLE = 3
Martin Roth5c354b92019-04-22 14:55:16 -0600307
308config SMM_TSEG_SIZE
309 hex
310 default 0x800000 if SMM_TSEG && HAVE_SMI_HANDLER
311 default 0x0
312
313config SMM_RESERVED_SIZE
314 hex
Marshall Dawson3e2fabf2020-06-12 10:28:04 -0600315 default 0x180000
Martin Roth5c354b92019-04-22 14:55:16 -0600316
317config SMM_MODULE_STACK_SIZE
318 hex
319 default 0x800
320
321config ACPI_CPU_STRING
322 string
Marshall Dawson879eba52019-11-22 17:52:39 -0700323 default "\\_PR.C%03d"
Martin Roth5c354b92019-04-22 14:55:16 -0600324
325config ACPI_BERT
326 bool "Build ACPI BERT Table"
327 default y
328 depends on HAVE_ACPI_TABLES
329 help
330 Report Machine Check errors identified in POST to the OS in an
Marshall Dawson03743b72020-06-18 10:23:48 -0600331 ACPI Boot Error Record Table.
Martin Roth5c354b92019-04-22 14:55:16 -0600332
Marshall Dawson901cb9c2020-01-21 14:53:45 -0700333config ACPI_BERT_SIZE
334 hex
Marshall Dawson03743b72020-06-18 10:23:48 -0600335 default 0x4000 if ACPI_BERT
336 default 0x0
Marshall Dawson901cb9c2020-01-21 14:53:45 -0700337 help
338 Specify the amount of DRAM reserved for gathering the data used to
339 generate the ACPI table.
340
Furquan Shaikh40a38882020-05-01 10:43:48 -0700341config CHROMEOS
342 select CHROMEOS_RAMOOPS_DYNAMIC
Rob Barnes5ac928d2020-07-07 16:16:12 -0600343 select ALWAYS_LOAD_OPROM
344 select ALWAYS_RUN_OPROM
Furquan Shaikh40a38882020-05-01 10:43:48 -0700345
Marshall Dawson62611412019-06-19 11:46:06 -0600346config RO_REGION_ONLY
347 string
348 depends on CHROMEOS
349 default "apu/amdfw"
Martin Roth5c354b92019-04-22 14:55:16 -0600350
Marshall Dawson62611412019-06-19 11:46:06 -0600351config DRIVERS_I2C_DESIGNWARE_CLOCK_MHZ
352 int
Martin Roth4017de02019-12-16 23:21:05 -0700353 default 150
Marshall Dawson62611412019-06-19 11:46:06 -0600354
Marshall Dawson39a4ac12019-06-20 16:28:33 -0600355config PICASSO_LPC_IOMUX
356 bool
357 help
358 Picasso's LPC bus signals are MUXed with some of the EMMC signals.
359 Select this option if LPC signals are required.
360
Aaron Durbin1d0b99b2020-04-11 11:58:57 -0600361config DISABLE_SPI_FLASH_ROM_SHARING
362 def_bool n
363 help
364 Instruct the chipset to not honor the EGPIO67_SPI_ROM_REQ pin
365 which indicates a board level ROM transaction request. This
366 removes arbitration with board and assumes the chipset controls
367 the SPI flash bus entirely.
368
Marshall Dawson62611412019-06-19 11:46:06 -0600369config MAINBOARD_POWER_RESTORE
370 def_bool n
371 help
372 This option determines what state to go to once power is restored
373 after having been lost in S0. Select this option to automatically
374 return to S0. Otherwise the system will remain in S5 once power
375 is restored.
376
Marshall Dawson00a22082020-01-20 23:05:31 -0700377config FSP_TEMP_RAM_SIZE
378 hex
379 depends on FSP_USES_CB_STACK
380 default 0x40000
381 help
382 The amount of coreboot-allocated heap and stack usage by the FSP.
383
Marshall Dawson62611412019-06-19 11:46:06 -0600384menu "PSP Configuration Options"
Martin Roth5c354b92019-04-22 14:55:16 -0600385
Martin Roth5c354b92019-04-22 14:55:16 -0600386config AMDFW_OUTSIDE_CBFS
Furquan Shaikhd4ef9a42020-04-24 11:49:32 -0700387 bool
Martin Roth5c354b92019-04-22 14:55:16 -0600388 default n
389 help
390 The AMDFW (PSP) is typically locatable in cbfs. Select this
391 option to manually attach the generated amdfw.rom outside of
392 cbfs. The location is selected by the FWM position.
393
394config AMD_FWM_POSITION_INDEX
395 int "Firmware Directory Table location (0 to 5)"
396 range 0 5
397 default 0 if BOARD_ROMSIZE_KB_512
398 default 1 if BOARD_ROMSIZE_KB_1024
399 default 2 if BOARD_ROMSIZE_KB_2048
400 default 3 if BOARD_ROMSIZE_KB_4096
401 default 4 if BOARD_ROMSIZE_KB_8192
402 default 5 if BOARD_ROMSIZE_KB_16384
403 help
404 Typically this is calculated by the ROM size, but there may
405 be situations where you want to put the firmware directory
406 table in a different location.
407 0: 512 KB - 0xFFFA0000
408 1: 1 MB - 0xFFF20000
409 2: 2 MB - 0xFFE20000
410 3: 4 MB - 0xFFC20000
411 4: 8 MB - 0xFF820000
412 5: 16 MB - 0xFF020000
413
414comment "AMD Firmware Directory Table set to location for 512KB ROM"
415 depends on AMD_FWM_POSITION_INDEX = 0
416comment "AMD Firmware Directory Table set to location for 1MB ROM"
417 depends on AMD_FWM_POSITION_INDEX = 1
418comment "AMD Firmware Directory Table set to location for 2MB ROM"
419 depends on AMD_FWM_POSITION_INDEX = 2
420comment "AMD Firmware Directory Table set to location for 4MB ROM"
421 depends on AMD_FWM_POSITION_INDEX = 3
422comment "AMD Firmware Directory Table set to location for 8MB ROM"
423 depends on AMD_FWM_POSITION_INDEX = 4
424comment "AMD Firmware Directory Table set to location for 16MB ROM"
425 depends on AMD_FWM_POSITION_INDEX = 5
426
Marshall Dawson62611412019-06-19 11:46:06 -0600427config AMD_PUBKEY_FILE
Furquan Shaikhd4ef9a42020-04-24 11:49:32 -0700428 string
Raul E Rangelf39dab12020-05-13 16:46:57 -0600429 default "3rdparty/amd_blobs/picasso/PSP/AmdPubKeyRV.bin"
Martin Roth5c354b92019-04-22 14:55:16 -0600430
Marshall Dawson62611412019-06-19 11:46:06 -0600431config USE_PSPSCUREOS
Furquan Shaikhd4ef9a42020-04-24 11:49:32 -0700432 bool
Marshall Dawson62611412019-06-19 11:46:06 -0600433 default y
434 help
435 Include the PspSecureOs and PspTrustlet binaries in the PSP build.
436
437 If unsure, answer 'y'
438
439config PSP_LOAD_MP2_FW
Furquan Shaikhd4ef9a42020-04-24 11:49:32 -0700440 bool
Furquan Shaikh47cdf432020-04-23 18:01:34 -0700441 default n
Marshall Dawson62611412019-06-19 11:46:06 -0600442 help
443 Include the MP2 firmwares and configuration into the PSP build.
444
Furquan Shaikh47cdf432020-04-23 18:01:34 -0700445 If unsure, answer 'n'
Marshall Dawson62611412019-06-19 11:46:06 -0600446
447config PSP_LOAD_S0I3_FW
Furquan Shaikhd4ef9a42020-04-24 11:49:32 -0700448 bool
Furquan Shaikh30bc5b32020-04-23 18:02:53 -0700449 default n
Marshall Dawson62611412019-06-19 11:46:06 -0600450 help
451 Select this item to include the S0i3 file into the PSP build.
452
453config HAVE_PSP_WHITELIST_FILE
454 bool "Include a debug whitelist file in PSP build"
455 default n
456 help
457 Support secured unlock prior to reset using a whitelisted
458 number? This feature requires a signed whitelist image and
459 bootloader from AMD.
460
461 If unsure, answer 'n'
462
463config PSP_WHITELIST_FILE
Martin Roth49b09a02020-02-20 13:54:06 -0700464 string "Debug whitelist file path"
Marshall Dawson62611412019-06-19 11:46:06 -0600465 depends on HAVE_PSP_WHITELIST_FILE
Raul E Rangelf39dab12020-05-13 16:46:57 -0600466 default "3rdparty/amd_blobs/picasso/PSP/wtl-rvn.sbin"
Marshall Dawson62611412019-06-19 11:46:06 -0600467
Martin Roth49b09a02020-02-20 13:54:06 -0700468config PSP_BOOTLOADER_FILE
469 string "Specify the PSP Bootloader file path"
470 default "3rdparty/amd_blobs/picasso/PSP/PspBootLoader_WL_RV.sbin" if HAVE_PSP_WHITELIST_FILE
471 default "3rdparty/amd_blobs/picasso/PSP/PspBootLoader_prod_RV.sbin"
472 help
473 Supply the name of the PSP bootloader file.
474
475 Note that this option may conflict with the whitelist file if a
476 different PSP bootloader binary is specified.
477
Martin Rothc7acf162020-05-28 00:44:50 -0600478config PSP_SHAREDMEM_SIZE
479 hex "Maximum size of shared memory area"
480 default 0x3000 if VBOOT
481 default 0x0
482 help
483 Sets the maximum size for the PSP to pass the vboot workbuf and
484 any logs or timestamps back to coreboot. This will be copied
485 into main memory by the PSP and will be available when the x86 is
486 started.
487
Furquan Shaikh577db022020-04-24 15:52:04 -0700488config PSP_UNLOCK_SECURE_DEBUG
489 bool "Unlock secure debug"
490 default n
491 help
492 Select this item to enable secure debug options in PSP.
493
Marshall Dawson62611412019-06-19 11:46:06 -0600494endmenu
Martin Roth5c354b92019-04-22 14:55:16 -0600495
Martin Rothc7acf162020-05-28 00:44:50 -0600496
497config VBOOT
498 select VBOOT_VBNV_CMOS
499 select VBOOT_VBNV_CMOS_BACKUP_TO_FLASH if ! VBOOT_STARTS_BEFORE_BOOTBLOCK
500
501config VBOOT_STARTS_BEFORE_BOOTBLOCK
502 def_bool n
503 depends on VBOOT
504 select ARCH_VERSTAGE_ARMV7
505 help
506 Runs verstage on the PSP. Only available on
507 certain Chrome OS branded parts from AMD.
508
Martin Roth9aa8d112020-06-04 21:31:41 -0600509if VBOOT_SLOTS_RW_AB && VBOOT_STARTS_BEFORE_BOOTBLOCK
510
511config RWA_REGION_ONLY
512 string
513 default "apu/amdfw_a"
514 help
515 Add a space-delimited list of filenames that should only be in the
516 RW-A section.
517
518config RWB_REGION_ONLY
519 string
520 default "apu/amdfw_b"
521 help
522 Add a space-delimited list of filenames that should only be in the
523 RW-B section.
524
525config PICASSO_FW_A_POSITION
526 hex
527 help
528 Location of the AMD firmware in the RW_A region
529
530config PICASSO_FW_B_POSITION
531 hex
532 help
533 Location of the AMD firmware in the RW_B region
534
535endif # VBOOT_SLOTS_RW_AB && VBOOT_STARTS_BEFORE_BOOTBLOCK
536
Martin Roth1f337622019-04-22 16:08:31 -0600537endif # SOC_AMD_PICASSO