diff options
author | Guo Yejun <yejun.guo@intel.com> | 2014-11-07 16:18:54 +0800 |
---|---|---|
committer | Zhigang Gong <zhigang.gong@intel.com> | 2014-11-07 15:50:41 +0800 |
commit | 075390db926de7bfd2ac853404ab1bcfc8b9c650 (patch) | |
tree | 9f70873dae000f4374025cfd27b3714562242b4d /src/cl_api.c | |
parent | 54594b626c31a68956af97f69dc29132dc545f7c (diff) |
support CL_MEM_USE_HOST_PTR with userptr for cl buffer
userptr is used to wrap a memory pointer (page aligned) supplied
by user space into a buffer object accessed by GPU, and so no extra
copy is needed. It is supported starting from linux kernel 3.16
and libdrm 2.4.58.
This patch is originally finished by Zhenyu Wang <zhenyuw@linux.intel.com>,
I did a little change and some code clean.
No regression issue found on IVB+Ubuntu14.10 with libdrm upgraded with tests:
beignet/utests, piglit, OpenCV/test&perf, conformance/basic&mem_host_flags&buffers
V2: add page align limit for data size, add comments for kernel without MMU_NOTIFIER
V3: add runtime check with host_unified_memory, return CL_MEM_OBJECT_ALLOCATION_FAILURE if failed
Signed-off-by: Guo Yejun <yejun.guo@intel.com>
Reviewed-by: Zhigang Gong <zhigang.gong@linux.intel.com>
Reviewed-by: Zhenyu Wang <zhenyuw@linux.intel.com>
Diffstat (limited to 'src/cl_api.c')
-rw-r--r-- | src/cl_api.c | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/src/cl_api.c b/src/cl_api.c index 05d30933..1f246386 100644 --- a/src/cl_api.c +++ b/src/cl_api.c @@ -2665,9 +2665,13 @@ clEnqueueMapBuffer(cl_command_queue command_queue, ptr = data->ptr; if(event) cl_event_set_status(*event, CL_COMPLETE); } else { - if ((ptr = cl_mem_map_gtt_unsync(buffer)) == NULL) { - err = CL_MAP_FAILURE; - goto error; + if (buffer->is_userptr) + ptr = buffer->host_ptr; + else { + if ((ptr = cl_mem_map_gtt_unsync(buffer)) == NULL) { + err = CL_MAP_FAILURE; + goto error; + } } } err = _cl_map_mem(buffer, ptr, &mem_ptr, offset, size, NULL, NULL); |