blob: c929d296c77be44c33ddf2c60de5107a8783c412 [file] [log] [blame]
Greg Kroah-Hartman5fd54ac2017-11-03 11:28:30 +01001// SPDX-License-Identifier: GPL-2.0
Yoshihiro Shimodade187572016-01-07 18:18:13 +09002/*
3 * Renesas USB driver R-Car Gen. 3 initialization and power control
4 *
5 * Copyright (C) 2016 Renesas Electronics Corporation
Yoshihiro Shimodade187572016-01-07 18:18:13 +09006 */
7
Yoshihiro Shimodab7603232016-10-20 13:19:19 +09008#include <linux/delay.h>
Yoshihiro Shimodade187572016-01-07 18:18:13 +09009#include <linux/io.h>
10#include "common.h"
11#include "rcar3.h"
12
13#define LPSTS 0x102
Yoshihiro Shimoda0f386722017-10-03 20:09:14 +090014#define UGCTRL 0x180 /* 32-bit register */
Yoshihiro Shimodade187572016-01-07 18:18:13 +090015#define UGCTRL2 0x184 /* 32-bit register */
Yoshihiro Shimoda0f386722017-10-03 20:09:14 +090016#define UGSTS 0x188 /* 32-bit register */
Yoshihiro Shimodade187572016-01-07 18:18:13 +090017
18/* Low Power Status register (LPSTS) */
19#define LPSTS_SUSPM 0x4000
20
Yoshihiro Shimoda0f386722017-10-03 20:09:14 +090021/* R-Car D3 only: USB General control register (UGCTRL) */
22#define UGCTRL_PLLRESET 0x00000001
23#define UGCTRL_CONNECT 0x00000004
24
Yoshihiro Shimoda2acecd52017-08-02 13:21:45 +090025/*
26 * USB General control register 2 (UGCTRL2)
27 * Remarks: bit[31:11] and bit[9:6] should be 0
28 */
Yoshihiro Shimodade187572016-01-07 18:18:13 +090029#define UGCTRL2_RESERVED_3 0x00000001 /* bit[3:0] should be B'0001 */
Yoshihiro Shimoda0f386722017-10-03 20:09:14 +090030#define UGCTRL2_USB0SEL_HSUSB 0x00000020
Yoshihiro Shimodade187572016-01-07 18:18:13 +090031#define UGCTRL2_USB0SEL_OTG 0x00000030
Yoshihiro Shimoda2acecd52017-08-02 13:21:45 +090032#define UGCTRL2_VBUSSEL 0x00000400
Yoshihiro Shimodade187572016-01-07 18:18:13 +090033
Yoshihiro Shimoda0f386722017-10-03 20:09:14 +090034/* R-Car D3 only: USB General status register (UGSTS) */
35#define UGSTS_LOCK 0x00000100
36
Ben Dooks107a4b52016-06-21 18:52:54 +010037static void usbhs_write32(struct usbhs_priv *priv, u32 reg, u32 data)
Yoshihiro Shimodade187572016-01-07 18:18:13 +090038{
39 iowrite32(data, priv->base + reg);
40}
41
Yoshihiro Shimoda0f386722017-10-03 20:09:14 +090042static u32 usbhs_read32(struct usbhs_priv *priv, u32 reg)
43{
44 return ioread32(priv->base + reg);
45}
46
Yoshihiro Shimodade187572016-01-07 18:18:13 +090047static int usbhs_rcar3_power_ctrl(struct platform_device *pdev,
48 void __iomem *base, int enable)
49{
50 struct usbhs_priv *priv = usbhs_pdev_to_priv(pdev);
51
Yoshihiro Shimoda2acecd52017-08-02 13:21:45 +090052 usbhs_write32(priv, UGCTRL2, UGCTRL2_RESERVED_3 | UGCTRL2_USB0SEL_OTG |
53 UGCTRL2_VBUSSEL);
Yoshihiro Shimodade187572016-01-07 18:18:13 +090054
Yoshihiro Shimodab7603232016-10-20 13:19:19 +090055 if (enable) {
Yoshihiro Shimodade187572016-01-07 18:18:13 +090056 usbhs_bset(priv, LPSTS, LPSTS_SUSPM, LPSTS_SUSPM);
Yoshihiro Shimodab7603232016-10-20 13:19:19 +090057 /* The controller on R-Car Gen3 needs to wait up to 45 usec */
58 udelay(45);
59 } else {
Yoshihiro Shimodade187572016-01-07 18:18:13 +090060 usbhs_bset(priv, LPSTS, LPSTS_SUSPM, 0);
Yoshihiro Shimodab7603232016-10-20 13:19:19 +090061 }
Yoshihiro Shimodade187572016-01-07 18:18:13 +090062
63 return 0;
64}
65
Yoshihiro Shimoda0f386722017-10-03 20:09:14 +090066/* R-Car D3 needs to release UGCTRL.PLLRESET */
67static int usbhs_rcar3_power_and_pll_ctrl(struct platform_device *pdev,
68 void __iomem *base, int enable)
69{
70 struct usbhs_priv *priv = usbhs_pdev_to_priv(pdev);
71 u32 val;
72 int timeout = 1000;
73
74 if (enable) {
75 usbhs_write32(priv, UGCTRL, 0); /* release PLLRESET */
76 usbhs_write32(priv, UGCTRL2, UGCTRL2_RESERVED_3 |
77 UGCTRL2_USB0SEL_HSUSB);
78
79 usbhs_bset(priv, LPSTS, LPSTS_SUSPM, LPSTS_SUSPM);
80 do {
81 val = usbhs_read32(priv, UGSTS);
82 udelay(1);
83 } while (!(val & UGSTS_LOCK) && timeout--);
84 usbhs_write32(priv, UGCTRL, UGCTRL_CONNECT);
85 } else {
86 usbhs_write32(priv, UGCTRL, 0);
87 usbhs_bset(priv, LPSTS, LPSTS_SUSPM, 0);
88 usbhs_write32(priv, UGCTRL, UGCTRL_PLLRESET);
89 }
90
91 return 0;
92}
93
Yoshihiro Shimodade187572016-01-07 18:18:13 +090094static int usbhs_rcar3_get_id(struct platform_device *pdev)
95{
96 return USBHS_GADGET;
97}
98
99const struct renesas_usbhs_platform_callback usbhs_rcar3_ops = {
100 .power_ctrl = usbhs_rcar3_power_ctrl,
101 .get_id = usbhs_rcar3_get_id,
102};
Yoshihiro Shimoda0f386722017-10-03 20:09:14 +0900103
104const struct renesas_usbhs_platform_callback usbhs_rcar3_with_pll_ops = {
105 .power_ctrl = usbhs_rcar3_power_and_pll_ctrl,
106 .get_id = usbhs_rcar3_get_id,
107};