The driver currently sets the video stream registers in
tc_main_link_setup. One should be able to establish the DP link without
any video stream, so a more logical place is to configure the stream in
the tc_main_link_stream. So move them there.
Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
Reviewed-by: Andrzej Hajda <a.hajda@samsung.com>
Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Signed-off-by: Andrzej Hajda <a.hajda@samsung.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20190528082747.3631-8-tomi.valkeinen@ti.com
                return -EAGAIN;
        }
 
-       ret = tc_set_video_mode(tc, tc->mode);
-       if (ret)
-               goto err;
-
-       /* Set M/N */
-       ret = tc_stream_clock_calc(tc);
-       if (ret)
-               goto err;
-
        return 0;
 err_dpcd_read:
        dev_err(tc->dev, "Failed to read DPCD: %d\n", ret);
        dev_dbg(tc->dev, "stream: %d\n", state);
 
        if (state) {
+               ret = tc_set_video_mode(tc, tc->mode);
+               if (ret)
+                       goto err;
+
+               /* Set M/N */
+               ret = tc_stream_clock_calc(tc);
+               if (ret)
+                       goto err;
+
                value = VID_MN_GEN | DP_EN;
                if (tc->link.base.capabilities & DP_LINK_CAP_ENHANCED_FRAMING)
                        value |= EF_EN;