config CLK_RCAR_USB2_CLOCK_SEL
        bool "Renesas R-Car USB2 clock selector support"
        depends on ARCH_RENESAS || COMPILE_TEST
+       select RESET_CONTROLLER
        help
          This is a driver for R-Car USB2 clock selector
 
 
 #include <linux/platform_device.h>
 #include <linux/pm.h>
 #include <linux/pm_runtime.h>
+#include <linux/reset.h>
 #include <linux/slab.h>
 
 #define USB20_CLKSET0          0x00
        void __iomem *base;
        struct clk_hw hw;
        struct clk_bulk_data clks[ARRAY_SIZE(rcar_usb2_clocks)];
+       struct reset_control *rsts;
        bool extal;
        bool xtal;
 };
        struct usb2_clock_sel_priv *priv = to_priv(hw);
        int ret;
 
-       ret = clk_bulk_prepare_enable(ARRAY_SIZE(priv->clks), priv->clks);
+       ret = reset_control_deassert(priv->rsts);
        if (ret)
                return ret;
 
+       ret = clk_bulk_prepare_enable(ARRAY_SIZE(priv->clks), priv->clks);
+       if (ret) {
+               reset_control_assert(priv->rsts);
+               return ret;
+       }
+
        usb2_clock_sel_enable_extal_only(priv);
 
        return 0;
        usb2_clock_sel_disable_extal_only(priv);
 
        clk_bulk_disable_unprepare(ARRAY_SIZE(priv->clks), priv->clks);
+       reset_control_assert(priv->rsts);
 }
 
 /*
        if (ret < 0)
                return ret;
 
+       priv->rsts = devm_reset_control_array_get(dev, true, false);
+       if (IS_ERR(priv->rsts))
+               return PTR_ERR(priv->rsts);
+
        pm_runtime_enable(dev);
        pm_runtime_get_sync(dev);