linux/drivers/gpu/drm/i915/display/intel_lvds.h
<<
>>
Prefs
   1/* SPDX-License-Identifier: MIT */
   2/*
   3 * Copyright © 2019 Intel Corporation
   4 */
   5
   6#ifndef __INTEL_LVDS_H__
   7#define __INTEL_LVDS_H__
   8
   9#include <linux/types.h>
  10
  11#include "i915_reg.h"
  12
  13enum pipe;
  14struct drm_i915_private;
  15
  16bool intel_lvds_port_enabled(struct drm_i915_private *dev_priv,
  17                             i915_reg_t lvds_reg, enum pipe *pipe);
  18void intel_lvds_init(struct drm_i915_private *dev_priv);
  19struct intel_encoder *intel_get_lvds_encoder(struct drm_i915_private *dev_priv);
  20bool intel_is_dual_link_lvds(struct drm_i915_private *dev_priv);
  21
  22#endif /* __INTEL_LVDS_H__ */
  23