VirtualBox

source: vbox/trunk/src/VBox/VMM/VMMR3/GIMMinimal.cpp@ 62478

Last change on this file since 62478 was 62478, checked in by vboxsync, 8 years ago

(C) 2016

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 4.4 KB
Line 
1/* $Id: GIMMinimal.cpp 62478 2016-07-22 18:29:06Z vboxsync $ */
2/** @file
3 * GIM - Guest Interface Manager, Minimal implementation.
4 */
5
6/*
7 * Copyright (C) 2014-2016 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
19/*********************************************************************************************************************************
20* Header Files *
21*********************************************************************************************************************************/
22#define LOG_GROUP LOG_GROUP_GIM
23#include <VBox/vmm/gim.h>
24#include <VBox/vmm/cpum.h>
25#include <VBox/vmm/tm.h>
26#include <VBox/vmm/pdmapi.h>
27#include "GIMInternal.h"
28#include <VBox/vmm/vm.h>
29
30#include <iprt/assert.h>
31#include <iprt/err.h>
32#include <iprt/asm-amd64-x86.h>
33#include <iprt/string.h>
34
35
36/*********************************************************************************************************************************
37* Defined Constants And Macros *
38*********************************************************************************************************************************/
39
40/**
41 * Initializes the Minimal provider.
42 *
43 * @returns VBox status code.
44 * @param pVM The cross context VM structure.
45 */
46VMMR3_INT_DECL(int) gimR3MinimalInit(PVM pVM)
47{
48 AssertReturn(pVM, VERR_INVALID_PARAMETER);
49 AssertReturn(pVM->gim.s.enmProviderId == GIMPROVIDERID_MINIMAL, VERR_INTERNAL_ERROR_5);
50
51 /*
52 * Enable the Hypervisor Present.
53 */
54 CPUMR3SetGuestCpuIdFeature(pVM, CPUMCPUIDFEATURE_HVP);
55
56 return VINF_SUCCESS;
57}
58
59
60/**
61 * Initializes remaining bits of the Minimal provider.
62 * This is called after initializing HM and almost all other VMM components.
63 *
64 * @returns VBox status code.
65 * @param pVM The cross context VM structure.
66 */
67VMMR3_INT_DECL(int) gimR3MinimalInitCompleted(PVM pVM)
68{
69 /*
70 * Expose a generic hypervisor-agnostic leaf (originally defined by VMware).
71 * The leaves range from 0x40000010 to 0x400000FF.
72 *
73 * This is done in the init. completed routine as we need PDM to be
74 * initialized (otherwise PDMApicGetTimerFreq() would fail).
75 */
76 CPUMCPUIDLEAF HyperLeaf;
77 int rc = CPUMR3CpuIdGetLeaf(pVM, &HyperLeaf, 0x40000000, 0 /* uSubLeaf */);
78 if (RT_SUCCESS(rc))
79 {
80 HyperLeaf.uEax = UINT32_C(0x40000010); /* Maximum leaf we implement. */
81 rc = CPUMR3CpuIdInsert(pVM, &HyperLeaf);
82 AssertLogRelRCReturn(rc, rc);
83
84 /*
85 * Insert missing zero leaves (you never know what missing leaves are
86 * going to return when read).
87 */
88 for (uint32_t uLeaf = UINT32_C(0x40000001); uLeaf < UINT32_C(0x40000010); uLeaf++)
89 {
90 rc = CPUMR3CpuIdGetLeaf(pVM, &HyperLeaf, uLeaf, 0 /* uSubLeaf */);
91 if (RT_FAILURE(rc))
92 {
93 RT_ZERO(HyperLeaf);
94 HyperLeaf.uLeaf = uLeaf;
95 rc = CPUMR3CpuIdInsert(pVM, &HyperLeaf);
96 AssertLogRelRCReturn(rc, rc);
97 }
98 }
99
100 /*
101 * Add the timing information hypervisor leaf.
102 * MacOS X uses this to determine the TSC, bus frequency. See @bugref{7270}.
103 *
104 * EAX - TSC frequency in KHz.
105 * EBX - APIC frequency in KHz.
106 * ECX, EDX - Reserved.
107 */
108 uint64_t uApicFreq;
109 rc = PDMApicGetTimerFreq(pVM, &uApicFreq);
110 AssertLogRelRCReturn(rc, rc);
111
112 RT_ZERO(HyperLeaf);
113 HyperLeaf.uLeaf = UINT32_C(0x40000010);
114 HyperLeaf.uEax = TMCpuTicksPerSecond(pVM) / UINT64_C(1000);
115 HyperLeaf.uEbx = (uApicFreq + 500) / UINT64_C(1000);
116 rc = CPUMR3CpuIdInsert(pVM, &HyperLeaf);
117 AssertLogRelRCReturn(rc, rc);
118 }
119 else
120 LogRel(("GIM: Minimal: failed to get hypervisor leaf 0x40000000.\n"));
121
122 return VINF_SUCCESS;
123}
124
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