/* true, if PHY needs delay after POWER_DOWN */
        bool has_pwrdn_delay;
-       /* power_down delay in usec */
-       int pwrdn_delay_min;
-       int pwrdn_delay_max;
 
        /* QMP PHY pipe clock interface rate */
        unsigned long pipe_clock_rate;
        .phy_status             = PHYSTATUS,
 
        .has_pwrdn_delay        = true,
-       .pwrdn_delay_min        = 995,          /* us */
-       .pwrdn_delay_max        = 1005,         /* us */
 };
 
 static const struct qmp_phy_cfg ipq8074_pciephy_gen3_cfg = {
        .pwrdn_ctrl             = SW_PWRDN | REFCLK_DRV_DSBL,
 
        .has_pwrdn_delay        = true,
-       .pwrdn_delay_min        = 995,          /* us */
-       .pwrdn_delay_max        = 1005,         /* us */
 
        .pipe_clock_rate        = 250000000,
 };
        .pwrdn_ctrl             = SW_PWRDN | REFCLK_DRV_DSBL,
 
        .has_pwrdn_delay        = true,
-       .pwrdn_delay_min        = 995,          /* us */
-       .pwrdn_delay_max        = 1005,         /* us */
 };
 
 static const struct qmp_phy_cfg sdm845_qmp_pciephy_cfg = {
        .phy_status             = PHYSTATUS,
 
        .has_pwrdn_delay        = true,
-       .pwrdn_delay_min        = 995,          /* us */
-       .pwrdn_delay_max        = 1005,         /* us */
 };
 
 static const struct qmp_phy_cfg sdm845_qhp_pciephy_cfg = {
        .phy_status             = PHYSTATUS,
 
        .has_pwrdn_delay        = true,
-       .pwrdn_delay_min        = 995,          /* us */
-       .pwrdn_delay_max        = 1005,         /* us */
 };
 
 static const struct qmp_phy_cfg sm8250_qmp_gen3x1_pciephy_cfg = {
        .phy_status             = PHYSTATUS,
 
        .has_pwrdn_delay        = true,
-       .pwrdn_delay_min        = 995,          /* us */
-       .pwrdn_delay_max        = 1005,         /* us */
 };
 
 static const struct qmp_phy_cfg sm8250_qmp_gen3x2_pciephy_cfg = {
        .phy_status             = PHYSTATUS,
 
        .has_pwrdn_delay        = true,
-       .pwrdn_delay_min        = 995,          /* us */
-       .pwrdn_delay_max        = 1005,         /* us */
 };
 
 static const struct qmp_phy_cfg msm8998_pciephy_cfg = {
        .pwrdn_ctrl             = SW_PWRDN | REFCLK_DRV_DSBL,
 
        .has_pwrdn_delay        = true,
-       .pwrdn_delay_min        = 995,          /* us */
-       .pwrdn_delay_max        = 1005,         /* us */
 };
 
 static const struct qmp_phy_cfg sdx55_qmp_pciephy_cfg = {
        .phy_status             = PHYSTATUS_4_20,
 
        .has_pwrdn_delay        = true,
-       .pwrdn_delay_min        = 995,          /* us */
-       .pwrdn_delay_max        = 1005,         /* us */
 };
 
 static const struct qmp_phy_cfg sm8450_qmp_gen3x1_pciephy_cfg = {
        .phy_status             = PHYSTATUS,
 
        .has_pwrdn_delay        = true,
-       .pwrdn_delay_min        = 995,          /* us */
-       .pwrdn_delay_max        = 1005,         /* us */
 };
 
 static const struct qmp_phy_cfg sm8450_qmp_gen4x2_pciephy_cfg = {
        .phy_status             = PHYSTATUS_4_20,
 
        .has_pwrdn_delay        = true,
-       .pwrdn_delay_min        = 995,          /* us */
-       .pwrdn_delay_max        = 1005,         /* us */
 };
 
 static void qmp_pcie_configure_lane(void __iomem *base,
        qmp_pcie_pcs_init(qphy, mode_tables);
 
        if (cfg->has_pwrdn_delay)
-               usleep_range(cfg->pwrdn_delay_min, cfg->pwrdn_delay_max);
+               usleep_range(1000, 1200);
 
        /* Pull PHY out of reset state */
        qphy_clrbits(pcs, cfg->regs[QPHY_SW_RESET], SW_RESET);