]> git.proxmox.com Git - mirror_edk2.git/blame - ArmPlatformPkg/Sec/Arm/Helper.S
ArmPlatformPkg: remove ArmVExpress-RTSM-A15_MPCore.dsc/fdf
[mirror_edk2.git] / ArmPlatformPkg / Sec / Arm / Helper.S
CommitLineData
1d5d0ae9 1#========================================================================================\r
27995cd5 2# Copyright (c) 2011-2014, ARM Limited. All rights reserved.\r
3402aac7
RC
3#\r
4# This program and the accompanying materials\r
5# are licensed and made available under the terms and conditions of the BSD License\r
6# which accompanies this distribution. The full text of the license may be found at\r
bebda7ce 7# http://opensource.org/licenses/bsd-license.php\r
1d5d0ae9 8#\r
3402aac7
RC
9# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
10# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
1d5d0ae9 11#\r
12#=======================================================================================\r
13\r
14#start of the code section\r
3402aac7 15.text\r
1d5d0ae9 16.align 3\r
17\r
1d5d0ae9 18GCC_ASM_EXPORT(return_from_exception)\r
19GCC_ASM_EXPORT(enter_monitor_mode)\r
20GCC_ASM_EXPORT(copy_cpsr_into_spsr)\r
513aa349 21GCC_ASM_EXPORT(set_non_secure_mode)\r
1d5d0ae9 22\r
a8530889 23# r0: Monitor World EntryPoint\r
24# r1: MpId\r
a75568e9 25# r2: SecBootMode\r
26# r3: Secure Monitor mode stack\r
1d5d0ae9 27ASM_PFX(enter_monitor_mode):\r
a75568e9 28 cmp r3, #0 @ If a Secure Monitor stack base has not been defined then use the Secure stack\r
29 moveq r3, sp\r
59a2b365 30\r
31 mrs r4, cpsr @ Save current mode (SVC) in r4\r
a75568e9 32 bic r5, r4, #0x1f @ Clear all mode bits\r
33 orr r5, r5, #0x16 @ Set bits for Monitor mode\r
34 msr cpsr_cxsf, r5 @ We are now in Monitor Mode\r
1d5d0ae9 35\r
a75568e9 36 mov sp, r3 @ Set the stack of the Monitor Mode\r
a8530889 37\r
38 mov lr, r0 @ Use the pass entrypoint as lr\r
3402aac7 39\r
a8530889 40 msr spsr_cxsf, r4 @ Use saved mode for the MOVS jump to the kernel\r
41\r
42 mov r4, r0 @ Swap EntryPoint and MpId registers\r
43 mov r0, r1\r
a75568e9 44 mov r1, r2\r
45 mov r2, r3\r
a8530889 46\r
47 bx r4\r
1d5d0ae9 48\r
949973b6
AB
49# Return-from-exception is not an interworking return, so we must do it\r
50# in two steps, in case r0 has the Thumb bit set.\r
1d5d0ae9 51ASM_PFX(return_from_exception):\r
949973b6
AB
52 adr lr, returned_exception\r
53 movs pc, lr\r
1d5d0ae9 54returned_exception: @ We are now in non-secure state\r
55 bx r0\r
56\r
57# Save the current Program Status Register (PSR) into the Saved PSR\r
58ASM_PFX(copy_cpsr_into_spsr):\r
59 mrs r0, cpsr\r
60 msr spsr_cxsf, r0\r
61 bx lr\r
62\r
513aa349 63# Set the Non Secure Mode\r
64ASM_PFX(set_non_secure_mode):\r
65 push { r1 }\r
91c38d4e 66 and r0, r0, #0x1f @ Keep only the mode bits\r
513aa349 67 mrs r1, spsr @ Read the spsr\r
68 bic r1, r1, #0x1f @ Clear all mode bits\r
91c38d4e 69 orr r1, r1, r0\r
513aa349 70 msr spsr_cxsf, r1 @ write back spsr (may have caused a mode switch)\r
71 isb\r
72 pop { r1 }\r
73 bx lr @ return (hopefully thumb-safe!)\r
3402aac7 74\r
6377d2f1 75ASM_FUNCTION_REMOVE_IF_UNREFERENCED\r