diff options
author | Junwei Zhang <Jerry.Zhang@amd.com> | 2017-01-16 00:59:01 -0500 |
---|---|---|
committer | Alex Deucher <alexander.deucher@amd.com> | 2017-03-29 23:52:56 -0400 |
commit | b85891bd6d1bf887b3398f4c44b7a30b37f4485e (patch) | |
tree | cdc0d0f596927a2c869866bcbfd29007e5ce44d1 /include | |
parent | 284710fa6c3a5fddbc0f8c6b3a07861a312c18d2 (diff) |
drm/amdgpu: IOCTL interface for PRT support v4
Till GFX8 we can only enable PRT support globally, but with the next hardware
generation we can do this on a per page basis.
Keep the interface consistent by adding PRT mappings and enable
support globally on current hardware when the first mapping is made.
v2: disable PRT support delayed and on all error paths
v3: PRT and other permissions are mutal exclusive,
PRT mappings don't need a BO.
v4: update PRT mappings durign CS as well, make va_flags 64bit
Signed-off-by: Junwei Zhang <Jerry.Zhang@amd.com>
Signed-off-by: Christian König <christian.koenig@amd.com>
Reviewed-by: Nicolai Hähnle <nicolai.haehnle@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/uapi/drm/amdgpu_drm.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/uapi/drm/amdgpu_drm.h b/include/uapi/drm/amdgpu_drm.h index 5797283c2d79..1c0ddf71193e 100644 --- a/include/uapi/drm/amdgpu_drm.h +++ b/include/uapi/drm/amdgpu_drm.h | |||
@@ -361,6 +361,8 @@ struct drm_amdgpu_gem_op { | |||
361 | #define AMDGPU_VM_PAGE_WRITEABLE (1 << 2) | 361 | #define AMDGPU_VM_PAGE_WRITEABLE (1 << 2) |
362 | /* executable mapping, new for VI */ | 362 | /* executable mapping, new for VI */ |
363 | #define AMDGPU_VM_PAGE_EXECUTABLE (1 << 3) | 363 | #define AMDGPU_VM_PAGE_EXECUTABLE (1 << 3) |
364 | /* partially resident texture */ | ||
365 | #define AMDGPU_VM_PAGE_PRT (1 << 4) | ||
364 | 366 | ||
365 | struct drm_amdgpu_gem_va { | 367 | struct drm_amdgpu_gem_va { |
366 | /** GEM object handle */ | 368 | /** GEM object handle */ |