mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-28 03:58:02 +07:00
10be98a77c
Continuing the theme of separating out the GEM clutter. Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk> Reviewed-by: Mika Kuoppala <mika.kuoppala@linux.intel.com> Link: https://patchwork.freedesktop.org/patch/msgid/20190528092956.14910-8-chris@chris-wilson.co.uk
38 lines
902 B
C
38 lines
902 B
C
/*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
* Copyright © 2018 Intel Corporation
|
|
*/
|
|
|
|
#ifndef __I915_SELFTESTS_IGT_SPINNER_H__
|
|
#define __I915_SELFTESTS_IGT_SPINNER_H__
|
|
|
|
#include "gem/i915_gem_context.h"
|
|
#include "gt/intel_engine.h"
|
|
|
|
#include "i915_drv.h"
|
|
#include "i915_request.h"
|
|
#include "i915_selftest.h"
|
|
|
|
struct igt_spinner {
|
|
struct drm_i915_private *i915;
|
|
struct drm_i915_gem_object *hws;
|
|
struct drm_i915_gem_object *obj;
|
|
u32 *batch;
|
|
void *seqno;
|
|
};
|
|
|
|
int igt_spinner_init(struct igt_spinner *spin, struct drm_i915_private *i915);
|
|
void igt_spinner_fini(struct igt_spinner *spin);
|
|
|
|
struct i915_request *
|
|
igt_spinner_create_request(struct igt_spinner *spin,
|
|
struct i915_gem_context *ctx,
|
|
struct intel_engine_cs *engine,
|
|
u32 arbitration_command);
|
|
void igt_spinner_end(struct igt_spinner *spin);
|
|
|
|
bool igt_wait_for_spinner(struct igt_spinner *spin, struct i915_request *rq);
|
|
|
|
#endif
|