VirtualBox

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

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

VMM: GIM raw-mode support.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 6.1 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#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 * @{
143 */
144/** @} */
145#endif /* IN_RC */
146
147#ifdef IN_RING0
148/** @defgroup grp_gim_r0 The GIM Host Context Ring-0 API
149 * @{
150 */
151VMMR0_INT_DECL(int) GIMR0InitVM(PVM pVM);
152VMMR0_INT_DECL(int) GIMR0TermVM(PVM pVM);
153VMMR0_INT_DECL(int) GIMR0UpdateParavirtTsc(PVM pVM, uint64_t u64Offset);
154/** @} */
155#endif /* IN_RING0 */
156
157
158#ifdef IN_RING3
159/** @defgroup grp_gim_r3 The GIM Host Context Ring-3 API
160 * @{
161 */
162VMMR3_INT_DECL(int) GIMR3Init(PVM pVM);
163VMMR3_INT_DECL(int) GIMR3InitCompleted(PVM pVM);
164VMMR3_INT_DECL(int) GIMR3Term(PVM pVM);
165VMMR3_INT_DECL(void) GIMR3Reset(PVM pVM);
166VMMR3DECL(void) GIMR3GimDeviceRegister(PVM pVM, PPDMDEVINS pDevIns);
167VMMR3DECL(PGIMMMIO2REGION) GIMR3GetMmio2Regions(PVM pVM, uint32_t *pcRegions);
168/** @} */
169#endif /* IN_RING3 */
170
171VMMDECL(bool) GIMIsEnabled(PVM pVM);
172VMMDECL(GIMPROVIDERID) GIMGetProvider(PVM pVM);
173VMM_INT_DECL(bool) GIMIsParavirtTscEnabled(PVM pVM);
174VMM_INT_DECL(bool) GIMAreHypercallsEnabled(PVMCPU pVCpu);
175VMM_INT_DECL(int) GIMHypercall(PVMCPU pVCpu, PCPUMCTX pCtx);
176VMM_INT_DECL(int) GIMXcptUD(PVMCPU pVCpu, PCPUMCTX pCtx, PDISCPUSTATE pDis);
177VMM_INT_DECL(bool) GIMShouldTrapXcptUD(PVM pVM);
178VMM_INT_DECL(VBOXSTRICTRC) GIMReadMsr(PVMCPU pVCpu, uint32_t idMsr, PCCPUMMSRRANGE pRange, uint64_t *puValue);
179VMM_INT_DECL(VBOXSTRICTRC) GIMWriteMsr(PVMCPU pVCpu, uint32_t idMsr, PCCPUMMSRRANGE pRange, uint64_t uValue, uint64_t uRawValue);
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