isp1760_write32(isp->regs, HC_HW_MODE_CTRL, hwmode);
        isp1760_write32(isp->regs, HC_HW_MODE_CTRL, hwmode);
 
+       /*
+        * PORT 1 Control register of the ISP1760 is the OTG control register on
+        * ISP1761. Since there is no OTG or device controller support in this
+        * driver, we use port 1 as a "normal" USB host port on both chips.
+        */
+       isp1760_write32(isp->regs, HC_PORT1_CTRL, PORT1_POWER | PORT1_INIT2);
+       usleep_range(10000, 11000);
+
        dev_info(isp->dev, "bus width: %u, oc: %s\n",
                 isp->devflags & ISP1760_FLAG_BUS_WIDTH_16 ? 16 : 32,
                 isp->devflags & ISP1760_FLAG_ANALOG_OC ? "analog" : "digital");
 
 
        reg_write32(hcd->regs, HC_INTERRUPT_ENABLE, INTERRUPT_ENABLE_MASK);
 
-       /*
-        * PORT 1 Control register of the ISP1760 is the OTG control
-        * register on ISP1761. Since there is no OTG or device controller
-        * support in this driver, we use port 1 as a "normal" USB host port on
-        * both chips.
-        */
-       reg_write32(hcd->regs, HC_PORT1_CTRL, PORT1_POWER | PORT1_INIT2);
-       mdelay(10);
-
        priv->hcs_params = reg_read32(hcd->regs, HC_HCSPARAMS);
 
        return priv_init(hcd);