cachepc-linux

Fork of AMDESE/linux with modifications for CachePC side-channel attack
git clone https://git.sinitax.com/sinitax/cachepc-linux
Log | Files | Refs | README | LICENSE | sfeed.txt

intel_context.h (9521B)


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