VirtualBox

source: vbox/trunk/include/VBox/vmm/cpum-armv8.h@ 99956

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

VMM/CPUM-armv8: Implement OSDLR_EL1, OSLAR_EL1 and OSLSR_EL1 accessed by Linux guests, bugref:10387

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 9.0 KB
Line 
1/** @file
2 * CPUM - CPU Monitor(/ Manager).
3 */
4
5/*
6 * Copyright (C) 2006-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 VBOX_INCLUDED_vmm_cpum_armv8_h
37#define VBOX_INCLUDED_vmm_cpum_armv8_h
38#ifndef RT_WITHOUT_PRAGMA_ONCE
39# pragma once
40#endif
41
42#include <VBox/types.h>
43
44RT_C_DECLS_BEGIN
45
46/** @defgroup grp_cpum The CPU Monitor / Manager API
47 * @ingroup grp_vmm
48 * @{
49 */
50
51
52/**
53 * System register read functions.
54 */
55typedef enum CPUMSYSREGRDFN
56{
57 /** Invalid zero value. */
58 kCpumSysRegRdFn_Invalid = 0,
59 /** Return the CPUMMSRRANGE::uValue. */
60 kCpumSysRegRdFn_FixedValue,
61 /** Alias to the system register range starting at the system register given by
62 * CPUMSYSREGRANGE::uValue. Must be used in pair with
63 * kCpumSysRegWrFn_Alias. */
64 kCpumSysRegRdFn_Alias,
65 /** Write only register, all read attempts cause an exception. */
66 kCpumSysRegRdFn_WriteOnly,
67
68 /** Read from a GICv3 PE ICC system register. */
69 kCpumSysRegRdFn_GicV3Icc,
70 /** Read from the OSLSR_EL1 syste register. */
71 kCpumSysRegRdFn_OslsrEl1,
72
73 /** End of valid system register read function indexes. */
74 kCpumSysRegRdFn_End
75} CPUMSYSREGRDFN;
76
77
78/**
79 * System register write functions.
80 */
81typedef enum CPUMSYSREGWRFN
82{
83 /** Invalid zero value. */
84 kCpumSysRegWrFn_Invalid = 0,
85 /** Writes are ignored. */
86 kCpumSysRegWrFn_IgnoreWrite,
87 /** Writes cause an exception. */
88 kCpumSysRegWrFn_ReadOnly,
89 /** Alias to the system register range starting at the system register given by
90 * CPUMSYSREGRANGE::uValue. Must be used in pair with
91 * kCpumSysRegRdFn_Alias. */
92 kCpumSysRegWrFn_Alias,
93
94 /** Write to a GICv3 PE ICC system register. */
95 kCpumSysRegWrFn_GicV3Icc,
96 /** Write to the OSLAR_EL1 syste register. */
97 kCpumSysRegWrFn_OslarEl1,
98
99 /** End of valid system register write function indexes. */
100 kCpumSysRegWrFn_End
101} CPUMSYSREGWRFN;
102
103
104/**
105 * System register range.
106 *
107 * @note This is very similar to how x86/amd64 MSRs are handled.
108 */
109typedef struct CPUMSYSREGRANGE
110{
111 /** The first system register. [0] */
112 uint16_t uFirst;
113 /** The last system register. [2] */
114 uint16_t uLast;
115 /** The read function (CPUMMSRRDFN). [4] */
116 uint16_t enmRdFn;
117 /** The write function (CPUMMSRWRFN). [6] */
118 uint16_t enmWrFn;
119 /** The offset of the 64-bit system register value relative to the start of CPUMCPU.
120 * UINT16_MAX if not used by the read and write functions. [8] */
121 uint32_t offCpumCpu : 24;
122 /** Reserved for future hacks. [11] */
123 uint32_t fReserved : 8;
124 /** Padding/Reserved. [12] */
125 uint32_t u32Padding;
126 /** The init/read value. [16]
127 * When enmRdFn is kCpumMsrRdFn_INIT_VALUE, this is the value returned on RDMSR.
128 * offCpumCpu must be UINT16_MAX in that case, otherwise it must be a valid
129 * offset into CPUM. */
130 uint64_t uValue;
131 /** The bits to ignore when writing. [24] */
132 uint64_t fWrIgnMask;
133 /** The bits that will cause an exception when writing. [32]
134 * This is always checked prior to calling the write function. Using
135 * UINT64_MAX effectively marks the MSR as read-only. */
136 uint64_t fWrExcpMask;
137 /** The register name, if applicable. [32] */
138 char szName[56];
139
140 /** The number of reads. */
141 STAMCOUNTER cReads;
142 /** The number of writes. */
143 STAMCOUNTER cWrites;
144 /** The number of times ignored bits were written. */
145 STAMCOUNTER cIgnoredBits;
146 /** The number of exceptions generated. */
147 STAMCOUNTER cExcp;
148} CPUMSYSREGRANGE;
149#ifndef VBOX_FOR_DTRACE_LIB
150AssertCompileSize(CPUMSYSREGRANGE, 128);
151#endif
152/** Pointer to an system register range. */
153typedef CPUMSYSREGRANGE *PCPUMSYSREGRANGE;
154/** Pointer to a const system register range. */
155typedef CPUMSYSREGRANGE const *PCCPUMSYSREGRANGE;
156
157
158/**
159 * CPU features and quirks.
160 * This is mostly exploded CPUID info.
161 */
162typedef struct CPUMFEATURES
163{
164 /** The CPU vendor (CPUMCPUVENDOR). */
165 uint8_t enmCpuVendor;
166 /** The CPU family. */
167 uint8_t uFamily;
168 /** The CPU model. */
169 uint8_t uModel;
170 /** The CPU stepping. */
171 uint8_t uStepping;
172 /** The microarchitecture. */
173#ifndef VBOX_FOR_DTRACE_LIB
174 CPUMMICROARCH enmMicroarch;
175#else
176 uint32_t enmMicroarch;
177#endif
178 /** The maximum physical address width of the CPU. */
179 uint8_t cMaxPhysAddrWidth;
180 /** The maximum linear address width of the CPU. */
181 uint8_t cMaxLinearAddrWidth;
182
183 /** Padding to the required size to match CPUMFEATURES for x86/amd64. */
184 uint8_t abPadding[48 - 10];
185} CPUMFEATURES;
186#ifndef VBOX_FOR_DTRACE_LIB
187AssertCompileSize(CPUMFEATURES, 48);
188#endif
189/** Pointer to a CPU feature structure. */
190typedef CPUMFEATURES *PCPUMFEATURES;
191/** Pointer to a const CPU feature structure. */
192typedef CPUMFEATURES const *PCCPUMFEATURES;
193
194/**
195 * Chameleon wrapper structure for the host CPU features.
196 *
197 * This is used for the globally readable g_CpumHostFeatures variable, which is
198 * initialized once during VMMR0 load for ring-0 and during CPUMR3Init in
199 * ring-3. To reflect this immutability after load/init, we use this wrapper
200 * structure to switch it between const and non-const depending on the context.
201 * Only two files sees it as non-const (CPUMR0.cpp and CPUM.cpp).
202 */
203typedef struct CPUHOSTFEATURES
204{
205 CPUMFEATURES
206#ifndef CPUM_WITH_NONCONST_HOST_FEATURES
207 const
208#endif
209 s;
210} CPUHOSTFEATURES;
211/** Pointer to a const host CPU feature structure. */
212typedef CPUHOSTFEATURES const *PCCPUHOSTFEATURES;
213
214/** Host CPU features.
215 * @note In ring-3, only valid after CPUMR3Init. In ring-0, valid after
216 * module init. */
217extern CPUHOSTFEATURES g_CpumHostFeatures;
218
219
220/**
221 * CPU database entry.
222 */
223typedef struct CPUMDBENTRY
224{
225 /** The CPU name. */
226 const char *pszName;
227 /** The full CPU name. */
228 const char *pszFullName;
229 /** The CPU vendor (CPUMCPUVENDOR). */
230 uint8_t enmVendor;
231 /** The CPU family. */
232 uint8_t uFamily;
233 /** The CPU model. */
234 uint8_t uModel;
235 /** The CPU stepping. */
236 uint8_t uStepping;
237 /** The microarchitecture. */
238 CPUMMICROARCH enmMicroarch;
239 /** Scalable bus frequency used for reporting other frequencies. */
240 uint64_t uScalableBusFreq;
241 /** Flags - CPUMDB_F_XXX. */
242 uint32_t fFlags;
243 /** The maximum physical address with of the CPU. This should correspond to
244 * the value in CPUID leaf 0x80000008 when present. */
245 uint8_t cMaxPhysAddrWidth;
246} CPUMDBENTRY;
247/** Pointer to a const CPU database entry. */
248typedef CPUMDBENTRY const *PCCPUMDBENTRY;
249
250
251/** @name Changed flags.
252 * These flags are used to keep track of which important register that
253 * have been changed since last they were reset. The only one allowed
254 * to clear them is REM!
255 *
256 * @todo This is obsolete, but remains as it will be refactored for coordinating
257 * IEM and NEM/HM later. Probably.
258 * @{
259 */
260#define CPUM_CHANGED_GLOBAL_TLB_FLUSH RT_BIT(0)
261#define CPUM_CHANGED_ALL ( CPUM_CHANGED_GLOBAL_TLB_FLUSH )
262/** @} */
263
264
265#ifndef VBOX_FOR_DTRACE_LIB
266
267#ifdef IN_RING3
268/** @defgroup grp_cpum_armv8_r3 The CPUM ARMv8 ring-3 API
269 * @{
270 */
271
272VMMR3DECL(int) CPUMR3SysRegRangesInsert(PVM pVM, PCCPUMSYSREGRANGE pNewRange);
273
274/** @} */
275#endif /* IN_RING3 */
276
277
278/** @name Guest Register Getters.
279 * @{ */
280VMMDECL(bool) CPUMGetGuestIrqMasked(PVMCPUCC pVCpu);
281VMMDECL(bool) CPUMGetGuestFiqMasked(PVMCPUCC pVCpu);
282VMMDECL(VBOXSTRICTRC) CPUMQueryGuestSysReg(PVMCPUCC pVCpu, uint32_t idSysReg, uint64_t *puValue);
283/** @} */
284
285
286/** @name Guest Register Setters.
287 * @{ */
288VMMDECL(VBOXSTRICTRC) CPUMSetGuestSysReg(PVMCPUCC pVCpu, uint32_t idSysReg, uint64_t uValue);
289/** @} */
290
291#endif
292
293/** @} */
294RT_C_DECLS_END
295
296
297#endif /* !VBOX_INCLUDED_vmm_cpum_armv8_h */
298
Note: See TracBrowser for help on using the repository browser.

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