intel_crt.h revision 1.2
1/*	$NetBSD: intel_crt.h,v 1.2 2021/12/18 23:45:29 riastradh Exp $	*/
2
3/* SPDX-License-Identifier: MIT */
4/*
5 * Copyright © 2019 Intel Corporation
6 */
7
8#ifndef __INTEL_CRT_H__
9#define __INTEL_CRT_H__
10
11#include "i915_reg.h"
12
13enum pipe;
14struct drm_encoder;
15struct drm_i915_private;
16struct drm_i915_private;
17
18bool intel_crt_port_enabled(struct drm_i915_private *dev_priv,
19			    i915_reg_t adpa_reg, enum pipe *pipe);
20void intel_crt_init(struct drm_i915_private *dev_priv);
21void intel_crt_reset(struct drm_encoder *encoder);
22
23#endif /* __INTEL_CRT_H__ */
24