/* Alter PHY configurations if data rate less than 1.5GHZ*/
        less_than_1500_mhz = (clk_req->bitclk_rate <= 1500000000);
 
-       /* For C-PHY, no low power settings for lower clk rate */
-       if (phy->cphy_mode)
-               less_than_1500_mhz = false;
-
        if (phy->cfg->quirks & DSI_PHY_7NM_QUIRK_V4_1) {
                vreg_ctrl_0 = less_than_1500_mhz ? 0x53 : 0x52;
-               glbl_rescode_top_ctrl = less_than_1500_mhz ? 0x3d :  0x00;
-               glbl_rescode_bot_ctrl = less_than_1500_mhz ? 0x39 :  0x3c;
+               if (phy->cphy_mode) {
+                       glbl_rescode_top_ctrl = 0x00;
+                       glbl_rescode_bot_ctrl = 0x3c;
+               } else {
+                       glbl_rescode_top_ctrl = less_than_1500_mhz ? 0x3d :  0x00;
+                       glbl_rescode_bot_ctrl = less_than_1500_mhz ? 0x39 :  0x3c;
+               }
                glbl_str_swi_cal_sel_ctrl = 0x00;
                glbl_hstx_str_ctrl_0 = 0x88;
        } else {
                vreg_ctrl_0 = less_than_1500_mhz ? 0x5B : 0x59;
-               glbl_str_swi_cal_sel_ctrl = less_than_1500_mhz ? 0x03 : 0x00;
-               glbl_hstx_str_ctrl_0 = less_than_1500_mhz ? 0x66 : 0x88;
+               if (phy->cphy_mode) {
+                       glbl_str_swi_cal_sel_ctrl = 0x03;
+                       glbl_hstx_str_ctrl_0 = 0x66;
+               } else {
+                       glbl_str_swi_cal_sel_ctrl = less_than_1500_mhz ? 0x03 : 0x00;
+                       glbl_hstx_str_ctrl_0 = less_than_1500_mhz ? 0x66 : 0x88;
+               }
                glbl_rescode_top_ctrl = 0x03;
                glbl_rescode_bot_ctrl = 0x3c;
        }