arm64: Reorganize payload entry code and related Kconfigs
Reorganize Kconfig (split out from the original patch linked below) Change-Id: I84ec8e453dd7a3980de95a455ad21494c601a98c Signed-off-by: Patrick Georgi <pgeorgi@chromium.org> Original-Commit-Id: 5067e47bc03f04ad2dba044f022716e0fc62bb9e Original-Change-Id: I1b2038acc0d054716a3c580ce97ea8e9a45abfa2 Original-Signed-off-by: Julius Werner <jwerner@chromium.org> Original-Reviewed-on: https://chromium-review.googlesource.com/270783 Original-Reviewed-by: Aaron Durbin <adurbin@chromium.org> Reviewed-on: http://review.coreboot.org/10240 Tested-by: build bot (Jenkins) Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
This commit is contained in:
parent
7b32145763
commit
404df44427
|
@ -19,6 +19,15 @@ config ARCH_RAMSTAGE_ARM64
|
||||||
bool
|
bool
|
||||||
default n
|
default n
|
||||||
|
|
||||||
|
source src/arch/arm64/armv8/Kconfig
|
||||||
|
source src/arch/arm64/cpu/Kconfig
|
||||||
|
|
||||||
|
# If a custom bootblock is necessary, this option should be "select"-ed by
|
||||||
|
# the thing that needs it, probably the CPU.
|
||||||
|
config ARM64_BOOTBLOCK_CUSTOM
|
||||||
|
bool
|
||||||
|
default n
|
||||||
|
|
||||||
config ARCH_USE_SECURE_MONITOR
|
config ARCH_USE_SECURE_MONITOR
|
||||||
bool
|
bool
|
||||||
default n
|
default n
|
||||||
|
@ -28,12 +37,3 @@ config ARCH_SPINTABLE
|
||||||
bool
|
bool
|
||||||
default n
|
default n
|
||||||
depends on ARCH_RAMSTAGE_ARM64
|
depends on ARCH_RAMSTAGE_ARM64
|
||||||
|
|
||||||
source src/arch/arm64/armv8/Kconfig
|
|
||||||
source src/arch/arm64/cpu/Kconfig
|
|
||||||
|
|
||||||
# If a custom bootblock is necessary, this option should be "select"-ed by
|
|
||||||
# the thing that needs it, probably the CPU.
|
|
||||||
config ARM64_BOOTBLOCK_CUSTOM
|
|
||||||
bool
|
|
||||||
default n
|
|
||||||
|
|
Loading…
Reference in New Issue