2023-05-15 13:17:37 +03:00
|
|
|
/* SPDX-License-Identifier: MIT */
|
|
|
|
/*
|
|
|
|
* Copyright © 2023 Intel Corporation
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __INTEL_HOTPLUG_IRQ_H__
|
|
|
|
#define __INTEL_HOTPLUG_IRQ_H__
|
|
|
|
|
|
|
|
#include <linux/types.h>
|
|
|
|
|
2025-03-20 16:46:02 +02:00
|
|
|
struct intel_display;
|
2023-05-15 13:17:37 +03:00
|
|
|
struct intel_encoder;
|
|
|
|
|
2025-03-20 16:46:02 +02:00
|
|
|
u32 i9xx_hpd_irq_ack(struct intel_display *display);
|
2023-05-15 13:17:37 +03:00
|
|
|
|
2025-03-20 16:46:02 +02:00
|
|
|
void i9xx_hpd_irq_handler(struct intel_display *display, u32 hotplug_status);
|
|
|
|
void ibx_hpd_irq_handler(struct intel_display *display, u32 hotplug_trigger);
|
|
|
|
void ilk_hpd_irq_handler(struct intel_display *display, u32 hotplug_trigger);
|
|
|
|
void gen11_hpd_irq_handler(struct intel_display *display, u32 iir);
|
|
|
|
void bxt_hpd_irq_handler(struct intel_display *display, u32 hotplug_trigger);
|
|
|
|
void xelpdp_pica_irq_handler(struct intel_display *display, u32 iir);
|
|
|
|
void icp_irq_handler(struct intel_display *display, u32 pch_iir);
|
|
|
|
void spt_irq_handler(struct intel_display *display, u32 pch_iir);
|
2023-05-15 13:17:37 +03:00
|
|
|
|
2025-03-20 16:46:02 +02:00
|
|
|
void i915_hotplug_interrupt_update_locked(struct intel_display *display,
|
2023-05-15 13:17:37 +03:00
|
|
|
u32 mask, u32 bits);
|
2025-03-20 16:46:02 +02:00
|
|
|
void i915_hotplug_interrupt_update(struct intel_display *display,
|
2023-05-15 13:17:37 +03:00
|
|
|
u32 mask, u32 bits);
|
|
|
|
|
|
|
|
void intel_hpd_enable_detection(struct intel_encoder *encoder);
|
2025-03-20 16:46:02 +02:00
|
|
|
void intel_hpd_irq_setup(struct intel_display *display);
|
2023-05-15 13:17:37 +03:00
|
|
|
|
2025-03-20 16:46:02 +02:00
|
|
|
void intel_hotplug_irq_init(struct intel_display *display);
|
2023-05-15 13:17:37 +03:00
|
|
|
|
|
|
|
#endif /* __INTEL_HOTPLUG_IRQ_H__ */
|