]> git.proxmox.com Git - mirror_edk2.git/blame - ArmPkg/Library/ArmLib/ArmV7/ArmLibSupport.S
Sync gcc with armasm. update some memory barriers.
[mirror_edk2.git] / ArmPkg / Library / ArmLib / ArmV7 / ArmLibSupport.S
CommitLineData
1a27eb48 1#------------------------------------------------------------------------------
2#
3# Copyright (c) 2008-2009 Apple Inc. All rights reserved.
4#
5# All rights reserved. This program and the accompanying materials
6# are licensed and made available under the terms and conditions of the BSD License
7# which accompanies this distribution. The full text of the license may be found at
8# http://opensource.org/licenses/bsd-license.php
9#
10# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
11# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
12#
13#------------------------------------------------------------------------------
14
15.text
16.align 2
17.globl ASM_PFX(Cp15IdCode)
18.globl ASM_PFX(Cp15CacheInfo)
19.globl ASM_PFX(ArmEnableInterrupts)
20.globl ASM_PFX(ArmDisableInterrupts)
21.globl ASM_PFX(ArmGetInterruptState)
22.globl ASM_PFX(ArmInvalidateTlb)
23.globl ASM_PFX(ArmSetTranslationTableBaseAddress)
24.globl ASM_PFX(ArmGetTranslationTableBaseAddress)
25.globl ASM_PFX(ArmSetDomainAccessControl)
26.globl ASM_PFX(CPSRMaskInsert)
27.globl ASM_PFX(CPSRRead)
98bc0c8c 28.globl ASM_PFX(ReadCCSIDR)
29.globl ASM_PFX(ReadCLIDR)
30
1a27eb48 31
32#------------------------------------------------------------------------------
33
34ASM_PFX(Cp15IdCode):
35 mrc p15,0,R0,c0,c0,0
36 bx LR
37
38ASM_PFX(Cp15CacheInfo):
39 mrc p15,0,R0,c0,c0,1
40 bx LR
41
42ASM_PFX(ArmEnableInterrupts):
98bc0c8c 43 cpsie i
1a27eb48 44 bx LR
45
46ASM_PFX(ArmDisableInterrupts):
98bc0c8c 47 cpsid i
1a27eb48 48 bx LR
49
50ASM_PFX(ArmGetInterruptState):
51 mrs R0,CPSR
52 tst R0,#0x80 @Check if IRQ is enabled.
53 moveq R0,#1
54 movne R0,#0
55 bx LR
56
57ASM_PFX(ArmInvalidateTlb):
58 mov r0,#0
59 mcr p15,0,r0,c8,c7,0
98bc0c8c 60 isb
1a27eb48 61 bx lr
62
63ASM_PFX(ArmSetTranslationTableBaseAddress):
64 mcr p15,0,r0,c2,c0,0
98bc0c8c 65 isb
1a27eb48 66 bx lr
67
68ASM_PFX(ArmGetTranslationTableBaseAddress):
69 mrc p15,0,r0,c2,c0,0
70 bx lr
71
72
73ASM_PFX(ArmSetDomainAccessControl):
74 mcr p15,0,r0,c3,c0,0
98bc0c8c 75 isb
1a27eb48 76 bx lr
77
78ASM_PFX(CPSRMaskInsert): @ on entry, r0 is the mask and r1 is the field to insert
79 stmfd sp!, {r4-r12, lr} @ save all the banked registers
80 mov r3, sp @ copy the stack pointer into a non-banked register
81 mrs r2, cpsr @ read the cpsr
82 bic r2, r2, r0 @ clear mask in the cpsr
83 and r1, r1, r0 @ clear bits outside the mask in the input
84 orr r2, r2, r1 @ set field
85 msr cpsr_cxsf, r2 @ write back cpsr (may have caused a mode switch)
86 mov sp, r3 @ restore stack pointer
87 ldmfd sp!, {r4-r12, lr} @ restore registers
88 bx lr @ return (hopefully thumb-safe!)
89
90ASM_PFX(CPSRRead):
91 mrs r0, cpsr
92 bx lr
93
98bc0c8c 94ASM_PFX(ReadCCSIDR):
95 mcr p15,2,r0,c0,c0,0 @ Write Cache Size Selection Register (CSSELR)
96 isb
97 mrc p15,1,r0,c0,c0,0 @ Read current CP15 Cache Size ID Register (CCSIDR)
98 bx lr
99
100
101ASM_PFX(ReadCLIDR):
102 mrc p15,1,r0,c0,c0,1 @ Read CP15 Cache Level ID Register
103
1a27eb48 104ASM_FUNCTION_REMOVE_IF_UNREFERENCED