|
@@ -52,6 +52,7 @@ extern "C" {
|
|
#define DRM_AMDGPU_GEM_USERPTR 0x11
|
|
#define DRM_AMDGPU_GEM_USERPTR 0x11
|
|
#define DRM_AMDGPU_WAIT_FENCES 0x12
|
|
#define DRM_AMDGPU_WAIT_FENCES 0x12
|
|
#define DRM_AMDGPU_VM 0x13
|
|
#define DRM_AMDGPU_VM 0x13
|
|
|
|
+#define DRM_AMDGPU_FENCE_TO_HANDLE 0x14
|
|
|
|
|
|
#define DRM_IOCTL_AMDGPU_GEM_CREATE DRM_IOWR(DRM_COMMAND_BASE + DRM_AMDGPU_GEM_CREATE, union drm_amdgpu_gem_create)
|
|
#define DRM_IOCTL_AMDGPU_GEM_CREATE DRM_IOWR(DRM_COMMAND_BASE + DRM_AMDGPU_GEM_CREATE, union drm_amdgpu_gem_create)
|
|
#define DRM_IOCTL_AMDGPU_GEM_MMAP DRM_IOWR(DRM_COMMAND_BASE + DRM_AMDGPU_GEM_MMAP, union drm_amdgpu_gem_mmap)
|
|
#define DRM_IOCTL_AMDGPU_GEM_MMAP DRM_IOWR(DRM_COMMAND_BASE + DRM_AMDGPU_GEM_MMAP, union drm_amdgpu_gem_mmap)
|
|
@@ -67,6 +68,7 @@ extern "C" {
|
|
#define DRM_IOCTL_AMDGPU_GEM_USERPTR DRM_IOWR(DRM_COMMAND_BASE + DRM_AMDGPU_GEM_USERPTR, struct drm_amdgpu_gem_userptr)
|
|
#define DRM_IOCTL_AMDGPU_GEM_USERPTR DRM_IOWR(DRM_COMMAND_BASE + DRM_AMDGPU_GEM_USERPTR, struct drm_amdgpu_gem_userptr)
|
|
#define DRM_IOCTL_AMDGPU_WAIT_FENCES DRM_IOWR(DRM_COMMAND_BASE + DRM_AMDGPU_WAIT_FENCES, union drm_amdgpu_wait_fences)
|
|
#define DRM_IOCTL_AMDGPU_WAIT_FENCES DRM_IOWR(DRM_COMMAND_BASE + DRM_AMDGPU_WAIT_FENCES, union drm_amdgpu_wait_fences)
|
|
#define DRM_IOCTL_AMDGPU_VM DRM_IOWR(DRM_COMMAND_BASE + DRM_AMDGPU_VM, union drm_amdgpu_vm)
|
|
#define DRM_IOCTL_AMDGPU_VM DRM_IOWR(DRM_COMMAND_BASE + DRM_AMDGPU_VM, union drm_amdgpu_vm)
|
|
|
|
+#define DRM_IOCTL_AMDGPU_FENCE_TO_HANDLE DRM_IOWR(DRM_COMMAND_BASE + DRM_AMDGPU_FENCE_TO_HANDLE, union drm_amdgpu_fence_to_handle)
|
|
|
|
|
|
#define AMDGPU_GEM_DOMAIN_CPU 0x1
|
|
#define AMDGPU_GEM_DOMAIN_CPU 0x1
|
|
#define AMDGPU_GEM_DOMAIN_GTT 0x2
|
|
#define AMDGPU_GEM_DOMAIN_GTT 0x2
|
|
@@ -515,6 +517,20 @@ struct drm_amdgpu_cs_chunk_sem {
|
|
__u32 handle;
|
|
__u32 handle;
|
|
};
|
|
};
|
|
|
|
|
|
|
|
+#define AMDGPU_FENCE_TO_HANDLE_GET_SYNCOBJ 0
|
|
|
|
+#define AMDGPU_FENCE_TO_HANDLE_GET_SYNCOBJ_FD 1
|
|
|
|
+#define AMDGPU_FENCE_TO_HANDLE_GET_SYNC_FILE_FD 2
|
|
|
|
+
|
|
|
|
+union drm_amdgpu_fence_to_handle {
|
|
|
|
+ struct {
|
|
|
|
+ struct drm_amdgpu_fence fence;
|
|
|
|
+ __u32 what;
|
|
|
|
+ } in;
|
|
|
|
+ struct {
|
|
|
|
+ __u32 handle;
|
|
|
|
+ } out;
|
|
|
|
+};
|
|
|
|
+
|
|
struct drm_amdgpu_cs_chunk_data {
|
|
struct drm_amdgpu_cs_chunk_data {
|
|
union {
|
|
union {
|
|
struct drm_amdgpu_cs_chunk_ib ib_data;
|
|
struct drm_amdgpu_cs_chunk_ib ib_data;
|