diff options
author | Felix Kuehling <Felix.Kuehling@amd.com> | 2017-11-14 16:41:19 -0500 |
---|---|---|
committer | Oded Gabbay <oded.gabbay@gmail.com> | 2017-11-14 16:41:19 -0500 |
commit | 373d7080896a3cb3b28ae3a2abdafb7bb87552b1 (patch) | |
tree | 29bb627b5b9357baa95e661ba35f47ba98d978d0 /include/uapi | |
parent | 449fea612690c3a5ae69d5c09fa7d2ce5773e736 (diff) | |
download | linux-stable-373d7080896a3cb3b28ae3a2abdafb7bb87552b1.tar.gz linux-stable-373d7080896a3cb3b28ae3a2abdafb7bb87552b1.tar.bz2 linux-stable-373d7080896a3cb3b28ae3a2abdafb7bb87552b1.zip |
drm/amdkfd: Add CWSR support
This hardware feature allows the GPU to preempt shader execution in
the middle of a compute wave, save the state and restore it later
to resume execution.
Memory for saving the state is allocated per queue in user mode and
the address and size passed to the create_queue ioctl. The size
depends on the number of waves that can be in flight simultaneously
on a given ASIC.
Signed-off-by: Shaoyun.liu <shaoyun.liu@amd.com>
Signed-off-by: Yong Zhao <yong.zhao@amd.com>
Signed-off-by: Felix Kuehling <Felix.Kuehling@amd.com>
Signed-off-by: Oded Gabbay <oded.gabbay@gmail.com>
Diffstat (limited to 'include/uapi')
-rw-r--r-- | include/uapi/linux/kfd_ioctl.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/uapi/linux/kfd_ioctl.h b/include/uapi/linux/kfd_ioctl.h index 6e80501368ae..f7563ef2e883 100644 --- a/include/uapi/linux/kfd_ioctl.h +++ b/include/uapi/linux/kfd_ioctl.h @@ -58,7 +58,8 @@ struct kfd_ioctl_create_queue_args { __u64 eop_buffer_address; /* to KFD */ __u64 eop_buffer_size; /* to KFD */ __u64 ctx_save_restore_address; /* to KFD */ - __u64 ctx_save_restore_size; /* to KFD */ + __u32 ctx_save_restore_size; /* to KFD */ + __u32 ctl_stack_size; /* to KFD */ }; struct kfd_ioctl_destroy_queue_args { |