VirtualBox

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

Last change on this file since 50953 was 50953, checked in by vboxsync, 11 years ago

GIM: Skeleton, work in progress.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 2.6 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
33RT_C_DECLS_BEGIN
34
35/** @defgroup grp_gim The Guest Interface Manager API
36 * @{
37 */
38
39/**
40 * Providers identifiers.
41 */
42typedef enum GIMPROVIDER
43{
44 /** None. */
45 GIMPROVIDER_NONE = 0,
46 /** Microsoft Hyper-V. */
47 GIMPROVIDER_HYPERV,
48 /** Linux KVM Interface. */
49 GIMPROVIDER_KVM,
50 /** Ensure 32-bit type. */
51 GIMPROVIDER_32BIT_HACK = 0x7fffffff
52} GIMPROVIDER;
53
54
55/**
56 * A GIM Hypercall handler.
57 *
58 * @param pVM Pointer to the VMCPU.
59 * @param pCtx Pointer to the guest-CPU context.
60 */
61typedef DECLCALLBACK(int) FNGIMHYPERCALL(PVMCPU pVCpu, PCPUMCTX pCtx);
62/** Pointer to a GIM hypercall handler. */
63typedef FNGIMHYPERCALL *PFNGIMHYPERCALL;
64
65#ifdef IN_RC
66/** @defgroup grp_gim_rc The GIM Raw-mode Context API
67 * @ingroup grp_gim
68 * @{
69 */
70/** @} */
71#endif /* IN_RC */
72
73#ifdef IN_RING0
74/** @defgroup grp_gim_r0 The GIM Host Context Ring-0 API
75 * @ingroup grp_gim
76 * @{
77 */
78
79/** @} */
80#endif /* IN_RING0 */
81
82
83#ifdef IN_RING3
84/** @defgroup grp_gim_r3 The GIM Host Context Ring-3 API
85 * @ingroup grp_gim
86 * @{
87 */
88VMMR3_INT_DECL(int) GIMR3Init(PVM pVM);
89VMMR3_INT_DECL(int) GIMR3Term(PVM pVM);
90/** @} */
91#endif /* IN_RING3 */
92
93
94/**
95 * Checks whether GIM is being used by this VM.
96 *
97 * @retval @c true if used.
98 * @retval @c false if no GIM provider ("none") is used.
99 *
100 * @param pVM Pointer to the VM.
101 * @internal
102 */
103VMMDECL(bool) GIMIsEnabled(PVM pVM);
104
105/** @} */
106
107RT_C_DECLS_END
108
109#endif
110
Note: See TracBrowser for help on using the repository browser.

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