21 lines · c
1/* SPDX-License-Identifier: MIT */2/*3 * Copyright © 2019 Intel Corporation4 */5 6#ifndef __INTEL_COMBO_PHY_H__7#define __INTEL_COMBO_PHY_H__8 9#include <linux/types.h>10 11struct drm_i915_private;12enum phy;13 14void intel_combo_phy_init(struct drm_i915_private *dev_priv);15void intel_combo_phy_uninit(struct drm_i915_private *dev_priv);16void intel_combo_phy_power_up_lanes(struct drm_i915_private *dev_priv,17 enum phy phy, bool is_dsi,18 int lane_count, bool lane_reversal);19 20#endif /* __INTEL_COMBO_PHY_H__ */21