aboutsummaryrefslogtreecommitdiffstats
path: root/include/uapi/drm
diff options
context:
space:
mode:
authorChristian König <christian.koenig@amd.com>2015-05-19 16:08:02 +0200
committerAlex Deucher <alexander.deucher@amd.com>2015-06-03 21:03:50 -0400
commitdcc357e63727b63995dd869f015a748c9235eb42 (patch)
treefb0232ed8c59bfd5b6507a0581b2a52096ada435 /include/uapi/drm
parentdrm/amdgpu: drop AMDGPU_FENCE_SIGNALED_SEQ (diff)
downloadlinux-dev-dcc357e63727b63995dd869f015a748c9235eb42.tar.xz
linux-dev-dcc357e63727b63995dd869f015a748c9235eb42.zip
drm/amdgpu: drop allocation flag masks
Not needed any more. Signed-off-by: Christian König <christian.koenig@amd.com> Reviewed-by: Alex Deucher <alexander.deucher@amd.com> Reviewed-by: Monk Liu <monk.liu@amd.com>
Diffstat (limited to 'include/uapi/drm')
-rw-r--r--include/uapi/drm/amdgpu_drm.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/include/uapi/drm/amdgpu_drm.h b/include/uapi/drm/amdgpu_drm.h
index d9b9b6f8de2b..64a07ac3b4b9 100644
--- a/include/uapi/drm/amdgpu_drm.h
+++ b/include/uapi/drm/amdgpu_drm.h
@@ -67,8 +67,6 @@
#define AMDGPU_GEM_DOMAIN_GWS 0x10
#define AMDGPU_GEM_DOMAIN_OA 0x20
-#define AMDGPU_GEM_DOMAIN_MASK 0x3F
-
/* Flag that CPU access will be required for the case of VRAM domain */
#define AMDGPU_GEM_CREATE_CPU_ACCESS_REQUIRED (1 << 0)
/* Flag that CPU access will not work, this VRAM domain is invisible */
@@ -76,12 +74,6 @@
/* Flag that USWC attributes should be used for GTT */
#define AMDGPU_GEM_CREATE_CPU_GTT_USWC (1 << 2)
-/* Flag mask for GTT domain_flags */
-#define AMDGPU_GEM_CREATE_CPU_GTT_MASK \
- (AMDGPU_GEM_CREATE_CPU_GTT_USWC | \
- AMDGPU_GEM_CREATE_CPU_ACCESS_REQUIRED | \
- AMDGPU_GEM_CREATE_NO_CPU_ACCESS)
-
struct drm_amdgpu_gem_create_in {
/** the requested memory size */
uint64_t bo_size;