diff options
author | Julius Werner <jwerner@chromium.org> | 2015-05-07 16:59:31 -0700 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2015-05-19 20:32:55 +0200 |
commit | 404df444271b998948f6ef40f518cbb2fa27c493 (patch) | |
tree | 823cff65fe53727196d2b75363abb90634930e8f | |
parent | 7b32145763fd5997886b8da5ae6af4660d154c79 (diff) |
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>
-rw-r--r-- | src/arch/arm64/Kconfig | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/arch/arm64/Kconfig b/src/arch/arm64/Kconfig index c51387cb37..3d84a11444 100644 --- a/src/arch/arm64/Kconfig +++ b/src/arch/arm64/Kconfig @@ -19,6 +19,15 @@ config ARCH_RAMSTAGE_ARM64 bool 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 bool default n @@ -28,12 +37,3 @@ config ARCH_SPINTABLE bool default n 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 |