VirtualBox

source: vbox/trunk/src/VBox/VMM/VMMR0/HWSVMR0.h@ 6311

Last change on this file since 6311 was 5999, checked in by vboxsync, 17 years ago

The Giant CDDL Dual-License Header Change.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 2.9 KB
Line 
1/* $Id: HWSVMR0.h 5999 2007-12-07 15:05:06Z vboxsync $ */
2/** @file
3 * HWACCM SVM - Internal header file.
4 */
5
6/*
7 * Copyright (C) 2006-2007 innotek GmbH
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 ___HWSVMR0_h
19#define ___HWSVMR0_h
20
21#include <VBox/cdefs.h>
22#include <VBox/types.h>
23#include <VBox/em.h>
24#include <VBox/stam.h>
25#include <VBox/dis.h>
26#include <VBox/hwaccm.h>
27#include <VBox/pgm.h>
28#include <VBox/hwacc_svm.h>
29
30__BEGIN_DECLS
31
32/** @defgroup grp_svm Internal
33 * @ingroup grp_svm
34 * @internal
35 * @{
36 */
37
38#ifdef IN_RING0
39
40/**
41 * Enable SVM
42 *
43 * @returns VBox status code.
44 * @param pVM The VM to operate on.
45 */
46HWACCMR0DECL(int) SVMR0Enable(PVM pVM);
47
48/**
49 * Disable SVM
50 *
51 * @returns VBox status code.
52 * @param pVM The VM to operate on.
53 */
54HWACCMR0DECL(int) SVMR0Disable(PVM pVM);
55
56/**
57 * Sets up and activates SVM
58 *
59 * @returns VBox status code.
60 * @param pVM The VM to operate on.
61 */
62HWACCMR0DECL(int) SVMR0Setup(PVM pVM);
63
64
65/**
66 * Runs guest code in a SVM VM.
67 *
68 * @note NEVER EVER turn on interrupts here. Due to our illegal entry into the kernel, it might mess things up. (XP kernel traps have been frequently observed)
69 *
70 * @returns VBox status code.
71 * @param pVM The VM to operate on.
72 * @param pCtx Guest context
73 */
74HWACCMR0DECL(int) SVMR0RunGuestCode(PVM pVM, CPUMCTX *pCtx);
75
76
77/**
78 * Loads the guest state
79 *
80 * @returns VBox status code.
81 * @param pVM The VM to operate on.
82 * @param pCtx Guest context
83 */
84HWACCMR0DECL(int) SVMR0LoadGuestState(PVM pVM, CPUMCTX *pCtx);
85
86
87/* Convert hidden selector attribute word between VMX and SVM formats. */
88#define SVM_HIDSEGATTR_VMX2SVM(a) (a & 0xFF) | ((a & 0xF000) >> 4)
89#define SVM_HIDSEGATTR_SVM2VMX(a) (a & 0xFF) | ((a & 0x0F00) << 4)
90
91#define SVM_WRITE_SELREG(REG, reg) \
92 pVMCB->guest.REG.u16Sel = pCtx->reg; \
93 pVMCB->guest.REG.u32Limit = pCtx->reg##Hid.u32Limit; \
94 pVMCB->guest.REG.u64Base = pCtx->reg##Hid.u32Base; \
95 pVMCB->guest.REG.u16Attr = SVM_HIDSEGATTR_VMX2SVM(pCtx->reg##Hid.Attr.u);
96
97#define SVM_READ_SELREG(REG, reg) \
98 pCtx->reg = pVMCB->guest.REG.u16Sel; \
99 pCtx->reg##Hid.u32Limit = pVMCB->guest.REG.u32Limit; \
100 pCtx->reg##Hid.u32Base = pVMCB->guest.REG.u64Base; \
101 pCtx->reg##Hid.Attr.u = SVM_HIDSEGATTR_SVM2VMX(pVMCB->guest.REG.u16Attr);
102
103#endif /* IN_RING0 */
104
105/** @} */
106
107__END_DECLS
108
109#endif
110
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