1 /* SPDX-License-Identifier: MIT */
3 * Copyright © 2019 Intel Corporation
6 #ifndef __INTEL_HOTPLUG_H__
7 #define __INTEL_HOTPLUG_H__
9 #include <linux/types.h>
11 #include <drm/i915_drm.h>
13 struct drm_i915_private;
14 struct intel_connector;
18 void intel_hpd_poll_init(struct drm_i915_private *dev_priv);
19 enum intel_hotplug_state intel_encoder_hotplug(struct intel_encoder *encoder,
20 struct intel_connector *connector,
22 void intel_hpd_irq_handler(struct drm_i915_private *dev_priv,
23 u32 pin_mask, u32 long_mask);
24 void intel_hpd_init(struct drm_i915_private *dev_priv);
25 void intel_hpd_init_work(struct drm_i915_private *dev_priv);
26 void intel_hpd_cancel_work(struct drm_i915_private *dev_priv);
27 enum hpd_pin intel_hpd_pin_default(struct drm_i915_private *dev_priv,
29 bool intel_hpd_disable(struct drm_i915_private *dev_priv, enum hpd_pin pin);
30 void intel_hpd_enable(struct drm_i915_private *dev_priv, enum hpd_pin pin);
32 #endif /* __INTEL_HOTPLUG_H__ */