VirtualBox

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

Last change on this file since 64622 was 63648, checked in by vboxsync, 8 years ago

VMM/GIM/HyperV: Add partial support for synthetic interrupt controller (still disabled, i.e. not exposed to guest).

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 6.8 KB
Line 
1/** @file
2 * GIM - Guest Interface Manager.
3 */
4
5/*
6 * Copyright (C) 2014-2016 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#include <VBox/vmm/pdmifs.h>
35
36/** The value used to specify that VirtualBox must use the newest
37 * implementation version of the GIM provider. */
38#define GIM_VERSION_LATEST UINT32_C(0)
39
40RT_C_DECLS_BEGIN
41
42/** @defgroup grp_gim The Guest Interface Manager API
43 * @ingroup grp_vmm
44 * @{
45 */
46
47/**
48 * GIM Provider Identifiers.
49 * @remarks Part of saved state!
50 */
51typedef enum GIMPROVIDERID
52{
53 /** None. */
54 GIMPROVIDERID_NONE = 0,
55 /** Minimal. */
56 GIMPROVIDERID_MINIMAL,
57 /** Microsoft Hyper-V. */
58 GIMPROVIDERID_HYPERV,
59 /** Linux KVM Interface. */
60 GIMPROVIDERID_KVM
61} GIMPROVIDERID;
62AssertCompileSize(GIMPROVIDERID, sizeof(uint32_t));
63
64
65/**
66 * A GIM MMIO2 region record.
67 */
68typedef struct GIMMMIO2REGION
69{
70 /** The region index. */
71 uint8_t iRegion;
72 /** Whether an RC mapping is required. */
73 bool fRCMapping;
74 /** Whether this region has been registered. */
75 bool fRegistered;
76 /** Whether this region is currently mapped. */
77 bool fMapped;
78 /** Alignment padding. */
79 uint8_t au8Alignment0[3];
80 /** Size of the region (must be page aligned). */
81 uint32_t cbRegion;
82 /** Alignment padding. */
83 uint32_t u32Alignment0;
84 /** The host ring-0 address of the first page in the region. */
85 R0PTRTYPE(void *) pvPageR0;
86 /** The host ring-3 address of the first page in the region. */
87 R3PTRTYPE(void *) pvPageR3;
88 /** The ring-context address of the first page in the region. */
89 RCPTRTYPE(void *) pvPageRC;
90 /** The guest-physical address of the first page in the region. */
91 RTGCPHYS GCPhysPage;
92 /** The description of the region. */
93 char szDescription[32];
94} GIMMMIO2REGION;
95/** Pointer to a GIM MMIO2 region. */
96typedef GIMMMIO2REGION *PGIMMMIO2REGION;
97/** Pointer to a const GIM MMIO2 region. */
98typedef GIMMMIO2REGION const *PCGIMMMIO2REGION;
99AssertCompileMemberAlignment(GIMMMIO2REGION, cbRegion, 8);
100AssertCompileMemberAlignment(GIMMMIO2REGION, pvPageR0, 8);
101
102/**
103 * Debug data buffer available callback over the GIM debug connection.
104 *
105 * @param pVM The cross context VM structure.
106 */
107typedef DECLCALLBACK(void) FNGIMDEBUGBUFAVAIL(PVM pVM);
108/** Pointer to GIM debug buffer available callback. */
109typedef FNGIMDEBUGBUFAVAIL *PFNGIMDEBUGBUFAVAIL;
110
111/**
112 * GIM debug setup.
113 *
114 * These are parameters/options filled in by the GIM provider and passed along
115 * to the GIM device.
116 */
117typedef struct GIMDEBUGSETUP
118{
119 /** The callback to invoke when the receive buffer has data. */
120 PFNGIMDEBUGBUFAVAIL pfnDbgRecvBufAvail;
121 /** The size of the receive buffer as specified by the GIM provider. */
122 uint32_t cbDbgRecvBuf;
123} GIMDEBUGSETUP;
124/** Pointer to a GIM debug setup struct. */
125typedef struct GIMDEBUGSETUP *PGIMDEBUGSETUP;
126/** Pointer to a const GIM debug setup struct. */
127typedef struct GIMDEBUGSETUP const *PCGGIMDEBUGSETUP;
128
129/**
130 * GIM debug structure (common to the GIM device and GIM).
131 *
132 * This is used to exchanging data between the GIM provider and the GIM device.
133 */
134typedef struct GIMDEBUG
135{
136 /** The receive buffer. */
137 void *pvDbgRecvBuf;
138 /** The debug I/O stream driver. */
139 PPDMISTREAM pDbgDrvStream;
140 /** Number of bytes pending to be read from the receive buffer. */
141 size_t cbDbgRecvBufRead;
142 /** The flag synchronizing reads of the receive buffer from EMT. */
143 volatile bool fDbgRecvBufRead;
144 /** The receive thread wakeup semaphore. */
145 RTSEMEVENTMULTI hDbgRecvThreadSem;
146} GIMDEBUG;
147/** Pointer to a GIM debug struct. */
148typedef struct GIMDEBUG *PGIMDEBUG;
149/** Pointer to a const GIM debug struct. */
150typedef struct GIMDEBUG const *PCGIMDEBUG;
151
152
153#ifdef IN_RC
154/** @defgroup grp_gim_rc The GIM Raw-mode Context API
155 * @{
156 */
157/** @} */
158#endif /* IN_RC */
159
160#ifdef IN_RING0
161/** @defgroup grp_gim_r0 The GIM Host Context Ring-0 API
162 * @{
163 */
164VMMR0_INT_DECL(int) GIMR0InitVM(PVM pVM);
165VMMR0_INT_DECL(int) GIMR0TermVM(PVM pVM);
166VMMR0_INT_DECL(int) GIMR0UpdateParavirtTsc(PVM pVM, uint64_t u64Offset);
167/** @} */
168#endif /* IN_RING0 */
169
170
171#ifdef IN_RING3
172/** @defgroup grp_gim_r3 The GIM Host Context Ring-3 API
173 * @{
174 */
175VMMR3_INT_DECL(int) GIMR3Init(PVM pVM);
176VMMR3_INT_DECL(int) GIMR3InitCompleted(PVM pVM);
177VMMR3_INT_DECL(void) GIMR3Relocate(PVM pVM, RTGCINTPTR offDelta);
178VMMR3_INT_DECL(int) GIMR3Term(PVM pVM);
179VMMR3_INT_DECL(void) GIMR3Reset(PVM pVM);
180VMMR3DECL(void) GIMR3GimDeviceRegister(PVM pVM, PPDMDEVINS pDevInsR3, PGIMDEBUG pDbg);
181VMMR3DECL(int) GIMR3GetDebugSetup(PVM pVM, PGIMDEBUGSETUP pDbgSetup);
182VMMR3DECL(PGIMMMIO2REGION) GIMR3GetMmio2Regions(PVM pVM, uint32_t *pcRegions);
183/** @} */
184#endif /* IN_RING3 */
185
186VMMDECL(bool) GIMIsEnabled(PVM pVM);
187VMMDECL(GIMPROVIDERID) GIMGetProvider(PVM pVM);
188VMM_INT_DECL(bool) GIMIsParavirtTscEnabled(PVM pVM);
189VMM_INT_DECL(bool) GIMAreHypercallsEnabled(PVMCPU pVCpu);
190VMM_INT_DECL(VBOXSTRICTRC) GIMHypercall(PVMCPU pVCpu, PCPUMCTX pCtx);
191VMM_INT_DECL(VBOXSTRICTRC) GIMExecHypercallInstr(PVMCPU pVCpu, PCPUMCTX pCtx, uint8_t *pcbInstr);
192VMM_INT_DECL(VBOXSTRICTRC) GIMXcptUD(PVMCPU pVCpu, PCPUMCTX pCtx, PDISCPUSTATE pDis, uint8_t *pcbInstr);
193VMM_INT_DECL(bool) GIMShouldTrapXcptUD(PVMCPU pVCpu);
194VMM_INT_DECL(VBOXSTRICTRC) GIMReadMsr(PVMCPU pVCpu, uint32_t idMsr, PCCPUMMSRRANGE pRange, uint64_t *puValue);
195VMM_INT_DECL(VBOXSTRICTRC) GIMWriteMsr(PVMCPU pVCpu, uint32_t idMsr, PCCPUMMSRRANGE pRange, uint64_t uValue, uint64_t uRawValue);
196/** @} */
197
198RT_C_DECLS_END
199
200#endif
201
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