diff options
Diffstat (limited to 'src/arch/arm64/Kconfig')
-rw-r--r-- | src/arch/arm64/Kconfig | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/src/arch/arm64/Kconfig b/src/arch/arm64/Kconfig index 71c9f042f5..3d1d1843e0 100644 --- a/src/arch/arm64/Kconfig +++ b/src/arch/arm64/Kconfig @@ -1,27 +1,27 @@ config ARCH_ARM64 bool - default n config ARCH_BOOTBLOCK_ARM64 bool - default n select ARCH_ARM64 select C_ENVIRONMENT_BOOTBLOCK config ARCH_VERSTAGE_ARM64 bool - default n + select ARCH_ARM64 config ARCH_ROMSTAGE_ARM64 bool - default n + select ARCH_ARM64 config ARCH_RAMSTAGE_ARM64 bool - default n + select ARCH_ARM64 source src/arch/arm64/armv8/Kconfig +if ARCH_ARM64 + config ARM64_USE_ARCH_TIMER bool default n @@ -58,3 +58,5 @@ config ARM64_A53_ERRATUM_843419 incorrect address calculations in rare cases. This option enables a linker workaround to avoid those cases if your toolchain supports it. Should be selected automatically by SoCs that are affected. + +endif # if ARCH_ARM64 |