VirtualBox

source: vbox/trunk/include/VBox/vmm/gim.h@ 53794

Last change on this file since 53794 was 53615, checked in by vboxsync, 10 years ago

doxygen fixes.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 6.0 KB
Line 
1/** @file
2 * GIM - Guest Interface Manager.
3 */
4
5/*
6 * Copyright (C) 2014-2015 Oracle Corporation
7 *
8 * This file is part of VirtualBox Open Source Edition (OSE), as
9 * available from http://www.virtualbox.org. This file is free software;
10 * you can redistribute it and/or modify it under the terms of the GNU
11 * General Public License (GPL) as published by the Free Software
12 * Foundation, in version 2 as it comes in the "COPYING" file of the
13 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
14 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
15 *
16 * The contents of this file may alternatively be used under the terms
17 * of the Common Development and Distribution License Version 1.0
18 * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
19 * VirtualBox OSE distribution, in which case the provisions of the
20 * CDDL are applicable instead of those of the GPL.
21 *
22 * You may elect to license modified versions of this file under the
23 * terms and conditions of either the GPL or the CDDL or both.
24 */
25
26#ifndef ___VBox_vmm_gim_h
27#define ___VBox_vmm_gim_h
28
29#include <VBox/cdefs.h>
30#include <VBox/types.h>
31#include <VBox/param.h>
32
33#include <VBox/vmm/cpum.h>
34
35/** The value used to specify that VirtualBox must use the newest
36 * implementation version of the GIM provider. */
37#define GIM_VERSION_LATEST UINT32_C(0)
38
39RT_C_DECLS_BEGIN
40
41/** @defgroup grp_gim The Guest Interface Manager API
42 * @{
43 */
44
45/**
46 * GIM Provider Identifiers.
47 * @remarks Part of saved state!
48 */
49typedef enum GIMPROVIDERID
50{
51 /** None. */
52 GIMPROVIDERID_NONE = 0,
53 /** Minimal. */
54 GIMPROVIDERID_MINIMAL,
55 /** Microsoft Hyper-V. */
56 GIMPROVIDERID_HYPERV,
57 /** Linux KVM Interface. */
58 GIMPROVIDERID_KVM
59} GIMPROVIDERID;
60AssertCompileSize(GIMPROVIDERID, sizeof(uint32_t));
61
62
63/**
64 * A GIM MMIO2 region record.
65 */
66typedef struct GIMMMIO2REGION
67{
68 /** The region index. */
69 uint8_t iRegion;
70 /** Whether an RC mapping is required. */
71 bool fRCMapping;
72 /** Whether this region has been registered. */
73 bool fRegistered;
74 /** Whether this region is currently mapped. */
75 bool fMapped;
76 /** Alignment padding. */
77 uint8_t au8Alignment0[3];
78 /** Size of the region (must be page aligned). */
79 uint32_t cbRegion;
80 /** Alignment padding. */
81 uint32_t u32Alignment0;
82 /** The host ring-0 address of the first page in the region. */
83 R0PTRTYPE(void *) pvPageR0;
84 /** The host ring-3 address of the first page in the region. */
85 R3PTRTYPE(void *) pvPageR3;
86 /** The ring-context address of the first page in the region. */
87 RCPTRTYPE(void *) pvPageRC;
88 /** The guest-physical address of the first page in the region. */
89 RTGCPHYS GCPhysPage;
90 /** The description of the region. */
91 char szDescription[32];
92} GIMMMIO2REGION;
93/** Pointer to a GIM MMIO2 region. */
94typedef GIMMMIO2REGION *PGIMMMIO2REGION;
95/** Pointer to a const GIM MMIO2 region. */
96typedef GIMMMIO2REGION const *PCGIMMMIO2REGION;
97AssertCompileMemberAlignment(GIMMMIO2REGION, cbRegion, 8);
98AssertCompileMemberAlignment(GIMMMIO2REGION, pvPageR0, 8);
99
100
101#if 0
102/**
103 * A GIM Hypercall handler.
104 *
105 * @param pVM Pointer to the VMCPU.
106 * @param pCtx Pointer to the guest-CPU context.
107 */
108typedef DECLCALLBACK(int) FNGIMHYPERCALL(PVMCPU pVCpu, PCPUMCTX pCtx);
109/** Pointer to a GIM hypercall handler. */
110typedef FNGIMHYPERCALL *PFNGIMHYPERCALL;
111
112/**
113 * A GIM MSR-read handler.
114 *
115 * @returns VBox status code.
116 * @param pVM Pointer to the VMCPU.
117 * @param idMsr The MSR being read.
118 * @param pRange The range that the MSR belongs to.
119 * @param puValue Where to store the value of the MSR.
120 */
121typedef DECLCALLBACK(int) FNGIMRDMSR(PVMCPU pVCpu, uint32_t idMsr, PCCPUMMSRRANGE pRange, uint64_t *puValue);
122/** Pointer to a GIM MSR-read handler. */
123typedef FNGIMRDMSR *PFNGIMRDMSR;
124
125/**
126 * A GIM MSR-write handler.
127 *
128 * @returns VBox status code.
129 * @param pVM Pointer to the VMCPU.
130 * @param idMsr The MSR being written.
131 * @param pRange The range that the MSR belongs to.
132 * @param uValue The value to set, ignored bits masked.
133 * @param uRawValue The raw value with the ignored bits not masked.
134 */
135typedef DECLCALLBACK(int) FNGIMWRMSR(PVMCPU pVCpu, uint32_t idMsr, PCCPUMMSRRANGE pRange, uint64_t uValue, uint64_t uRawValue);
136/** Pointer to a GIM MSR-write handler. */
137typedef FNGIMWRMSR *PFNGIMWRMSR;
138#endif
139
140
141#ifdef IN_RC
142/** @defgroup grp_gim_rc The GIM Raw-mode Context API
143 * @{
144 */
145/** @} */
146#endif /* IN_RC */
147
148#ifdef IN_RING0
149/** @defgroup grp_gim_r0 The GIM Host Context Ring-0 API
150 * @{
151 */
152VMMR0_INT_DECL(int) GIMR0InitVM(PVM pVM);
153VMMR0_INT_DECL(int) GIMR0TermVM(PVM pVM);
154VMMR0_INT_DECL(int) GIMR0UpdateParavirtTsc(PVM pVM, uint64_t u64Offset);
155/** @} */
156#endif /* IN_RING0 */
157
158
159#ifdef IN_RING3
160/** @defgroup grp_gim_r3 The GIM Host Context Ring-3 API
161 * @{
162 */
163VMMR3_INT_DECL(int) GIMR3Init(PVM pVM);
164VMMR3_INT_DECL(int) GIMR3InitCompleted(PVM pVM);
165VMMR3_INT_DECL(int) GIMR3Term(PVM pVM);
166VMMR3_INT_DECL(void) GIMR3Reset(PVM pVM);
167VMMR3DECL(void) GIMR3GimDeviceRegister(PVM pVM, PPDMDEVINS pDevIns);
168VMMR3DECL(PGIMMMIO2REGION) GIMR3GetMmio2Regions(PVM pVM, uint32_t *pcRegions);
169/** @} */
170#endif /* IN_RING3 */
171
172VMMDECL(bool) GIMIsEnabled(PVM pVM);
173VMMDECL(GIMPROVIDERID) GIMGetProvider(PVM pVM);
174VMM_INT_DECL(bool) GIMIsParavirtTscEnabled(PVM pVM);
175VMM_INT_DECL(bool) GIMAreHypercallsEnabled(PVMCPU pVCpu);
176VMM_INT_DECL(int) GIMHypercall(PVMCPU pVCpu, PCPUMCTX pCtx);
177VMM_INT_DECL(VBOXSTRICTRC) GIMReadMsr(PVMCPU pVCpu, uint32_t idMsr, PCCPUMMSRRANGE pRange, uint64_t *puValue);
178VMM_INT_DECL(VBOXSTRICTRC) GIMWriteMsr(PVMCPU pVCpu, uint32_t idMsr, PCCPUMMSRRANGE pRange, uint64_t uValue, uint64_t uRawValue);
179
180/** @} */
181
182RT_C_DECLS_END
183
184#endif
185
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