/* $Id: GIMR0.cpp 62478 2016-07-22 18:29:06Z vboxsync $ */ /** @file * Guest Interface Manager (GIM) - Host Context Ring-0. */ /* * Copyright (C) 2014-2016 Oracle Corporation * * This file is part of VirtualBox Open Source Edition (OSE), as * available from http://www.virtualbox.org. This file is free software; * you can redistribute it and/or modify it under the terms of the GNU * 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. */ /********************************************************************************************************************************* * Header Files * *********************************************************************************************************************************/ #define LOG_GROUP LOG_GROUP_GIM #include #include "GIMInternal.h" #include "GIMHvInternal.h" #include #include /** * Does ring-0 per-VM GIM initialization. * * @returns VBox status code. * @param pVM The cross context VM structure. */ VMMR0_INT_DECL(int) GIMR0InitVM(PVM pVM) { if (!GIMIsEnabled(pVM)) return VINF_SUCCESS; switch (pVM->gim.s.enmProviderId) { case GIMPROVIDERID_HYPERV: return gimR0HvInitVM(pVM); case GIMPROVIDERID_KVM: return gimR0KvmInitVM(pVM); default: break; } return VINF_SUCCESS; } /** * Does ring-0 per-VM GIM termination. * * @returns VBox status code. * @param pVM The cross context VM structure. */ VMMR0_INT_DECL(int) GIMR0TermVM(PVM pVM) { if (!GIMIsEnabled(pVM)) return VINF_SUCCESS; switch (pVM->gim.s.enmProviderId) { case GIMPROVIDERID_HYPERV: return gimR0HvTermVM(pVM); case GIMPROVIDERID_KVM: return gimR0KvmTermVM(pVM); default: break; } return VINF_SUCCESS; } /** * Updates the paravirtualized TSC supported by the GIM provider. * * @returns VBox status code. * @retval VINF_SUCCESS if the paravirt. TSC is setup and in use. * @retval VERR_GIM_NOT_ENABLED if no GIM provider is configured for this VM. * @retval VERR_GIM_PVTSC_NOT_AVAILABLE if the GIM provider does not support any * paravirt. TSC. * @retval VERR_GIM_PVTSC_NOT_IN_USE if the GIM provider supports paravirt. TSC * but the guest isn't currently using it. * * @param pVM The cross context VM structure. * @param u64Offset The computed TSC offset. * * @thread EMT(pVCpu) */ VMMR0_INT_DECL(int) GIMR0UpdateParavirtTsc(PVM pVM, uint64_t u64Offset) { switch (pVM->gim.s.enmProviderId) { case GIMPROVIDERID_HYPERV: return gimR0HvUpdateParavirtTsc(pVM, u64Offset); case GIMPROVIDERID_KVM: return VINF_SUCCESS; case GIMPROVIDERID_NONE: return VERR_GIM_NOT_ENABLED; default: break; } return VERR_GIM_PVTSC_NOT_AVAILABLE; }