Instead of rereading the edid data each time userspace asks for them
read them once and cache them in the previously unused edid field in
struct dw_hdmi. This makes the code a little bit more efficient.

Signed-off-by: Sascha Hauer <s.hauer at pengutronix.de>
---
 drivers/gpu/drm/bridge/dw_hdmi.c | 41 +++++++++++++++++++++++++---------------
 1 file changed, 26 insertions(+), 15 deletions(-)

diff --git a/drivers/gpu/drm/bridge/dw_hdmi.c b/drivers/gpu/drm/bridge/dw_hdmi.c
index 816d104..8d9b53c 100644
--- a/drivers/gpu/drm/bridge/dw_hdmi.c
+++ b/drivers/gpu/drm/bridge/dw_hdmi.c
@@ -117,7 +117,7 @@ struct dw_hdmi {

        int vic;

-       u8 edid[HDMI_EDID_LEN];
+       struct edid *edid;
        bool cable_plugin;

        bool phy_enabled;
@@ -1386,28 +1386,39 @@ dw_hdmi_connector_detect(struct drm_connector 
*connector, bool force)
        struct dw_hdmi *hdmi = container_of(connector, struct dw_hdmi,
                                             connector);

-       return hdmi_readb(hdmi, HDMI_PHY_STAT0) & HDMI_PHY_HPD ?
-               connector_status_connected : connector_status_disconnected;
+       if (!(hdmi_readb(hdmi, HDMI_PHY_STAT0) & HDMI_PHY_HPD))
+               return connector_status_disconnected;
+
+       if (hdmi->ddc) {
+               if (hdmi->edid) {
+                       drm_mode_connector_update_edid_property(connector,
+                                       NULL);
+                       kfree(hdmi->edid);
+               }
+
+               hdmi->edid = drm_get_edid(connector, hdmi->ddc);
+               if (hdmi->edid) {
+                       drm_mode_connector_update_edid_property(connector,
+                                       hdmi->edid);
+
+                       dev_dbg(hdmi->dev, "got edid: width[%d] x height[%d]\n",
+                                       hdmi->edid->width_cm,
+                                       hdmi->edid->height_cm);
+               }
+       }
+
+       return connector_status_connected;
 }

 static int dw_hdmi_connector_get_modes(struct drm_connector *connector)
 {
        struct dw_hdmi *hdmi = container_of(connector, struct dw_hdmi,
                                             connector);
-       struct edid *edid;
        int ret = 0;

-       if (!hdmi->ddc)
-               return 0;
-
-       edid = drm_get_edid(connector, hdmi->ddc);
-       if (edid) {
-               dev_dbg(hdmi->dev, "got edid: width[%d] x height[%d]\n",
-                       edid->width_cm, edid->height_cm);
-
-               drm_mode_connector_update_edid_property(connector, edid);
-               ret = drm_add_edid_modes(connector, edid);
-               kfree(edid);
+       if (hdmi->edid) {
+               ret = drm_add_edid_modes(connector, hdmi->edid);
+               drm_edid_to_eld(connector, hdmi->edid);
        } else {
                dev_dbg(hdmi->dev, "failed to get edid\n");
        }
-- 
2.4.6

Reply via email to