781a6eaf52dfa942c937924a914497f330fc5f6a
[platform/kernel/u-boot.git] / arch / arm / lib / cmd_boot.c
1 /*
2  * (C) Copyright 2008-2011
3  * Graeme Russ, <graeme.russ@gmail.com>
4  *
5  * (C) Copyright 2002
6  * Daniel Engström, Omicron Ceti AB, <daniel@omicron.se>
7  *
8  * (C) Copyright 2002
9  * Wolfgang Denk, DENX Software Engineering, <wd@denx.de>
10  *
11  * (C) Copyright 2002
12  * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
13  * Marius Groeger <mgroeger@sysgo.de>
14  *
15  * Copyright 2015 ATS Advanced Telematics Systems GmbH
16  * Copyright 2015 Konsulko Group, Matt Porter <mporter@konsulko.com>
17  *
18  * SPDX-License-Identifier:     GPL-2.0+
19  */
20
21 #include <common.h>
22 #include <command.h>
23
24 /*
25  * ARMv7M does not support ARM instruction mode. However, the
26  * interworking BLX and BX instructions do encode the ARM/Thumb
27  * field in bit 0. This means that when executing any Branch
28  * and eXchange instruction we must set bit 0 to one to guarantee
29  * that we keep the processor in Thumb instruction mode. From The
30  * ARMv7-M Instruction Set A4.1.1:
31  *   "ARMv7-M only supports the Thumb instruction execution state,
32  *    therefore the value of address bit [0] must be 1 in interworking
33  *    instructions, otherwise a fault occurs."
34  */
35 unsigned long do_go_exec(ulong (*entry)(int, char * const []),
36                          int argc, char * const argv[])
37 {
38         ulong addr = (ulong)entry | 1;
39         entry = (void *)addr;
40
41         return entry(argc, argv);
42 }