mirror of https://gitee.com/openkylin/linux.git
23 lines
509 B
C
23 lines
509 B
C
/*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
* Copyright © 2019 Intel Corporation
|
|
*/
|
|
|
|
#ifndef INTEL_ENGINE_PM_H
|
|
#define INTEL_ENGINE_PM_H
|
|
|
|
struct drm_i915_private;
|
|
struct intel_engine_cs;
|
|
|
|
void intel_engine_pm_get(struct intel_engine_cs *engine);
|
|
void intel_engine_pm_put(struct intel_engine_cs *engine);
|
|
|
|
void intel_engine_park(struct intel_engine_cs *engine);
|
|
|
|
void intel_engine_init__pm(struct intel_engine_cs *engine);
|
|
|
|
int intel_engines_resume(struct drm_i915_private *i915);
|
|
|
|
#endif /* INTEL_ENGINE_PM_H */
|