diff options
author | 2025-03-05 17:26:38 -0800 | |
---|---|---|
committer | 2025-03-06 11:35:42 -0800 | |
commit | e53c1e263e5c6e22120390c4a4a335a0e3f9ac13 (patch) | |
tree | 3b3f20da99357446c76b629e427732b5d02e67a6 | |
parent | drm/xe: Add SVM range invalidation and page fault (diff) | |
download | wireguard-linux-e53c1e263e5c6e22120390c4a4a335a0e3f9ac13.tar.xz wireguard-linux-e53c1e263e5c6e22120390c4a4a335a0e3f9ac13.zip |
drm/gpuvm: Add DRM_GPUVA_OP_DRIVER
Add DRM_GPUVA_OP_DRIVER which allows driver to define their own gpuvm
ops. Useful for driver created ops which can be passed into the bind
software pipeline.
v3:
- s/DRM_GPUVA_OP_USER/DRM_GPUVA_OP_DRIVER (Thomas)
- Better commit message (Thomas)
Cc: Danilo Krummrich <dakr@redhat.com>
Signed-off-by: Matthew Brost <matthew.brost@intel.com>
Reviewed-by: Thomas Hellström <thomas.hellstrom@linux.intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20250306012657.3505757-14-matthew.brost@intel.com
-rw-r--r-- | include/drm/drm_gpuvm.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/drm/drm_gpuvm.h b/include/drm/drm_gpuvm.h index 00d4e43b76b6..2a9629377633 100644 --- a/include/drm/drm_gpuvm.h +++ b/include/drm/drm_gpuvm.h @@ -812,6 +812,11 @@ enum drm_gpuva_op_type { * @DRM_GPUVA_OP_PREFETCH: the prefetch op type */ DRM_GPUVA_OP_PREFETCH, + + /** + * @DRM_GPUVA_OP_DRIVER: the driver defined op type + */ + DRM_GPUVA_OP_DRIVER, }; /** |