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 struct drm_i915_private
;
12 struct intel_connector
;
13 struct intel_digital_port
;
17 void intel_hpd_poll_enable(struct drm_i915_private
*dev_priv
);
18 void intel_hpd_poll_disable(struct drm_i915_private
*dev_priv
);
19 enum intel_hotplug_state
intel_encoder_hotplug(struct intel_encoder
*encoder
,
20 struct intel_connector
*connector
);
21 void intel_hpd_irq_handler(struct drm_i915_private
*dev_priv
,
22 u32 pin_mask
, u32 long_mask
);
23 void intel_hpd_trigger_irq(struct intel_digital_port
*dig_port
);
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__ */