Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: MIT */
0002 /*
0003  * Copyright © 2019 Intel Corporation
0004  */
0005 
0006 #ifndef __INTEL_LVDS_H__
0007 #define __INTEL_LVDS_H__
0008 
0009 #include <linux/types.h>
0010 
0011 #include "i915_reg_defs.h"
0012 
0013 enum pipe;
0014 struct drm_i915_private;
0015 
0016 bool intel_lvds_port_enabled(struct drm_i915_private *dev_priv,
0017                  i915_reg_t lvds_reg, enum pipe *pipe);
0018 void intel_lvds_init(struct drm_i915_private *dev_priv);
0019 struct intel_encoder *intel_get_lvds_encoder(struct drm_i915_private *dev_priv);
0020 bool intel_is_dual_link_lvds(struct drm_i915_private *dev_priv);
0021 
0022 #endif /* __INTEL_LVDS_H__ */