soc/amd/common: Use CBFSTOOL_ADD_CMD_OPTIONS when adding psp image

Signed-off-by: Arthur Heymans <arthur@aheymans.xyz>
Change-Id: I639fb1e911a7449d0db0d2bfcfbb6f4f225b0cef
Reviewed-on: https://review.coreboot.org/c/coreboot/+/76496
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Felix Held <felix-coreboot@felixheld.de>
Reviewed-by: Matt DeVillier <matt.devillier@amd.corp-partner.google.com>
This commit is contained in:
Arthur Heymans 2023-07-13 12:50:45 +02:00 committed by Martin L Roth
parent 6dadf7f482
commit 926d55cddd
2 changed files with 6 additions and 1 deletions

View File

@ -53,7 +53,8 @@ amdfw_offset=$(call int-subtract, \
add_bootblock = \ add_bootblock = \
$(CBFSTOOL) $(1) add -f $(2) -n apu/amdfw -t amdfw \ $(CBFSTOOL) $(1) add -f $(2) -n apu/amdfw -t amdfw \
-b $(amdfw_offset) -r $(call regions-for-file,apu/amdfw) -b $(amdfw_offset) -r $(call regions-for-file,apu/amdfw) \
$(CBFSTOOL_ADD_CMD_OPTIONS)
endif # ifeq ($(CONFIG_RESET_VECTOR_IN_RAM),y) endif # ifeq ($(CONFIG_RESET_VECTOR_IN_RAM),y)

View File

@ -10,4 +10,8 @@ ramstage-y += timer.c
CPPFLAGS_common += -I$(src)/soc/amd/genoa/include CPPFLAGS_common += -I$(src)/soc/amd/genoa/include
ifeq ($(call int-gt, $(CONFIG_ROM_SIZE) 0x1000000), 1)
CBFSTOOL_ADD_CMD_OPTIONS+= --mmap 0:0xff000000:0x1000000
endif
endif endif