aboutsummaryrefslogtreecommitdiff
path: root/src/soc/amd/common/block/pi/Kconfig
blob: 547232ef66b59747830bee66bcdaa63c3df9a237 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
config SOC_AMD_COMMON_BLOCK_PI
	bool
	select HAVE_DEBUG_RAM_SETUP
	default n
	help
	  This option builds functions that interface AMD's AGESA.

if SOC_AMD_COMMON_BLOCK_PI

config PI_AGESA_TEMP_RAM_BASE
	hex
	default 0x100000
	help
	  During a boot from S5, AGESA copies its CAR-based heap to a temporary
	  location in DRAM.  Once coreboot has established cbmem, the heap
	  is moved again.  This symbol determines the temporary location for
	  the heap.

config PI_AGESA_HEAP_SIZE
	hex
	default 0x20000
	help
	  This option determines the amount of space allowed for AGESA heap
	  prior to DRAM availability.

endif