aboutsummaryrefslogtreecommitdiffstats
path: root/include/drm/drm_probe_helper.h
diff options
context:
space:
mode:
authorMaxime Ripard <maxime@cerno.tech>2021-09-14 12:17:23 +0200
committerMaxime Ripard <maxime@cerno.tech>2021-09-28 12:29:13 +0200
commit0464ed1a79b818d5e3eda1ac3c23a057ac0cc7c3 (patch)
tree7e905e00cc97d1f4d3e5eb2b173f46b822a0476c /include/drm/drm_probe_helper.h
parentdrm/probe-helper: Document drm_helper_hpd_irq_event() return value (diff)
downloadlinux-dev-0464ed1a79b818d5e3eda1ac3c23a057ac0cc7c3.tar.xz
linux-dev-0464ed1a79b818d5e3eda1ac3c23a057ac0cc7c3.zip
drm/probe-helper: Create a HPD IRQ event helper for a single connector
The drm_helper_hpd_irq_event() function is iterating over all the connectors when an hotplug event is detected. During that iteration, it will call each connector detect function and figure out if its status changed. Finally, if any connector changed, it will notify the user-space and the clients that something changed on the DRM device. This is supposed to be used for drivers that don't have a hotplug interrupt for individual connectors. However, drivers that can use an interrupt for a single connector are left in the dust and can either reimplement the logic used during the iteration for each connector or use that helper and iterate over all connectors all the time. Since both are suboptimal, let's create a helper that will only perform the status detection on a single connector. Signed-off-by: Maxime Ripard <maxime@cerno.tech> Reviewed-by: Sam Ravnborg <sam@ravnborg.org> Link: https://patchwork.freedesktop.org/patch/msgid/20210914101724.266570-2-maxime@cerno.tech
Diffstat (limited to 'include/drm/drm_probe_helper.h')
-rw-r--r--include/drm/drm_probe_helper.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/drm/drm_probe_helper.h b/include/drm/drm_probe_helper.h
index 8d3ed2834d34..04c57564c397 100644
--- a/include/drm/drm_probe_helper.h
+++ b/include/drm/drm_probe_helper.h
@@ -18,6 +18,7 @@ int drm_helper_probe_detect(struct drm_connector *connector,
void drm_kms_helper_poll_init(struct drm_device *dev);
void drm_kms_helper_poll_fini(struct drm_device *dev);
bool drm_helper_hpd_irq_event(struct drm_device *dev);
+bool drm_connector_helper_hpd_irq_event(struct drm_connector *connector);
void drm_kms_helper_hotplug_event(struct drm_device *dev);
void drm_kms_helper_poll_disable(struct drm_device *dev);