diff options
author | Ben Dooks <ben.dooks@codethink.co.uk> | 2013-02-01 09:40:42 +0000 |
---|---|---|
committer | Ben Dooks <ben.dooks@codethink.co.uk> | 2013-10-19 20:46:33 +0100 |
commit | 97bcb0fea590d3d704f985bec08f342d28992634 (patch) | |
tree | b3e35ab588186c9cfc74c1fe7cdd5e84a198db50 /arch/arm/boot | |
parent | 2f9bf9beddb1649485b47302a5aba9761cbc9084 (diff) | |
download | linux-97bcb0fea590d3d704f985bec08f342d28992634.tar.gz linux-97bcb0fea590d3d704f985bec08f342d28992634.tar.bz2 linux-97bcb0fea590d3d704f985bec08f342d28992634.zip |
ARM: set BE8 if LE in head code
If we are booting in LE and compiled for BE8, then add code to
set the state to bE8. Since the instruction stream is always LE,
we do not need to do anything special to the instruction.
Also ensure that the secondary processors are started in the same mode.
Note, we do add about 20 bytes to the kernel image, but it seems easier
to do this than adding another configuration to change.
Signed-off-by: Ben Dooks <ben.dooks@codethink.co.uk>
Reviewed-by: Dave Martin <Dave.Martin@arm.com>
Tested-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'arch/arm/boot')
-rw-r--r-- | arch/arm/boot/compressed/head.S | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/arm/boot/compressed/head.S b/arch/arm/boot/compressed/head.S index c912c2a95de8..066b03480b63 100644 --- a/arch/arm/boot/compressed/head.S +++ b/arch/arm/boot/compressed/head.S @@ -135,6 +135,7 @@ start: .word _edata @ zImage end address THUMB( .thumb ) 1: + ARM_BE8( setend be ) @ go BE8 if compiled for BE8 mrs r9, cpsr #ifdef CONFIG_ARM_VIRT_EXT bl __hyp_stub_install @ get into SVC mode, reversibly |