diff options
author | Phil Edworthy <PHIL.EDWORTHY@renesas.com> | 2017-06-01 06:33:28 (GMT) |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2017-06-05 18:13:13 (GMT) |
commit | 111a6af97acd9bca2ffe0b976c8962cfe8a9acc6 (patch) | |
tree | d76e80387606321be5fc05bf386b40b11eb44970 /arch/arm/Kconfig | |
parent | a83afb6b1fdb29eb3c79ccb19f2e1559447d85fb (diff) | |
download | u-boot-111a6af97acd9bca2ffe0b976c8962cfe8a9acc6.tar.xz |
arm: Add Kconfig symbols used for Linux asm compatibility
Rather than change asm files that come from Linux, add the symbols
to Kconfig. Since one of the symbols is for thumb2 builds, make
CPU_V7M always select them.
Signed-off-by: Phil Edworthy <phil.edworthy@renesas.com>
Diffstat (limited to 'arch/arm/Kconfig')
-rw-r--r-- | arch/arm/Kconfig | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/arch/arm/Kconfig b/arch/arm/Kconfig index deb7b24..dce4105 100644 --- a/arch/arm/Kconfig +++ b/arch/arm/Kconfig @@ -19,6 +19,15 @@ config HAS_VBAR config HAS_THUMB2 bool +# Used for compatibility with asm files copied from the kernel +config ARM_ASM_UNIFIED + bool + default y + +# Used for compatibility with asm files copied from the kernel +config THUMB2_KERNEL + bool + # If set, the workarounds for these ARM errata are applied early during U-Boot # startup. Note that in general these options force the workarounds to be # applied; no CPU-type/version detection exists, unlike the similar options in @@ -128,6 +137,7 @@ config CPU_V7 config CPU_V7M bool select HAS_THUMB2 + select THUMB2_KERNEL select SYS_CACHE_SHIFT_5 config CPU_PXA |