panfrost: Implement panfrost_set_global_binding

This is enough OpenCL support to pass the Piglit test
cl-custom-run-simple-kernel with PAN_MESA_DEBUG=deqp.

Reviewed-by: Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/9380>
This commit is contained in:
Icecream95
2020-12-22 23:16:34 +13:00
committed by Marge Bot
parent 27b5ee5d7a
commit 80b90a0f2b

View File

@@ -176,7 +176,21 @@ panfrost_set_global_binding(struct pipe_context *pctx,
struct pipe_resource **resources,
uint32_t **handles)
{
/* TODO */
if (!resources)
return;
struct panfrost_context *ctx = pan_context(pctx);
struct panfrost_batch *batch = panfrost_get_batch_for_fbo(ctx);
for (unsigned i = first; i < first + count; ++i) {
struct panfrost_resource *rsrc = pan_resource(resources[i]);
panfrost_batch_add_bo(batch, rsrc->bo,
PAN_BO_ACCESS_SHARED | PAN_BO_ACCESS_RW);
/* The handle points to uint32_t, but space is allocated for 64 bits */
memcpy(handles[i], &rsrc->bo->ptr.gpu, sizeof(mali_ptr));
}
}
static void