1 /* 2 * SPDX-License-Identifier: MIT 3 * 4 * Copyright © 2016 Intel Corporation 5 */ 6 7 #ifndef __MOCK_CONTEXT_H 8 #define __MOCK_CONTEXT_H 9 10 struct file; 11 struct drm_i915_private; 12 struct intel_engine_cs; 13 14 void mock_init_contexts(struct drm_i915_private *i915); 15 16 struct i915_gem_context * 17 mock_context(struct drm_i915_private *i915, 18 const char *name); 19 20 void mock_context_close(struct i915_gem_context *ctx); 21 22 struct i915_gem_context * 23 live_context(struct drm_i915_private *i915, struct file *file); 24 25 struct i915_gem_context * 26 live_context_for_engine(struct intel_engine_cs *engine, struct file *file); 27 28 struct i915_gem_context *kernel_context(struct drm_i915_private *i915); 29 void kernel_context_close(struct i915_gem_context *ctx); 30 31 #endif /* !__MOCK_CONTEXT_H */ 32