Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: MIT */
0002 /*
0003  * Copyright © 2020 Intel Corporation
0004  */
0005 
0006 #ifndef __VLV_SUSPEND_H__
0007 #define __VLV_SUSPEND_H__
0008 
0009 #include <linux/types.h>
0010 
0011 struct drm_i915_private;
0012 
0013 int vlv_suspend_init(struct drm_i915_private *i915);
0014 void vlv_suspend_cleanup(struct drm_i915_private *i915);
0015 int vlv_suspend_complete(struct drm_i915_private *i915);
0016 int vlv_resume_prepare(struct drm_i915_private *i915, bool rpm_resume);
0017 
0018 #endif /* __VLV_SUSPEND_H__ */