mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2025-01-23 22:34:21 +08:00
drm/i915/gvt: move the gvt code into kvmgt.ko
Instead of having an option to build the gvt code into the main i915 module, just move it into the kvmgt.ko module. This only requires a new struct with three entries that the KVMGT modules needs to register with the main i915 module, and a proper list of GVT-enabled devices instead of global device pointer. Signed-off-by: Christoph Hellwig <hch@lst.de> Signed-off-by: Zhi Wang <zhi.a.wang@intel.com> Link: http://patchwork.freedesktop.org/patch/msgid/20220411141403.86980-7-hch@lst.de Reviewed-by: Jason Gunthorpe <jgg@nvidia.com> Reviewed-by: Zhi Wang <zhi.a.wang@intel.com>
This commit is contained in:
parent
f49fc35799
commit
8b750bf744
@ -102,40 +102,30 @@ config DRM_I915_USERPTR
|
||||
If in doubt, say "Y".
|
||||
|
||||
config DRM_I915_GVT
|
||||
bool "Enable Intel GVT-g graphics virtualization host support"
|
||||
bool
|
||||
|
||||
config DRM_I915_GVT_KVMGT
|
||||
tristate "Enable KVM host support Intel GVT-g graphics virtualization"
|
||||
depends on DRM_I915
|
||||
depends on X86
|
||||
depends on 64BIT
|
||||
default n
|
||||
depends on KVM
|
||||
depends on VFIO_MDEV
|
||||
select DRM_I915_GVT
|
||||
select KVM_EXTERNAL_WRITE_TRACKING
|
||||
|
||||
help
|
||||
Choose this option if you want to enable Intel GVT-g graphics
|
||||
virtualization technology host support with integrated graphics.
|
||||
With GVT-g, it's possible to have one integrated graphics
|
||||
device shared by multiple VMs under different hypervisors.
|
||||
device shared by multiple VMs under KVM.
|
||||
|
||||
Note that at least one hypervisor like Xen or KVM is required for
|
||||
this driver to work, and it only supports newer device from
|
||||
Broadwell+. For further information and setup guide, you can
|
||||
visit: http://01.org/igvt-g.
|
||||
|
||||
Now it's just a stub to support the modifications of i915 for
|
||||
GVT device model. It requires at least one MPT modules for Xen/KVM
|
||||
and other components of GVT device model to work. Use it under
|
||||
you own risk.
|
||||
Note that this driver only supports newer device from Broadwell on.
|
||||
For further information and setup guide, you can visit:
|
||||
http://01.org/igvt-g.
|
||||
|
||||
If in doubt, say "N".
|
||||
|
||||
config DRM_I915_GVT_KVMGT
|
||||
tristate "Enable KVM/VFIO support for Intel GVT-g"
|
||||
depends on DRM_I915_GVT
|
||||
depends on KVM
|
||||
depends on VFIO_MDEV
|
||||
select KVM_EXTERNAL_WRITE_TRACKING
|
||||
default n
|
||||
help
|
||||
Choose this option if you want to enable KVMGT support for
|
||||
Intel GVT-g.
|
||||
|
||||
config DRM_I915_PXP
|
||||
bool "Enable Intel PXP support"
|
||||
depends on DRM_I915
|
||||
|
@ -326,7 +326,7 @@ i915-$(CONFIG_DRM_I915_GVT) += \
|
||||
include $(src)/gvt/Makefile
|
||||
|
||||
obj-$(CONFIG_DRM_I915) += i915.o
|
||||
obj-$(CONFIG_DRM_I915_GVT_KVMGT) += gvt/kvmgt.o
|
||||
obj-$(CONFIG_DRM_I915_GVT_KVMGT) += kvmgt.o
|
||||
|
||||
# header test
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
# SPDX-License-Identifier: GPL-2.0
|
||||
|
||||
i915-$(CONFIG_DRM_I915_GVT) += \
|
||||
kvmgt-$(CONFIG_DRM_I915_GVT) += \
|
||||
gvt/aperture_gm.o \
|
||||
gvt/cfg_space.o \
|
||||
gvt/cmd_parser.o \
|
||||
@ -15,6 +15,7 @@ i915-$(CONFIG_DRM_I915_GVT) += \
|
||||
gvt/gvt.o \
|
||||
gvt/handlers.o \
|
||||
gvt/interrupt.o \
|
||||
gvt/kvmgt.o \
|
||||
gvt/mmio.o \
|
||||
gvt/mmio_context.o \
|
||||
gvt/opregion.o \
|
||||
|
@ -39,8 +39,6 @@
|
||||
#include <linux/vfio.h>
|
||||
#include <linux/mdev.h>
|
||||
|
||||
struct intel_gvt_host intel_gvt_host;
|
||||
|
||||
static const struct intel_gvt_ops intel_gvt_ops = {
|
||||
.emulate_cfg_read = intel_vgpu_emulate_cfg_read,
|
||||
.emulate_cfg_write = intel_vgpu_emulate_cfg_write,
|
||||
@ -147,13 +145,14 @@ static int init_service_thread(struct intel_gvt *gvt)
|
||||
* resources owned by a GVT device.
|
||||
*
|
||||
*/
|
||||
void intel_gvt_clean_device(struct drm_i915_private *i915)
|
||||
static void intel_gvt_clean_device(struct drm_i915_private *i915)
|
||||
{
|
||||
struct intel_gvt *gvt = fetch_and_zero(&i915->gvt);
|
||||
|
||||
if (drm_WARN_ON(&i915->drm, !gvt))
|
||||
return;
|
||||
|
||||
intel_gvt_hypervisor_host_exit(i915->drm.dev, gvt);
|
||||
intel_gvt_destroy_idle_vgpu(gvt->idle_vgpu);
|
||||
intel_gvt_clean_vgpu_types(gvt);
|
||||
|
||||
@ -181,7 +180,7 @@ void intel_gvt_clean_device(struct drm_i915_private *i915)
|
||||
* Zero on success, negative error code if failed.
|
||||
*
|
||||
*/
|
||||
int intel_gvt_init_device(struct drm_i915_private *i915)
|
||||
static int intel_gvt_init_device(struct drm_i915_private *i915)
|
||||
{
|
||||
struct intel_gvt *gvt;
|
||||
struct intel_vgpu *vgpu;
|
||||
@ -253,11 +252,17 @@ int intel_gvt_init_device(struct drm_i915_private *i915)
|
||||
|
||||
intel_gvt_debugfs_init(gvt);
|
||||
|
||||
ret = intel_gvt_hypervisor_host_init(i915->drm.dev, gvt,
|
||||
&intel_gvt_ops);
|
||||
if (ret)
|
||||
goto out_destroy_idle_vgpu;
|
||||
|
||||
gvt_dbg_core("gvt device initialization is done\n");
|
||||
intel_gvt_host.dev = i915->drm.dev;
|
||||
intel_gvt_host.initialized = true;
|
||||
return 0;
|
||||
|
||||
out_destroy_idle_vgpu:
|
||||
intel_gvt_destroy_idle_vgpu(gvt->idle_vgpu);
|
||||
intel_gvt_debugfs_clean(gvt);
|
||||
out_clean_types:
|
||||
intel_gvt_clean_vgpu_types(gvt);
|
||||
out_clean_thread:
|
||||
@ -281,39 +286,17 @@ out_clean_idr:
|
||||
return ret;
|
||||
}
|
||||
|
||||
int
|
||||
intel_gvt_pm_resume(struct intel_gvt *gvt)
|
||||
static void intel_gvt_pm_resume(struct drm_i915_private *i915)
|
||||
{
|
||||
struct intel_gvt *gvt = i915->gvt;
|
||||
|
||||
intel_gvt_restore_fence(gvt);
|
||||
intel_gvt_restore_mmio(gvt);
|
||||
intel_gvt_restore_ggtt(gvt);
|
||||
return 0;
|
||||
}
|
||||
|
||||
int
|
||||
intel_gvt_register_hypervisor(const struct intel_gvt_mpt *m)
|
||||
{
|
||||
int ret;
|
||||
void *gvt;
|
||||
|
||||
if (!intel_gvt_host.initialized)
|
||||
return -ENODEV;
|
||||
|
||||
intel_gvt_host.mpt = m;
|
||||
gvt = (void *)kdev_to_i915(intel_gvt_host.dev)->gvt;
|
||||
|
||||
ret = intel_gvt_hypervisor_host_init(intel_gvt_host.dev, gvt,
|
||||
&intel_gvt_ops);
|
||||
if (ret < 0)
|
||||
return -ENODEV;
|
||||
return 0;
|
||||
}
|
||||
EXPORT_SYMBOL_GPL(intel_gvt_register_hypervisor);
|
||||
|
||||
void
|
||||
intel_gvt_unregister_hypervisor(void)
|
||||
{
|
||||
void *gvt = (void *)kdev_to_i915(intel_gvt_host.dev)->gvt;
|
||||
intel_gvt_hypervisor_host_exit(intel_gvt_host.dev, gvt);
|
||||
}
|
||||
EXPORT_SYMBOL_GPL(intel_gvt_unregister_hypervisor);
|
||||
const struct intel_vgpu_ops intel_gvt_vgpu_ops = {
|
||||
.init_device = intel_gvt_init_device,
|
||||
.clean_device = intel_gvt_clean_device,
|
||||
.pm_resume = intel_gvt_pm_resume,
|
||||
};
|
||||
|
@ -58,8 +58,6 @@
|
||||
#define GVT_MAX_VGPU 8
|
||||
|
||||
struct intel_gvt_host {
|
||||
struct device *dev;
|
||||
bool initialized;
|
||||
const struct intel_gvt_mpt *mpt;
|
||||
};
|
||||
|
||||
@ -728,9 +726,9 @@ void intel_gvt_debugfs_remove_vgpu(struct intel_vgpu *vgpu);
|
||||
void intel_gvt_debugfs_init(struct intel_gvt *gvt);
|
||||
void intel_gvt_debugfs_clean(struct intel_gvt *gvt);
|
||||
|
||||
int intel_gvt_pm_resume(struct intel_gvt *gvt);
|
||||
|
||||
#include "trace.h"
|
||||
#include "mpt.h"
|
||||
|
||||
extern const struct intel_vgpu_ops intel_gvt_vgpu_ops;
|
||||
|
||||
#endif
|
||||
|
@ -49,8 +49,12 @@
|
||||
#include <drm/drm_edid.h>
|
||||
|
||||
#include "i915_drv.h"
|
||||
#include "intel_gvt.h"
|
||||
#include "gvt.h"
|
||||
|
||||
MODULE_IMPORT_NS(DMA_BUF);
|
||||
MODULE_IMPORT_NS(I915_GVT);
|
||||
|
||||
static const struct intel_gvt_ops *intel_gvt_ops;
|
||||
|
||||
/* helper macros copied from vfio-pci */
|
||||
@ -2242,16 +2246,18 @@ static const struct intel_gvt_mpt kvmgt_mpt = {
|
||||
.is_valid_gfn = kvmgt_is_valid_gfn,
|
||||
};
|
||||
|
||||
struct intel_gvt_host intel_gvt_host = {
|
||||
.mpt = &kvmgt_mpt,
|
||||
};
|
||||
|
||||
static int __init kvmgt_init(void)
|
||||
{
|
||||
if (intel_gvt_register_hypervisor(&kvmgt_mpt) < 0)
|
||||
return -ENODEV;
|
||||
return 0;
|
||||
return intel_gvt_set_ops(&intel_gvt_vgpu_ops);
|
||||
}
|
||||
|
||||
static void __exit kvmgt_exit(void)
|
||||
{
|
||||
intel_gvt_unregister_hypervisor();
|
||||
intel_gvt_clear_ops(&intel_gvt_vgpu_ops);
|
||||
}
|
||||
|
||||
module_init(kvmgt_init);
|
||||
|
@ -394,7 +394,4 @@ static inline bool intel_gvt_hypervisor_is_valid_gfn(
|
||||
return intel_gvt_host.mpt->is_valid_gfn(vgpu->handle, gfn);
|
||||
}
|
||||
|
||||
int intel_gvt_register_hypervisor(const struct intel_gvt_mpt *);
|
||||
void intel_gvt_unregister_hypervisor(void);
|
||||
|
||||
#endif /* _GVT_MPT_H_ */
|
||||
|
@ -468,11 +468,6 @@ static void i915_driver_mmio_release(struct drm_i915_private *dev_priv)
|
||||
pci_dev_put(dev_priv->bridge_dev);
|
||||
}
|
||||
|
||||
static void intel_sanitize_options(struct drm_i915_private *dev_priv)
|
||||
{
|
||||
intel_gvt_sanitize_options(dev_priv);
|
||||
}
|
||||
|
||||
/**
|
||||
* i915_set_dma_info - set all relevant PCI dma info as configured for the
|
||||
* platform
|
||||
@ -566,8 +561,6 @@ static int i915_driver_hw_probe(struct drm_i915_private *dev_priv)
|
||||
}
|
||||
}
|
||||
|
||||
intel_sanitize_options(dev_priv);
|
||||
|
||||
/* needs to be done before ggtt probe */
|
||||
intel_dram_edram_detect(dev_priv);
|
||||
|
||||
|
@ -434,6 +434,7 @@ struct i915_virtual_gpu {
|
||||
u32 caps;
|
||||
u32 *initial_mmio;
|
||||
u8 *initial_cfg_space;
|
||||
struct list_head entry;
|
||||
};
|
||||
|
||||
struct i915_selftest_stash {
|
||||
|
@ -24,7 +24,10 @@
|
||||
#include "i915_drv.h"
|
||||
#include "i915_vgpu.h"
|
||||
#include "intel_gvt.h"
|
||||
#include "gvt/gvt.h"
|
||||
#include "gem/i915_gem_dmabuf.h"
|
||||
#include "gt/intel_context.h"
|
||||
#include "gt/intel_ring.h"
|
||||
#include "gt/shmem_utils.h"
|
||||
|
||||
/**
|
||||
* DOC: Intel GVT-g host support
|
||||
@ -41,6 +44,10 @@
|
||||
* doc is available on https://01.org/group/2230/documentation-list.
|
||||
*/
|
||||
|
||||
static LIST_HEAD(intel_gvt_devices);
|
||||
static const struct intel_vgpu_ops *intel_gvt_ops;
|
||||
static DEFINE_MUTEX(intel_gvt_mutex);
|
||||
|
||||
static bool is_supported_device(struct drm_i915_private *dev_priv)
|
||||
{
|
||||
if (IS_BROADWELL(dev_priv))
|
||||
@ -59,33 +66,6 @@ static bool is_supported_device(struct drm_i915_private *dev_priv)
|
||||
return false;
|
||||
}
|
||||
|
||||
/**
|
||||
* intel_gvt_sanitize_options - sanitize GVT related options
|
||||
* @dev_priv: drm i915 private data
|
||||
*
|
||||
* This function is called at the i915 options sanitize stage.
|
||||
*/
|
||||
void intel_gvt_sanitize_options(struct drm_i915_private *dev_priv)
|
||||
{
|
||||
if (!dev_priv->params.enable_gvt)
|
||||
return;
|
||||
|
||||
if (intel_vgpu_active(dev_priv)) {
|
||||
drm_info(&dev_priv->drm, "GVT-g is disabled for guest\n");
|
||||
goto bail;
|
||||
}
|
||||
|
||||
if (!is_supported_device(dev_priv)) {
|
||||
drm_info(&dev_priv->drm,
|
||||
"Unsupported device. GVT-g is disabled\n");
|
||||
goto bail;
|
||||
}
|
||||
|
||||
return;
|
||||
bail:
|
||||
dev_priv->params.enable_gvt = 0;
|
||||
}
|
||||
|
||||
static void free_initial_hw_state(struct drm_i915_private *dev_priv)
|
||||
{
|
||||
struct i915_virtual_gpu *vgpu = &dev_priv->vgpu;
|
||||
@ -165,6 +145,84 @@ err_mmio:
|
||||
return ret;
|
||||
}
|
||||
|
||||
static void intel_gvt_init_device(struct drm_i915_private *dev_priv)
|
||||
{
|
||||
if (!dev_priv->params.enable_gvt) {
|
||||
drm_dbg(&dev_priv->drm,
|
||||
"GVT-g is disabled by kernel params\n");
|
||||
return;
|
||||
}
|
||||
|
||||
if (intel_vgpu_active(dev_priv)) {
|
||||
drm_info(&dev_priv->drm, "GVT-g is disabled for guest\n");
|
||||
return;
|
||||
}
|
||||
|
||||
if (!is_supported_device(dev_priv)) {
|
||||
drm_info(&dev_priv->drm,
|
||||
"Unsupported device. GVT-g is disabled\n");
|
||||
return;
|
||||
}
|
||||
|
||||
if (intel_uc_wants_guc_submission(&to_gt(dev_priv)->uc)) {
|
||||
drm_err(&dev_priv->drm,
|
||||
"Graphics virtualization is not yet supported with GuC submission\n");
|
||||
return;
|
||||
}
|
||||
|
||||
if (save_initial_hw_state(dev_priv)) {
|
||||
drm_dbg(&dev_priv->drm, "Failed to save initial HW state\n");
|
||||
return;
|
||||
}
|
||||
|
||||
if (intel_gvt_ops->init_device(dev_priv))
|
||||
drm_dbg(&dev_priv->drm, "Fail to init GVT device\n");
|
||||
}
|
||||
|
||||
static void intel_gvt_clean_device(struct drm_i915_private *dev_priv)
|
||||
{
|
||||
if (dev_priv->gvt)
|
||||
intel_gvt_ops->clean_device(dev_priv);
|
||||
free_initial_hw_state(dev_priv);
|
||||
}
|
||||
|
||||
int intel_gvt_set_ops(const struct intel_vgpu_ops *ops)
|
||||
{
|
||||
struct drm_i915_private *dev_priv;
|
||||
|
||||
mutex_lock(&intel_gvt_mutex);
|
||||
if (intel_gvt_ops) {
|
||||
mutex_unlock(&intel_gvt_mutex);
|
||||
return -EINVAL;
|
||||
}
|
||||
intel_gvt_ops = ops;
|
||||
|
||||
list_for_each_entry(dev_priv, &intel_gvt_devices, vgpu.entry)
|
||||
intel_gvt_init_device(dev_priv);
|
||||
mutex_unlock(&intel_gvt_mutex);
|
||||
|
||||
return 0;
|
||||
}
|
||||
EXPORT_SYMBOL_NS_GPL(intel_gvt_set_ops, I915_GVT);
|
||||
|
||||
void intel_gvt_clear_ops(const struct intel_vgpu_ops *ops)
|
||||
{
|
||||
struct drm_i915_private *dev_priv;
|
||||
|
||||
mutex_lock(&intel_gvt_mutex);
|
||||
if (intel_gvt_ops != ops) {
|
||||
mutex_unlock(&intel_gvt_mutex);
|
||||
return;
|
||||
}
|
||||
|
||||
list_for_each_entry(dev_priv, &intel_gvt_devices, vgpu.entry)
|
||||
intel_gvt_clean_device(dev_priv);
|
||||
|
||||
intel_gvt_ops = NULL;
|
||||
mutex_unlock(&intel_gvt_mutex);
|
||||
}
|
||||
EXPORT_SYMBOL_NS_GPL(intel_gvt_clear_ops, I915_GVT);
|
||||
|
||||
/**
|
||||
* intel_gvt_init - initialize GVT components
|
||||
* @dev_priv: drm i915 private data
|
||||
@ -177,47 +235,16 @@ err_mmio:
|
||||
*/
|
||||
int intel_gvt_init(struct drm_i915_private *dev_priv)
|
||||
{
|
||||
int ret;
|
||||
|
||||
if (i915_inject_probe_failure(dev_priv))
|
||||
return -ENODEV;
|
||||
|
||||
if (!dev_priv->params.enable_gvt) {
|
||||
drm_dbg(&dev_priv->drm,
|
||||
"GVT-g is disabled by kernel params\n");
|
||||
return 0;
|
||||
}
|
||||
|
||||
if (intel_uc_wants_guc_submission(&to_gt(dev_priv)->uc)) {
|
||||
drm_err(&dev_priv->drm,
|
||||
"i915 GVT-g loading failed due to Graphics virtualization is not yet supported with GuC submission\n");
|
||||
return -EIO;
|
||||
}
|
||||
|
||||
ret = save_initial_hw_state(dev_priv);
|
||||
if (ret) {
|
||||
drm_dbg(&dev_priv->drm, "Fail to save initial HW state\n");
|
||||
goto err_save_hw_state;
|
||||
}
|
||||
|
||||
ret = intel_gvt_init_device(dev_priv);
|
||||
if (ret) {
|
||||
drm_dbg(&dev_priv->drm, "Fail to init GVT device\n");
|
||||
goto err_init_device;
|
||||
}
|
||||
mutex_lock(&intel_gvt_mutex);
|
||||
list_add_tail(&dev_priv->vgpu.entry, &intel_gvt_devices);
|
||||
if (intel_gvt_ops)
|
||||
intel_gvt_init_device(dev_priv);
|
||||
mutex_unlock(&intel_gvt_mutex);
|
||||
|
||||
return 0;
|
||||
|
||||
err_init_device:
|
||||
free_initial_hw_state(dev_priv);
|
||||
err_save_hw_state:
|
||||
dev_priv->params.enable_gvt = 0;
|
||||
return 0;
|
||||
}
|
||||
|
||||
static inline bool intel_gvt_active(struct drm_i915_private *dev_priv)
|
||||
{
|
||||
return dev_priv->gvt;
|
||||
}
|
||||
|
||||
/**
|
||||
@ -230,11 +257,10 @@ static inline bool intel_gvt_active(struct drm_i915_private *dev_priv)
|
||||
*/
|
||||
void intel_gvt_driver_remove(struct drm_i915_private *dev_priv)
|
||||
{
|
||||
if (!intel_gvt_active(dev_priv))
|
||||
return;
|
||||
|
||||
mutex_lock(&intel_gvt_mutex);
|
||||
intel_gvt_clean_device(dev_priv);
|
||||
free_initial_hw_state(dev_priv);
|
||||
list_del(&dev_priv->vgpu.entry);
|
||||
mutex_unlock(&intel_gvt_mutex);
|
||||
}
|
||||
|
||||
/**
|
||||
@ -247,6 +273,46 @@ void intel_gvt_driver_remove(struct drm_i915_private *dev_priv)
|
||||
*/
|
||||
void intel_gvt_resume(struct drm_i915_private *dev_priv)
|
||||
{
|
||||
if (intel_gvt_active(dev_priv))
|
||||
intel_gvt_pm_resume(dev_priv->gvt);
|
||||
mutex_lock(&intel_gvt_mutex);
|
||||
if (dev_priv->gvt)
|
||||
intel_gvt_ops->pm_resume(dev_priv);
|
||||
mutex_unlock(&intel_gvt_mutex);
|
||||
}
|
||||
|
||||
/*
|
||||
* Exported here so that the exports only get created when GVT support is
|
||||
* actually enabled.
|
||||
*/
|
||||
EXPORT_SYMBOL_NS_GPL(i915_gem_object_alloc, I915_GVT);
|
||||
EXPORT_SYMBOL_NS_GPL(i915_gem_object_create_shmem, I915_GVT);
|
||||
EXPORT_SYMBOL_NS_GPL(i915_gem_object_init, I915_GVT);
|
||||
EXPORT_SYMBOL_NS_GPL(i915_gem_object_ggtt_pin_ww, I915_GVT);
|
||||
EXPORT_SYMBOL_NS_GPL(i915_gem_object_pin_map, I915_GVT);
|
||||
EXPORT_SYMBOL_NS_GPL(i915_gem_object_set_to_cpu_domain, I915_GVT);
|
||||
EXPORT_SYMBOL_NS_GPL(__i915_gem_object_flush_map, I915_GVT);
|
||||
EXPORT_SYMBOL_NS_GPL(__i915_gem_object_set_pages, I915_GVT);
|
||||
EXPORT_SYMBOL_NS_GPL(i915_gem_gtt_insert, I915_GVT);
|
||||
EXPORT_SYMBOL_NS_GPL(i915_gem_prime_export, I915_GVT);
|
||||
EXPORT_SYMBOL_NS_GPL(i915_gem_ww_ctx_init, I915_GVT);
|
||||
EXPORT_SYMBOL_NS_GPL(i915_gem_ww_ctx_backoff, I915_GVT);
|
||||
EXPORT_SYMBOL_NS_GPL(i915_gem_ww_ctx_fini, I915_GVT);
|
||||
EXPORT_SYMBOL_NS_GPL(i915_ppgtt_create, I915_GVT);
|
||||
EXPORT_SYMBOL_NS_GPL(i915_request_add, I915_GVT);
|
||||
EXPORT_SYMBOL_NS_GPL(i915_request_create, I915_GVT);
|
||||
EXPORT_SYMBOL_NS_GPL(i915_request_wait, I915_GVT);
|
||||
EXPORT_SYMBOL_NS_GPL(i915_reserve_fence, I915_GVT);
|
||||
EXPORT_SYMBOL_NS_GPL(i915_unreserve_fence, I915_GVT);
|
||||
EXPORT_SYMBOL_NS_GPL(i915_vm_release, I915_GVT);
|
||||
EXPORT_SYMBOL_NS_GPL(_i915_vma_move_to_active, I915_GVT);
|
||||
EXPORT_SYMBOL_NS_GPL(intel_context_create, I915_GVT);
|
||||
EXPORT_SYMBOL_NS_GPL(__intel_context_do_pin, I915_GVT);
|
||||
EXPORT_SYMBOL_NS_GPL(__intel_context_do_unpin, I915_GVT);
|
||||
EXPORT_SYMBOL_NS_GPL(intel_ring_begin, I915_GVT);
|
||||
EXPORT_SYMBOL_NS_GPL(intel_runtime_pm_get, I915_GVT);
|
||||
EXPORT_SYMBOL_NS_GPL(intel_runtime_pm_put_unchecked, I915_GVT);
|
||||
EXPORT_SYMBOL_NS_GPL(intel_uncore_forcewake_for_reg, I915_GVT);
|
||||
EXPORT_SYMBOL_NS_GPL(intel_uncore_forcewake_get, I915_GVT);
|
||||
EXPORT_SYMBOL_NS_GPL(intel_uncore_forcewake_put, I915_GVT);
|
||||
EXPORT_SYMBOL_NS_GPL(shmem_pin_map, I915_GVT);
|
||||
EXPORT_SYMBOL_NS_GPL(shmem_unpin_map, I915_GVT);
|
||||
EXPORT_SYMBOL_NS_GPL(__px_dma, I915_GVT);
|
||||
|
@ -39,12 +39,19 @@ struct intel_gvt_mmio_table_iter {
|
||||
|
||||
int intel_gvt_init(struct drm_i915_private *dev_priv);
|
||||
void intel_gvt_driver_remove(struct drm_i915_private *dev_priv);
|
||||
int intel_gvt_init_device(struct drm_i915_private *dev_priv);
|
||||
void intel_gvt_clean_device(struct drm_i915_private *dev_priv);
|
||||
int intel_gvt_init_host(void);
|
||||
void intel_gvt_sanitize_options(struct drm_i915_private *dev_priv);
|
||||
void intel_gvt_resume(struct drm_i915_private *dev_priv);
|
||||
int intel_gvt_iterate_mmio_table(struct intel_gvt_mmio_table_iter *iter);
|
||||
|
||||
struct intel_vgpu_ops {
|
||||
int (*init_device)(struct drm_i915_private *dev_priv);
|
||||
void (*clean_device)(struct drm_i915_private *dev_priv);
|
||||
void (*pm_resume)(struct drm_i915_private *i915);
|
||||
};
|
||||
|
||||
int intel_gvt_set_ops(const struct intel_vgpu_ops *ops);
|
||||
void intel_gvt_clear_ops(const struct intel_vgpu_ops *ops);
|
||||
|
||||
#else
|
||||
static inline int intel_gvt_init(struct drm_i915_private *dev_priv)
|
||||
{
|
||||
@ -55,10 +62,6 @@ static inline void intel_gvt_driver_remove(struct drm_i915_private *dev_priv)
|
||||
{
|
||||
}
|
||||
|
||||
static inline void intel_gvt_sanitize_options(struct drm_i915_private *dev_priv)
|
||||
{
|
||||
}
|
||||
|
||||
static inline void intel_gvt_resume(struct drm_i915_private *dev_priv)
|
||||
{
|
||||
}
|
||||
|
@ -1288,3 +1288,4 @@ int intel_gvt_iterate_mmio_table(struct intel_gvt_mmio_table_iter *iter)
|
||||
err:
|
||||
return ret;
|
||||
}
|
||||
EXPORT_SYMBOL_NS_GPL(intel_gvt_iterate_mmio_table, I915_GVT);
|
||||
|
Loading…
Reference in New Issue
Block a user