diff options
author | Ben Dooks <ben.dooks@codethink.co.uk> | 2013-05-29 00:34:50 +0400 |
---|---|---|
committer | Ben Dooks <ben.dooks@codethink.co.uk> | 2013-10-19 23:46:34 +0400 |
commit | 98dec91fa36a4a74f7c44dd2dfb000203656f4f4 (patch) | |
tree | 9131b2b8a3ca37737d3e616edbf378541fd61123 /arch/arm/plat-versatile | |
parent | bca028e7c2537fea9f401c20dd7b2103358b5efe (diff) | |
download | linux-98dec91fa36a4a74f7c44dd2dfb000203656f4f4.tar.xz |
ARM: vexpress: add big endian support
Add support for the versatile express systems to boot big-endian.
Signed-off-by: Ben Dooks <ben.dooks@codethink.co.uk>
Diffstat (limited to 'arch/arm/plat-versatile')
-rw-r--r-- | arch/arm/plat-versatile/headsmp.S | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/arm/plat-versatile/headsmp.S b/arch/arm/plat-versatile/headsmp.S index 2677bc3762d7..40f27e52de75 100644 --- a/arch/arm/plat-versatile/headsmp.S +++ b/arch/arm/plat-versatile/headsmp.S @@ -10,6 +10,7 @@ */ #include <linux/linkage.h> #include <linux/init.h> +#include <asm/assembler.h> /* * Realview/Versatile Express specific entry point for secondary CPUs. @@ -17,6 +18,7 @@ * until we're ready for them to initialise. */ ENTRY(versatile_secondary_startup) + ARM_BE8(setend be) mrc p15, 0, r0, c0, c0, 5 bic r0, #0xff000000 adr r4, 1f |