VirtualBox

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

Last change on this file since 52664 was 52247, checked in by vboxsync, 10 years ago

VMM/GIM: Keep Minimal GIM provider guest agnostic.

  • 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 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 */
48typedef enum GIMPROVIDERID
49{
50 /** None. */
51 GIMPROVIDERID_NONE = 0,
52 /** Minimal. */
53 GIMPROVIDERID_MINIMAL,
54 /** Microsoft Hyper-V. */
55 GIMPROVIDERID_HYPERV,
56 /** Linux KVM Interface. */
57 GIMPROVIDERID_KVM
58} GIMPROVIDERID;
59AssertCompileSize(GIMPROVIDERID, sizeof(uint32_t));
60
61
62/**
63 * A GIM MMIO2 region record.
64 */
65typedef struct GIMMMIO2REGION
66{
67 /** The region index. */
68 uint8_t iRegion;
69 /** Whether an RC mapping is required. */
70 bool fRCMapping;
71 /** Whether this region has been registered. */
72 bool fRegistered;
73 /** Whether this region is currently mapped. */
74 bool fMapped;
75 /** Alignment padding. */
76 uint8_t au8Alignment0[3];
77 /** Size of the region (must be page aligned). */
78 uint32_t cbRegion;
79 /** Alignment padding. */
80 uint32_t u32Alignment0;
81 /** The host ring-0 address of the first page in the region. */
82 R0PTRTYPE(void *) pvPageR0;
83 /** The host ring-3 address of the first page in the region. */
84 R3PTRTYPE(void *) pvPageR3;
85 /** The ring-context address of the first page in the region. */
86 RCPTRTYPE(void *) pvPageRC;
87 /** The guest-physical address of the first page in the region. */
88 RTGCPHYS GCPhysPage;
89 /** The description of the region. */
90 char szDescription[32];
91} GIMMMIO2REGION;
92/** Pointer to a GIM MMIO2 region. */
93typedef GIMMMIO2REGION *PGIMMMIO2REGION;
94/** Pointer to a const GIM MMIO2 region. */
95typedef GIMMMIO2REGION const *PCGIMMMIO2REGION;
96AssertCompileMemberAlignment(GIMMMIO2REGION, cbRegion, 8);
97AssertCompileMemberAlignment(GIMMMIO2REGION, pvPageR0, 8);
98
99
100#if 0
101/**
102 * A GIM Hypercall handler.
103 *
104 * @param pVM Pointer to the VMCPU.
105 * @param pCtx Pointer to the guest-CPU context.
106 */
107typedef DECLCALLBACK(int) FNGIMHYPERCALL(PVMCPU pVCpu, PCPUMCTX pCtx);
108/** Pointer to a GIM hypercall handler. */
109typedef FNGIMHYPERCALL *PFNGIMHYPERCALL;
110
111/**
112 * A GIM MSR-read handler.
113 *
114 * @returns VBox status code.
115 * @param pVM Pointer to the VMCPU.
116 * @param idMsr The MSR being read.
117 * @param pRange The range that the MSR belongs to.
118 * @param puValue Where to store the value of the MSR.
119 */
120typedef DECLCALLBACK(int) FNGIMRDMSR(PVMCPU pVCpu, uint32_t idMsr, PCCPUMMSRRANGE pRange, uint64_t *puValue);
121/** Pointer to a GIM MSR-read handler. */
122typedef FNGIMRDMSR *PFNGIMRDMSR;
123
124/**
125 * A GIM MSR-write handler.
126 *
127 * @returns VBox status code.
128 * @param pVM Pointer to the VMCPU.
129 * @param idMsr The MSR being written.
130 * @param pRange The range that the MSR belongs to.
131 * @param uValue The value to set, ignored bits masked.
132 * @param uRawValue The raw value with the ignored bits not masked.
133 */
134typedef DECLCALLBACK(int) FNGIMWRMSR(PVMCPU pVCpu, uint32_t idMsr, PCCPUMMSRRANGE pRange, uint64_t uValue, uint64_t uRawValue);
135/** Pointer to a GIM MSR-write handler. */
136typedef FNGIMWRMSR *PFNGIMWRMSR;
137#endif
138
139
140#ifdef IN_RC
141/** @defgroup grp_gim_rc The GIM Raw-mode Context API
142 * @ingroup grp_gim
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 * @ingroup grp_gim
151 * @{
152 */
153VMMR0_INT_DECL(int) GIMR0InitVM(PVM pVM);
154VMMR0_INT_DECL(int) GIMR0TermVM(PVM pVM);
155VMMR0_INT_DECL(int) GIMR0UpdateParavirtTsc(PVM pVM, uint64_t u64Offset);
156/** @} */
157#endif /* IN_RING0 */
158
159
160#ifdef IN_RING3
161/** @defgroup grp_gim_r3 The GIM Host Context Ring-3 API
162 * @ingroup grp_gim
163 * @{
164 */
165VMMR3_INT_DECL(int) GIMR3Init(PVM pVM);
166VMMR3_INT_DECL(int) GIMR3Term(PVM pVM);
167VMMR3_INT_DECL(void) GIMR3Reset(PVM pVM);
168VMMR3DECL(void) GIMR3GimDeviceRegister(PVM pVM, PPDMDEVINS pDevIns);
169VMMR3DECL(PGIMMMIO2REGION) GIMR3GetMmio2Regions(PVM pVM, uint32_t *pcRegions);
170/** @} */
171#endif /* IN_RING3 */
172
173VMMDECL(bool) GIMIsEnabled(PVM pVM);
174VMMDECL(GIMPROVIDERID) GIMGetProvider(PVM pVM);
175VMM_INT_DECL(bool) GIMIsParavirtTscEnabled(PVM pVM);
176VMM_INT_DECL(bool) GIMAreHypercallsEnabled(PVMCPU pVCpu);
177VMM_INT_DECL(int) GIMHypercall(PVMCPU pVCpu, PCPUMCTX pCtx);
178VMM_INT_DECL(int) GIMReadMsr(PVMCPU pVCpu, uint32_t idMsr, PCCPUMMSRRANGE pRange, uint64_t *puValue);
179VMM_INT_DECL(int) GIMWriteMsr(PVMCPU pVCpu, uint32_t idMsr, PCCPUMMSRRANGE pRange, uint64_t uValue, uint64_t uRawValue);
180
181/** @} */
182
183RT_C_DECLS_END
184
185#endif /* ___VBox_vmm_gim_h */
186
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