2 * Renesas USB driver R-Car Gen. 2 initialization and power control
4 * Copyright (C) 2014 Ulrich Hecht
6 * This program is distributed in the hope that it will be useful,
7 * but WITHOUT ANY WARRANTY; without even the implied warranty of
8 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
9 * GNU General Public License for more details.
13 #include <linux/gpio.h>
14 #include <linux/of_gpio.h>
15 #include <linux/phy/phy.h>
16 #include <linux/usb/phy.h>
20 static int usbhs_rcar2_hardware_init(struct platform_device
*pdev
)
22 struct usbhs_priv
*priv
= usbhs_pdev_to_priv(pdev
);
24 if (IS_ENABLED(CONFIG_GENERIC_PHY
)) {
25 struct phy
*phy
= phy_get(&pdev
->dev
, "usb");
34 if (IS_ENABLED(CONFIG_USB_PHY
)) {
35 struct usb_phy
*usb_phy
= usb_get_phy_dev(&pdev
->dev
, 0);
38 return PTR_ERR(usb_phy
);
40 priv
->usb_phy
= usb_phy
;
47 static int usbhs_rcar2_hardware_exit(struct platform_device
*pdev
)
49 struct usbhs_priv
*priv
= usbhs_pdev_to_priv(pdev
);
57 usb_put_phy(priv
->usb_phy
);
64 static int usbhs_rcar2_power_ctrl(struct platform_device
*pdev
,
65 void __iomem
*base
, int enable
)
67 struct usbhs_priv
*priv
= usbhs_pdev_to_priv(pdev
);
72 retval
= phy_init(priv
->phy
);
75 retval
= phy_power_on(priv
->phy
);
77 phy_power_off(priv
->phy
);
85 retval
= usb_phy_init(priv
->usb_phy
);
88 retval
= usb_phy_set_suspend(priv
->usb_phy
, 0);
90 usb_phy_set_suspend(priv
->usb_phy
, 1);
91 usb_phy_shutdown(priv
->usb_phy
);
99 static int usbhs_rcar2_get_id(struct platform_device
*pdev
)
104 const struct renesas_usbhs_platform_callback usbhs_rcar2_ops
= {
105 .hardware_init
= usbhs_rcar2_hardware_init
,
106 .hardware_exit
= usbhs_rcar2_hardware_exit
,
107 .power_ctrl
= usbhs_rcar2_power_ctrl
,
108 .get_id
= usbhs_rcar2_get_id
,