Linux Audio

Check our new training course

Loading...
Note: File does not exist in v3.1.
 1/*
 2 * SPDX-License-Identifier: MIT
 3 *
 4 * Copyright © 2019 Intel Corporation
 5 */
 6
 7#ifndef INTEL_ENGINE_USER_H
 8#define INTEL_ENGINE_USER_H
 9
10#include <linux/types.h>
11
12struct drm_i915_private;
13struct intel_engine_cs;
14
15struct intel_engine_cs *
16intel_engine_lookup_user(struct drm_i915_private *i915, u8 class, u8 instance);
17
18unsigned int intel_engines_has_context_isolation(struct drm_i915_private *i915);
19
20void intel_engine_add_user(struct intel_engine_cs *engine);
21void intel_engines_driver_register(struct drm_i915_private *i915);
22
23const char *intel_engine_class_repr(u8 class);
24
25#endif /* INTEL_ENGINE_USER_H */