intel_gvt.c 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  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. #include "i915_drv.h"
  24. #include "intel_gvt.h"
  25. /**
  26. * DOC: Intel GVT-g host support
  27. *
  28. * Intel GVT-g is a graphics virtualization technology which shares the
  29. * GPU among multiple virtual machines on a time-sharing basis. Each
  30. * virtual machine is presented a virtual GPU (vGPU), which has equivalent
  31. * features as the underlying physical GPU (pGPU), so i915 driver can run
  32. * seamlessly in a virtual machine.
  33. *
  34. * To virtualize GPU resources GVT-g driver depends on hypervisor technology
  35. * e.g KVM/VFIO/mdev, Xen, etc. to provide resource access trapping capability
  36. * and be virtualized within GVT-g device module. More architectural design
  37. * doc is available on https://01.org/group/2230/documentation-list.
  38. */
  39. static bool is_supported_device(struct drm_i915_private *dev_priv)
  40. {
  41. if (IS_BROADWELL(dev_priv))
  42. return true;
  43. if (IS_SKYLAKE(dev_priv))
  44. return true;
  45. if (IS_KABYLAKE(dev_priv))
  46. return true;
  47. if (IS_BROXTON(dev_priv))
  48. return true;
  49. return false;
  50. }
  51. /**
  52. * intel_gvt_sanitize_options - sanitize GVT related options
  53. * @dev_priv: drm i915 private data
  54. *
  55. * This function is called at the i915 options sanitize stage.
  56. */
  57. void intel_gvt_sanitize_options(struct drm_i915_private *dev_priv)
  58. {
  59. if (!i915_modparams.enable_gvt)
  60. return;
  61. if (intel_vgpu_active(dev_priv)) {
  62. DRM_INFO("GVT-g is disabled for guest\n");
  63. goto bail;
  64. }
  65. if (!is_supported_device(dev_priv)) {
  66. DRM_INFO("Unsupported device. GVT-g is disabled\n");
  67. goto bail;
  68. }
  69. return;
  70. bail:
  71. i915_modparams.enable_gvt = 0;
  72. }
  73. /**
  74. * intel_gvt_init - initialize GVT components
  75. * @dev_priv: drm i915 private data
  76. *
  77. * This function is called at the initialization stage to create a GVT device.
  78. *
  79. * Returns:
  80. * Zero on success, negative error code if failed.
  81. *
  82. */
  83. int intel_gvt_init(struct drm_i915_private *dev_priv)
  84. {
  85. int ret;
  86. if (i915_inject_load_failure())
  87. return -ENODEV;
  88. if (!i915_modparams.enable_gvt) {
  89. DRM_DEBUG_DRIVER("GVT-g is disabled by kernel params\n");
  90. return 0;
  91. }
  92. if (USES_GUC_SUBMISSION(dev_priv)) {
  93. DRM_ERROR("i915 GVT-g loading failed due to Graphics virtualization is not yet supported with GuC submission\n");
  94. return -EIO;
  95. }
  96. /*
  97. * We're not in host or fail to find a MPT module, disable GVT-g
  98. */
  99. ret = intel_gvt_init_host();
  100. if (ret) {
  101. DRM_DEBUG_DRIVER("Not in host or MPT modules not found\n");
  102. goto bail;
  103. }
  104. ret = intel_gvt_init_device(dev_priv);
  105. if (ret) {
  106. DRM_DEBUG_DRIVER("Fail to init GVT device\n");
  107. goto bail;
  108. }
  109. return 0;
  110. bail:
  111. i915_modparams.enable_gvt = 0;
  112. return 0;
  113. }
  114. /**
  115. * intel_gvt_cleanup - cleanup GVT components when i915 driver is unloading
  116. * @dev_priv: drm i915 private *
  117. *
  118. * This function is called at the i915 driver unloading stage, to shutdown
  119. * GVT components and release the related resources.
  120. */
  121. void intel_gvt_cleanup(struct drm_i915_private *dev_priv)
  122. {
  123. if (!intel_gvt_active(dev_priv))
  124. return;
  125. intel_gvt_clean_device(dev_priv);
  126. }