a95d116098
With GuC virtual engines the physical engine which a request executes and completes on isn't known to the i915. Therefore we can't attach a request to a physical engines breadcrumbs. To work around this we create a single breadcrumbs per engine class when using GuC submission and direct all physical engine interrupts to this breadcrumbs. v2: (John H) - Rework header file structure so intel_engine_mask_t can be in intel_engine_types.h Signed-off-by: Matthew Brost <matthew.brost@intel.com> CC: John Harrison <John.C.Harrison@Intel.com> Reviewed-by: John Harrison <John.C.Harrison@Intel.com> Signed-off-by: John Harrison <John.C.Harrison@Intel.com> Link: https://patchwork.freedesktop.org/patch/msgid/20210727002348.97202-6-matthew.brost@intel.com
64 lines
1.5 KiB
C
64 lines
1.5 KiB
C
/* SPDX-License-Identifier: MIT */
|
|
/*
|
|
* Copyright © 2019 Intel Corporation
|
|
*/
|
|
|
|
#ifndef __INTEL_BREADCRUMBS__
|
|
#define __INTEL_BREADCRUMBS__
|
|
|
|
#include <linux/atomic.h>
|
|
#include <linux/irq_work.h>
|
|
|
|
#include "intel_breadcrumbs_types.h"
|
|
|
|
struct drm_printer;
|
|
struct i915_request;
|
|
struct intel_breadcrumbs;
|
|
|
|
struct intel_breadcrumbs *
|
|
intel_breadcrumbs_create(struct intel_engine_cs *irq_engine);
|
|
void intel_breadcrumbs_free(struct kref *kref);
|
|
|
|
void intel_breadcrumbs_reset(struct intel_breadcrumbs *b);
|
|
void __intel_breadcrumbs_park(struct intel_breadcrumbs *b);
|
|
|
|
static inline void intel_breadcrumbs_unpark(struct intel_breadcrumbs *b)
|
|
{
|
|
atomic_inc(&b->active);
|
|
}
|
|
|
|
static inline void intel_breadcrumbs_park(struct intel_breadcrumbs *b)
|
|
{
|
|
if (atomic_dec_and_test(&b->active))
|
|
__intel_breadcrumbs_park(b);
|
|
}
|
|
|
|
static inline void
|
|
intel_engine_signal_breadcrumbs(struct intel_engine_cs *engine)
|
|
{
|
|
irq_work_queue(&engine->breadcrumbs->irq_work);
|
|
}
|
|
|
|
void intel_engine_print_breadcrumbs(struct intel_engine_cs *engine,
|
|
struct drm_printer *p);
|
|
|
|
bool i915_request_enable_breadcrumb(struct i915_request *request);
|
|
void i915_request_cancel_breadcrumb(struct i915_request *request);
|
|
|
|
void intel_context_remove_breadcrumbs(struct intel_context *ce,
|
|
struct intel_breadcrumbs *b);
|
|
|
|
static inline struct intel_breadcrumbs *
|
|
intel_breadcrumbs_get(struct intel_breadcrumbs *b)
|
|
{
|
|
kref_get(&b->ref);
|
|
return b;
|
|
}
|
|
|
|
static inline void intel_breadcrumbs_put(struct intel_breadcrumbs *b)
|
|
{
|
|
kref_put(&b->ref, intel_breadcrumbs_free);
|
|
}
|
|
|
|
#endif /* __INTEL_BREADCRUMBS__ */
|