Back to home page

OSCL-LXR

 
 

    


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