1 /* $NetBSD: intel_combo_phy.h,v 1.2 2021/12/18 23:45:29 riastradh Exp $ */ 2 3 /* SPDX-License-Identifier: MIT */ 4 /* 5 * Copyright © 2019 Intel Corporation 6 */ 7 8 #ifndef __INTEL_COMBO_PHY_H__ 9 #define __INTEL_COMBO_PHY_H__ 10 11 #include <linux/types.h> 12 13 struct drm_i915_private; 14 enum phy; 15 16 void intel_combo_phy_init(struct drm_i915_private *dev_priv); 17 void intel_combo_phy_uninit(struct drm_i915_private *dev_priv); 18 void intel_combo_phy_power_up_lanes(struct drm_i915_private *dev_priv, 19 enum phy phy, bool is_dsi, 20 int lane_count, bool lane_reversal); 21 22 #endif /* __INTEL_COMBO_PHY_H__ */ 23