Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: MIT */
0002 /*
0003  * Copyright © 2019 Intel Corporation
0004  */
0005 
0006 #ifndef __INTEL_COMBO_PHY_H__
0007 #define __INTEL_COMBO_PHY_H__
0008 
0009 #include <linux/types.h>
0010 
0011 struct drm_i915_private;
0012 enum phy;
0013 
0014 void intel_combo_phy_init(struct drm_i915_private *dev_priv);
0015 void intel_combo_phy_uninit(struct drm_i915_private *dev_priv);
0016 void intel_combo_phy_power_up_lanes(struct drm_i915_private *dev_priv,
0017                     enum phy phy, bool is_dsi,
0018                     int lane_count, bool lane_reversal);
0019 
0020 #endif /* __INTEL_COMBO_PHY_H__ */