VirtualBox

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

Last change on this file since 100091 was 99978, checked in by vboxsync, 23 months ago

iprt/asm-arm.h: Add method to read the CNTFRQ_EL0 register providing the frequency the timer runs with, bugref:10385

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 8.0 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
140/**
141 * Gets the content of the CNTFRQ_EL0 register.
142 *
143 * @returns CNTFRQ_EL0 value.
144 */
145#if RT_INLINE_ASM_EXTERNAL
146DECLASM(uint64_t) ASMReadCntFrqEl0(void);
147#else
148DECLINLINE(uint64_t) ASMReadCntFrqEl0(void)
149{
150# if RT_INLINE_ASM_GNU_STYLE
151 uint64_t u64;
152# ifdef RT_ARCH_ARM64
153 __asm__ __volatile__("isb\n\t"
154 "mrs %0, CNTFRQ_EL0\n\t"
155 : "=r" (u64));
156# else
157 u64 = 0;
158 __asm__ __volatile__("isb\n"
159 "mrc p15, 0, %[uRet], c14, 0, 0\n\t" /* CNTFRQ */
160 : [uRet] "=r" (u64));
161# endif
162 return u64;
163
164# else
165# error "Unsupported compiler"
166# endif
167}
168#endif
169
170
171#if 0 /* port to arm64, armv7 and check */
172
173/**
174 * Enables interrupts (IRQ and FIQ).
175 */
176#if RT_INLINE_ASM_EXTERNAL
177DECLASM(void) ASMIntEnable(void);
178#else
179DECLINLINE(void) ASMIntEnable(void)
180{
181 RTCCUINTREG uFlags;
182# if RT_INLINE_ASM_GNU_STYLE
183 __asm__ __volatile__("mrs %0, cpsr\n\t"
184 "bic %0, %0, #0xc0\n\t"
185 "msr cpsr_c, %0\n\t"
186 : "=r" (uFlags));
187# else
188# error "Unsupported compiler"
189# endif
190}
191#endif
192
193
194/**
195 * Disables interrupts (IRQ and FIQ).
196 */
197#if RT_INLINE_ASM_EXTERNAL
198DECLASM(void) ASMIntDisable(void);
199#else
200DECLINLINE(void) ASMIntDisable(void)
201{
202 RTCCUINTREG uFlags;
203# if RT_INLINE_ASM_GNU_STYLE
204 __asm__ __volatile__("mrs %0, cpsr\n\t"
205 "orr %0, %0, #0xc0\n\t"
206 "msr cpsr_c, %0\n\t"
207 : "=r" (uFlags));
208# else
209# error "Unsupported compiler"
210# endif
211}
212#endif
213
214
215/**
216 * Disables interrupts and returns previous uFLAGS.
217 */
218#if RT_INLINE_ASM_EXTERNAL
219DECLASM(RTCCUINTREG) ASMIntDisableFlags(void);
220#else
221DECLINLINE(RTCCUINTREG) ASMIntDisableFlags(void)
222{
223 RTCCUINTREG uFlags;
224# if RT_INLINE_ASM_GNU_STYLE
225 RTCCUINTREG uNewFlags;
226 __asm__ __volatile__("mrs %0, cpsr\n\t"
227 "orr %1, %0, #0xc0\n\t"
228 "msr cpsr_c, %1\n\t"
229 : "=r" (uFlags)
230 , "=r" (uNewFlags));
231# else
232# error "Unsupported compiler"
233# endif
234 return uFlags;
235}
236#endif
237
238
239/**
240 * Are interrupts enabled?
241 *
242 * @returns true / false.
243 */
244DECLINLINE(bool) ASMIntAreEnabled(void)
245{
246/** @todo r=bird: reversed, but does both need to be enabled? */
247 return ASMGetFlags() & 0xc0 /* IRQ and FIQ bits */ ? true : false;
248}
249
250#endif
251
252/**
253 * Halts the CPU until interrupted.
254 */
255#if RT_INLINE_ASM_EXTERNAL
256DECLASM(void) ASMHalt(void);
257#else
258DECLINLINE(void) ASMHalt(void)
259{
260# if RT_INLINE_ASM_GNU_STYLE
261 __asm__ __volatile__ ("wfi\n\t"); /* wait for interrupt */
262# else
263# error "Unsupported compiler"
264# endif
265}
266#endif
267
268#if 0
269/**
270 * Gets the CPU ID of the current CPU.
271 *
272 * @returns the CPU ID.
273 * @note the name of this method is a bit misleading but serves the purpose
274 * and prevents #ifdef orgies in other places.
275 */
276#if RT_INLINE_ASM_EXTERNAL
277DECLASM(uint8_t) ASMGetApicId(void);
278#else
279DECLINLINE(uint8_t) ASMGetApicId(void)
280{
281# if RT_INLINE_ASM_GNU_STYLE
282 RTCCUINTREG uCpuId;
283 __asm__ ("mrc p15, 0, %0, c0, c0, 5\n\t" /* CPU ID Register, privileged */
284 : "=r" (uCpuId));
285 return uCpuId;
286# else
287# error "Unsupported compiler"
288# endif
289}
290#endif
291#endif
292
293#if 0
294
295/**
296 * Invalidate page.
297 *
298 * @param pv Address of the page to invalidate.
299 */
300#if RT_INLINE_ASM_EXTERNAL
301DECLASM(void) ASMInvalidatePage(void *pv);
302#else
303DECLINLINE(void) ASMInvalidatePage(void *pv)
304{
305# if RT_INLINE_ASM_GNU_STYLE
306
307# else
308# error "Unsupported compiler"
309# endif
310}
311#endif
312
313
314/**
315 * Write back the internal caches and invalidate them.
316 */
317#if RT_INLINE_ASM_EXTERNAL
318DECLASM(void) ASMWriteBackAndInvalidateCaches(void);
319#else
320DECLINLINE(void) ASMWriteBackAndInvalidateCaches(void)
321{
322# if RT_INLINE_ASM_GNU_STYLE
323
324# else
325# error "Unsupported compiler"
326# endif
327}
328#endif
329
330
331/**
332 * Invalidate internal and (perhaps) external caches without first
333 * flushing dirty cache lines. Use with extreme care.
334 */
335#if RT_INLINE_ASM_EXTERNAL
336DECLASM(void) ASMInvalidateInternalCaches(void);
337#else
338DECLINLINE(void) ASMInvalidateInternalCaches(void)
339{
340# if RT_INLINE_ASM_GNU_STYLE
341
342# else
343# error "Unsupported compiler"
344# endif
345}
346#endif
347
348#endif
349
350
351/** @} */
352#endif /* !IPRT_INCLUDED_asm_arm_h */
353
Note: See TracBrowser for help on using the repository browser.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette