blob: 7af8044c2d75f7e36c3e45e8eaea247b0af0787d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
/* Public domain. */
#ifndef _LINUX_DMA_FENCE_ARRAY_H
#define _LINUX_DMA_FENCE_ARRAY_H
#include <linux/dma-fence.h>
#include <linux/irq_work.h>
struct dma_fence_array_cb {
struct dma_fence_cb cb;
struct dma_fence_array *array;
};
struct dma_fence_array {
struct dma_fence base;
unsigned int num_fences;
struct dma_fence **fences;
struct mutex lock;
struct irq_work work;
int num_pending;
};
extern const struct dma_fence_ops dma_fence_array_ops;
static inline struct dma_fence_array *
to_dma_fence_array(struct dma_fence *fence)
{
if (fence->ops != &dma_fence_array_ops)
return NULL;
return container_of(fence, struct dma_fence_array, base);
}
static inline bool
dma_fence_is_array(struct dma_fence *fence)
{
return fence->ops == &dma_fence_array_ops;
}
struct dma_fence_array *dma_fence_array_create(int, struct dma_fence **,
u64, unsigned, bool);
#endif
|