[coreboot-gerrit] New patch to review for coreboot: Allow Tegra210 to use ARCH_ARM64_CPU_CORTEX_A57

Martin Roth (martinroth@google.com) gerrit at coreboot.org
Wed Aug 26 01:11:11 CEST 2015


Martin Roth (martinroth at google.com) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/11341

-gerrit

commit d6c2a8544e4c8a402a1ab3d423a6398e32f0061a
Author: Martin Roth <martinroth at google.com>
Date:   Tue Aug 25 14:44:36 2015 -0600

    Allow Tegra210 to use ARCH_ARM64_CPU_CORTEX_A57
    
    The Tegra210 uses ARCH_ARM64_CPU_CORTEX_A57, even though it doesn't
    use ARCH_ARM64.  Add the SOC to the depends list to make this valid.
    
    Change-Id: I969ed4cd5e3b7dad05b61faa8c619d37a531f842
    Signed-off-by: Martin Roth <martinroth at google.com>
---
 src/arch/arm64/cpu/Kconfig | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/src/arch/arm64/cpu/Kconfig b/src/arch/arm64/cpu/Kconfig
index 8e12aa7..4dd7e61 100644
--- a/src/arch/arm64/cpu/Kconfig
+++ b/src/arch/arm64/cpu/Kconfig
@@ -20,9 +20,10 @@
 config ARCH_ARM64_CPU_CORTEX_A57
 	bool
 	default n
-	depends on ARCH_ARM64
+	depends on ARCH_ARM64 || SOC_NVIDIA_TEGRA210
 
 config ARCH_ARM64_CORTEX_A57_POWER_DOWN_SUPPORT
 	bool
 	default n
-	depends on ARCH_ARM64 && ARCH_ARM64_CPU_CORTEX_A57
+	depends on ARCH_ARM64 && ARCH_ARM64_CPU_CORTEX_A57 || SOC_NVIDIA_TEGRA210 && ARCH_ARM64_CPU_CORTEX_A57
+



More information about the coreboot-gerrit mailing list