Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: MIT */
0002 /*
0003  * Copyright © 2021 Intel Corporation
0004  */
0005 
0006 #ifndef _INTEL_PCH_REFCLK_H_
0007 #define _INTEL_PCH_REFCLK_H_
0008 
0009 #include <linux/types.h>
0010 
0011 struct drm_i915_private;
0012 struct intel_crtc_state;
0013 
0014 void lpt_program_iclkip(const struct intel_crtc_state *crtc_state);
0015 void lpt_disable_iclkip(struct drm_i915_private *dev_priv);
0016 int lpt_get_iclkip(struct drm_i915_private *dev_priv);
0017 
0018 void intel_init_pch_refclk(struct drm_i915_private *dev_priv);
0019 void lpt_disable_clkout_dp(struct drm_i915_private *dev_priv);
0020 
0021 #endif