18c2ecf20Sopenharmony_ci/* SPDX-License-Identifier: MIT */ 28c2ecf20Sopenharmony_ci/* 38c2ecf20Sopenharmony_ci * Copyright © 2020 Intel Corporation 48c2ecf20Sopenharmony_ci */ 58c2ecf20Sopenharmony_ci 68c2ecf20Sopenharmony_ci#ifndef __VLV_SUSPEND_H__ 78c2ecf20Sopenharmony_ci#define __VLV_SUSPEND_H__ 88c2ecf20Sopenharmony_ci 98c2ecf20Sopenharmony_ci#include <linux/types.h> 108c2ecf20Sopenharmony_ci 118c2ecf20Sopenharmony_cistruct drm_i915_private; 128c2ecf20Sopenharmony_ci 138c2ecf20Sopenharmony_ciint vlv_suspend_init(struct drm_i915_private *i915); 148c2ecf20Sopenharmony_civoid vlv_suspend_cleanup(struct drm_i915_private *i915); 158c2ecf20Sopenharmony_ciint vlv_suspend_complete(struct drm_i915_private *i915); 168c2ecf20Sopenharmony_ciint vlv_resume_prepare(struct drm_i915_private *i915, bool rpm_resume); 178c2ecf20Sopenharmony_ci 188c2ecf20Sopenharmony_ci#endif /* __VLV_SUSPEND_H__ */ 19