1
0
Fork 0
mirror of synced 2025-03-06 20:59:54 +01:00
linux/drivers/gpu/drm/i915/gt/intel_engine_stats.h
Chris Wilson f530a41d13 drm/i915/gt: Convert stats.active to plain unsigned int
As context-in/out is now always serialised, we do not have to worry
about concurrent enabling/disable of the busy-stats and can reduce the
atomic_t active to a plain unsigned int, and the seqlock to a seqcount.

Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Reviewed-by: Andi Shyti <andi.shyti@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20210115142331.24458-3-chris@chris-wilson.co.uk
2021-01-15 21:30:24 +00:00

60 lines
1.3 KiB
C

/* SPDX-License-Identifier: MIT */
/*
* Copyright © 2020 Intel Corporation
*/
#ifndef __INTEL_ENGINE_STATS_H__
#define __INTEL_ENGINE_STATS_H__
#include <linux/atomic.h>
#include <linux/ktime.h>
#include <linux/seqlock.h>
#include "i915_gem.h" /* GEM_BUG_ON */
#include "intel_engine.h"
static inline void intel_engine_context_in(struct intel_engine_cs *engine)
{
unsigned long flags;
if (engine->stats.active) {
engine->stats.active++;
return;
}
/* The writer is serialised; but the pmu reader may be from hardirq */
local_irq_save(flags);
write_seqcount_begin(&engine->stats.lock);
engine->stats.start = ktime_get();
engine->stats.active++;
write_seqcount_end(&engine->stats.lock);
local_irq_restore(flags);
GEM_BUG_ON(!engine->stats.active);
}
static inline void intel_engine_context_out(struct intel_engine_cs *engine)
{
unsigned long flags;
GEM_BUG_ON(!engine->stats.active);
if (engine->stats.active > 1) {
engine->stats.active--;
return;
}
local_irq_save(flags);
write_seqcount_begin(&engine->stats.lock);
engine->stats.active--;
engine->stats.total =
ktime_add(engine->stats.total,
ktime_sub(ktime_get(), engine->stats.start));
write_seqcount_end(&engine->stats.lock);
local_irq_restore(flags);
}
#endif /* __INTEL_ENGINE_STATS_H__ */