HWSVMR0.h revision cbeafe5b35cc2bf5ab239f08d3a7b53b31ef191d
/* $Id$ */
/** @file
* HWACCM AMD-V - Internal header file.
*/
/*
* Copyright (C) 2006-2007 innotek GmbH
*
* This file is part of VirtualBox Open Source Edition (OSE), as
* available from http://www.virtualbox.org. This file is free software;
* General Public License (GPL) as published by the Free Software
* Foundation, in version 2 as it comes in the "COPYING" file of the
* VirtualBox OSE distribution. VirtualBox OSE is distributed in the
* hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
*/
#ifndef ___HWSVMR0_h
#define ___HWSVMR0_h
#include <VBox/hwacc_svm.h>
/** @defgroup grp_svm Internal
* @ingroup grp_svm
* @internal
* @{
*/
#ifdef IN_RING0
/**
* Enters the AMD-V session
*
* @returns VBox status code.
* @param pVM The VM to operate on.
*/
/**
* Leaves the AMD-V session
*
* @returns VBox status code.
* @param pVM The VM to operate on.
*/
/**
* Sets up and activates AMD-V on the current CPU
*
* @returns VBox status code.
* @param idCpu The identifier for the CPU the function is called on.
* @param pVM The VM to operate on.
* @param pvPageCpu Pointer to the global cpu page
* @param pPageCpuPhys Physical address of the global cpu page
*/
/**
* Deactivates AMD-V on the current CPU
*
* @returns VBox status code.
* @param idCpu The identifier for the CPU the function is called on.
* @param pvPageCpu Pointer to the global cpu page
* @param pPageCpuPhys Physical address of the global cpu page
*/
/**
* Sets up AMD-V for the specified VM
*
* @returns VBox status code.
* @param pVM The VM to operate on.
*/
/**
* Runs guest code in an AMD-V VM.
*
* @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)
*
* @returns VBox status code.
* @param pVM The VM to operate on.
* @param pCtx Guest context
*/
/**
* Loads the guest state
*
* @returns VBox status code.
* @param pVM The VM to operate on.
* @param pCtx Guest context
*/
/* Convert hidden selector attribute word between VMX and SVM formats. */
#endif /* IN_RING0 */
/** @} */
#endif