summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJagan Teki <[email protected]>2024-01-17 13:21:42 +0530
committerAnatolij Gustschin <[email protected]>2024-04-21 09:07:00 +0200
commit25353b5b8b2be4402ec449946235b07670217666 (patch)
treedca7a9f5393a27ffe201687434f2185db14fb1fa
parent054a0ca8c16a229c76de033b9d3c7375b1e0ed0f (diff)
video: dw_hdmi: Add setup_hpd hook
Add support for DW HDMI Setup HPD status. Signed-off-by: Jagan Teki <[email protected]> Reviewed-by: Neil Armstrong <[email protected]>
-rw-r--r--drivers/video/dw_hdmi.c3
-rw-r--r--include/dw_hdmi.h1
2 files changed, 4 insertions, 0 deletions
diff --git a/drivers/video/dw_hdmi.c b/drivers/video/dw_hdmi.c
index 989b7ab2db1..ab4811cfc76 100644
--- a/drivers/video/dw_hdmi.c
+++ b/drivers/video/dw_hdmi.c
@@ -1061,4 +1061,7 @@ void dw_hdmi_init(struct dw_hdmi *hdmi)
/* enable i2c client nack % arbitration error irq */
hdmi_write(hdmi, ~0x44, HDMI_I2CM_CTLINT);
+
+ if (hdmi->ops && hdmi->ops->setup_hpd)
+ hdmi->ops->setup_hpd(hdmi);
}
diff --git a/include/dw_hdmi.h b/include/dw_hdmi.h
index a1f0e64507d..f4d66edacee 100644
--- a/include/dw_hdmi.h
+++ b/include/dw_hdmi.h
@@ -539,6 +539,7 @@ struct dw_hdmi;
struct dw_hdmi_phy_ops {
int (*phy_set)(struct dw_hdmi *hdmi, uint mpixelclock);
void (*read_hpd)(struct dw_hdmi *hdmi, bool hdp_status);
+ void (*setup_hpd)(struct dw_hdmi *hdmi);
};
struct dw_hdmi {