VirtualBox

source: vbox/trunk/include/iprt/asm-arm.h@ 99901

Last change on this file since 99901 was 98103, checked in by vboxsync, 17 months ago

Copyright year updates by scm.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 7.3 KB
Line 
1/** @file
2 * IPRT - ARM Specific Assembly Functions.
3 */
4
5/*
6 * Copyright (C) 2015-2023 Oracle and/or its affiliates.
7 *
8 * This file is part of VirtualBox base platform packages, as
9 * available from https://www.virtualbox.org.
10 *
11 * This program is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU General Public License
13 * as published by the Free Software Foundation, in version 3 of the
14 * License.
15 *
16 * This program is distributed in the hope that it will be useful, but
17 * WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 * General Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, see <https://www.gnu.org/licenses>.
23 *
24 * The contents of this file may alternatively be used under the terms
25 * of the Common Development and Distribution License Version 1.0
26 * (CDDL), a copy of it is provided in the "COPYING.CDDL" file included
27 * in the VirtualBox distribution, in which case the provisions of the
28 * CDDL are applicable instead of those of the GPL.
29 *
30 * You may elect to license modified versions of this file under the
31 * terms and conditions of either the GPL or the CDDL or both.
32 *
33 * SPDX-License-Identifier: GPL-3.0-only OR CDDL-1.0
34 */
35
36#ifndef IPRT_INCLUDED_asm_arm_h
37#define IPRT_INCLUDED_asm_arm_h
38#ifndef RT_WITHOUT_PRAGMA_ONCE
39# pragma once
40#endif
41
42#include <iprt/types.h>
43#if !defined(RT_ARCH_ARM64) && !defined(RT_ARCH_ARM32)
44# error "Not on ARM64 or ARM32"
45#endif
46
47/** @defgroup grp_rt_asm_arm ARM Specific ASM Routines
48 * @ingroup grp_rt_asm
49 * @{
50 */
51
52
53#if 0 /* figure out arm64 */
54
55/**
56 * Get the CPSR (Current Program Status) register.
57 * @returns CPSR.
58 */
59#if RT_INLINE_ASM_EXTERNAL
60DECLASM(RTCCUINTREG) ASMGetFlags(void);
61#else
62DECLINLINE(RTCCUINTREG) ASMGetFlags(void)
63{
64 RTCCUINTREG uFlags;
65# if RT_INLINE_ASM_GNU_STYLE
66# ifdef RT_ARCH_ARM64
67 __asm__ __volatile__("mrs %0, nzcv\n\t" : "=r" (uFlags));
68# else
69 __asm__ __volatile__("mrs %0, cpsr\n\t" : "=r" (uFlags));
70# endif
71# else
72# error "Unsupported compiler"
73# endif
74 return uFlags;
75}
76#endif
77
78
79/**
80 * Set the CPSR register.
81 * @param uFlags The new CPSR value.
82 */
83#if RT_INLINE_ASM_EXTERNAL
84DECLASM(void) ASMSetFlags(RTCCUINTREG uFlags);
85#else
86DECLINLINE(void) ASMSetFlags(RTCCUINTREG uFlags)
87{
88# if RT_INLINE_ASM_GNU_STYLE
89 __asm__ __volatile__("msr cpsr_c, %0\n\t"
90 : : "r" (uFlags));
91# else
92# error "Unsupported compiler"
93# endif
94}
95#endif
96
97#endif
98
99
100/**
101 * Gets the content of the CNTVCT_EL0 (or CNTPCT) register.
102 *
103 * @returns CNTVCT_EL0 value.
104 * @note We call this TSC to better fit in with existing x86/amd64 based code.
105 */
106#if RT_INLINE_ASM_EXTERNAL
107DECLASM(uint64_t) ASMReadTSC(void);
108#else
109DECLINLINE(uint64_t) ASMReadTSC(void)
110{
111# if RT_INLINE_ASM_GNU_STYLE
112 uint64_t u64;
113# ifdef RT_ARCH_ARM64
114 __asm__ __volatile__("isb\n\t"
115 "mrs %0, CNTVCT_EL0\n\t"
116 : "=r" (u64));
117# else
118 uint32_t u32Spill;
119 uint32_t u32Comp;
120 __asm__ __volatile__("isb\n"
121 "Lagain:\n\t"
122 "mrrc p15, 0, %[uSpill], %H[uRet], c14\n\t" /* CNTPCT high into uRet.hi */
123 "mrrc p15, 0, %[uRet], %[uSpill], c14\n\t" /* CNTPCT low into uRet.lo */
124 "mrrc p15, 0, %[uSpill], %[uHiComp], c14\n\t" /* CNTPCT high into uHiComp */
125 "cmp %H[uRet], %[uHiComp]\n\t"
126 "b.eq Lagain\n\t" /* Redo if high value changed. */
127 : [uRet] "=r" (u64)
128 , "=r" (uHiComp)
129 , "=r" (uSpill));
130# endif
131 return u64;
132
133# else
134# error "Unsupported compiler"
135# endif
136}
137#endif
138
139#if 0 /* port to arm64, armv7 and check */
140
141/**
142 * Enables interrupts (IRQ and FIQ).
143 */
144#if RT_INLINE_ASM_EXTERNAL
145DECLASM(void) ASMIntEnable(void);
146#else
147DECLINLINE(void) ASMIntEnable(void)
148{
149 RTCCUINTREG uFlags;
150# if RT_INLINE_ASM_GNU_STYLE
151 __asm__ __volatile__("mrs %0, cpsr\n\t"
152 "bic %0, %0, #0xc0\n\t"
153 "msr cpsr_c, %0\n\t"
154 : "=r" (uFlags));
155# else
156# error "Unsupported compiler"
157# endif
158}
159#endif
160
161
162/**
163 * Disables interrupts (IRQ and FIQ).
164 */
165#if RT_INLINE_ASM_EXTERNAL
166DECLASM(void) ASMIntDisable(void);
167#else
168DECLINLINE(void) ASMIntDisable(void)
169{
170 RTCCUINTREG uFlags;
171# if RT_INLINE_ASM_GNU_STYLE
172 __asm__ __volatile__("mrs %0, cpsr\n\t"
173 "orr %0, %0, #0xc0\n\t"
174 "msr cpsr_c, %0\n\t"
175 : "=r" (uFlags));
176# else
177# error "Unsupported compiler"
178# endif
179}
180#endif
181
182
183/**
184 * Disables interrupts and returns previous uFLAGS.
185 */
186#if RT_INLINE_ASM_EXTERNAL
187DECLASM(RTCCUINTREG) ASMIntDisableFlags(void);
188#else
189DECLINLINE(RTCCUINTREG) ASMIntDisableFlags(void)
190{
191 RTCCUINTREG uFlags;
192# if RT_INLINE_ASM_GNU_STYLE
193 RTCCUINTREG uNewFlags;
194 __asm__ __volatile__("mrs %0, cpsr\n\t"
195 "orr %1, %0, #0xc0\n\t"
196 "msr cpsr_c, %1\n\t"
197 : "=r" (uFlags)
198 , "=r" (uNewFlags));
199# else
200# error "Unsupported compiler"
201# endif
202 return uFlags;
203}
204#endif
205
206
207/**
208 * Are interrupts enabled?
209 *
210 * @returns true / false.
211 */
212DECLINLINE(bool) ASMIntAreEnabled(void)
213{
214/** @todo r=bird: reversed, but does both need to be enabled? */
215 return ASMGetFlags() & 0xc0 /* IRQ and FIQ bits */ ? true : false;
216}
217
218#endif
219
220/**
221 * Halts the CPU until interrupted.
222 */
223#if RT_INLINE_ASM_EXTERNAL
224DECLASM(void) ASMHalt(void);
225#else
226DECLINLINE(void) ASMHalt(void)
227{
228# if RT_INLINE_ASM_GNU_STYLE
229 __asm__ __volatile__ ("wfi\n\t"); /* wait for interrupt */
230# else
231# error "Unsupported compiler"
232# endif
233}
234#endif
235
236#if 0
237/**
238 * Gets the CPU ID of the current CPU.
239 *
240 * @returns the CPU ID.
241 * @note the name of this method is a bit misleading but serves the purpose
242 * and prevents #ifdef orgies in other places.
243 */
244#if RT_INLINE_ASM_EXTERNAL
245DECLASM(uint8_t) ASMGetApicId(void);
246#else
247DECLINLINE(uint8_t) ASMGetApicId(void)
248{
249# if RT_INLINE_ASM_GNU_STYLE
250 RTCCUINTREG uCpuId;
251 __asm__ ("mrc p15, 0, %0, c0, c0, 5\n\t" /* CPU ID Register, privileged */
252 : "=r" (uCpuId));
253 return uCpuId;
254# else
255# error "Unsupported compiler"
256# endif
257}
258#endif
259#endif
260
261#if 0
262
263/**
264 * Invalidate page.
265 *
266 * @param pv Address of the page to invalidate.
267 */
268#if RT_INLINE_ASM_EXTERNAL
269DECLASM(void) ASMInvalidatePage(void *pv);
270#else
271DECLINLINE(void) ASMInvalidatePage(void *pv)
272{
273# if RT_INLINE_ASM_GNU_STYLE
274
275# else
276# error "Unsupported compiler"
277# endif
278}
279#endif
280
281
282/**
283 * Write back the internal caches and invalidate them.
284 */
285#if RT_INLINE_ASM_EXTERNAL
286DECLASM(void) ASMWriteBackAndInvalidateCaches(void);
287#else
288DECLINLINE(void) ASMWriteBackAndInvalidateCaches(void)
289{
290# if RT_INLINE_ASM_GNU_STYLE
291
292# else
293# error "Unsupported compiler"
294# endif
295}
296#endif
297
298
299/**
300 * Invalidate internal and (perhaps) external caches without first
301 * flushing dirty cache lines. Use with extreme care.
302 */
303#if RT_INLINE_ASM_EXTERNAL
304DECLASM(void) ASMInvalidateInternalCaches(void);
305#else
306DECLINLINE(void) ASMInvalidateInternalCaches(void)
307{
308# if RT_INLINE_ASM_GNU_STYLE
309
310# else
311# error "Unsupported compiler"
312# endif
313}
314#endif
315
316#endif
317
318
319/** @} */
320#endif /* !IPRT_INCLUDED_asm_arm_h */
321
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use