1 | /* $Id: GIMInternal.h 50994 2014-04-08 12:30:50Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * GIM - Internal header file.
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2014 Oracle Corporation
|
---|
8 | *
|
---|
9 | * This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
10 | * available from http://www.virtualbox.org. This file is free software;
|
---|
11 | * you can redistribute it and/or modify it under the terms of the GNU
|
---|
12 | * General Public License (GPL) as published by the Free Software
|
---|
13 | * Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
14 | * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
15 | * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
16 | */
|
---|
17 |
|
---|
18 | #ifndef ___GIMInternal_h
|
---|
19 | #define ___GIMInternal_h
|
---|
20 |
|
---|
21 | #include <VBox/vmm/gim.h>
|
---|
22 |
|
---|
23 | #define GIM_SSM_VERSION 1
|
---|
24 |
|
---|
25 |
|
---|
26 | RT_C_DECLS_BEGIN
|
---|
27 |
|
---|
28 | /** @defgroup grp_gim_int Internal
|
---|
29 | * @ingroup grp_gim
|
---|
30 | * @internal
|
---|
31 | * @{
|
---|
32 | */
|
---|
33 |
|
---|
34 | /**
|
---|
35 | * GIM VM Instance data.
|
---|
36 | * Changes to this must checked against the padding of the gim union in VM!
|
---|
37 | */
|
---|
38 | typedef struct GIM
|
---|
39 | {
|
---|
40 | /** Whether GIM is enabled for this VM or not. */
|
---|
41 | bool fEnabled;
|
---|
42 | /** The provider that is active for this VM. */
|
---|
43 | GIMPROVIDER enmProvider;
|
---|
44 | /** Pointer to the provider's ring-3 hypercall handler. */
|
---|
45 | R3PTRTYPE(PFNGIMHYPERCALL) pfnHypercallR3;
|
---|
46 | /** Pointer to the provider's ring-0 hypercall handler. */
|
---|
47 | R0PTRTYPE(PFNGIMHYPERCALL) pfnHypercallR0;
|
---|
48 | /** Pointer to the provider's raw-mode context hypercall handler. */
|
---|
49 | RCPTRTYPE(PFNGIMHYPERCALL) pfnHypercallRC;
|
---|
50 |
|
---|
51 | union
|
---|
52 | {
|
---|
53 | struct
|
---|
54 | {
|
---|
55 | } minimal;
|
---|
56 |
|
---|
57 | struct
|
---|
58 | {
|
---|
59 | /** Hypervisor system identity - Minor version number. */
|
---|
60 | uint16_t uVersionMinor;
|
---|
61 | /** Hypervisor system identity - Major version number. */
|
---|
62 | uint16_t uVersionMajor;
|
---|
63 | /** Hypervisor system identify - Service branch (Bits 31-24) and number (Bits
|
---|
64 | * 23-0). */
|
---|
65 | uint32_t uVersionService;
|
---|
66 | /** Guest OS identity MSR. */
|
---|
67 | uint64_t u64GuestOsIdMsr;
|
---|
68 | /** Reference TSC page MSR. */
|
---|
69 | uint64_t u64TscPageMsr;
|
---|
70 | } hv;
|
---|
71 |
|
---|
72 | /** @todo KVM and others. */
|
---|
73 | } u;
|
---|
74 | } GIM;
|
---|
75 | /** Pointer to GIM VM instance data. */
|
---|
76 | typedef GIM *PGIM;
|
---|
77 |
|
---|
78 |
|
---|
79 | /**
|
---|
80 | * GIM VMCPU Instance data.
|
---|
81 | */
|
---|
82 | typedef struct GIMCPU
|
---|
83 | {
|
---|
84 | } GIMCPU;
|
---|
85 | /** Pointer to GIM VMCPU instance data. */
|
---|
86 | typedef GIMCPU *PGIMCPU;
|
---|
87 |
|
---|
88 |
|
---|
89 | #ifdef IN_RING0
|
---|
90 | #endif /* IN_RING0 */
|
---|
91 |
|
---|
92 | /** @} */
|
---|
93 |
|
---|
94 | RT_C_DECLS_END
|
---|
95 |
|
---|
96 | #endif /* ___GIMInternal_h */
|
---|
97 |
|
---|