VirtualBox

source: vbox/trunk/src/VBox/VMM/VMMR0/HMSVMR0.h

Last change on this file was 98103, checked in by vboxsync, 16 months ago

Copyright year updates by scm.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id Revision
File size: 2.6 KB
RevLine 
[1300]1/* $Id: HMSVMR0.h 98103 2023-01-17 14:15:46Z vboxsync $ */
2/** @file
[38684]3 * HM SVM (AMD-V) - Internal header file.
[1300]4 */
5
6/*
[98103]7 * Copyright (C) 2006-2023 Oracle and/or its affiliates.
[1300]8 *
[96407]9 * This file is part of VirtualBox base platform packages, as
10 * available from https://www.virtualbox.org.
11 *
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation, in version 3 of the
15 * License.
16 *
17 * This program is distributed in the hope that it will be useful, but
18 * WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
20 * General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License
23 * along with this program; if not, see <https://www.gnu.org/licenses>.
24 *
25 * SPDX-License-Identifier: GPL-3.0-only
[1300]26 */
27
[76561]28#ifndef VMM_INCLUDED_SRC_VMMR0_HMSVMR0_h
29#define VMM_INCLUDED_SRC_VMMR0_HMSVMR0_h
[76543]30#ifndef RT_WITHOUT_PRAGMA_ONCE
31# pragma once
32#endif
[1300]33
34#include <VBox/cdefs.h>
35#include <VBox/types.h>
[43387]36#include <VBox/vmm/hm.h>
37#include <VBox/vmm/hm_svm.h>
[1300]38
[20374]39RT_C_DECLS_BEGIN
[1300]40
[12653]41/** @defgroup grp_svm_int Internal
[1300]42 * @ingroup grp_svm
43 * @internal
44 * @{
45 */
46
47#ifdef IN_RING0
48
[72643]49VMMR0DECL(int) SVMR0GlobalInit(void);
50VMMR0DECL(void) SVMR0GlobalTerm(void);
[80274]51VMMR0DECL(int) SVMR0Enter(PVMCPUCC pVCpu);
52VMMR0DECL(void) SVMR0ThreadCtxCallback(RTTHREADCTXEVENT enmEvent, PVMCPUCC pVCpu, bool fGlobalInit);
[92392]53VMMR0DECL(int) SVMR0AssertionCallback(PVMCPUCC pVCpu);
[80274]54VMMR0DECL(int) SVMR0EnableCpu(PHMPHYSCPU pHostCpu, PVMCC pVM, void *pvPageCpu, RTHCPHYS HCPhysCpuPage,
[76464]55 bool fEnabledBySystem, PCSUPHWVIRTMSRS pHwvirtMsrs);
[80911]56VMMR0DECL(int) SVMR0DisableCpu(PHMPHYSCPU pHostCpu, void *pvPageCpu, RTHCPHYS pPageCpuPhys);
[80274]57VMMR0DECL(int) SVMR0InitVM(PVMCC pVM);
58VMMR0DECL(int) SVMR0TermVM(PVMCC pVM);
59VMMR0DECL(int) SVMR0SetupVM(PVMCC pVM);
60VMMR0DECL(VBOXSTRICTRC) SVMR0RunGuestCode(PVMCPUCC pVCpu);
61VMMR0DECL(int) SVMR0ExportHostState(PVMCPUCC pVCpu);
62VMMR0DECL(int) SVMR0ImportStateOnDemand(PVMCPUCC pVCpu, uint64_t fWhat);
63VMMR0DECL(int) SVMR0InvalidatePage(PVMCPUCC pVCpu, RTGCPTR GCVirt);
[93963]64VMMR0DECL(int) SVMR0GetExitAuxInfo(PVMCPUCC pVCpu, PSVMEXITAUX pSvmExitAux);
[1300]65
[15404]66/**
[14366]67 * Executes INVLPGA.
68 *
[87387]69 * @param GCVirt Virtual page to invalidate.
[14366]70 * @param u32ASID Tagged TLB id.
71 */
[87387]72DECLASM(void) SVMR0InvlpgA(RTGCPTR GCVirt, uint32_t u32ASID);
[14366]73
[1300]74#endif /* IN_RING0 */
75
76/** @} */
77
[20374]78RT_C_DECLS_END
[1300]79
[76585]80#endif /* !VMM_INCLUDED_SRC_VMMR0_HMSVMR0_h */
[1300]81
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use