static int qmp_v456_configure_dp_phy(struct qmp_combo *qmp,
                                     unsigned int com_resetm_ctrl_reg,
                                     unsigned int com_c_ready_status_reg,
+                                    unsigned int com_cmn_status_reg,
                                     unsigned int dp_phy_status_reg)
 {
        const struct phy_configure_opts_dp *dp_opts = &qmp->dp_opts;
                        10000))
                return -ETIMEDOUT;
 
-       if (readl_poll_timeout(qmp->dp_serdes + QSERDES_V4_COM_CMN_STATUS,
+       if (readl_poll_timeout(qmp->dp_serdes + com_cmn_status_reg,
                        status,
                        ((status & BIT(0)) > 0),
                        500,
                        10000))
                return -ETIMEDOUT;
 
-       if (readl_poll_timeout(qmp->dp_serdes + QSERDES_V4_COM_CMN_STATUS,
+       if (readl_poll_timeout(qmp->dp_serdes + com_cmn_status_reg,
                        status,
                        ((status & BIT(1)) > 0),
                        500,
 
        ret = qmp_v456_configure_dp_phy(qmp, QSERDES_V4_COM_RESETSM_CNTRL,
                                        QSERDES_V4_COM_C_READY_STATUS,
+                                       QSERDES_V4_COM_CMN_STATUS,
                                        QSERDES_V4_DP_PHY_STATUS);
        if (ret < 0)
                return ret;
 
        ret = qmp_v456_configure_dp_phy(qmp, QSERDES_V4_COM_RESETSM_CNTRL,
                                        QSERDES_V4_COM_C_READY_STATUS,
+                                       QSERDES_V4_COM_CMN_STATUS,
                                        QSERDES_V4_DP_PHY_STATUS);
        if (ret < 0)
                return ret;
 
        ret = qmp_v456_configure_dp_phy(qmp, QSERDES_V6_COM_RESETSM_CNTRL,
                                        QSERDES_V6_COM_C_READY_STATUS,
+                                       QSERDES_V6_COM_CMN_STATUS,
                                        QSERDES_V6_DP_PHY_STATUS);
        if (ret < 0)
                return ret;