| // SPDX-License-Identifier: GPL-2.0+ |
| /* Copyright (C) 2017-2018 Broadcom */ |
| struct dma_fence *v3d_fence_create(struct v3d_dev *v3d, enum v3d_queue queue) |
| fence = kzalloc(sizeof(*fence), GFP_KERNEL); |
| fence->seqno = ++v3d->queue[queue].emit_seqno; |
| dma_fence_init(&fence->base, &v3d_fence_ops, &v3d->job_lock, |
| v3d->queue[queue].fence_context, fence->seqno); |
| static const char *v3d_fence_get_driver_name(struct dma_fence *fence) |
| static const char *v3d_fence_get_timeline_name(struct dma_fence *fence) |
| struct v3d_fence *f = to_v3d_fence(fence); |
| const struct dma_fence_ops v3d_fence_ops = { |
| .get_driver_name = v3d_fence_get_driver_name, |
| .get_timeline_name = v3d_fence_get_timeline_name, |