Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: MIT */
0002 /*
0003  * Copyright © 2019 Intel Corporation
0004  */
0005 
0006 #ifndef __INTEL_CRT_H__
0007 #define __INTEL_CRT_H__
0008 
0009 #include "i915_reg_defs.h"
0010 
0011 enum pipe;
0012 struct drm_encoder;
0013 struct drm_i915_private;
0014 
0015 bool intel_crt_port_enabled(struct drm_i915_private *dev_priv,
0016                 i915_reg_t adpa_reg, enum pipe *pipe);
0017 void intel_crt_init(struct drm_i915_private *dev_priv);
0018 void intel_crt_reset(struct drm_encoder *encoder);
0019 
0020 #endif /* __INTEL_CRT_H__ */