blob: 68cd4b68e3a207f66a7a2fbdd9d6295cc4210111 [file] [log] [blame]
Greg Kroah-Hartman5fd54ac2017-11-03 11:28:30 +01001// SPDX-License-Identifier: GPL-2.0
Benoit Goby91525d02011-03-09 16:28:55 -08002/*
Benoit Goby91525d02011-03-09 16:28:55 -08003 * Copyright (C) 2010 Google, Inc.
Venu Byravarasu2d22b422013-05-16 19:43:02 +05304 * Copyright (C) 2013 NVIDIA Corporation
Benoit Goby91525d02011-03-09 16:28:55 -08005 *
6 * Author:
7 * Erik Gilling <konkers@google.com>
8 * Benoit Goby <benoit@android.com>
Venu Byravarasu2d22b422013-05-16 19:43:02 +05309 * Venu Byravarasu <vbyravarasu@nvidia.com>
Benoit Goby91525d02011-03-09 16:28:55 -080010 */
11
Benoit Goby91525d02011-03-09 16:28:55 -080012#include <linux/delay.h>
Benoit Goby91525d02011-03-09 16:28:55 -080013#include <linux/err.h>
Arnd Bergmann4265cbf2012-03-02 15:58:42 -050014#include <linux/export.h>
Krzysztof Kozlowski9cb93222020-03-03 12:29:20 +010015#include <linux/gpio/consumer.h>
Dmitry Osipenko5bb69852020-01-06 04:34:03 +030016#include <linux/iopoll.h>
17#include <linux/module.h>
Venu Byravarasu3a55c6a2013-01-16 03:30:20 +000018#include <linux/of.h>
Tuomas Tynkkynen3e635202013-08-12 16:06:51 +030019#include <linux/of_device.h>
Dmitry Osipenko5bb69852020-01-06 04:34:03 +030020#include <linux/platform_device.h>
21#include <linux/resource.h>
22#include <linux/slab.h>
23#include <linux/spinlock.h>
24
Mikko Perttunenf5b8c8b2013-07-17 10:37:49 +030025#include <linux/regulator/consumer.h>
Benoit Goby91525d02011-03-09 16:28:55 -080026
Dmitry Osipenko5bb69852020-01-06 04:34:03 +030027#include <linux/usb/ehci_def.h>
28#include <linux/usb/of.h>
29#include <linux/usb/tegra_usb_phy.h>
30#include <linux/usb/ulpi.h>
31
Dmitry Osipenko545592e2020-01-06 04:34:02 +030032#define ULPI_VIEWPORT 0x170
Benoit Goby91525d02011-03-09 16:28:55 -080033
Tuomas Tynkkynen3e635202013-08-12 16:06:51 +030034/* PORTSC PTS/PHCD bits, Tegra20 only */
Dmitry Osipenko545592e2020-01-06 04:34:02 +030035#define TEGRA_USB_PORTSC1 0x184
36#define TEGRA_USB_PORTSC1_PTS(x) (((x) & 0x3) << 30)
37#define TEGRA_USB_PORTSC1_PHCD BIT(23)
Stephen Warren91a687d2013-06-13 11:24:11 -060038
Tuomas Tynkkynen3e635202013-08-12 16:06:51 +030039/* HOSTPC1 PTS/PHCD bits, Tegra30 and above */
Dmitry Osipenko545592e2020-01-06 04:34:02 +030040#define TEGRA_USB_HOSTPC1_DEVLC 0x1b4
41#define TEGRA_USB_HOSTPC1_DEVLC_PTS(x) (((x) & 0x7) << 29)
42#define TEGRA_USB_HOSTPC1_DEVLC_PHCD BIT(22)
Tuomas Tynkkynen3e635202013-08-12 16:06:51 +030043
Stephen Warren91a687d2013-06-13 11:24:11 -060044/* Bits of PORTSC1, which will get cleared by writing 1 into them */
45#define TEGRA_PORTSC1_RWC_BITS (PORT_CSC | PORT_PEC | PORT_OCC)
46
Dmitry Osipenko545592e2020-01-06 04:34:02 +030047#define USB_SUSP_CTRL 0x400
Dmitry Osipenko35192002020-12-18 15:02:39 +030048#define USB_WAKE_ON_RESUME_EN BIT(2)
Dmitry Osipenko545592e2020-01-06 04:34:02 +030049#define USB_WAKE_ON_CNNT_EN_DEV BIT(3)
50#define USB_WAKE_ON_DISCON_EN_DEV BIT(4)
51#define USB_SUSP_CLR BIT(5)
52#define USB_PHY_CLK_VALID BIT(7)
53#define UTMIP_RESET BIT(11)
54#define UHSIC_RESET BIT(11)
55#define UTMIP_PHY_ENABLE BIT(12)
56#define ULPI_PHY_ENABLE BIT(13)
57#define USB_SUSP_SET BIT(14)
58#define USB_WAKEUP_DEBOUNCE_COUNT(x) (((x) & 0x7) << 16)
Benoit Goby91525d02011-03-09 16:28:55 -080059
Dmitry Osipenko35192002020-12-18 15:02:39 +030060#define USB_PHY_VBUS_SENSORS 0x404
Dmitry Osipenko7917e902021-06-13 17:59:36 +030061#define B_SESS_VLD_WAKEUP_EN BIT(14)
Dmitry Osipenko35192002020-12-18 15:02:39 +030062#define A_SESS_VLD_WAKEUP_EN BIT(22)
63#define A_VBUS_VLD_WAKEUP_EN BIT(30)
64
65#define USB_PHY_VBUS_WAKEUP_ID 0x408
Dmitry Osipenkoc1baf6c2021-09-12 21:17:15 +030066#define ID_INT_EN BIT(0)
67#define ID_CHG_DET BIT(1)
68#define VBUS_WAKEUP_INT_EN BIT(8)
69#define VBUS_WAKEUP_CHG_DET BIT(9)
Dmitry Osipenko6f8d39a2021-06-13 17:59:35 +030070#define VBUS_WAKEUP_STS BIT(10)
Dmitry Osipenko35192002020-12-18 15:02:39 +030071#define VBUS_WAKEUP_WAKEUP_EN BIT(30)
72
Dmitry Osipenko545592e2020-01-06 04:34:02 +030073#define USB1_LEGACY_CTRL 0x410
74#define USB1_NO_LEGACY_MODE BIT(0)
Benoit Goby91525d02011-03-09 16:28:55 -080075#define USB1_VBUS_SENSE_CTL_MASK (3 << 1)
76#define USB1_VBUS_SENSE_CTL_VBUS_WAKEUP (0 << 1)
77#define USB1_VBUS_SENSE_CTL_AB_SESS_VLD_OR_VBUS_WAKEUP \
78 (1 << 1)
79#define USB1_VBUS_SENSE_CTL_AB_SESS_VLD (2 << 1)
80#define USB1_VBUS_SENSE_CTL_A_SESS_VLD (3 << 1)
81
Dmitry Osipenko545592e2020-01-06 04:34:02 +030082#define ULPI_TIMING_CTRL_0 0x424
83#define ULPI_OUTPUT_PINMUX_BYP BIT(10)
84#define ULPI_CLKOUT_PINMUX_BYP BIT(11)
Benoit Goby91525d02011-03-09 16:28:55 -080085
Dmitry Osipenko545592e2020-01-06 04:34:02 +030086#define ULPI_TIMING_CTRL_1 0x428
87#define ULPI_DATA_TRIMMER_LOAD BIT(0)
88#define ULPI_DATA_TRIMMER_SEL(x) (((x) & 0x7) << 1)
89#define ULPI_STPDIRNXT_TRIMMER_LOAD BIT(16)
90#define ULPI_STPDIRNXT_TRIMMER_SEL(x) (((x) & 0x7) << 17)
91#define ULPI_DIR_TRIMMER_LOAD BIT(24)
92#define ULPI_DIR_TRIMMER_SEL(x) (((x) & 0x7) << 25)
Benoit Goby91525d02011-03-09 16:28:55 -080093
Dmitry Osipenko545592e2020-01-06 04:34:02 +030094#define UTMIP_PLL_CFG1 0x804
Benoit Goby91525d02011-03-09 16:28:55 -080095#define UTMIP_XTAL_FREQ_COUNT(x) (((x) & 0xfff) << 0)
96#define UTMIP_PLLU_ENABLE_DLY_COUNT(x) (((x) & 0x1f) << 27)
97
Dmitry Osipenko545592e2020-01-06 04:34:02 +030098#define UTMIP_XCVR_CFG0 0x808
Benoit Goby91525d02011-03-09 16:28:55 -080099#define UTMIP_XCVR_SETUP(x) (((x) & 0xf) << 0)
Tuomas Tynkkynenf5833a02013-08-12 16:06:50 +0300100#define UTMIP_XCVR_SETUP_MSB(x) ((((x) & 0x70) >> 4) << 22)
Benoit Goby91525d02011-03-09 16:28:55 -0800101#define UTMIP_XCVR_LSRSLEW(x) (((x) & 0x3) << 8)
102#define UTMIP_XCVR_LSFSLEW(x) (((x) & 0x3) << 10)
Dmitry Osipenko545592e2020-01-06 04:34:02 +0300103#define UTMIP_FORCE_PD_POWERDOWN BIT(14)
104#define UTMIP_FORCE_PD2_POWERDOWN BIT(16)
105#define UTMIP_FORCE_PDZI_POWERDOWN BIT(18)
106#define UTMIP_XCVR_LSBIAS_SEL BIT(21)
Tuomas Tynkkynene497a242013-08-12 16:06:53 +0300107#define UTMIP_XCVR_HSSLEW(x) (((x) & 0x3) << 4)
108#define UTMIP_XCVR_HSSLEW_MSB(x) ((((x) & 0x1fc) >> 2) << 25)
Benoit Goby91525d02011-03-09 16:28:55 -0800109
Dmitry Osipenko545592e2020-01-06 04:34:02 +0300110#define UTMIP_BIAS_CFG0 0x80c
111#define UTMIP_OTGPD BIT(11)
112#define UTMIP_BIASPD BIT(10)
113#define UTMIP_HSSQUELCH_LEVEL(x) (((x) & 0x3) << 0)
114#define UTMIP_HSDISCON_LEVEL(x) (((x) & 0x3) << 2)
115#define UTMIP_HSDISCON_LEVEL_MSB(x) ((((x) & 0x4) >> 2) << 24)
Benoit Goby91525d02011-03-09 16:28:55 -0800116
Dmitry Osipenko545592e2020-01-06 04:34:02 +0300117#define UTMIP_HSRX_CFG0 0x810
118#define UTMIP_ELASTIC_LIMIT(x) (((x) & 0x1f) << 10)
119#define UTMIP_IDLE_WAIT(x) (((x) & 0x1f) << 15)
Benoit Goby91525d02011-03-09 16:28:55 -0800120
Dmitry Osipenko545592e2020-01-06 04:34:02 +0300121#define UTMIP_HSRX_CFG1 0x814
122#define UTMIP_HS_SYNC_START_DLY(x) (((x) & 0x1f) << 1)
Benoit Goby91525d02011-03-09 16:28:55 -0800123
Dmitry Osipenko545592e2020-01-06 04:34:02 +0300124#define UTMIP_TX_CFG0 0x820
125#define UTMIP_FS_PREABMLE_J BIT(19)
126#define UTMIP_HS_DISCON_DISABLE BIT(8)
Benoit Goby91525d02011-03-09 16:28:55 -0800127
Dmitry Osipenko545592e2020-01-06 04:34:02 +0300128#define UTMIP_MISC_CFG0 0x824
129#define UTMIP_DPDM_OBSERVE BIT(26)
130#define UTMIP_DPDM_OBSERVE_SEL(x) (((x) & 0xf) << 27)
131#define UTMIP_DPDM_OBSERVE_SEL_FS_J UTMIP_DPDM_OBSERVE_SEL(0xf)
132#define UTMIP_DPDM_OBSERVE_SEL_FS_K UTMIP_DPDM_OBSERVE_SEL(0xe)
133#define UTMIP_DPDM_OBSERVE_SEL_FS_SE1 UTMIP_DPDM_OBSERVE_SEL(0xd)
134#define UTMIP_DPDM_OBSERVE_SEL_FS_SE0 UTMIP_DPDM_OBSERVE_SEL(0xc)
135#define UTMIP_SUSPEND_EXIT_ON_EDGE BIT(22)
Benoit Goby91525d02011-03-09 16:28:55 -0800136
Dmitry Osipenko545592e2020-01-06 04:34:02 +0300137#define UTMIP_MISC_CFG1 0x828
138#define UTMIP_PLL_ACTIVE_DLY_COUNT(x) (((x) & 0x1f) << 18)
139#define UTMIP_PLLU_STABLE_COUNT(x) (((x) & 0xfff) << 6)
Benoit Goby91525d02011-03-09 16:28:55 -0800140
Dmitry Osipenko545592e2020-01-06 04:34:02 +0300141#define UTMIP_DEBOUNCE_CFG0 0x82c
142#define UTMIP_BIAS_DEBOUNCE_A(x) (((x) & 0xffff) << 0)
Benoit Goby91525d02011-03-09 16:28:55 -0800143
Dmitry Osipenko545592e2020-01-06 04:34:02 +0300144#define UTMIP_BAT_CHRG_CFG0 0x830
145#define UTMIP_PD_CHRG BIT(0)
Benoit Goby91525d02011-03-09 16:28:55 -0800146
Dmitry Osipenko545592e2020-01-06 04:34:02 +0300147#define UTMIP_SPARE_CFG0 0x834
148#define FUSE_SETUP_SEL BIT(3)
Benoit Goby91525d02011-03-09 16:28:55 -0800149
Dmitry Osipenko545592e2020-01-06 04:34:02 +0300150#define UTMIP_XCVR_CFG1 0x838
151#define UTMIP_FORCE_PDDISC_POWERDOWN BIT(0)
152#define UTMIP_FORCE_PDCHRP_POWERDOWN BIT(2)
153#define UTMIP_FORCE_PDDR_POWERDOWN BIT(4)
154#define UTMIP_XCVR_TERM_RANGE_ADJ(x) (((x) & 0xf) << 18)
Benoit Goby91525d02011-03-09 16:28:55 -0800155
Dmitry Osipenko545592e2020-01-06 04:34:02 +0300156#define UTMIP_BIAS_CFG1 0x83c
157#define UTMIP_BIAS_PDTRK_COUNT(x) (((x) & 0x1f) << 3)
Benoit Goby91525d02011-03-09 16:28:55 -0800158
Tuomas Tynkkynen3e635202013-08-12 16:06:51 +0300159/* For Tegra30 and above only, the address is different in Tegra20 */
Dmitry Osipenko545592e2020-01-06 04:34:02 +0300160#define USB_USBMODE 0x1f8
161#define USB_USBMODE_MASK (3 << 0)
162#define USB_USBMODE_HOST (3 << 0)
163#define USB_USBMODE_DEVICE (2 << 0)
Tuomas Tynkkynen3e635202013-08-12 16:06:51 +0300164
Dmitry Osipenkoc1baf6c2021-09-12 21:17:15 +0300165#define PMC_USB_AO 0xf0
166#define VBUS_WAKEUP_PD_P0 BIT(2)
167#define ID_PD_P0 BIT(3)
168
Benoit Goby91525d02011-03-09 16:28:55 -0800169static DEFINE_SPINLOCK(utmip_pad_lock);
Dmitry Osipenko545592e2020-01-06 04:34:02 +0300170static unsigned int utmip_pad_count;
Benoit Goby91525d02011-03-09 16:28:55 -0800171
172struct tegra_xtal_freq {
Dmitry Osipenko545592e2020-01-06 04:34:02 +0300173 unsigned int freq;
Benoit Goby91525d02011-03-09 16:28:55 -0800174 u8 enable_delay;
175 u8 stable_count;
176 u8 active_delay;
177 u8 xtal_freq_count;
178 u16 debounce;
179};
180
181static const struct tegra_xtal_freq tegra_freq_table[] = {
182 {
183 .freq = 12000000,
184 .enable_delay = 0x02,
185 .stable_count = 0x2F,
186 .active_delay = 0x04,
187 .xtal_freq_count = 0x76,
188 .debounce = 0x7530,
189 },
190 {
191 .freq = 13000000,
192 .enable_delay = 0x02,
193 .stable_count = 0x33,
194 .active_delay = 0x05,
195 .xtal_freq_count = 0x7F,
196 .debounce = 0x7EF4,
197 },
198 {
199 .freq = 19200000,
200 .enable_delay = 0x03,
201 .stable_count = 0x4B,
202 .active_delay = 0x06,
203 .xtal_freq_count = 0xBB,
204 .debounce = 0xBB80,
205 },
206 {
207 .freq = 26000000,
208 .enable_delay = 0x04,
209 .stable_count = 0x66,
210 .active_delay = 0x09,
211 .xtal_freq_count = 0xFE,
212 .debounce = 0xFDE8,
213 },
214};
215
Dmitry Osipenko545592e2020-01-06 04:34:02 +0300216static inline struct tegra_usb_phy *to_tegra_usb_phy(struct usb_phy *u_phy)
217{
218 return container_of(u_phy, struct tegra_usb_phy, u_phy);
219}
220
Stephen Warren91a687d2013-06-13 11:24:11 -0600221static void set_pts(struct tegra_usb_phy *phy, u8 pts_val)
222{
223 void __iomem *base = phy->regs;
Dmitry Osipenko01d6ea32020-01-06 04:34:08 +0300224 u32 val;
Stephen Warren91a687d2013-06-13 11:24:11 -0600225
Tuomas Tynkkynen3e635202013-08-12 16:06:51 +0300226 if (phy->soc_config->has_hostpc) {
Dmitry Osipenkob07e5f82020-01-06 04:34:04 +0300227 val = readl_relaxed(base + TEGRA_USB_HOSTPC1_DEVLC);
Tuomas Tynkkynen3e635202013-08-12 16:06:51 +0300228 val &= ~TEGRA_USB_HOSTPC1_DEVLC_PTS(~0);
229 val |= TEGRA_USB_HOSTPC1_DEVLC_PTS(pts_val);
Dmitry Osipenkob07e5f82020-01-06 04:34:04 +0300230 writel_relaxed(val, base + TEGRA_USB_HOSTPC1_DEVLC);
Tuomas Tynkkynen3e635202013-08-12 16:06:51 +0300231 } else {
Dmitry Osipenkob07e5f82020-01-06 04:34:04 +0300232 val = readl_relaxed(base + TEGRA_USB_PORTSC1);
233 val &= ~TEGRA_PORTSC1_RWC_BITS;
Tuomas Tynkkynen3e635202013-08-12 16:06:51 +0300234 val &= ~TEGRA_USB_PORTSC1_PTS(~0);
235 val |= TEGRA_USB_PORTSC1_PTS(pts_val);
Dmitry Osipenkob07e5f82020-01-06 04:34:04 +0300236 writel_relaxed(val, base + TEGRA_USB_PORTSC1);
Tuomas Tynkkynen3e635202013-08-12 16:06:51 +0300237 }
Stephen Warren91a687d2013-06-13 11:24:11 -0600238}
239
240static void set_phcd(struct tegra_usb_phy *phy, bool enable)
241{
242 void __iomem *base = phy->regs;
Dmitry Osipenko01d6ea32020-01-06 04:34:08 +0300243 u32 val;
Stephen Warren91a687d2013-06-13 11:24:11 -0600244
Tuomas Tynkkynen3e635202013-08-12 16:06:51 +0300245 if (phy->soc_config->has_hostpc) {
Dmitry Osipenkob07e5f82020-01-06 04:34:04 +0300246 val = readl_relaxed(base + TEGRA_USB_HOSTPC1_DEVLC);
Tuomas Tynkkynen3e635202013-08-12 16:06:51 +0300247 if (enable)
248 val |= TEGRA_USB_HOSTPC1_DEVLC_PHCD;
249 else
250 val &= ~TEGRA_USB_HOSTPC1_DEVLC_PHCD;
Dmitry Osipenkob07e5f82020-01-06 04:34:04 +0300251 writel_relaxed(val, base + TEGRA_USB_HOSTPC1_DEVLC);
Tuomas Tynkkynen3e635202013-08-12 16:06:51 +0300252 } else {
Dmitry Osipenkob07e5f82020-01-06 04:34:04 +0300253 val = readl_relaxed(base + TEGRA_USB_PORTSC1) & ~PORT_RWC_BITS;
Tuomas Tynkkynen3e635202013-08-12 16:06:51 +0300254 if (enable)
255 val |= TEGRA_USB_PORTSC1_PHCD;
256 else
257 val &= ~TEGRA_USB_PORTSC1_PHCD;
Dmitry Osipenkob07e5f82020-01-06 04:34:04 +0300258 writel_relaxed(val, base + TEGRA_USB_PORTSC1);
Tuomas Tynkkynen3e635202013-08-12 16:06:51 +0300259 }
Stephen Warren91a687d2013-06-13 11:24:11 -0600260}
261
Benoit Goby91525d02011-03-09 16:28:55 -0800262static int utmip_pad_open(struct tegra_usb_phy *phy)
263{
Dmitry Osipenko14347032018-04-10 01:02:58 +0300264 int ret;
Dmitry Osipenkof59cd942018-04-10 01:02:57 +0300265
Dmitry Osipenko14347032018-04-10 01:02:58 +0300266 ret = clk_prepare_enable(phy->pad_clk);
267 if (ret) {
268 dev_err(phy->u_phy.dev,
269 "Failed to enable UTMI-pads clock: %d\n", ret);
270 return ret;
271 }
272
273 spin_lock(&utmip_pad_lock);
274
275 ret = reset_control_deassert(phy->pad_rst);
276 if (ret) {
277 dev_err(phy->u_phy.dev,
278 "Failed to initialize UTMI-pads reset: %d\n", ret);
279 goto unlock;
280 }
281
282 ret = reset_control_assert(phy->pad_rst);
283 if (ret) {
284 dev_err(phy->u_phy.dev,
285 "Failed to assert UTMI-pads reset: %d\n", ret);
286 goto unlock;
287 }
288
289 udelay(1);
290
291 ret = reset_control_deassert(phy->pad_rst);
292 if (ret)
293 dev_err(phy->u_phy.dev,
294 "Failed to deassert UTMI-pads reset: %d\n", ret);
295unlock:
296 spin_unlock(&utmip_pad_lock);
297
298 clk_disable_unprepare(phy->pad_clk);
299
300 return ret;
301}
302
303static int utmip_pad_close(struct tegra_usb_phy *phy)
304{
305 int ret;
306
307 ret = clk_prepare_enable(phy->pad_clk);
308 if (ret) {
309 dev_err(phy->u_phy.dev,
310 "Failed to enable UTMI-pads clock: %d\n", ret);
311 return ret;
312 }
313
314 ret = reset_control_assert(phy->pad_rst);
315 if (ret)
316 dev_err(phy->u_phy.dev,
317 "Failed to assert UTMI-pads reset: %d\n", ret);
318
319 udelay(1);
320
321 clk_disable_unprepare(phy->pad_clk);
322
323 return ret;
Benoit Goby91525d02011-03-09 16:28:55 -0800324}
325
Dmitry Osipenko545592e2020-01-06 04:34:02 +0300326static int utmip_pad_power_on(struct tegra_usb_phy *phy)
Benoit Goby91525d02011-03-09 16:28:55 -0800327{
Tuomas Tynkkynene497a242013-08-12 16:06:53 +0300328 struct tegra_utmip_config *config = phy->config;
Dmitry Osipenko545592e2020-01-06 04:34:02 +0300329 void __iomem *base = phy->pad_regs;
Dmitry Osipenko01d6ea32020-01-06 04:34:08 +0300330 u32 val;
Dmitry Osipenko545592e2020-01-06 04:34:02 +0300331 int err;
Benoit Goby91525d02011-03-09 16:28:55 -0800332
Dmitry Osipenko545592e2020-01-06 04:34:02 +0300333 err = clk_prepare_enable(phy->pad_clk);
334 if (err)
335 return err;
Benoit Goby91525d02011-03-09 16:28:55 -0800336
Dmitry Osipenkof1f0c752020-01-06 04:34:12 +0300337 spin_lock(&utmip_pad_lock);
Benoit Goby91525d02011-03-09 16:28:55 -0800338
339 if (utmip_pad_count++ == 0) {
Dmitry Osipenkob07e5f82020-01-06 04:34:04 +0300340 val = readl_relaxed(base + UTMIP_BIAS_CFG0);
Benoit Goby91525d02011-03-09 16:28:55 -0800341 val &= ~(UTMIP_OTGPD | UTMIP_BIASPD);
Tuomas Tynkkynene497a242013-08-12 16:06:53 +0300342
343 if (phy->soc_config->requires_extra_tuning_parameters) {
344 val &= ~(UTMIP_HSSQUELCH_LEVEL(~0) |
345 UTMIP_HSDISCON_LEVEL(~0) |
346 UTMIP_HSDISCON_LEVEL_MSB(~0));
347
348 val |= UTMIP_HSSQUELCH_LEVEL(config->hssquelch_level);
349 val |= UTMIP_HSDISCON_LEVEL(config->hsdiscon_level);
350 val |= UTMIP_HSDISCON_LEVEL_MSB(config->hsdiscon_level);
351 }
Dmitry Osipenkob07e5f82020-01-06 04:34:04 +0300352 writel_relaxed(val, base + UTMIP_BIAS_CFG0);
Benoit Goby91525d02011-03-09 16:28:55 -0800353 }
354
Dmitry Osipenko35192002020-12-18 15:02:39 +0300355 if (phy->pad_wakeup) {
356 phy->pad_wakeup = false;
357 utmip_pad_count--;
358 }
359
Dmitry Osipenkof1f0c752020-01-06 04:34:12 +0300360 spin_unlock(&utmip_pad_lock);
Benoit Goby91525d02011-03-09 16:28:55 -0800361
Prashant Gaikwad6a5278d2012-06-05 09:59:35 +0530362 clk_disable_unprepare(phy->pad_clk);
Dmitry Osipenko545592e2020-01-06 04:34:02 +0300363
364 return 0;
Benoit Goby91525d02011-03-09 16:28:55 -0800365}
366
367static int utmip_pad_power_off(struct tegra_usb_phy *phy)
368{
Benoit Goby91525d02011-03-09 16:28:55 -0800369 void __iomem *base = phy->pad_regs;
Dmitry Osipenko01d6ea32020-01-06 04:34:08 +0300370 u32 val;
Dmitry Osipenko92bd2ef2020-01-06 04:34:11 +0300371 int ret;
372
373 ret = clk_prepare_enable(phy->pad_clk);
374 if (ret)
375 return ret;
376
Dmitry Osipenkof1f0c752020-01-06 04:34:12 +0300377 spin_lock(&utmip_pad_lock);
Benoit Goby91525d02011-03-09 16:28:55 -0800378
379 if (!utmip_pad_count) {
Dmitry Osipenkof59cd942018-04-10 01:02:57 +0300380 dev_err(phy->u_phy.dev, "UTMIP pad already powered off\n");
Dmitry Osipenko92bd2ef2020-01-06 04:34:11 +0300381 ret = -EINVAL;
382 goto ulock;
Benoit Goby91525d02011-03-09 16:28:55 -0800383 }
384
Dmitry Osipenko35192002020-12-18 15:02:39 +0300385 /*
386 * In accordance to TRM, OTG and Bias pad circuits could be turned off
387 * to save power if wake is enabled, but the VBUS-change detection
388 * method is board-specific and these circuits may need to be enabled
389 * to generate wakeup event, hence we will just keep them both enabled.
390 */
391 if (phy->wakeup_enabled) {
392 phy->pad_wakeup = true;
393 utmip_pad_count++;
394 }
395
Benoit Goby91525d02011-03-09 16:28:55 -0800396 if (--utmip_pad_count == 0) {
Dmitry Osipenkob07e5f82020-01-06 04:34:04 +0300397 val = readl_relaxed(base + UTMIP_BIAS_CFG0);
Benoit Goby91525d02011-03-09 16:28:55 -0800398 val |= UTMIP_OTGPD | UTMIP_BIASPD;
Dmitry Osipenkob07e5f82020-01-06 04:34:04 +0300399 writel_relaxed(val, base + UTMIP_BIAS_CFG0);
Benoit Goby91525d02011-03-09 16:28:55 -0800400 }
Dmitry Osipenko92bd2ef2020-01-06 04:34:11 +0300401ulock:
Dmitry Osipenkof1f0c752020-01-06 04:34:12 +0300402 spin_unlock(&utmip_pad_lock);
Benoit Goby91525d02011-03-09 16:28:55 -0800403
Prashant Gaikwad6a5278d2012-06-05 09:59:35 +0530404 clk_disable_unprepare(phy->pad_clk);
Benoit Goby91525d02011-03-09 16:28:55 -0800405
Dmitry Osipenko92bd2ef2020-01-06 04:34:11 +0300406 return ret;
Benoit Goby91525d02011-03-09 16:28:55 -0800407}
408
409static int utmi_wait_register(void __iomem *reg, u32 mask, u32 result)
410{
Dmitry Osipenko43bcf642017-12-17 20:02:39 +0300411 u32 tmp;
412
Dmitry Osipenkob07e5f82020-01-06 04:34:04 +0300413 return readl_relaxed_poll_timeout(reg, tmp, (tmp & mask) == result,
414 2000, 6000);
Benoit Goby91525d02011-03-09 16:28:55 -0800415}
416
417static void utmi_phy_clk_disable(struct tegra_usb_phy *phy)
418{
Benoit Goby91525d02011-03-09 16:28:55 -0800419 void __iomem *base = phy->regs;
Dmitry Osipenko01d6ea32020-01-06 04:34:08 +0300420 u32 val;
Benoit Goby91525d02011-03-09 16:28:55 -0800421
Jon Hunter203f44c42017-10-02 12:22:53 +0100422 /*
423 * The USB driver may have already initiated the phy clock
424 * disable so wait to see if the clock turns off and if not
425 * then proceed with gating the clock.
426 */
427 if (utmi_wait_register(base + USB_SUSP_CTRL, USB_PHY_CLK_VALID, 0) == 0)
428 return;
429
Venu Byravarasu3a55c6a2013-01-16 03:30:20 +0000430 if (phy->is_legacy_phy) {
Dmitry Osipenkob07e5f82020-01-06 04:34:04 +0300431 val = readl_relaxed(base + USB_SUSP_CTRL);
Benoit Goby91525d02011-03-09 16:28:55 -0800432 val |= USB_SUSP_SET;
Dmitry Osipenkob07e5f82020-01-06 04:34:04 +0300433 writel_relaxed(val, base + USB_SUSP_CTRL);
Benoit Goby91525d02011-03-09 16:28:55 -0800434
Dmitry Osipenko545592e2020-01-06 04:34:02 +0300435 usleep_range(10, 100);
Benoit Goby91525d02011-03-09 16:28:55 -0800436
Dmitry Osipenkob07e5f82020-01-06 04:34:04 +0300437 val = readl_relaxed(base + USB_SUSP_CTRL);
Benoit Goby91525d02011-03-09 16:28:55 -0800438 val &= ~USB_SUSP_SET;
Dmitry Osipenkob07e5f82020-01-06 04:34:04 +0300439 writel_relaxed(val, base + USB_SUSP_CTRL);
Dmitry Osipenko545592e2020-01-06 04:34:02 +0300440 } else {
Stephen Warren91a687d2013-06-13 11:24:11 -0600441 set_phcd(phy, true);
Dmitry Osipenko545592e2020-01-06 04:34:02 +0300442 }
Benoit Goby91525d02011-03-09 16:28:55 -0800443
Dmitry Osipenko545592e2020-01-06 04:34:02 +0300444 if (utmi_wait_register(base + USB_SUSP_CTRL, USB_PHY_CLK_VALID, 0))
Dmitry Osipenkof59cd942018-04-10 01:02:57 +0300445 dev_err(phy->u_phy.dev,
446 "Timeout waiting for PHY to stabilize on disable\n");
Benoit Goby91525d02011-03-09 16:28:55 -0800447}
448
449static void utmi_phy_clk_enable(struct tegra_usb_phy *phy)
450{
Benoit Goby91525d02011-03-09 16:28:55 -0800451 void __iomem *base = phy->regs;
Dmitry Osipenko01d6ea32020-01-06 04:34:08 +0300452 u32 val;
Benoit Goby91525d02011-03-09 16:28:55 -0800453
Jon Hunter203f44c42017-10-02 12:22:53 +0100454 /*
455 * The USB driver may have already initiated the phy clock
456 * enable so wait to see if the clock turns on and if not
457 * then proceed with ungating the clock.
458 */
459 if (utmi_wait_register(base + USB_SUSP_CTRL, USB_PHY_CLK_VALID,
460 USB_PHY_CLK_VALID) == 0)
461 return;
462
Venu Byravarasu3a55c6a2013-01-16 03:30:20 +0000463 if (phy->is_legacy_phy) {
Dmitry Osipenkob07e5f82020-01-06 04:34:04 +0300464 val = readl_relaxed(base + USB_SUSP_CTRL);
Benoit Goby91525d02011-03-09 16:28:55 -0800465 val |= USB_SUSP_CLR;
Dmitry Osipenkob07e5f82020-01-06 04:34:04 +0300466 writel_relaxed(val, base + USB_SUSP_CTRL);
Benoit Goby91525d02011-03-09 16:28:55 -0800467
Dmitry Osipenko545592e2020-01-06 04:34:02 +0300468 usleep_range(10, 100);
Benoit Goby91525d02011-03-09 16:28:55 -0800469
Dmitry Osipenkob07e5f82020-01-06 04:34:04 +0300470 val = readl_relaxed(base + USB_SUSP_CTRL);
Benoit Goby91525d02011-03-09 16:28:55 -0800471 val &= ~USB_SUSP_CLR;
Dmitry Osipenkob07e5f82020-01-06 04:34:04 +0300472 writel_relaxed(val, base + USB_SUSP_CTRL);
Dmitry Osipenko545592e2020-01-06 04:34:02 +0300473 } else {
Stephen Warren91a687d2013-06-13 11:24:11 -0600474 set_phcd(phy, false);
Dmitry Osipenko545592e2020-01-06 04:34:02 +0300475 }
Benoit Goby91525d02011-03-09 16:28:55 -0800476
477 if (utmi_wait_register(base + USB_SUSP_CTRL, USB_PHY_CLK_VALID,
Dmitry Osipenko545592e2020-01-06 04:34:02 +0300478 USB_PHY_CLK_VALID))
Dmitry Osipenkof59cd942018-04-10 01:02:57 +0300479 dev_err(phy->u_phy.dev,
480 "Timeout waiting for PHY to stabilize on enable\n");
Benoit Goby91525d02011-03-09 16:28:55 -0800481}
482
483static int utmi_phy_power_on(struct tegra_usb_phy *phy)
484{
Benoit Goby91525d02011-03-09 16:28:55 -0800485 struct tegra_utmip_config *config = phy->config;
Dmitry Osipenko545592e2020-01-06 04:34:02 +0300486 void __iomem *base = phy->regs;
Dmitry Osipenko01d6ea32020-01-06 04:34:08 +0300487 u32 val;
Dmitry Osipenko545592e2020-01-06 04:34:02 +0300488 int err;
Benoit Goby91525d02011-03-09 16:28:55 -0800489
Dmitry Osipenkob07e5f82020-01-06 04:34:04 +0300490 val = readl_relaxed(base + USB_SUSP_CTRL);
Benoit Goby91525d02011-03-09 16:28:55 -0800491 val |= UTMIP_RESET;
Dmitry Osipenkob07e5f82020-01-06 04:34:04 +0300492 writel_relaxed(val, base + USB_SUSP_CTRL);
Benoit Goby91525d02011-03-09 16:28:55 -0800493
Venu Byravarasu3a55c6a2013-01-16 03:30:20 +0000494 if (phy->is_legacy_phy) {
Dmitry Osipenkob07e5f82020-01-06 04:34:04 +0300495 val = readl_relaxed(base + USB1_LEGACY_CTRL);
Benoit Goby91525d02011-03-09 16:28:55 -0800496 val |= USB1_NO_LEGACY_MODE;
Dmitry Osipenkob07e5f82020-01-06 04:34:04 +0300497 writel_relaxed(val, base + USB1_LEGACY_CTRL);
Benoit Goby91525d02011-03-09 16:28:55 -0800498 }
499
Dmitry Osipenkob07e5f82020-01-06 04:34:04 +0300500 val = readl_relaxed(base + UTMIP_TX_CFG0);
Tuomas Tynkkynenf5833a02013-08-12 16:06:50 +0300501 val |= UTMIP_FS_PREABMLE_J;
Dmitry Osipenkob07e5f82020-01-06 04:34:04 +0300502 writel_relaxed(val, base + UTMIP_TX_CFG0);
Benoit Goby91525d02011-03-09 16:28:55 -0800503
Dmitry Osipenkob07e5f82020-01-06 04:34:04 +0300504 val = readl_relaxed(base + UTMIP_HSRX_CFG0);
Benoit Goby91525d02011-03-09 16:28:55 -0800505 val &= ~(UTMIP_IDLE_WAIT(~0) | UTMIP_ELASTIC_LIMIT(~0));
506 val |= UTMIP_IDLE_WAIT(config->idle_wait_delay);
507 val |= UTMIP_ELASTIC_LIMIT(config->elastic_limit);
Dmitry Osipenkob07e5f82020-01-06 04:34:04 +0300508 writel_relaxed(val, base + UTMIP_HSRX_CFG0);
Benoit Goby91525d02011-03-09 16:28:55 -0800509
Dmitry Osipenkob07e5f82020-01-06 04:34:04 +0300510 val = readl_relaxed(base + UTMIP_HSRX_CFG1);
Benoit Goby91525d02011-03-09 16:28:55 -0800511 val &= ~UTMIP_HS_SYNC_START_DLY(~0);
512 val |= UTMIP_HS_SYNC_START_DLY(config->hssync_start_delay);
Dmitry Osipenkob07e5f82020-01-06 04:34:04 +0300513 writel_relaxed(val, base + UTMIP_HSRX_CFG1);
Benoit Goby91525d02011-03-09 16:28:55 -0800514
Dmitry Osipenkob07e5f82020-01-06 04:34:04 +0300515 val = readl_relaxed(base + UTMIP_DEBOUNCE_CFG0);
Benoit Goby91525d02011-03-09 16:28:55 -0800516 val &= ~UTMIP_BIAS_DEBOUNCE_A(~0);
517 val |= UTMIP_BIAS_DEBOUNCE_A(phy->freq->debounce);
Dmitry Osipenkob07e5f82020-01-06 04:34:04 +0300518 writel_relaxed(val, base + UTMIP_DEBOUNCE_CFG0);
Benoit Goby91525d02011-03-09 16:28:55 -0800519
Dmitry Osipenkob07e5f82020-01-06 04:34:04 +0300520 val = readl_relaxed(base + UTMIP_MISC_CFG0);
Benoit Goby91525d02011-03-09 16:28:55 -0800521 val &= ~UTMIP_SUSPEND_EXIT_ON_EDGE;
Dmitry Osipenkob07e5f82020-01-06 04:34:04 +0300522 writel_relaxed(val, base + UTMIP_MISC_CFG0);
Benoit Goby91525d02011-03-09 16:28:55 -0800523
Tuomas Tynkkynen3e635202013-08-12 16:06:51 +0300524 if (!phy->soc_config->utmi_pll_config_in_car_module) {
Dmitry Osipenkob07e5f82020-01-06 04:34:04 +0300525 val = readl_relaxed(base + UTMIP_MISC_CFG1);
Tuomas Tynkkynen3e635202013-08-12 16:06:51 +0300526 val &= ~(UTMIP_PLL_ACTIVE_DLY_COUNT(~0) |
527 UTMIP_PLLU_STABLE_COUNT(~0));
528 val |= UTMIP_PLL_ACTIVE_DLY_COUNT(phy->freq->active_delay) |
529 UTMIP_PLLU_STABLE_COUNT(phy->freq->stable_count);
Dmitry Osipenkob07e5f82020-01-06 04:34:04 +0300530 writel_relaxed(val, base + UTMIP_MISC_CFG1);
Benoit Goby91525d02011-03-09 16:28:55 -0800531
Dmitry Osipenkob07e5f82020-01-06 04:34:04 +0300532 val = readl_relaxed(base + UTMIP_PLL_CFG1);
Tuomas Tynkkynen3e635202013-08-12 16:06:51 +0300533 val &= ~(UTMIP_XTAL_FREQ_COUNT(~0) |
534 UTMIP_PLLU_ENABLE_DLY_COUNT(~0));
535 val |= UTMIP_XTAL_FREQ_COUNT(phy->freq->xtal_freq_count) |
536 UTMIP_PLLU_ENABLE_DLY_COUNT(phy->freq->enable_delay);
Dmitry Osipenkob07e5f82020-01-06 04:34:04 +0300537 writel_relaxed(val, base + UTMIP_PLL_CFG1);
Tuomas Tynkkynen3e635202013-08-12 16:06:51 +0300538 }
Benoit Goby91525d02011-03-09 16:28:55 -0800539
Dmitry Osipenko35192002020-12-18 15:02:39 +0300540 val = readl_relaxed(base + USB_SUSP_CTRL);
541 val &= ~USB_WAKE_ON_RESUME_EN;
542 writel_relaxed(val, base + USB_SUSP_CTRL);
543
Dmitry Osipenkoc1baf6c2021-09-12 21:17:15 +0300544 if (phy->mode != USB_DR_MODE_HOST) {
Dmitry Osipenkob07e5f82020-01-06 04:34:04 +0300545 val = readl_relaxed(base + USB_SUSP_CTRL);
Benoit Goby91525d02011-03-09 16:28:55 -0800546 val &= ~(USB_WAKE_ON_CNNT_EN_DEV | USB_WAKE_ON_DISCON_EN_DEV);
Dmitry Osipenkob07e5f82020-01-06 04:34:04 +0300547 writel_relaxed(val, base + USB_SUSP_CTRL);
Tuomas Tynkkynenf5833a02013-08-12 16:06:50 +0300548
Dmitry Osipenko35192002020-12-18 15:02:39 +0300549 val = readl_relaxed(base + USB_PHY_VBUS_WAKEUP_ID);
550 val &= ~VBUS_WAKEUP_WAKEUP_EN;
Dmitry Osipenkoc1baf6c2021-09-12 21:17:15 +0300551 val &= ~(ID_CHG_DET | VBUS_WAKEUP_CHG_DET);
Dmitry Osipenko35192002020-12-18 15:02:39 +0300552 writel_relaxed(val, base + USB_PHY_VBUS_WAKEUP_ID);
553
554 val = readl_relaxed(base + USB_PHY_VBUS_SENSORS);
555 val &= ~(A_VBUS_VLD_WAKEUP_EN | A_SESS_VLD_WAKEUP_EN);
Dmitry Osipenko7917e902021-06-13 17:59:36 +0300556 val &= ~(B_SESS_VLD_WAKEUP_EN);
Dmitry Osipenko35192002020-12-18 15:02:39 +0300557 writel_relaxed(val, base + USB_PHY_VBUS_SENSORS);
558
Dmitry Osipenkob07e5f82020-01-06 04:34:04 +0300559 val = readl_relaxed(base + UTMIP_BAT_CHRG_CFG0);
Tuomas Tynkkynenf5833a02013-08-12 16:06:50 +0300560 val &= ~UTMIP_PD_CHRG;
Dmitry Osipenkob07e5f82020-01-06 04:34:04 +0300561 writel_relaxed(val, base + UTMIP_BAT_CHRG_CFG0);
Tuomas Tynkkynenf5833a02013-08-12 16:06:50 +0300562 } else {
Dmitry Osipenkob07e5f82020-01-06 04:34:04 +0300563 val = readl_relaxed(base + UTMIP_BAT_CHRG_CFG0);
Tuomas Tynkkynenf5833a02013-08-12 16:06:50 +0300564 val |= UTMIP_PD_CHRG;
Dmitry Osipenkob07e5f82020-01-06 04:34:04 +0300565 writel_relaxed(val, base + UTMIP_BAT_CHRG_CFG0);
Benoit Goby91525d02011-03-09 16:28:55 -0800566 }
567
Dmitry Osipenko545592e2020-01-06 04:34:02 +0300568 err = utmip_pad_power_on(phy);
569 if (err)
570 return err;
Benoit Goby91525d02011-03-09 16:28:55 -0800571
Dmitry Osipenkob07e5f82020-01-06 04:34:04 +0300572 val = readl_relaxed(base + UTMIP_XCVR_CFG0);
Benoit Goby91525d02011-03-09 16:28:55 -0800573 val &= ~(UTMIP_FORCE_PD_POWERDOWN | UTMIP_FORCE_PD2_POWERDOWN |
Tuomas Tynkkynenf5833a02013-08-12 16:06:50 +0300574 UTMIP_FORCE_PDZI_POWERDOWN | UTMIP_XCVR_LSBIAS_SEL |
575 UTMIP_XCVR_SETUP(~0) | UTMIP_XCVR_SETUP_MSB(~0) |
Tuomas Tynkkynene497a242013-08-12 16:06:53 +0300576 UTMIP_XCVR_LSFSLEW(~0) | UTMIP_XCVR_LSRSLEW(~0));
577
578 if (!config->xcvr_setup_use_fuses) {
579 val |= UTMIP_XCVR_SETUP(config->xcvr_setup);
580 val |= UTMIP_XCVR_SETUP_MSB(config->xcvr_setup);
581 }
Benoit Goby91525d02011-03-09 16:28:55 -0800582 val |= UTMIP_XCVR_LSFSLEW(config->xcvr_lsfslew);
583 val |= UTMIP_XCVR_LSRSLEW(config->xcvr_lsrslew);
Tuomas Tynkkynene497a242013-08-12 16:06:53 +0300584
585 if (phy->soc_config->requires_extra_tuning_parameters) {
586 val &= ~(UTMIP_XCVR_HSSLEW(~0) | UTMIP_XCVR_HSSLEW_MSB(~0));
587 val |= UTMIP_XCVR_HSSLEW(config->xcvr_hsslew);
588 val |= UTMIP_XCVR_HSSLEW_MSB(config->xcvr_hsslew);
589 }
Dmitry Osipenkob07e5f82020-01-06 04:34:04 +0300590 writel_relaxed(val, base + UTMIP_XCVR_CFG0);
Benoit Goby91525d02011-03-09 16:28:55 -0800591
Dmitry Osipenkob07e5f82020-01-06 04:34:04 +0300592 val = readl_relaxed(base + UTMIP_XCVR_CFG1);
Benoit Goby91525d02011-03-09 16:28:55 -0800593 val &= ~(UTMIP_FORCE_PDDISC_POWERDOWN | UTMIP_FORCE_PDCHRP_POWERDOWN |
594 UTMIP_FORCE_PDDR_POWERDOWN | UTMIP_XCVR_TERM_RANGE_ADJ(~0));
595 val |= UTMIP_XCVR_TERM_RANGE_ADJ(config->term_range_adj);
Dmitry Osipenkob07e5f82020-01-06 04:34:04 +0300596 writel_relaxed(val, base + UTMIP_XCVR_CFG1);
Benoit Goby91525d02011-03-09 16:28:55 -0800597
Dmitry Osipenkob07e5f82020-01-06 04:34:04 +0300598 val = readl_relaxed(base + UTMIP_BIAS_CFG1);
Benoit Goby91525d02011-03-09 16:28:55 -0800599 val &= ~UTMIP_BIAS_PDTRK_COUNT(~0);
600 val |= UTMIP_BIAS_PDTRK_COUNT(0x5);
Dmitry Osipenkob07e5f82020-01-06 04:34:04 +0300601 writel_relaxed(val, base + UTMIP_BIAS_CFG1);
Benoit Goby91525d02011-03-09 16:28:55 -0800602
Dmitry Osipenkob07e5f82020-01-06 04:34:04 +0300603 val = readl_relaxed(base + UTMIP_SPARE_CFG0);
Tuomas Tynkkynene497a242013-08-12 16:06:53 +0300604 if (config->xcvr_setup_use_fuses)
605 val |= FUSE_SETUP_SEL;
606 else
607 val &= ~FUSE_SETUP_SEL;
Dmitry Osipenkob07e5f82020-01-06 04:34:04 +0300608 writel_relaxed(val, base + UTMIP_SPARE_CFG0);
Tuomas Tynkkynene497a242013-08-12 16:06:53 +0300609
610 if (!phy->is_legacy_phy) {
Dmitry Osipenkob07e5f82020-01-06 04:34:04 +0300611 val = readl_relaxed(base + USB_SUSP_CTRL);
Benoit Goby91525d02011-03-09 16:28:55 -0800612 val |= UTMIP_PHY_ENABLE;
Dmitry Osipenkob07e5f82020-01-06 04:34:04 +0300613 writel_relaxed(val, base + USB_SUSP_CTRL);
Benoit Goby91525d02011-03-09 16:28:55 -0800614 }
615
Dmitry Osipenkob07e5f82020-01-06 04:34:04 +0300616 val = readl_relaxed(base + USB_SUSP_CTRL);
Benoit Goby91525d02011-03-09 16:28:55 -0800617 val &= ~UTMIP_RESET;
Dmitry Osipenkob07e5f82020-01-06 04:34:04 +0300618 writel_relaxed(val, base + USB_SUSP_CTRL);
Benoit Goby91525d02011-03-09 16:28:55 -0800619
Venu Byravarasu3a55c6a2013-01-16 03:30:20 +0000620 if (phy->is_legacy_phy) {
Dmitry Osipenkob07e5f82020-01-06 04:34:04 +0300621 val = readl_relaxed(base + USB1_LEGACY_CTRL);
Benoit Goby91525d02011-03-09 16:28:55 -0800622 val &= ~USB1_VBUS_SENSE_CTL_MASK;
623 val |= USB1_VBUS_SENSE_CTL_A_SESS_VLD;
Dmitry Osipenkob07e5f82020-01-06 04:34:04 +0300624 writel_relaxed(val, base + USB1_LEGACY_CTRL);
Benoit Goby91525d02011-03-09 16:28:55 -0800625
Dmitry Osipenkob07e5f82020-01-06 04:34:04 +0300626 val = readl_relaxed(base + USB_SUSP_CTRL);
Benoit Goby91525d02011-03-09 16:28:55 -0800627 val &= ~USB_SUSP_SET;
Dmitry Osipenkob07e5f82020-01-06 04:34:04 +0300628 writel_relaxed(val, base + USB_SUSP_CTRL);
Benoit Goby91525d02011-03-09 16:28:55 -0800629 }
630
631 utmi_phy_clk_enable(phy);
632
Tuomas Tynkkynen3e635202013-08-12 16:06:51 +0300633 if (phy->soc_config->requires_usbmode_setup) {
Dmitry Osipenkob07e5f82020-01-06 04:34:04 +0300634 val = readl_relaxed(base + USB_USBMODE);
Tuomas Tynkkynen3e635202013-08-12 16:06:51 +0300635 val &= ~USB_USBMODE_MASK;
636 if (phy->mode == USB_DR_MODE_HOST)
637 val |= USB_USBMODE_HOST;
638 else
639 val |= USB_USBMODE_DEVICE;
Dmitry Osipenkob07e5f82020-01-06 04:34:04 +0300640 writel_relaxed(val, base + USB_USBMODE);
Tuomas Tynkkynen3e635202013-08-12 16:06:51 +0300641 }
642
Venu Byravarasubbdabdb2013-01-17 20:15:37 +0000643 if (!phy->is_legacy_phy)
Stephen Warren91a687d2013-06-13 11:24:11 -0600644 set_pts(phy, 0);
Benoit Goby91525d02011-03-09 16:28:55 -0800645
646 return 0;
647}
648
Venu Byravarasu1ba82162012-09-05 18:50:23 +0530649static int utmi_phy_power_off(struct tegra_usb_phy *phy)
Benoit Goby91525d02011-03-09 16:28:55 -0800650{
Benoit Goby91525d02011-03-09 16:28:55 -0800651 void __iomem *base = phy->regs;
Dmitry Osipenko01d6ea32020-01-06 04:34:08 +0300652 u32 val;
Benoit Goby91525d02011-03-09 16:28:55 -0800653
Dmitry Osipenko6f8d39a2021-06-13 17:59:35 +0300654 /*
655 * Give hardware time to settle down after VBUS disconnection,
656 * otherwise PHY will immediately wake up from suspend.
657 */
658 if (phy->wakeup_enabled && phy->mode != USB_DR_MODE_HOST)
659 readl_relaxed_poll_timeout(base + USB_PHY_VBUS_WAKEUP_ID,
660 val, !(val & VBUS_WAKEUP_STS),
661 5000, 100000);
662
Benoit Goby91525d02011-03-09 16:28:55 -0800663 utmi_phy_clk_disable(phy);
664
Dmitry Osipenko35192002020-12-18 15:02:39 +0300665 /* PHY won't resume if reset is asserted */
666 if (!phy->wakeup_enabled) {
Dmitry Osipenkob07e5f82020-01-06 04:34:04 +0300667 val = readl_relaxed(base + USB_SUSP_CTRL);
Dmitry Osipenko35192002020-12-18 15:02:39 +0300668 val |= UTMIP_RESET;
Dmitry Osipenkob07e5f82020-01-06 04:34:04 +0300669 writel_relaxed(val, base + USB_SUSP_CTRL);
Benoit Goby91525d02011-03-09 16:28:55 -0800670 }
671
Dmitry Osipenkob07e5f82020-01-06 04:34:04 +0300672 val = readl_relaxed(base + UTMIP_BAT_CHRG_CFG0);
Benoit Goby91525d02011-03-09 16:28:55 -0800673 val |= UTMIP_PD_CHRG;
Dmitry Osipenkob07e5f82020-01-06 04:34:04 +0300674 writel_relaxed(val, base + UTMIP_BAT_CHRG_CFG0);
Benoit Goby91525d02011-03-09 16:28:55 -0800675
Dmitry Osipenko35192002020-12-18 15:02:39 +0300676 if (!phy->wakeup_enabled) {
677 val = readl_relaxed(base + UTMIP_XCVR_CFG0);
678 val |= UTMIP_FORCE_PD_POWERDOWN | UTMIP_FORCE_PD2_POWERDOWN |
679 UTMIP_FORCE_PDZI_POWERDOWN;
680 writel_relaxed(val, base + UTMIP_XCVR_CFG0);
681 }
Benoit Goby91525d02011-03-09 16:28:55 -0800682
Dmitry Osipenkob07e5f82020-01-06 04:34:04 +0300683 val = readl_relaxed(base + UTMIP_XCVR_CFG1);
Benoit Goby91525d02011-03-09 16:28:55 -0800684 val |= UTMIP_FORCE_PDDISC_POWERDOWN | UTMIP_FORCE_PDCHRP_POWERDOWN |
685 UTMIP_FORCE_PDDR_POWERDOWN;
Dmitry Osipenkob07e5f82020-01-06 04:34:04 +0300686 writel_relaxed(val, base + UTMIP_XCVR_CFG1);
Benoit Goby91525d02011-03-09 16:28:55 -0800687
Dmitry Osipenko35192002020-12-18 15:02:39 +0300688 if (phy->wakeup_enabled) {
689 val = readl_relaxed(base + USB_SUSP_CTRL);
690 val &= ~USB_WAKEUP_DEBOUNCE_COUNT(~0);
691 val |= USB_WAKEUP_DEBOUNCE_COUNT(5);
692 val |= USB_WAKE_ON_RESUME_EN;
693 writel_relaxed(val, base + USB_SUSP_CTRL);
694
695 /*
696 * Ask VBUS sensor to generate wake event once cable is
697 * connected.
698 */
Dmitry Osipenkoc1baf6c2021-09-12 21:17:15 +0300699 if (phy->mode != USB_DR_MODE_HOST) {
Dmitry Osipenko35192002020-12-18 15:02:39 +0300700 val = readl_relaxed(base + USB_PHY_VBUS_WAKEUP_ID);
701 val |= VBUS_WAKEUP_WAKEUP_EN;
Dmitry Osipenkoc1baf6c2021-09-12 21:17:15 +0300702 val &= ~(ID_CHG_DET | VBUS_WAKEUP_CHG_DET);
Dmitry Osipenko35192002020-12-18 15:02:39 +0300703 writel_relaxed(val, base + USB_PHY_VBUS_WAKEUP_ID);
704
705 val = readl_relaxed(base + USB_PHY_VBUS_SENSORS);
706 val |= A_VBUS_VLD_WAKEUP_EN;
707 writel_relaxed(val, base + USB_PHY_VBUS_SENSORS);
708 }
709 }
710
Venu Byravarasu1ba82162012-09-05 18:50:23 +0530711 return utmip_pad_power_off(phy);
Benoit Goby91525d02011-03-09 16:28:55 -0800712}
713
714static void utmi_phy_preresume(struct tegra_usb_phy *phy)
715{
Benoit Goby91525d02011-03-09 16:28:55 -0800716 void __iomem *base = phy->regs;
Dmitry Osipenko01d6ea32020-01-06 04:34:08 +0300717 u32 val;
Benoit Goby91525d02011-03-09 16:28:55 -0800718
Dmitry Osipenkob07e5f82020-01-06 04:34:04 +0300719 val = readl_relaxed(base + UTMIP_TX_CFG0);
Benoit Goby91525d02011-03-09 16:28:55 -0800720 val |= UTMIP_HS_DISCON_DISABLE;
Dmitry Osipenkob07e5f82020-01-06 04:34:04 +0300721 writel_relaxed(val, base + UTMIP_TX_CFG0);
Benoit Goby91525d02011-03-09 16:28:55 -0800722}
723
724static void utmi_phy_postresume(struct tegra_usb_phy *phy)
725{
Benoit Goby91525d02011-03-09 16:28:55 -0800726 void __iomem *base = phy->regs;
Dmitry Osipenko01d6ea32020-01-06 04:34:08 +0300727 u32 val;
Benoit Goby91525d02011-03-09 16:28:55 -0800728
Dmitry Osipenkob07e5f82020-01-06 04:34:04 +0300729 val = readl_relaxed(base + UTMIP_TX_CFG0);
Benoit Goby91525d02011-03-09 16:28:55 -0800730 val &= ~UTMIP_HS_DISCON_DISABLE;
Dmitry Osipenkob07e5f82020-01-06 04:34:04 +0300731 writel_relaxed(val, base + UTMIP_TX_CFG0);
Benoit Goby91525d02011-03-09 16:28:55 -0800732}
733
734static void utmi_phy_restore_start(struct tegra_usb_phy *phy,
735 enum tegra_usb_phy_port_speed port_speed)
736{
Benoit Goby91525d02011-03-09 16:28:55 -0800737 void __iomem *base = phy->regs;
Dmitry Osipenko01d6ea32020-01-06 04:34:08 +0300738 u32 val;
Benoit Goby91525d02011-03-09 16:28:55 -0800739
Dmitry Osipenkob07e5f82020-01-06 04:34:04 +0300740 val = readl_relaxed(base + UTMIP_MISC_CFG0);
Benoit Goby91525d02011-03-09 16:28:55 -0800741 val &= ~UTMIP_DPDM_OBSERVE_SEL(~0);
742 if (port_speed == TEGRA_USB_PHY_PORT_SPEED_LOW)
743 val |= UTMIP_DPDM_OBSERVE_SEL_FS_K;
744 else
745 val |= UTMIP_DPDM_OBSERVE_SEL_FS_J;
Dmitry Osipenkob07e5f82020-01-06 04:34:04 +0300746 writel_relaxed(val, base + UTMIP_MISC_CFG0);
Dmitry Osipenko545592e2020-01-06 04:34:02 +0300747 usleep_range(1, 10);
Benoit Goby91525d02011-03-09 16:28:55 -0800748
Dmitry Osipenkob07e5f82020-01-06 04:34:04 +0300749 val = readl_relaxed(base + UTMIP_MISC_CFG0);
Benoit Goby91525d02011-03-09 16:28:55 -0800750 val |= UTMIP_DPDM_OBSERVE;
Dmitry Osipenkob07e5f82020-01-06 04:34:04 +0300751 writel_relaxed(val, base + UTMIP_MISC_CFG0);
Dmitry Osipenko545592e2020-01-06 04:34:02 +0300752 usleep_range(10, 100);
Benoit Goby91525d02011-03-09 16:28:55 -0800753}
754
755static void utmi_phy_restore_end(struct tegra_usb_phy *phy)
756{
Benoit Goby91525d02011-03-09 16:28:55 -0800757 void __iomem *base = phy->regs;
Dmitry Osipenko01d6ea32020-01-06 04:34:08 +0300758 u32 val;
Benoit Goby91525d02011-03-09 16:28:55 -0800759
Dmitry Osipenkob07e5f82020-01-06 04:34:04 +0300760 val = readl_relaxed(base + UTMIP_MISC_CFG0);
Benoit Goby91525d02011-03-09 16:28:55 -0800761 val &= ~UTMIP_DPDM_OBSERVE;
Dmitry Osipenkob07e5f82020-01-06 04:34:04 +0300762 writel_relaxed(val, base + UTMIP_MISC_CFG0);
Dmitry Osipenko545592e2020-01-06 04:34:02 +0300763 usleep_range(10, 100);
Benoit Goby91525d02011-03-09 16:28:55 -0800764}
765
766static int ulpi_phy_power_on(struct tegra_usb_phy *phy)
767{
Benoit Goby91525d02011-03-09 16:28:55 -0800768 void __iomem *base = phy->regs;
Dmitry Osipenko01d6ea32020-01-06 04:34:08 +0300769 u32 val;
Dmitry Osipenko545592e2020-01-06 04:34:02 +0300770 int err;
Benoit Goby91525d02011-03-09 16:28:55 -0800771
Dmitry Osipenko06e60e502020-01-06 04:34:09 +0300772 gpiod_set_value_cansleep(phy->reset_gpio, 1);
Benoit Goby91525d02011-03-09 16:28:55 -0800773
Dmitry Osipenko545592e2020-01-06 04:34:02 +0300774 err = clk_prepare_enable(phy->clk);
775 if (err)
776 return err;
777
778 usleep_range(5000, 6000);
779
Dmitry Osipenko06e60e502020-01-06 04:34:09 +0300780 gpiod_set_value_cansleep(phy->reset_gpio, 0);
Dmitry Osipenko545592e2020-01-06 04:34:02 +0300781
782 usleep_range(1000, 2000);
Benoit Goby91525d02011-03-09 16:28:55 -0800783
Dmitry Osipenkob07e5f82020-01-06 04:34:04 +0300784 val = readl_relaxed(base + USB_SUSP_CTRL);
Benoit Goby91525d02011-03-09 16:28:55 -0800785 val |= UHSIC_RESET;
Dmitry Osipenkob07e5f82020-01-06 04:34:04 +0300786 writel_relaxed(val, base + USB_SUSP_CTRL);
Benoit Goby91525d02011-03-09 16:28:55 -0800787
Dmitry Osipenkob07e5f82020-01-06 04:34:04 +0300788 val = readl_relaxed(base + ULPI_TIMING_CTRL_0);
Benoit Goby91525d02011-03-09 16:28:55 -0800789 val |= ULPI_OUTPUT_PINMUX_BYP | ULPI_CLKOUT_PINMUX_BYP;
Dmitry Osipenkob07e5f82020-01-06 04:34:04 +0300790 writel_relaxed(val, base + ULPI_TIMING_CTRL_0);
Benoit Goby91525d02011-03-09 16:28:55 -0800791
Dmitry Osipenkob07e5f82020-01-06 04:34:04 +0300792 val = readl_relaxed(base + USB_SUSP_CTRL);
Benoit Goby91525d02011-03-09 16:28:55 -0800793 val |= ULPI_PHY_ENABLE;
Dmitry Osipenkob07e5f82020-01-06 04:34:04 +0300794 writel_relaxed(val, base + USB_SUSP_CTRL);
Benoit Goby91525d02011-03-09 16:28:55 -0800795
796 val = 0;
Dmitry Osipenkob07e5f82020-01-06 04:34:04 +0300797 writel_relaxed(val, base + ULPI_TIMING_CTRL_1);
Benoit Goby91525d02011-03-09 16:28:55 -0800798
799 val |= ULPI_DATA_TRIMMER_SEL(4);
800 val |= ULPI_STPDIRNXT_TRIMMER_SEL(4);
801 val |= ULPI_DIR_TRIMMER_SEL(4);
Dmitry Osipenkob07e5f82020-01-06 04:34:04 +0300802 writel_relaxed(val, base + ULPI_TIMING_CTRL_1);
Dmitry Osipenko545592e2020-01-06 04:34:02 +0300803 usleep_range(10, 100);
Benoit Goby91525d02011-03-09 16:28:55 -0800804
805 val |= ULPI_DATA_TRIMMER_LOAD;
806 val |= ULPI_STPDIRNXT_TRIMMER_LOAD;
807 val |= ULPI_DIR_TRIMMER_LOAD;
Dmitry Osipenkob07e5f82020-01-06 04:34:04 +0300808 writel_relaxed(val, base + ULPI_TIMING_CTRL_1);
Benoit Goby91525d02011-03-09 16:28:55 -0800809
810 /* Fix VbusInvalid due to floating VBUS */
Dmitry Osipenko545592e2020-01-06 04:34:02 +0300811 err = usb_phy_io_write(phy->ulpi, 0x40, 0x08);
812 if (err) {
813 dev_err(phy->u_phy.dev, "ULPI write failed: %d\n", err);
814 goto disable_clk;
Benoit Goby91525d02011-03-09 16:28:55 -0800815 }
816
Dmitry Osipenko545592e2020-01-06 04:34:02 +0300817 err = usb_phy_io_write(phy->ulpi, 0x80, 0x0B);
818 if (err) {
819 dev_err(phy->u_phy.dev, "ULPI write failed: %d\n", err);
820 goto disable_clk;
Benoit Goby91525d02011-03-09 16:28:55 -0800821 }
822
Dmitry Osipenkob07e5f82020-01-06 04:34:04 +0300823 val = readl_relaxed(base + USB_SUSP_CTRL);
Benoit Goby91525d02011-03-09 16:28:55 -0800824 val |= USB_SUSP_CLR;
Dmitry Osipenkob07e5f82020-01-06 04:34:04 +0300825 writel_relaxed(val, base + USB_SUSP_CTRL);
Dmitry Osipenko545592e2020-01-06 04:34:02 +0300826 usleep_range(100, 1000);
Benoit Goby91525d02011-03-09 16:28:55 -0800827
Dmitry Osipenkob07e5f82020-01-06 04:34:04 +0300828 val = readl_relaxed(base + USB_SUSP_CTRL);
Benoit Goby91525d02011-03-09 16:28:55 -0800829 val &= ~USB_SUSP_CLR;
Dmitry Osipenkob07e5f82020-01-06 04:34:04 +0300830 writel_relaxed(val, base + USB_SUSP_CTRL);
Benoit Goby91525d02011-03-09 16:28:55 -0800831
832 return 0;
Dmitry Osipenko545592e2020-01-06 04:34:02 +0300833
834disable_clk:
835 clk_disable_unprepare(phy->clk);
836
837 return err;
Benoit Goby91525d02011-03-09 16:28:55 -0800838}
839
Venu Byravarasu1ba82162012-09-05 18:50:23 +0530840static int ulpi_phy_power_off(struct tegra_usb_phy *phy)
Benoit Goby91525d02011-03-09 16:28:55 -0800841{
Dmitry Osipenko06e60e502020-01-06 04:34:09 +0300842 gpiod_set_value_cansleep(phy->reset_gpio, 1);
Dmitry Osipenko28d190a2020-01-06 04:33:59 +0300843 usleep_range(5000, 6000);
Dmitry Osipenko28d190a2020-01-06 04:33:59 +0300844 clk_disable_unprepare(phy->clk);
845
Dmitry Osipenko35192002020-12-18 15:02:39 +0300846 /*
847 * Wakeup currently unimplemented for ULPI, thus PHY needs to be
848 * force-resumed.
849 */
850 if (WARN_ON_ONCE(phy->wakeup_enabled)) {
851 ulpi_phy_power_on(phy);
852 return -EOPNOTSUPP;
853 }
854
Dmitry Osipenko28d190a2020-01-06 04:33:59 +0300855 return 0;
Venu Byravarasu1ba82162012-09-05 18:50:23 +0530856}
857
Venu Byravarasu1ba82162012-09-05 18:50:23 +0530858static int tegra_usb_phy_power_on(struct tegra_usb_phy *phy)
859{
Dmitry Osipenko18bd8bf2020-01-06 04:34:00 +0300860 int err;
861
862 if (phy->powered_on)
863 return 0;
864
Venu Byravarasu3f9db1a2013-01-16 03:30:21 +0000865 if (phy->is_ulpi_phy)
Dmitry Osipenko18bd8bf2020-01-06 04:34:00 +0300866 err = ulpi_phy_power_on(phy);
Venu Byravarasu1ba82162012-09-05 18:50:23 +0530867 else
Dmitry Osipenko18bd8bf2020-01-06 04:34:00 +0300868 err = utmi_phy_power_on(phy);
869 if (err)
870 return err;
871
872 phy->powered_on = true;
873
Dmitry Osipenkob1004022020-12-18 15:02:38 +0300874 /* Let PHY settle down */
875 usleep_range(2000, 2500);
876
Dmitry Osipenko18bd8bf2020-01-06 04:34:00 +0300877 return 0;
Venu Byravarasu1ba82162012-09-05 18:50:23 +0530878}
879
880static int tegra_usb_phy_power_off(struct tegra_usb_phy *phy)
881{
Dmitry Osipenko18bd8bf2020-01-06 04:34:00 +0300882 int err;
883
884 if (!phy->powered_on)
885 return 0;
886
Venu Byravarasu3f9db1a2013-01-16 03:30:21 +0000887 if (phy->is_ulpi_phy)
Dmitry Osipenko18bd8bf2020-01-06 04:34:00 +0300888 err = ulpi_phy_power_off(phy);
Venu Byravarasu1ba82162012-09-05 18:50:23 +0530889 else
Dmitry Osipenko18bd8bf2020-01-06 04:34:00 +0300890 err = utmi_phy_power_off(phy);
891 if (err)
892 return err;
893
894 phy->powered_on = false;
895
896 return 0;
Venu Byravarasu1ba82162012-09-05 18:50:23 +0530897}
898
Dmitry Osipenko5dcdafd2020-01-06 04:34:01 +0300899static void tegra_usb_phy_shutdown(struct usb_phy *u_phy)
900{
Dmitry Osipenko545592e2020-01-06 04:34:02 +0300901 struct tegra_usb_phy *phy = to_tegra_usb_phy(u_phy);
Dmitry Osipenko5dcdafd2020-01-06 04:34:01 +0300902
903 if (WARN_ON(!phy->freq))
904 return;
905
Dmitry Osipenkoc1baf6c2021-09-12 21:17:15 +0300906 usb_phy_set_wakeup(u_phy, false);
Dmitry Osipenko5dcdafd2020-01-06 04:34:01 +0300907 tegra_usb_phy_power_off(phy);
908
909 if (!phy->is_ulpi_phy)
910 utmip_pad_close(phy);
911
Dmitry Osipenko9df3adc2020-01-06 04:34:05 +0300912 regulator_disable(phy->vbus);
Dmitry Osipenko5dcdafd2020-01-06 04:34:01 +0300913 clk_disable_unprepare(phy->pll_u);
914
915 phy->freq = NULL;
916}
917
Dmitry Osipenkoc1baf6c2021-09-12 21:17:15 +0300918static irqreturn_t tegra_usb_phy_isr(int irq, void *data)
919{
920 u32 val, int_mask = ID_CHG_DET | VBUS_WAKEUP_CHG_DET;
921 struct tegra_usb_phy *phy = data;
922 void __iomem *base = phy->regs;
923
924 /*
925 * The PHY interrupt also wakes the USB controller driver since
926 * interrupt is shared. We don't do anything in the PHY driver,
927 * so just clear the interrupt.
928 */
929 val = readl_relaxed(base + USB_PHY_VBUS_WAKEUP_ID);
930 writel_relaxed(val, base + USB_PHY_VBUS_WAKEUP_ID);
931
932 return val & int_mask ? IRQ_HANDLED : IRQ_NONE;
933}
934
Dmitry Osipenko35192002020-12-18 15:02:39 +0300935static int tegra_usb_phy_set_wakeup(struct usb_phy *u_phy, bool enable)
936{
937 struct tegra_usb_phy *phy = to_tegra_usb_phy(u_phy);
Dmitry Osipenkoc1baf6c2021-09-12 21:17:15 +0300938 void __iomem *base = phy->regs;
939 int ret = 0;
940 u32 val;
941
942 if (phy->wakeup_enabled && phy->mode != USB_DR_MODE_HOST &&
943 phy->irq > 0) {
944 disable_irq(phy->irq);
945
946 val = readl_relaxed(base + USB_PHY_VBUS_WAKEUP_ID);
947 val &= ~(ID_INT_EN | VBUS_WAKEUP_INT_EN);
948 writel_relaxed(val, base + USB_PHY_VBUS_WAKEUP_ID);
949
950 enable_irq(phy->irq);
951
952 free_irq(phy->irq, phy);
953
954 phy->wakeup_enabled = false;
955 }
956
957 if (enable && phy->mode != USB_DR_MODE_HOST && phy->irq > 0) {
958 ret = request_irq(phy->irq, tegra_usb_phy_isr, IRQF_SHARED,
959 dev_name(phy->u_phy.dev), phy);
960 if (!ret) {
961 disable_irq(phy->irq);
962
963 /*
964 * USB clock will be resumed once wake event will be
965 * generated. The ID-change event requires to have
966 * interrupts enabled, otherwise it won't be generated.
967 */
968 val = readl_relaxed(base + USB_PHY_VBUS_WAKEUP_ID);
969 val |= ID_INT_EN | VBUS_WAKEUP_INT_EN;
970 writel_relaxed(val, base + USB_PHY_VBUS_WAKEUP_ID);
971
972 enable_irq(phy->irq);
973 } else {
974 dev_err(phy->u_phy.dev,
975 "Failed to request interrupt: %d", ret);
976 enable = false;
977 }
978 }
Dmitry Osipenko35192002020-12-18 15:02:39 +0300979
980 phy->wakeup_enabled = enable;
981
Dmitry Osipenkoc1baf6c2021-09-12 21:17:15 +0300982 return ret;
Dmitry Osipenko35192002020-12-18 15:02:39 +0300983}
984
Dmitry Osipenko545592e2020-01-06 04:34:02 +0300985static int tegra_usb_phy_set_suspend(struct usb_phy *u_phy, int suspend)
Venu Byravarasu1ba82162012-09-05 18:50:23 +0530986{
Dmitry Osipenko545592e2020-01-06 04:34:02 +0300987 struct tegra_usb_phy *phy = to_tegra_usb_phy(u_phy);
Dmitry Osipenkoc1baf6c2021-09-12 21:17:15 +0300988 int ret;
Dmitry Osipenko5dcdafd2020-01-06 04:34:01 +0300989
990 if (WARN_ON(!phy->freq))
991 return -EINVAL;
992
Dmitry Osipenkoc1baf6c2021-09-12 21:17:15 +0300993 /*
994 * PHY is sharing IRQ with the CI driver, hence here we either
995 * disable interrupt for both PHY and CI or for CI only. The
996 * interrupt needs to be disabled while hardware is reprogrammed
997 * because interrupt touches the programmed registers, and thus,
998 * there could be a race condition.
999 */
1000 if (phy->irq > 0)
1001 disable_irq(phy->irq);
1002
Venu Byravarasu1ba82162012-09-05 18:50:23 +05301003 if (suspend)
Dmitry Osipenkoc1baf6c2021-09-12 21:17:15 +03001004 ret = tegra_usb_phy_power_off(phy);
Venu Byravarasu1ba82162012-09-05 18:50:23 +05301005 else
Dmitry Osipenkoc1baf6c2021-09-12 21:17:15 +03001006 ret = tegra_usb_phy_power_on(phy);
1007
1008 if (phy->irq > 0)
1009 enable_irq(phy->irq);
1010
1011 return ret;
1012}
1013
1014static int tegra_usb_phy_configure_pmc(struct tegra_usb_phy *phy)
1015{
1016 int err, val = 0;
1017
1018 /* older device-trees don't have PMC regmap */
1019 if (!phy->pmc_regmap)
1020 return 0;
1021
1022 /*
1023 * Tegra20 has a different layout of PMC USB register bits and AO is
1024 * enabled by default after system reset on Tegra20, so assume nothing
1025 * to do on Tegra20.
1026 */
1027 if (!phy->soc_config->requires_pmc_ao_power_up)
1028 return 0;
1029
1030 /* enable VBUS wake-up detector */
1031 if (phy->mode != USB_DR_MODE_HOST)
1032 val |= VBUS_WAKEUP_PD_P0 << phy->instance * 4;
1033
1034 /* enable ID-pin ACC detector for OTG mode switching */
1035 if (phy->mode == USB_DR_MODE_OTG)
1036 val |= ID_PD_P0 << phy->instance * 4;
1037
1038 /* disable detectors to reset them */
1039 err = regmap_set_bits(phy->pmc_regmap, PMC_USB_AO, val);
1040 if (err) {
1041 dev_err(phy->u_phy.dev, "Failed to disable PMC AO: %d\n", err);
1042 return err;
1043 }
1044
1045 usleep_range(10, 100);
1046
1047 /* enable detectors */
1048 err = regmap_clear_bits(phy->pmc_regmap, PMC_USB_AO, val);
1049 if (err) {
1050 dev_err(phy->u_phy.dev, "Failed to enable PMC AO: %d\n", err);
1051 return err;
1052 }
1053
1054 /* detectors starts to work after 10ms */
1055 usleep_range(10000, 15000);
1056
1057 return 0;
Benoit Goby91525d02011-03-09 16:28:55 -08001058}
1059
Dmitry Osipenko5dcdafd2020-01-06 04:34:01 +03001060static int tegra_usb_phy_init(struct usb_phy *u_phy)
Venu Byravarasu2d22b422013-05-16 19:43:02 +05301061{
Dmitry Osipenko545592e2020-01-06 04:34:02 +03001062 struct tegra_usb_phy *phy = to_tegra_usb_phy(u_phy);
Benoit Goby91525d02011-03-09 16:28:55 -08001063 unsigned long parent_rate;
Dmitry Osipenko545592e2020-01-06 04:34:02 +03001064 unsigned int i;
Benoit Goby91525d02011-03-09 16:28:55 -08001065 int err;
1066
Dmitry Osipenko5dcdafd2020-01-06 04:34:01 +03001067 if (WARN_ON(phy->freq))
1068 return 0;
Venu Byravarasu2d22b422013-05-16 19:43:02 +05301069
1070 err = clk_prepare_enable(phy->pll_u);
1071 if (err)
1072 return err;
Benoit Goby91525d02011-03-09 16:28:55 -08001073
1074 parent_rate = clk_get_rate(clk_get_parent(phy->pll_u));
1075 for (i = 0; i < ARRAY_SIZE(tegra_freq_table); i++) {
1076 if (tegra_freq_table[i].freq == parent_rate) {
1077 phy->freq = &tegra_freq_table[i];
1078 break;
1079 }
1080 }
1081 if (!phy->freq) {
Dmitry Osipenkof59cd942018-04-10 01:02:57 +03001082 dev_err(phy->u_phy.dev, "Invalid pll_u parent rate %ld\n",
1083 parent_rate);
Benoit Goby91525d02011-03-09 16:28:55 -08001084 err = -EINVAL;
Dmitry Osipenkoaecc5af2020-01-06 04:34:10 +03001085 goto disable_clk;
Benoit Goby91525d02011-03-09 16:28:55 -08001086 }
1087
Dmitry Osipenko9df3adc2020-01-06 04:34:05 +03001088 err = regulator_enable(phy->vbus);
1089 if (err) {
1090 dev_err(phy->u_phy.dev,
1091 "Failed to enable USB VBUS regulator: %d\n", err);
Dmitry Osipenkoaecc5af2020-01-06 04:34:10 +03001092 goto disable_clk;
Mikko Perttunenf5b8c8b2013-07-17 10:37:49 +03001093 }
1094
Dmitry Osipenko06e60e502020-01-06 04:34:09 +03001095 if (!phy->is_ulpi_phy) {
Venu Byravarasu2d22b422013-05-16 19:43:02 +05301096 err = utmip_pad_open(phy);
Dmitry Osipenko06e60e502020-01-06 04:34:09 +03001097 if (err)
Dmitry Osipenkoaecc5af2020-01-06 04:34:10 +03001098 goto disable_vbus;
Dmitry Osipenko06e60e502020-01-06 04:34:09 +03001099 }
Benoit Goby91525d02011-03-09 16:28:55 -08001100
Dmitry Osipenkoc1baf6c2021-09-12 21:17:15 +03001101 err = tegra_usb_phy_configure_pmc(phy);
1102 if (err)
1103 goto close_phy;
1104
Dmitry Osipenko5dcdafd2020-01-06 04:34:01 +03001105 err = tegra_usb_phy_power_on(phy);
1106 if (err)
1107 goto close_phy;
1108
Venu Byravarasu2d22b422013-05-16 19:43:02 +05301109 return 0;
Benoit Goby91525d02011-03-09 16:28:55 -08001110
Dmitry Osipenko5dcdafd2020-01-06 04:34:01 +03001111close_phy:
1112 if (!phy->is_ulpi_phy)
1113 utmip_pad_close(phy);
Dmitry Osipenkoaecc5af2020-01-06 04:34:10 +03001114
1115disable_vbus:
1116 regulator_disable(phy->vbus);
1117
1118disable_clk:
Prashant Gaikwad6a5278d2012-06-05 09:59:35 +05301119 clk_disable_unprepare(phy->pll_u);
Dmitry Osipenko5dcdafd2020-01-06 04:34:01 +03001120
1121 phy->freq = NULL;
1122
Venu Byravarasu2d22b422013-05-16 19:43:02 +05301123 return err;
Benoit Goby91525d02011-03-09 16:28:55 -08001124}
1125
Dmitry Osipenko545592e2020-01-06 04:34:02 +03001126void tegra_usb_phy_preresume(struct usb_phy *u_phy)
Benoit Goby91525d02011-03-09 16:28:55 -08001127{
Dmitry Osipenko545592e2020-01-06 04:34:02 +03001128 struct tegra_usb_phy *phy = to_tegra_usb_phy(u_phy);
Venu Byravarasuab137d02013-01-24 15:57:03 +05301129
Venu Byravarasu3f9db1a2013-01-16 03:30:21 +00001130 if (!phy->is_ulpi_phy)
Benoit Goby91525d02011-03-09 16:28:55 -08001131 utmi_phy_preresume(phy);
1132}
Arnd Bergmann4265cbf2012-03-02 15:58:42 -05001133EXPORT_SYMBOL_GPL(tegra_usb_phy_preresume);
Benoit Goby91525d02011-03-09 16:28:55 -08001134
Dmitry Osipenko545592e2020-01-06 04:34:02 +03001135void tegra_usb_phy_postresume(struct usb_phy *u_phy)
Benoit Goby91525d02011-03-09 16:28:55 -08001136{
Dmitry Osipenko545592e2020-01-06 04:34:02 +03001137 struct tegra_usb_phy *phy = to_tegra_usb_phy(u_phy);
Venu Byravarasuab137d02013-01-24 15:57:03 +05301138
Venu Byravarasu3f9db1a2013-01-16 03:30:21 +00001139 if (!phy->is_ulpi_phy)
Benoit Goby91525d02011-03-09 16:28:55 -08001140 utmi_phy_postresume(phy);
1141}
Arnd Bergmann4265cbf2012-03-02 15:58:42 -05001142EXPORT_SYMBOL_GPL(tegra_usb_phy_postresume);
Benoit Goby91525d02011-03-09 16:28:55 -08001143
Dmitry Osipenko545592e2020-01-06 04:34:02 +03001144void tegra_ehci_phy_restore_start(struct usb_phy *u_phy,
1145 enum tegra_usb_phy_port_speed port_speed)
Benoit Goby91525d02011-03-09 16:28:55 -08001146{
Dmitry Osipenko545592e2020-01-06 04:34:02 +03001147 struct tegra_usb_phy *phy = to_tegra_usb_phy(u_phy);
Venu Byravarasuab137d02013-01-24 15:57:03 +05301148
Venu Byravarasu3f9db1a2013-01-16 03:30:21 +00001149 if (!phy->is_ulpi_phy)
Benoit Goby91525d02011-03-09 16:28:55 -08001150 utmi_phy_restore_start(phy, port_speed);
1151}
Arnd Bergmann4265cbf2012-03-02 15:58:42 -05001152EXPORT_SYMBOL_GPL(tegra_ehci_phy_restore_start);
Benoit Goby91525d02011-03-09 16:28:55 -08001153
Dmitry Osipenko545592e2020-01-06 04:34:02 +03001154void tegra_ehci_phy_restore_end(struct usb_phy *u_phy)
Benoit Goby91525d02011-03-09 16:28:55 -08001155{
Dmitry Osipenko545592e2020-01-06 04:34:02 +03001156 struct tegra_usb_phy *phy = to_tegra_usb_phy(u_phy);
Venu Byravarasuab137d02013-01-24 15:57:03 +05301157
Venu Byravarasu3f9db1a2013-01-16 03:30:21 +00001158 if (!phy->is_ulpi_phy)
Benoit Goby91525d02011-03-09 16:28:55 -08001159 utmi_phy_restore_end(phy);
1160}
Arnd Bergmann4265cbf2012-03-02 15:58:42 -05001161EXPORT_SYMBOL_GPL(tegra_ehci_phy_restore_end);
Benoit Goby91525d02011-03-09 16:28:55 -08001162
Mikko Perttunen81d5dfe2013-07-17 09:31:01 +03001163static int read_utmi_param(struct platform_device *pdev, const char *param,
1164 u8 *dest)
1165{
1166 u32 value;
Dmitry Osipenko545592e2020-01-06 04:34:02 +03001167 int err;
1168
1169 err = of_property_read_u32(pdev->dev.of_node, param, &value);
1170 if (err)
Dmitry Osipenkof59cd942018-04-10 01:02:57 +03001171 dev_err(&pdev->dev,
1172 "Failed to read USB UTMI parameter %s: %d\n",
Mikko Perttunen81d5dfe2013-07-17 09:31:01 +03001173 param, err);
Dmitry Osipenko545592e2020-01-06 04:34:02 +03001174 else
1175 *dest = value;
1176
Mikko Perttunen81d5dfe2013-07-17 09:31:01 +03001177 return err;
1178}
1179
1180static int utmi_phy_probe(struct tegra_usb_phy *tegra_phy,
1181 struct platform_device *pdev)
1182{
Dmitry Osipenko545592e2020-01-06 04:34:02 +03001183 struct tegra_utmip_config *config;
Mikko Perttunen81d5dfe2013-07-17 09:31:01 +03001184 struct resource *res;
1185 int err;
Mikko Perttunen81d5dfe2013-07-17 09:31:01 +03001186
1187 tegra_phy->is_ulpi_phy = false;
1188
1189 res = platform_get_resource(pdev, IORESOURCE_MEM, 1);
1190 if (!res) {
Dmitry Osipenkof59cd942018-04-10 01:02:57 +03001191 dev_err(&pdev->dev, "Failed to get UTMI pad regs\n");
Mikko Perttunen81d5dfe2013-07-17 09:31:01 +03001192 return -ENXIO;
1193 }
1194
Dmitry Osipenkoa4a60192020-02-03 01:42:59 +03001195 /*
1196 * Note that UTMI pad registers are shared by all PHYs, therefore
1197 * devm_platform_ioremap_resource() can't be used here.
1198 */
Mikko Perttunen81d5dfe2013-07-17 09:31:01 +03001199 tegra_phy->pad_regs = devm_ioremap(&pdev->dev, res->start,
Dmitry Osipenko545592e2020-01-06 04:34:02 +03001200 resource_size(res));
Chris Ruehl851dd022013-12-04 10:02:44 +08001201 if (!tegra_phy->pad_regs) {
Dmitry Osipenkof59cd942018-04-10 01:02:57 +03001202 dev_err(&pdev->dev, "Failed to remap UTMI pad regs\n");
Mikko Perttunen81d5dfe2013-07-17 09:31:01 +03001203 return -ENOMEM;
1204 }
1205
Thierry Reding9ce9ec92014-07-21 13:37:37 +02001206 tegra_phy->config = devm_kzalloc(&pdev->dev, sizeof(*config),
1207 GFP_KERNEL);
Peter Chen01ad32d2014-10-14 15:56:13 +08001208 if (!tegra_phy->config)
Mikko Perttunen81d5dfe2013-07-17 09:31:01 +03001209 return -ENOMEM;
Mikko Perttunen81d5dfe2013-07-17 09:31:01 +03001210
1211 config = tegra_phy->config;
1212
1213 err = read_utmi_param(pdev, "nvidia,hssync-start-delay",
Dmitry Osipenko545592e2020-01-06 04:34:02 +03001214 &config->hssync_start_delay);
1215 if (err)
Mikko Perttunen81d5dfe2013-07-17 09:31:01 +03001216 return err;
1217
1218 err = read_utmi_param(pdev, "nvidia,elastic-limit",
Dmitry Osipenko545592e2020-01-06 04:34:02 +03001219 &config->elastic_limit);
1220 if (err)
Mikko Perttunen81d5dfe2013-07-17 09:31:01 +03001221 return err;
1222
1223 err = read_utmi_param(pdev, "nvidia,idle-wait-delay",
Dmitry Osipenko545592e2020-01-06 04:34:02 +03001224 &config->idle_wait_delay);
1225 if (err)
Mikko Perttunen81d5dfe2013-07-17 09:31:01 +03001226 return err;
1227
1228 err = read_utmi_param(pdev, "nvidia,term-range-adj",
Dmitry Osipenko545592e2020-01-06 04:34:02 +03001229 &config->term_range_adj);
1230 if (err)
Mikko Perttunen81d5dfe2013-07-17 09:31:01 +03001231 return err;
1232
Mikko Perttunen81d5dfe2013-07-17 09:31:01 +03001233 err = read_utmi_param(pdev, "nvidia,xcvr-lsfslew",
Dmitry Osipenko545592e2020-01-06 04:34:02 +03001234 &config->xcvr_lsfslew);
1235 if (err)
Mikko Perttunen81d5dfe2013-07-17 09:31:01 +03001236 return err;
1237
1238 err = read_utmi_param(pdev, "nvidia,xcvr-lsrslew",
Dmitry Osipenko545592e2020-01-06 04:34:02 +03001239 &config->xcvr_lsrslew);
1240 if (err)
Mikko Perttunen81d5dfe2013-07-17 09:31:01 +03001241 return err;
1242
Tuomas Tynkkynene497a242013-08-12 16:06:53 +03001243 if (tegra_phy->soc_config->requires_extra_tuning_parameters) {
1244 err = read_utmi_param(pdev, "nvidia,xcvr-hsslew",
Dmitry Osipenko545592e2020-01-06 04:34:02 +03001245 &config->xcvr_hsslew);
1246 if (err)
Tuomas Tynkkynene497a242013-08-12 16:06:53 +03001247 return err;
1248
1249 err = read_utmi_param(pdev, "nvidia,hssquelch-level",
Dmitry Osipenko545592e2020-01-06 04:34:02 +03001250 &config->hssquelch_level);
1251 if (err)
Tuomas Tynkkynene497a242013-08-12 16:06:53 +03001252 return err;
1253
1254 err = read_utmi_param(pdev, "nvidia,hsdiscon-level",
Dmitry Osipenko545592e2020-01-06 04:34:02 +03001255 &config->hsdiscon_level);
1256 if (err)
Tuomas Tynkkynene497a242013-08-12 16:06:53 +03001257 return err;
1258 }
1259
1260 config->xcvr_setup_use_fuses = of_property_read_bool(
1261 pdev->dev.of_node, "nvidia,xcvr-setup-use-fuses");
1262
1263 if (!config->xcvr_setup_use_fuses) {
1264 err = read_utmi_param(pdev, "nvidia,xcvr-setup",
Dmitry Osipenko545592e2020-01-06 04:34:02 +03001265 &config->xcvr_setup);
1266 if (err)
Tuomas Tynkkynene497a242013-08-12 16:06:53 +03001267 return err;
1268 }
1269
Mikko Perttunen81d5dfe2013-07-17 09:31:01 +03001270 return 0;
1271}
1272
Dmitry Osipenkoc1baf6c2021-09-12 21:17:15 +03001273static void tegra_usb_phy_put_pmc_device(void *dev)
1274{
1275 put_device(dev);
1276}
1277
1278static int tegra_usb_phy_parse_pmc(struct device *dev,
1279 struct tegra_usb_phy *phy)
1280{
1281 struct platform_device *pmc_pdev;
1282 struct of_phandle_args args;
1283 int err;
1284
1285 err = of_parse_phandle_with_fixed_args(dev->of_node, "nvidia,pmc",
1286 1, 0, &args);
1287 if (err) {
1288 if (err != -ENOENT)
1289 return err;
1290
1291 dev_warn_once(dev, "nvidia,pmc is missing, please update your device-tree\n");
1292 return 0;
1293 }
1294
1295 pmc_pdev = of_find_device_by_node(args.np);
1296 of_node_put(args.np);
1297 if (!pmc_pdev)
1298 return -ENODEV;
1299
1300 err = devm_add_action_or_reset(dev, tegra_usb_phy_put_pmc_device,
1301 &pmc_pdev->dev);
1302 if (err)
1303 return err;
1304
1305 if (!platform_get_drvdata(pmc_pdev))
1306 return -EPROBE_DEFER;
1307
1308 phy->pmc_regmap = dev_get_regmap(&pmc_pdev->dev, "usb_sleepwalk");
1309 if (!phy->pmc_regmap)
1310 return -EINVAL;
1311
1312 phy->instance = args.args[0];
1313
1314 return 0;
1315}
1316
Tuomas Tynkkynen3e635202013-08-12 16:06:51 +03001317static const struct tegra_phy_soc_config tegra20_soc_config = {
1318 .utmi_pll_config_in_car_module = false,
1319 .has_hostpc = false,
1320 .requires_usbmode_setup = false,
1321 .requires_extra_tuning_parameters = false,
Dmitry Osipenkoc1baf6c2021-09-12 21:17:15 +03001322 .requires_pmc_ao_power_up = false,
Tuomas Tynkkynen3e635202013-08-12 16:06:51 +03001323};
1324
1325static const struct tegra_phy_soc_config tegra30_soc_config = {
1326 .utmi_pll_config_in_car_module = true,
1327 .has_hostpc = true,
1328 .requires_usbmode_setup = true,
1329 .requires_extra_tuning_parameters = true,
Dmitry Osipenkoc1baf6c2021-09-12 21:17:15 +03001330 .requires_pmc_ao_power_up = true,
Tuomas Tynkkynen3e635202013-08-12 16:06:51 +03001331};
1332
Jingoo Han0f0520b2014-06-18 13:43:50 +09001333static const struct of_device_id tegra_usb_phy_id_table[] = {
Tuomas Tynkkynen3e635202013-08-12 16:06:51 +03001334 { .compatible = "nvidia,tegra30-usb-phy", .data = &tegra30_soc_config },
1335 { .compatible = "nvidia,tegra20-usb-phy", .data = &tegra20_soc_config },
1336 { },
1337};
1338MODULE_DEVICE_TABLE(of, tegra_usb_phy_id_table);
1339
Venu Byravarasu2d22b422013-05-16 19:43:02 +05301340static int tegra_usb_phy_probe(struct platform_device *pdev)
1341{
Venu Byravarasu2d22b422013-05-16 19:43:02 +05301342 struct device_node *np = pdev->dev.of_node;
Dmitry Osipenko545592e2020-01-06 04:34:02 +03001343 struct tegra_usb_phy *tegra_phy;
Tuomas Tynkkynen9fdb07f2013-07-25 21:38:08 +03001344 enum usb_phy_interface phy_type;
Dmitry Osipenko545592e2020-01-06 04:34:02 +03001345 struct reset_control *reset;
Dmitry Osipenko06e60e502020-01-06 04:34:09 +03001346 struct gpio_desc *gpiod;
Dmitry Osipenko545592e2020-01-06 04:34:02 +03001347 struct resource *res;
Dmitry Osipenko87541742020-01-06 04:34:07 +03001348 struct usb_phy *phy;
Venu Byravarasu2d22b422013-05-16 19:43:02 +05301349 int err;
1350
1351 tegra_phy = devm_kzalloc(&pdev->dev, sizeof(*tegra_phy), GFP_KERNEL);
Peter Chen01ad32d2014-10-14 15:56:13 +08001352 if (!tegra_phy)
Venu Byravarasu2d22b422013-05-16 19:43:02 +05301353 return -ENOMEM;
Venu Byravarasu2d22b422013-05-16 19:43:02 +05301354
Dmitry Osipenko545592e2020-01-06 04:34:02 +03001355 tegra_phy->soc_config = of_device_get_match_data(&pdev->dev);
Dmitry Osipenkoc1baf6c2021-09-12 21:17:15 +03001356 tegra_phy->irq = platform_get_irq_optional(pdev, 0);
Tuomas Tynkkynen3e635202013-08-12 16:06:51 +03001357
Venu Byravarasu2d22b422013-05-16 19:43:02 +05301358 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1359 if (!res) {
1360 dev_err(&pdev->dev, "Failed to get I/O memory\n");
1361 return -ENXIO;
1362 }
1363
Dmitry Osipenkoa4a60192020-02-03 01:42:59 +03001364 /*
1365 * Note that PHY and USB controller are using shared registers,
1366 * therefore devm_platform_ioremap_resource() can't be used here.
1367 */
Venu Byravarasu2d22b422013-05-16 19:43:02 +05301368 tegra_phy->regs = devm_ioremap(&pdev->dev, res->start,
Dmitry Osipenko545592e2020-01-06 04:34:02 +03001369 resource_size(res));
Venu Byravarasu2d22b422013-05-16 19:43:02 +05301370 if (!tegra_phy->regs) {
1371 dev_err(&pdev->dev, "Failed to remap I/O memory\n");
1372 return -ENOMEM;
1373 }
1374
1375 tegra_phy->is_legacy_phy =
1376 of_property_read_bool(np, "nvidia,has-legacy-mode");
1377
Tuomas Tynkkynen6558d7e2013-07-25 21:38:09 +03001378 if (of_find_property(np, "dr_mode", NULL))
Heikki Krogerus06e71142015-09-21 11:14:34 +03001379 tegra_phy->mode = usb_get_dr_mode(&pdev->dev);
Tuomas Tynkkynen6558d7e2013-07-25 21:38:09 +03001380 else
1381 tegra_phy->mode = USB_DR_MODE_HOST;
1382
1383 if (tegra_phy->mode == USB_DR_MODE_UNKNOWN) {
1384 dev_err(&pdev->dev, "dr_mode is invalid\n");
1385 return -EINVAL;
1386 }
Venu Byravarasu2d22b422013-05-16 19:43:02 +05301387
Mikko Perttunenf5b8c8b2013-07-17 10:37:49 +03001388 /* On some boards, the VBUS regulator doesn't need to be controlled */
Dmitry Osipenko9df3adc2020-01-06 04:34:05 +03001389 tegra_phy->vbus = devm_regulator_get(&pdev->dev, "vbus");
1390 if (IS_ERR(tegra_phy->vbus))
1391 return PTR_ERR(tegra_phy->vbus);
Mikko Perttunenf5b8c8b2013-07-17 10:37:49 +03001392
Dmitry Osipenko5dcdafd2020-01-06 04:34:01 +03001393 tegra_phy->pll_u = devm_clk_get(&pdev->dev, "pll_u");
1394 err = PTR_ERR_OR_ZERO(tegra_phy->pll_u);
1395 if (err) {
1396 dev_err(&pdev->dev, "Failed to get pll_u clock: %d\n", err);
Venu Byravarasu2d22b422013-05-16 19:43:02 +05301397 return err;
Dmitry Osipenko5dcdafd2020-01-06 04:34:01 +03001398 }
Venu Byravarasu2d22b422013-05-16 19:43:02 +05301399
Dmitry Osipenkoc1baf6c2021-09-12 21:17:15 +03001400 err = tegra_usb_phy_parse_pmc(&pdev->dev, tegra_phy);
1401 if (err) {
1402 dev_err_probe(&pdev->dev, err, "Failed to get PMC regmap\n");
1403 return err;
1404 }
1405
Dmitry Osipenko545592e2020-01-06 04:34:02 +03001406 phy_type = of_usb_get_phy_mode(np);
1407 switch (phy_type) {
1408 case USBPHY_INTERFACE_MODE_UTMI:
1409 err = utmi_phy_probe(tegra_phy, pdev);
1410 if (err)
1411 return err;
1412
1413 tegra_phy->pad_clk = devm_clk_get(&pdev->dev, "utmi-pads");
1414 err = PTR_ERR_OR_ZERO(tegra_phy->pad_clk);
1415 if (err) {
1416 dev_err(&pdev->dev,
1417 "Failed to get UTMIP pad clock: %d\n", err);
1418 return err;
1419 }
1420
1421 reset = devm_reset_control_get_optional_shared(&pdev->dev,
1422 "utmi-pads");
1423 err = PTR_ERR_OR_ZERO(reset);
1424 if (err) {
1425 dev_err(&pdev->dev,
1426 "Failed to get UTMI-pads reset: %d\n", err);
1427 return err;
1428 }
1429 tegra_phy->pad_rst = reset;
1430 break;
1431
1432 case USBPHY_INTERFACE_MODE_ULPI:
1433 tegra_phy->is_ulpi_phy = true;
1434
Dmitry Osipenko5dcdafd2020-01-06 04:34:01 +03001435 tegra_phy->clk = devm_clk_get(&pdev->dev, "ulpi-link");
1436 err = PTR_ERR_OR_ZERO(tegra_phy->clk);
1437 if (err) {
1438 dev_err(&pdev->dev,
1439 "Failed to get ULPI clock: %d\n", err);
1440 return err;
1441 }
1442
Dmitry Osipenko06e60e502020-01-06 04:34:09 +03001443 gpiod = devm_gpiod_get_from_of_node(&pdev->dev, np,
1444 "nvidia,phy-reset-gpio",
1445 0, GPIOD_OUT_HIGH,
1446 "ulpi_phy_reset_b");
1447 err = PTR_ERR_OR_ZERO(gpiod);
Dmitry Osipenko545592e2020-01-06 04:34:02 +03001448 if (err) {
Dmitry Osipenko06e60e502020-01-06 04:34:09 +03001449 dev_err(&pdev->dev,
1450 "Request failed for reset GPIO: %d\n", err);
Dmitry Osipenko5dcdafd2020-01-06 04:34:01 +03001451 return err;
1452 }
Dmitry Osipenko06e60e502020-01-06 04:34:09 +03001453 tegra_phy->reset_gpio = gpiod;
Dmitry Osipenko5dcdafd2020-01-06 04:34:01 +03001454
Dmitry Osipenko87541742020-01-06 04:34:07 +03001455 phy = devm_otg_ulpi_create(&pdev->dev,
1456 &ulpi_viewport_access_ops, 0);
1457 if (!phy) {
Dmitry Osipenko5dcdafd2020-01-06 04:34:01 +03001458 dev_err(&pdev->dev, "Failed to create ULPI OTG\n");
Dmitry Osipenko545592e2020-01-06 04:34:02 +03001459 return -ENOMEM;
Dmitry Osipenko5dcdafd2020-01-06 04:34:01 +03001460 }
1461
Dmitry Osipenko87541742020-01-06 04:34:07 +03001462 tegra_phy->ulpi = phy;
Dmitry Osipenko5dcdafd2020-01-06 04:34:01 +03001463 tegra_phy->ulpi->io_priv = tegra_phy->regs + ULPI_VIEWPORT;
Dmitry Osipenko545592e2020-01-06 04:34:02 +03001464 break;
Dmitry Osipenko5dcdafd2020-01-06 04:34:01 +03001465
Dmitry Osipenko545592e2020-01-06 04:34:02 +03001466 default:
1467 dev_err(&pdev->dev, "phy_type %u is invalid or unsupported\n",
1468 phy_type);
1469 return -EINVAL;
Dmitry Osipenko5dcdafd2020-01-06 04:34:01 +03001470 }
1471
1472 tegra_phy->u_phy.dev = &pdev->dev;
1473 tegra_phy->u_phy.init = tegra_usb_phy_init;
1474 tegra_phy->u_phy.shutdown = tegra_usb_phy_shutdown;
Dmitry Osipenko35192002020-12-18 15:02:39 +03001475 tegra_phy->u_phy.set_wakeup = tegra_usb_phy_set_wakeup;
Dmitry Osipenko5dcdafd2020-01-06 04:34:01 +03001476 tegra_phy->u_phy.set_suspend = tegra_usb_phy_set_suspend;
Venu Byravarasu2d22b422013-05-16 19:43:02 +05301477
Libo Chen72031b52013-08-30 11:23:32 +08001478 platform_set_drvdata(pdev, tegra_phy);
Tuomas Tynkkynen0ee5b4a2013-07-25 21:38:05 +03001479
Tang Bind4109122020-05-28 19:47:17 +08001480 return usb_add_phy_dev(&tegra_phy->u_phy);
Tuomas Tynkkynen0ee5b4a2013-07-25 21:38:05 +03001481}
1482
1483static int tegra_usb_phy_remove(struct platform_device *pdev)
1484{
1485 struct tegra_usb_phy *tegra_phy = platform_get_drvdata(pdev);
1486
1487 usb_remove_phy(&tegra_phy->u_phy);
Dmitry Osipenko5dcdafd2020-01-06 04:34:01 +03001488
Venu Byravarasu2d22b422013-05-16 19:43:02 +05301489 return 0;
1490}
1491
Venu Byravarasu2d22b422013-05-16 19:43:02 +05301492static struct platform_driver tegra_usb_phy_driver = {
1493 .probe = tegra_usb_phy_probe,
Tuomas Tynkkynen0ee5b4a2013-07-25 21:38:05 +03001494 .remove = tegra_usb_phy_remove,
Venu Byravarasu2d22b422013-05-16 19:43:02 +05301495 .driver = {
1496 .name = "tegra-phy",
Sachin Kamat787239202013-09-30 09:44:47 +05301497 .of_match_table = tegra_usb_phy_id_table,
Venu Byravarasu2d22b422013-05-16 19:43:02 +05301498 },
1499};
1500module_platform_driver(tegra_usb_phy_driver);
1501
Stephen Warren587376a2013-06-13 11:24:08 -06001502MODULE_DESCRIPTION("Tegra USB PHY driver");
1503MODULE_LICENSE("GPL v2");