Now that the omap_dss_device EDID read operation has been removed,
simplify the bridge-based EDID access by merging multiple functions
together.

Signed-off-by: Laurent Pinchart <laurent.pinch...@ideasonboard.com>
Reviewed-by: Tomi Valkeinen <tomi.valkei...@ti.com>
---
 drivers/gpu/drm/omapdrm/dss/hdmi4.c | 96 ++++++++++++-----------------
 1 file changed, 40 insertions(+), 56 deletions(-)

diff --git a/drivers/gpu/drm/omapdrm/dss/hdmi4.c 
b/drivers/gpu/drm/omapdrm/dss/hdmi4.c
index 34db86ba6193..aa253d4902fe 100644
--- a/drivers/gpu/drm/omapdrm/dss/hdmi4.c
+++ b/drivers/gpu/drm/omapdrm/dss/hdmi4.c
@@ -308,55 +308,6 @@ void hdmi4_core_disable(struct hdmi_core_data *core)
        mutex_unlock(&hdmi->lock);
 }
 
-static struct edid *
-hdmi_do_read_edid(struct omap_hdmi *hdmi,
-                 struct edid *(*read)(struct omap_hdmi *hdmi,
-                                      struct drm_connector *connector),
-                 struct drm_connector *connector)
-{
-       struct edid *edid = NULL;
-       unsigned int cec_addr;
-       bool need_enable;
-       int r;
-
-       need_enable = hdmi->core_enabled == false;
-
-       if (need_enable) {
-               r = hdmi4_core_enable(&hdmi->core);
-               if (r)
-                       return NULL;
-       }
-
-       mutex_lock(&hdmi->lock);
-       r = hdmi_runtime_get(hdmi);
-       BUG_ON(r);
-
-       r = hdmi4_core_ddc_init(&hdmi->core);
-       if (r)
-               goto done;
-
-       edid = read(hdmi, connector);
-
-done:
-       hdmi_runtime_put(hdmi);
-       mutex_unlock(&hdmi->lock);
-
-       if (edid && edid->extensions) {
-               unsigned int len = (edid->extensions + 1) * EDID_LENGTH;
-
-               cec_addr = cec_get_edid_phys_addr((u8 *)edid, len, NULL);
-       } else {
-               cec_addr = CEC_PHYS_ADDR_INVALID;
-       }
-
-       hdmi4_cec_set_phys_addr(&hdmi->core, cec_addr);
-
-       if (need_enable)
-               hdmi4_core_disable(&hdmi->core);
-
-       return edid;
-}
-
 /* 
-----------------------------------------------------------------------------
  * DRM Bridge Operations
  */
@@ -483,18 +434,51 @@ static void hdmi4_bridge_hpd_notify(struct drm_bridge 
*bridge,
                hdmi4_cec_set_phys_addr(&hdmi->core, CEC_PHYS_ADDR_INVALID);
 }
 
-static struct edid *hdmi4_bridge_read_edid(struct omap_hdmi *hdmi,
-                                          struct drm_connector *connector)
-{
-       return drm_do_get_edid(connector, hdmi4_core_ddc_read, &hdmi->core);
-}
-
 static struct edid *hdmi4_bridge_get_edid(struct drm_bridge *bridge,
                                          struct drm_connector *connector)
 {
        struct omap_hdmi *hdmi = drm_bridge_to_hdmi(bridge);
+       struct edid *edid = NULL;
+       unsigned int cec_addr;
+       bool need_enable;
+       int r;
+
+       need_enable = hdmi->core_enabled == false;
+
+       if (need_enable) {
+               r = hdmi4_core_enable(&hdmi->core);
+               if (r)
+                       return NULL;
+       }
+
+       mutex_lock(&hdmi->lock);
+       r = hdmi_runtime_get(hdmi);
+       BUG_ON(r);
+
+       r = hdmi4_core_ddc_init(&hdmi->core);
+       if (r)
+               goto done;
+
+       edid = drm_do_get_edid(connector, hdmi4_core_ddc_read, &hdmi->core);
 
-       return hdmi_do_read_edid(hdmi, hdmi4_bridge_read_edid, connector);
+done:
+       hdmi_runtime_put(hdmi);
+       mutex_unlock(&hdmi->lock);
+
+       if (edid && edid->extensions) {
+               unsigned int len = (edid->extensions + 1) * EDID_LENGTH;
+
+               cec_addr = cec_get_edid_phys_addr((u8 *)edid, len, NULL);
+       } else {
+               cec_addr = CEC_PHYS_ADDR_INVALID;
+       }
+
+       hdmi4_cec_set_phys_addr(&hdmi->core, cec_addr);
+
+       if (need_enable)
+               hdmi4_core_disable(&hdmi->core);
+
+       return edid;
 }
 
 static const struct drm_bridge_funcs hdmi4_bridge_funcs = {
-- 
Regards,

Laurent Pinchart

_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel

Reply via email to