u8 phyctl_offset;
        bool dedicated_clocks;
        bool phy0_dual_route;
+       bool needs_phy2_siddq;
        int missing_phys;
 };
 
                return ret;
        }
 
+       /* Some PHYs on some SoCs need the help of PHY2 to work. */
+       if (data->cfg->needs_phy2_siddq && phy->index != 2) {
+               struct sun4i_usb_phy *phy2 = &data->phys[2];
+
+               ret = clk_prepare_enable(phy2->clk);
+               if (ret) {
+                       reset_control_assert(phy->reset);
+                       clk_disable_unprepare(phy->clk2);
+                       clk_disable_unprepare(phy->clk);
+                       return ret;
+               }
+
+               ret = reset_control_deassert(phy2->reset);
+               if (ret) {
+                       clk_disable_unprepare(phy2->clk);
+                       reset_control_assert(phy->reset);
+                       clk_disable_unprepare(phy->clk2);
+                       clk_disable_unprepare(phy->clk);
+                       return ret;
+               }
+
+               /*
+                * This extra clock is just needed to access the
+                * REG_HCI_PHY_CTL PMU register for PHY2.
+                */
+               ret = clk_prepare_enable(phy2->clk2);
+               if (ret) {
+                       reset_control_assert(phy2->reset);
+                       clk_disable_unprepare(phy2->clk);
+                       reset_control_assert(phy->reset);
+                       clk_disable_unprepare(phy->clk2);
+                       clk_disable_unprepare(phy->clk);
+                       return ret;
+               }
+
+               if (phy2->pmu && data->cfg->hci_phy_ctl_clear) {
+                       val = readl(phy2->pmu + REG_HCI_PHY_CTL);
+                       val &= ~data->cfg->hci_phy_ctl_clear;
+                       writel(val, phy2->pmu + REG_HCI_PHY_CTL);
+               }
+
+               clk_disable_unprepare(phy->clk2);
+       }
+
        if (phy->pmu && data->cfg->hci_phy_ctl_clear) {
                val = readl(phy->pmu + REG_HCI_PHY_CTL);
                val &= ~data->cfg->hci_phy_ctl_clear;
                data->phy0_init = false;
        }
 
+       if (data->cfg->needs_phy2_siddq && phy->index != 2) {
+               struct sun4i_usb_phy *phy2 = &data->phys[2];
+
+               clk_disable_unprepare(phy2->clk);
+               reset_control_assert(phy2->reset);
+       }
+
        sun4i_usb_phy_passby(phy, 0);
        reset_control_assert(phy->reset);
        clk_disable_unprepare(phy->clk2);
                                dev_err(dev, "failed to get clock %s\n", name);
                                return PTR_ERR(phy->clk2);
                        }
+               } else {
+                       snprintf(name, sizeof(name), "pmu%d_clk", i);
+                       phy->clk2 = devm_clk_get_optional(dev, name);
+                       if (IS_ERR(phy->clk2)) {
+                               dev_err(dev, "failed to get clock %s\n", name);
+                               return PTR_ERR(phy->clk2);
+                       }
                }
 
                snprintf(name, sizeof(name), "usb%d_reset", i);