1 /* SPDX-License-Identifier: MIT */
3 * Copyright © 2022 Intel Corporation
6 #ifndef _XE_PREEMPT_FENCE_H_
7 #define _XE_PREEMPT_FENCE_H_
9 #include "xe_preempt_fence_types.h"
14 xe_preempt_fence_create(struct xe_exec_queue *q,
15 u64 context, u32 seqno);
17 struct xe_preempt_fence *xe_preempt_fence_alloc(void);
19 void xe_preempt_fence_free(struct xe_preempt_fence *pfence);
22 xe_preempt_fence_arm(struct xe_preempt_fence *pfence, struct xe_exec_queue *q,
23 u64 context, u32 seqno);
25 static inline struct xe_preempt_fence *
26 to_preempt_fence(struct dma_fence *fence)
28 return container_of(fence, struct xe_preempt_fence, base);
32 * xe_preempt_fence_link() - Return a link used to keep unarmed preempt
34 * @pfence: Pointer to the preempt fence.
36 * The link is embedded in the struct xe_preempt_fence. Use
37 * link_to_preempt_fence() to convert back to the preempt fence.
39 * Return: A pointer to an embedded struct list_head.
41 static inline struct list_head *
42 xe_preempt_fence_link(struct xe_preempt_fence *pfence)
48 * to_preempt_fence_from_link() - Convert back to a preempt fence pointer
49 * from a link obtained with xe_preempt_fence_link().
50 * @link: The struct list_head obtained from xe_preempt_fence_link().
52 * Return: A pointer to the embedding struct xe_preempt_fence.
54 static inline struct xe_preempt_fence *
55 to_preempt_fence_from_link(struct list_head *link)
57 return container_of(link, struct xe_preempt_fence, link);
60 bool xe_fence_is_xe_preempt(const struct dma_fence *fence);