[Why]
Needs more frames waiting before the PSR_Exit sending for the specific
TCON.
[How]
Add relock_delay_frame_cnt to control how many frames waiting are needed
before the PSR_Exit sending. The default value is 0. The Driver side can
set this variable for specific TCONs.
Reviewed-by: Robin Chen <robin.chen@amd.com>
Acked-by: Alan Liu <HaoPing.Liu@amd.com>
Signed-off-by: Ryan Lin <tsung-hua.lin@amd.com>
Tested-by: Daniel Wheeler <daniel.wheeler@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
        else
                copy_settings_data->debug.bitfields.force_wakeup_by_tps3 = 0;
 
+       //WA for PSR1 on specific TCON, require frame delay for frame re-lock
+       copy_settings_data->relock_delay_frame_cnt = 0;
+       if (link->dpcd_caps.sink_dev_id == DP_BRANCH_DEVICE_ID_001CF8)
+               copy_settings_data->relock_delay_frame_cnt = 2;
+
        dc_dmub_srv_cmd_queue(dc->dmub_srv, &cmd);
        dc_dmub_srv_cmd_execute(dc->dmub_srv);
        dc_dmub_srv_wait_idle(dc->dmub_srv);
 
         * Use FSM state for PSR power up/down
         */
        uint8_t use_phy_fsm;
+       /**
+        * frame delay for frame re-lock
+        */
+       uint8_t relock_delay_frame_cnt;
        /**
         * Explicit padding to 2 byte boundary.
         */
-       uint8_t pad3[2];
+       uint8_t pad3;
 };
 
 /**