1 /* SPDX-License-Identifier: MIT */ 2 /* 3 * Copyright © 2020 Intel Corporation 4 */ 5 6 #ifndef __VLV_SUSPEND_H__ 7 #define __VLV_SUSPEND_H__ 8 9 #include <linux/types.h> 10 11 struct drm_i915_private; 12 13 int vlv_suspend_init(struct drm_i915_private *i915); 14 void vlv_suspend_cleanup(struct drm_i915_private *i915); 15 int vlv_suspend_complete(struct drm_i915_private *i915); 16 int vlv_resume_prepare(struct drm_i915_private *i915, bool rpm_resume); 17 18 #endif /* __VLV_SUSPEND_H__ */ 19