]> Git Repo - linux.git/blob - drivers/gpu/drm/i915/gt/intel_context.h
Merge tag 'cxl-for-6.0' of git://git.kernel.org/pub/scm/linux/kernel/git/cxl/cxl
[linux.git] / drivers / gpu / drm / i915 / gt / intel_context.h
1 /* SPDX-License-Identifier: MIT */
2 /*
3  * Copyright © 2019 Intel Corporation
4  */
5
6 #ifndef __INTEL_CONTEXT_H__
7 #define __INTEL_CONTEXT_H__
8
9 #include <linux/bitops.h>
10 #include <linux/lockdep.h>
11 #include <linux/types.h>
12
13 #include "i915_active.h"
14 #include "i915_drv.h"
15 #include "intel_context_types.h"
16 #include "intel_engine_types.h"
17 #include "intel_ring_types.h"
18 #include "intel_timeline_types.h"
19 #include "i915_trace.h"
20
21 #define CE_TRACE(ce, fmt, ...) do {                                     \
22         const struct intel_context *ce__ = (ce);                        \
23         ENGINE_TRACE(ce__->engine, "context:%llx " fmt,                 \
24                      ce__->timeline->fence_context,                     \
25                      ##__VA_ARGS__);                                    \
26 } while (0)
27
28 #define INTEL_CONTEXT_BANNED_PREEMPT_TIMEOUT_MS (1)
29
30 struct i915_gem_ww_ctx;
31
32 void intel_context_init(struct intel_context *ce,
33                         struct intel_engine_cs *engine);
34 void intel_context_fini(struct intel_context *ce);
35
36 void i915_context_module_exit(void);
37 int i915_context_module_init(void);
38
39 struct intel_context *
40 intel_context_create(struct intel_engine_cs *engine);
41
42 int intel_context_alloc_state(struct intel_context *ce);
43
44 void intel_context_free(struct intel_context *ce);
45
46 int intel_context_reconfigure_sseu(struct intel_context *ce,
47                                    const struct intel_sseu sseu);
48
49 #define PARENT_SCRATCH_SIZE     PAGE_SIZE
50
51 static inline bool intel_context_is_child(struct intel_context *ce)
52 {
53         return !!ce->parallel.parent;
54 }
55
56 static inline bool intel_context_is_parent(struct intel_context *ce)
57 {
58         return !!ce->parallel.number_children;
59 }
60
61 static inline bool intel_context_is_pinned(struct intel_context *ce);
62
63 static inline struct intel_context *
64 intel_context_to_parent(struct intel_context *ce)
65 {
66         if (intel_context_is_child(ce)) {
67                 /*
68                  * The parent holds ref count to the child so it is always safe
69                  * for the parent to access the child, but the child has a
70                  * pointer to the parent without a ref. To ensure this is safe
71                  * the child should only access the parent pointer while the
72                  * parent is pinned.
73                  */
74                 GEM_BUG_ON(!intel_context_is_pinned(ce->parallel.parent));
75
76                 return ce->parallel.parent;
77         } else {
78                 return ce;
79         }
80 }
81
82 static inline bool intel_context_is_parallel(struct intel_context *ce)
83 {
84         return intel_context_is_child(ce) || intel_context_is_parent(ce);
85 }
86
87 void intel_context_bind_parent_child(struct intel_context *parent,
88                                      struct intel_context *child);
89
90 #define for_each_child(parent, ce)\
91         list_for_each_entry(ce, &(parent)->parallel.child_list,\
92                             parallel.child_link)
93 #define for_each_child_safe(parent, ce, cn)\
94         list_for_each_entry_safe(ce, cn, &(parent)->parallel.child_list,\
95                                  parallel.child_link)
96
97 /**
98  * intel_context_lock_pinned - Stablises the 'pinned' status of the HW context
99  * @ce - the context
100  *
101  * Acquire a lock on the pinned status of the HW context, such that the context
102  * can neither be bound to the GPU or unbound whilst the lock is held, i.e.
103  * intel_context_is_pinned() remains stable.
104  */
105 static inline int intel_context_lock_pinned(struct intel_context *ce)
106         __acquires(ce->pin_mutex)
107 {
108         return mutex_lock_interruptible(&ce->pin_mutex);
109 }
110
111 /**
112  * intel_context_is_pinned - Reports the 'pinned' status
113  * @ce - the context
114  *
115  * While in use by the GPU, the context, along with its ring and page
116  * tables is pinned into memory and the GTT.
117  *
118  * Returns: true if the context is currently pinned for use by the GPU.
119  */
120 static inline bool
121 intel_context_is_pinned(struct intel_context *ce)
122 {
123         return atomic_read(&ce->pin_count);
124 }
125
126 static inline void intel_context_cancel_request(struct intel_context *ce,
127                                                 struct i915_request *rq)
128 {
129         GEM_BUG_ON(!ce->ops->cancel_request);
130         return ce->ops->cancel_request(ce, rq);
131 }
132
133 /**
134  * intel_context_unlock_pinned - Releases the earlier locking of 'pinned' status
135  * @ce - the context
136  *
137  * Releases the lock earlier acquired by intel_context_unlock_pinned().
138  */
139 static inline void intel_context_unlock_pinned(struct intel_context *ce)
140         __releases(ce->pin_mutex)
141 {
142         mutex_unlock(&ce->pin_mutex);
143 }
144
145 int __intel_context_do_pin(struct intel_context *ce);
146 int __intel_context_do_pin_ww(struct intel_context *ce,
147                               struct i915_gem_ww_ctx *ww);
148
149 static inline bool intel_context_pin_if_active(struct intel_context *ce)
150 {
151         return atomic_inc_not_zero(&ce->pin_count);
152 }
153
154 static inline int intel_context_pin(struct intel_context *ce)
155 {
156         if (likely(intel_context_pin_if_active(ce)))
157                 return 0;
158
159         return __intel_context_do_pin(ce);
160 }
161
162 static inline int intel_context_pin_ww(struct intel_context *ce,
163                                        struct i915_gem_ww_ctx *ww)
164 {
165         if (likely(intel_context_pin_if_active(ce)))
166                 return 0;
167
168         return __intel_context_do_pin_ww(ce, ww);
169 }
170
171 static inline void __intel_context_pin(struct intel_context *ce)
172 {
173         GEM_BUG_ON(!intel_context_is_pinned(ce));
174         atomic_inc(&ce->pin_count);
175 }
176
177 void __intel_context_do_unpin(struct intel_context *ce, int sub);
178
179 static inline void intel_context_sched_disable_unpin(struct intel_context *ce)
180 {
181         __intel_context_do_unpin(ce, 2);
182 }
183
184 static inline void intel_context_unpin(struct intel_context *ce)
185 {
186         if (!ce->ops->sched_disable) {
187                 __intel_context_do_unpin(ce, 1);
188         } else {
189                 /*
190                  * Move ownership of this pin to the scheduling disable which is
191                  * an async operation. When that operation completes the above
192                  * intel_context_sched_disable_unpin is called potentially
193                  * unpinning the context.
194                  */
195                 while (!atomic_add_unless(&ce->pin_count, -1, 1)) {
196                         if (atomic_cmpxchg(&ce->pin_count, 1, 2) == 1) {
197                                 ce->ops->sched_disable(ce);
198                                 break;
199                         }
200                 }
201         }
202 }
203
204 void intel_context_enter_engine(struct intel_context *ce);
205 void intel_context_exit_engine(struct intel_context *ce);
206
207 static inline void intel_context_enter(struct intel_context *ce)
208 {
209         lockdep_assert_held(&ce->timeline->mutex);
210         if (!ce->active_count++)
211                 ce->ops->enter(ce);
212 }
213
214 static inline void intel_context_mark_active(struct intel_context *ce)
215 {
216         lockdep_assert(lockdep_is_held(&ce->timeline->mutex) ||
217                        test_bit(CONTEXT_IS_PARKING, &ce->flags));
218         ++ce->active_count;
219 }
220
221 static inline void intel_context_exit(struct intel_context *ce)
222 {
223         lockdep_assert_held(&ce->timeline->mutex);
224         GEM_BUG_ON(!ce->active_count);
225         if (!--ce->active_count)
226                 ce->ops->exit(ce);
227 }
228
229 static inline struct intel_context *intel_context_get(struct intel_context *ce)
230 {
231         kref_get(&ce->ref);
232         return ce;
233 }
234
235 static inline void intel_context_put(struct intel_context *ce)
236 {
237         kref_put(&ce->ref, ce->ops->destroy);
238 }
239
240 static inline struct intel_timeline *__must_check
241 intel_context_timeline_lock(struct intel_context *ce)
242         __acquires(&ce->timeline->mutex)
243 {
244         struct intel_timeline *tl = ce->timeline;
245         int err;
246
247         if (intel_context_is_parent(ce))
248                 err = mutex_lock_interruptible_nested(&tl->mutex, 0);
249         else if (intel_context_is_child(ce))
250                 err = mutex_lock_interruptible_nested(&tl->mutex,
251                                                       ce->parallel.child_index + 1);
252         else
253                 err = mutex_lock_interruptible(&tl->mutex);
254         if (err)
255                 return ERR_PTR(err);
256
257         return tl;
258 }
259
260 static inline void intel_context_timeline_unlock(struct intel_timeline *tl)
261         __releases(&tl->mutex)
262 {
263         mutex_unlock(&tl->mutex);
264 }
265
266 int intel_context_prepare_remote_request(struct intel_context *ce,
267                                          struct i915_request *rq);
268
269 struct i915_request *intel_context_create_request(struct intel_context *ce);
270
271 struct i915_request *
272 intel_context_find_active_request(struct intel_context *ce);
273
274 static inline bool intel_context_is_barrier(const struct intel_context *ce)
275 {
276         return test_bit(CONTEXT_BARRIER_BIT, &ce->flags);
277 }
278
279 static inline bool intel_context_is_closed(const struct intel_context *ce)
280 {
281         return test_bit(CONTEXT_CLOSED_BIT, &ce->flags);
282 }
283
284 static inline bool intel_context_has_inflight(const struct intel_context *ce)
285 {
286         return test_bit(COPS_HAS_INFLIGHT_BIT, &ce->ops->flags);
287 }
288
289 static inline bool intel_context_use_semaphores(const struct intel_context *ce)
290 {
291         return test_bit(CONTEXT_USE_SEMAPHORES, &ce->flags);
292 }
293
294 static inline void intel_context_set_use_semaphores(struct intel_context *ce)
295 {
296         set_bit(CONTEXT_USE_SEMAPHORES, &ce->flags);
297 }
298
299 static inline void intel_context_clear_use_semaphores(struct intel_context *ce)
300 {
301         clear_bit(CONTEXT_USE_SEMAPHORES, &ce->flags);
302 }
303
304 static inline bool intel_context_is_banned(const struct intel_context *ce)
305 {
306         return test_bit(CONTEXT_BANNED, &ce->flags);
307 }
308
309 static inline bool intel_context_set_banned(struct intel_context *ce)
310 {
311         return test_and_set_bit(CONTEXT_BANNED, &ce->flags);
312 }
313
314 bool intel_context_ban(struct intel_context *ce, struct i915_request *rq);
315
316 static inline bool intel_context_is_schedulable(const struct intel_context *ce)
317 {
318         return !test_bit(CONTEXT_EXITING, &ce->flags) &&
319                !test_bit(CONTEXT_BANNED, &ce->flags);
320 }
321
322 static inline bool intel_context_is_exiting(const struct intel_context *ce)
323 {
324         return test_bit(CONTEXT_EXITING, &ce->flags);
325 }
326
327 static inline bool intel_context_set_exiting(struct intel_context *ce)
328 {
329         return test_and_set_bit(CONTEXT_EXITING, &ce->flags);
330 }
331
332 bool intel_context_exit_nonpersistent(struct intel_context *ce,
333                                       struct i915_request *rq);
334
335 static inline bool
336 intel_context_force_single_submission(const struct intel_context *ce)
337 {
338         return test_bit(CONTEXT_FORCE_SINGLE_SUBMISSION, &ce->flags);
339 }
340
341 static inline void
342 intel_context_set_single_submission(struct intel_context *ce)
343 {
344         __set_bit(CONTEXT_FORCE_SINGLE_SUBMISSION, &ce->flags);
345 }
346
347 static inline bool
348 intel_context_nopreempt(const struct intel_context *ce)
349 {
350         return test_bit(CONTEXT_NOPREEMPT, &ce->flags);
351 }
352
353 static inline void
354 intel_context_set_nopreempt(struct intel_context *ce)
355 {
356         set_bit(CONTEXT_NOPREEMPT, &ce->flags);
357 }
358
359 static inline void
360 intel_context_clear_nopreempt(struct intel_context *ce)
361 {
362         clear_bit(CONTEXT_NOPREEMPT, &ce->flags);
363 }
364
365 u64 intel_context_get_total_runtime_ns(const struct intel_context *ce);
366 u64 intel_context_get_avg_runtime_ns(struct intel_context *ce);
367
368 static inline u64 intel_context_clock(void)
369 {
370         /* As we mix CS cycles with CPU clocks, use the raw monotonic clock. */
371         return ktime_get_raw_fast_ns();
372 }
373
374 #endif /* __INTEL_CONTEXT_H__ */
This page took 0.0523 seconds and 4 git commands to generate.