vlv_suspend.h 458 B

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