Zhi Wang | 0ad35fe | 2016-06-16 08:07:00 -0400 | [diff] [blame] | 1 | /* |
| 2 | * Copyright(c) 2011-2016 Intel Corporation. All rights reserved. |
| 3 | * |
| 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: |
| 10 | * |
| 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 |
| 13 | * Software. |
| 14 | * |
| 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 |
| 21 | * SOFTWARE. |
| 22 | */ |
| 23 | |
| 24 | #include "i915_drv.h" |
| 25 | #include "intel_gvt.h" |
| 26 | |
| 27 | /** |
| 28 | * DOC: Intel GVT-g host support |
| 29 | * |
| 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 |
Zhenyu Wang | 22681c7 | 2016-10-19 14:40:59 +0800 | [diff] [blame] | 34 | * seamlessly in a virtual machine. |
| 35 | * |
| 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. |
Zhi Wang | 0ad35fe | 2016-06-16 08:07:00 -0400 | [diff] [blame] | 40 | */ |
| 41 | |
| 42 | static bool is_supported_device(struct drm_i915_private *dev_priv) |
| 43 | { |
| 44 | if (IS_BROADWELL(dev_priv)) |
| 45 | return true; |
Zhi Wang | 21196a8 | 2016-10-13 22:13:04 +0800 | [diff] [blame] | 46 | if (IS_SKYLAKE(dev_priv)) |
| 47 | return true; |
Jian Jun Chen | 26a201a | 2017-07-19 13:16:56 +0800 | [diff] [blame] | 48 | if (IS_KABYLAKE(dev_priv)) |
Xu Han | 96cd733 | 2017-03-29 10:14:00 +0800 | [diff] [blame] | 49 | return true; |
Zhi Wang | 0ad35fe | 2016-06-16 08:07:00 -0400 | [diff] [blame] | 50 | return false; |
| 51 | } |
| 52 | |
| 53 | /** |
Chuanxiao Dong | 67b7f33 | 2017-05-27 17:44:17 +0800 | [diff] [blame] | 54 | * intel_gvt_sanitize_options - sanitize GVT related options |
| 55 | * @dev_priv: drm i915 private data |
| 56 | * |
| 57 | * This function is called at the i915 options sanitize stage. |
| 58 | */ |
| 59 | void intel_gvt_sanitize_options(struct drm_i915_private *dev_priv) |
| 60 | { |
| 61 | if (!i915.enable_gvt) |
| 62 | return; |
| 63 | |
| 64 | if (intel_vgpu_active(dev_priv)) { |
| 65 | DRM_INFO("GVT-g is disabled for guest\n"); |
| 66 | goto bail; |
| 67 | } |
| 68 | |
| 69 | if (!is_supported_device(dev_priv)) { |
| 70 | DRM_INFO("Unsupported device. GVT-g is disabled\n"); |
| 71 | goto bail; |
| 72 | } |
| 73 | |
| 74 | return; |
| 75 | bail: |
| 76 | i915.enable_gvt = 0; |
| 77 | } |
| 78 | |
| 79 | /** |
Zhi Wang | 0ad35fe | 2016-06-16 08:07:00 -0400 | [diff] [blame] | 80 | * intel_gvt_init - initialize GVT components |
| 81 | * @dev_priv: drm i915 private data |
| 82 | * |
| 83 | * This function is called at the initialization stage to create a GVT device. |
| 84 | * |
| 85 | * Returns: |
| 86 | * Zero on success, negative error code if failed. |
| 87 | * |
| 88 | */ |
| 89 | int intel_gvt_init(struct drm_i915_private *dev_priv) |
| 90 | { |
| 91 | int ret; |
| 92 | |
| 93 | if (!i915.enable_gvt) { |
| 94 | DRM_DEBUG_DRIVER("GVT-g is disabled by kernel params\n"); |
| 95 | return 0; |
| 96 | } |
| 97 | |
Chuanxiao Dong | cf2135c | 2017-03-09 23:07:12 +0800 | [diff] [blame] | 98 | if (!i915.enable_execlists) { |
Chuanxiao Dong | 36ccc4f | 2017-05-27 17:44:18 +0800 | [diff] [blame] | 99 | DRM_ERROR("i915 GVT-g loading failed due to disabled execlists mode\n"); |
| 100 | return -EIO; |
Chuanxiao Dong | cf2135c | 2017-03-09 23:07:12 +0800 | [diff] [blame] | 101 | } |
| 102 | |
Chuanxiao Dong | ecef814 | 2017-05-27 17:44:19 +0800 | [diff] [blame] | 103 | if (i915.enable_guc_submission) { |
| 104 | DRM_ERROR("i915 GVT-g loading failed due to Graphics virtualization is not yet supported with GuC submission\n"); |
| 105 | return -EIO; |
| 106 | } |
| 107 | |
Zhi Wang | 0ad35fe | 2016-06-16 08:07:00 -0400 | [diff] [blame] | 108 | /* |
| 109 | * We're not in host or fail to find a MPT module, disable GVT-g |
| 110 | */ |
| 111 | ret = intel_gvt_init_host(); |
| 112 | if (ret) { |
| 113 | DRM_DEBUG_DRIVER("Not in host or MPT modules not found\n"); |
Chris Wilson | 7822492 | 2016-06-21 12:04:21 +0100 | [diff] [blame] | 114 | goto bail; |
Zhi Wang | 0ad35fe | 2016-06-16 08:07:00 -0400 | [diff] [blame] | 115 | } |
| 116 | |
| 117 | ret = intel_gvt_init_device(dev_priv); |
| 118 | if (ret) { |
| 119 | DRM_DEBUG_DRIVER("Fail to init GVT device\n"); |
Chris Wilson | 7822492 | 2016-06-21 12:04:21 +0100 | [diff] [blame] | 120 | goto bail; |
Zhi Wang | 0ad35fe | 2016-06-16 08:07:00 -0400 | [diff] [blame] | 121 | } |
| 122 | |
| 123 | return 0; |
Chris Wilson | 7822492 | 2016-06-21 12:04:21 +0100 | [diff] [blame] | 124 | |
| 125 | bail: |
| 126 | i915.enable_gvt = 0; |
| 127 | return 0; |
Zhi Wang | 0ad35fe | 2016-06-16 08:07:00 -0400 | [diff] [blame] | 128 | } |
| 129 | |
| 130 | /** |
| 131 | * intel_gvt_cleanup - cleanup GVT components when i915 driver is unloading |
| 132 | * @dev_priv: drm i915 private * |
| 133 | * |
| 134 | * This function is called at the i915 driver unloading stage, to shutdown |
| 135 | * GVT components and release the related resources. |
| 136 | */ |
| 137 | void intel_gvt_cleanup(struct drm_i915_private *dev_priv) |
| 138 | { |
| 139 | if (!intel_gvt_active(dev_priv)) |
| 140 | return; |
| 141 | |
| 142 | intel_gvt_clean_device(dev_priv); |
| 143 | } |