mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00

Going forward, struct intel_display is the main display device data pointer. Convert as much as possible of intel_hotplug_irq.[ch] to struct intel_display. Reviewed-by: Uma Shankar <uma.shankar@intel.com> Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com> Signed-off-by: Jani Nikula <jani.nikula@intel.com> Link: https://lore.kernel.org/r/8ddf27ea31b543f88c5f124f029c2eaa06a9aae7.1742481923.git.jani.nikula@intel.com
35 lines
1.2 KiB
C
35 lines
1.2 KiB
C
/* SPDX-License-Identifier: MIT */
|
|
/*
|
|
* Copyright © 2023 Intel Corporation
|
|
*/
|
|
|
|
#ifndef __INTEL_HOTPLUG_IRQ_H__
|
|
#define __INTEL_HOTPLUG_IRQ_H__
|
|
|
|
#include <linux/types.h>
|
|
|
|
struct intel_display;
|
|
struct intel_encoder;
|
|
|
|
u32 i9xx_hpd_irq_ack(struct intel_display *display);
|
|
|
|
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);
|
|
|
|
void i915_hotplug_interrupt_update_locked(struct intel_display *display,
|
|
u32 mask, u32 bits);
|
|
void i915_hotplug_interrupt_update(struct intel_display *display,
|
|
u32 mask, u32 bits);
|
|
|
|
void intel_hpd_enable_detection(struct intel_encoder *encoder);
|
|
void intel_hpd_irq_setup(struct intel_display *display);
|
|
|
|
void intel_hotplug_irq_init(struct intel_display *display);
|
|
|
|
#endif /* __INTEL_HOTPLUG_IRQ_H__ */
|