2 * Copyright(c) 2011-2016 Intel Corporation. All rights reserved.
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
25 #include "intel_gvt.h"
28 * DOC: Intel GVT-g host support
30 * Intel GVT-g is a graphics virtualization technology which shares the
31 * GPU among multiple virtual machines on a time-sharing basis. Each
32 * virtual machine is presented a virtual GPU (vGPU), which has equivalent
33 * features as the underlying physical GPU (pGPU), so i915 driver can run
34 * seamlessly in a virtual machine.
36 * To virtualize GPU resources GVT-g driver depends on hypervisor technology
37 * e.g KVM/VFIO/mdev, Xen, etc. to provide resource access trapping capability
38 * and be virtualized within GVT-g device module. More architectural design
39 * doc is available on https://01.org/group/2230/documentation-list.
42 static bool is_supported_device(struct drm_i915_private
*dev_priv
)
44 if (IS_BROADWELL(dev_priv
))
46 if (IS_SKYLAKE(dev_priv
))
48 if (IS_KABYLAKE(dev_priv
))
50 if (IS_BROXTON(dev_priv
))
52 if (IS_COFFEELAKE(dev_priv
))
59 * intel_gvt_sanitize_options - sanitize GVT related options
60 * @dev_priv: drm i915 private data
62 * This function is called at the i915 options sanitize stage.
64 void intel_gvt_sanitize_options(struct drm_i915_private
*dev_priv
)
66 if (!i915_modparams
.enable_gvt
)
69 if (intel_vgpu_active(dev_priv
)) {
70 DRM_INFO("GVT-g is disabled for guest\n");
74 if (!is_supported_device(dev_priv
)) {
75 DRM_INFO("Unsupported device. GVT-g is disabled\n");
81 i915_modparams
.enable_gvt
= 0;
85 * intel_gvt_init - initialize GVT components
86 * @dev_priv: drm i915 private data
88 * This function is called at the initialization stage to create a GVT device.
91 * Zero on success, negative error code if failed.
94 int intel_gvt_init(struct drm_i915_private
*dev_priv
)
98 if (i915_inject_probe_failure(dev_priv
))
101 if (!i915_modparams
.enable_gvt
) {
102 DRM_DEBUG_DRIVER("GVT-g is disabled by kernel params\n");
106 if (USES_GUC_SUBMISSION(dev_priv
)) {
107 DRM_ERROR("i915 GVT-g loading failed due to Graphics virtualization is not yet supported with GuC submission\n");
111 ret
= intel_gvt_init_device(dev_priv
);
113 DRM_DEBUG_DRIVER("Fail to init GVT device\n");
120 i915_modparams
.enable_gvt
= 0;
125 * intel_gvt_driver_remove - cleanup GVT components when i915 driver is
127 * @dev_priv: drm i915 private *
129 * This function is called at the i915 driver unloading stage, to shutdown
130 * GVT components and release the related resources.
132 void intel_gvt_driver_remove(struct drm_i915_private
*dev_priv
)
134 if (!intel_gvt_active(dev_priv
))
137 intel_gvt_clean_device(dev_priv
);