xref: /openbsd/sys/dev/pci/drm/include/drm/task_barrier.h (revision f005ef32)
1 /*
2  * Copyright 2019 Advanced Micro Devices, Inc.
3  *
4  * Permission is hereby granted, free of charge, to any person obtaining a
5  * copy of this software and associated documentation files (the "Software"),
6  * to deal in the Software without restriction, including without limitation
7  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8  * and/or sell copies of the Software, and to permit persons to whom the
9  * Software is furnished to do so, subject to the following conditions:
10  *
11  * The above copyright notice and this permission notice shall be included in
12  * all copies or substantial portions of the Software.
13  *
14  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
17  * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
18  * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
19  * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
20  * OTHER DEALINGS IN THE SOFTWARE.
21  *
22  */
23 #include <linux/semaphore.h>
24 #include <linux/atomic.h>
25 
26 /*
27  * Reusable 2 PHASE task barrier (rendez-vous point) implementation for N tasks.
28  * Based on the Little book of semaphores - https://greenteapress.com/wp/semaphores/
29  */
30 
31 
32 
33 #ifndef DRM_TASK_BARRIER_H_
34 #define DRM_TASK_BARRIER_H_
35 
36 /*
37  * Represents an instance of a task barrier.
38  */
39 struct task_barrier {
40 	unsigned int n;
41 	atomic_t count;
42 	struct semaphore enter_turnstile;
43 	struct semaphore exit_turnstile;
44 };
45 
task_barrier_signal_turnstile(struct semaphore * turnstile,unsigned int n)46 static inline void task_barrier_signal_turnstile(struct semaphore *turnstile,
47 						 unsigned int n)
48 {
49 	STUB();
50 #ifdef notyet
51 	int i;
52 
53 	for (i = 0 ; i < n; i++)
54 		up(turnstile);
55 #endif
56 }
57 
task_barrier_init(struct task_barrier * tb)58 static inline void task_barrier_init(struct task_barrier *tb)
59 {
60 	tb->n = 0;
61 	atomic_set(&tb->count, 0);
62 	STUB();
63 #ifdef notyet
64 	sema_init(&tb->enter_turnstile, 0);
65 	sema_init(&tb->exit_turnstile, 0);
66 #endif
67 }
68 
task_barrier_add_task(struct task_barrier * tb)69 static inline void task_barrier_add_task(struct task_barrier *tb)
70 {
71 	tb->n++;
72 }
73 
task_barrier_rem_task(struct task_barrier * tb)74 static inline void task_barrier_rem_task(struct task_barrier *tb)
75 {
76 	tb->n--;
77 }
78 
79 /*
80  * Lines up all the threads BEFORE the critical point.
81  *
82  * When all thread passed this code the entry barrier is back to locked state.
83  */
task_barrier_enter(struct task_barrier * tb)84 static inline void task_barrier_enter(struct task_barrier *tb)
85 {
86 	if (atomic_inc_return(&tb->count) == tb->n)
87 		task_barrier_signal_turnstile(&tb->enter_turnstile, tb->n);
88 
89 	STUB();
90 #ifdef notyet
91 	down(&tb->enter_turnstile);
92 #endif
93 }
94 
95 /*
96  * Lines up all the threads AFTER the critical point.
97  *
98  * This function is used to avoid any one thread running ahead if the barrier is
99  *  used repeatedly .
100  */
task_barrier_exit(struct task_barrier * tb)101 static inline void task_barrier_exit(struct task_barrier *tb)
102 {
103 	if (atomic_dec_return(&tb->count) == 0)
104 		task_barrier_signal_turnstile(&tb->exit_turnstile, tb->n);
105 
106 	STUB();
107 #ifdef notyet
108 	down(&tb->exit_turnstile);
109 #endif
110 }
111 
112 /* Convinieince function when nothing to be done in between entry and exit */
task_barrier_full(struct task_barrier * tb)113 static inline void task_barrier_full(struct task_barrier *tb)
114 {
115 	task_barrier_enter(tb);
116 	task_barrier_exit(tb);
117 }
118 
119 #endif
120