blob: 6428163c188cb5fbb1e9b66a592a3347fb5b956e [file] [log] [blame]
Jagan Teki67685942018-05-07 13:03:26 +05301/*
2 * Allwinner sun4i USB PHY driver
3 *
4 * Copyright (C) 2017 Jagan Teki <jagan@amarulasolutions.com>
5 * Copyright (C) 2015 Hans de Goede <hdegoede@redhat.com>
6 * Copyright (C) 2014 Roman Byshko <rbyshko@gmail.com>
7 *
8 * Modelled arch/arm/mach-sunxi/usb_phy.c to compatible with generic-phy.
9 *
10 * SPDX-License-Identifier: GPL-2.0+
11 */
12
13#include <common.h>
Jagan Teki089ffd02018-08-06 12:16:39 +053014#include <clk.h>
Jagan Teki67685942018-05-07 13:03:26 +053015#include <dm.h>
Simon Glassf7ae49f2020-05-10 11:40:05 -060016#include <log.h>
Jagan Teki67685942018-05-07 13:03:26 +053017#include <dm/device.h>
18#include <generic-phy.h>
Jagan Teki129c45c2018-05-07 13:03:27 +053019#include <phy-sun4i-usb.h>
Jagan Teki089ffd02018-08-06 12:16:39 +053020#include <reset.h>
Jagan Teki67685942018-05-07 13:03:26 +053021#include <asm/gpio.h>
22#include <asm/io.h>
Simon Glass336d4612020-02-03 07:36:16 -070023#include <dm/device_compat.h>
Simon Glasscd93d622020-05-10 11:40:13 -060024#include <linux/bitops.h>
Simon Glassc05ed002020-05-10 11:40:11 -060025#include <linux/delay.h>
Simon Glass61b29b82020-02-03 07:36:15 -070026#include <linux/err.h>
Samuel Holland6fa41cd2021-09-12 09:22:42 -050027#include <power/regulator.h>
Jagan Teki67685942018-05-07 13:03:26 +053028
29#define REG_ISCR 0x00
30#define REG_PHYCTL_A10 0x04
31#define REG_PHYBIST 0x08
32#define REG_PHYTUNE 0x0c
33#define REG_PHYCTL_A33 0x10
34#define REG_PHY_OTGCTL 0x20
Andre Przywarab33ee492022-07-14 23:09:21 -050035
36#define REG_HCI_PHY_CTL 0x10
Jagan Teki67685942018-05-07 13:03:26 +053037
38/* Common Control Bits for Both PHYs */
39#define PHY_PLL_BW 0x03
40#define PHY_RES45_CAL_EN 0x0c
41
42/* Private Control Bits for Each PHY */
43#define PHY_TX_AMPLITUDE_TUNE 0x20
44#define PHY_TX_SLEWRATE_TUNE 0x22
45#define PHY_DISCON_TH_SEL 0x2a
Jagan Tekiaa29b112018-05-07 13:03:37 +053046#define PHY_SQUELCH_DETECT 0x3c
Jagan Teki67685942018-05-07 13:03:26 +053047
48#define PHYCTL_DATA BIT(7)
49#define OTGCTL_ROUTE_MUSB BIT(0)
50
51#define PHY_TX_RATE BIT(4)
52#define PHY_TX_MAGNITUDE BIT(2)
53#define PHY_TX_AMPLITUDE_LEN 5
54
55#define PHY_RES45_CAL_DATA BIT(0)
56#define PHY_RES45_CAL_LEN 1
57#define PHY_DISCON_TH_LEN 2
58
59#define SUNXI_AHB_ICHR8_EN BIT(10)
60#define SUNXI_AHB_INCR4_BURST_EN BIT(9)
61#define SUNXI_AHB_INCRX_ALIGN_EN BIT(8)
62#define SUNXI_ULPI_BYPASS_EN BIT(0)
63
Jagan Teki5f646bf2018-05-07 13:03:30 +053064/* A83T specific control bits for PHY0 */
65#define PHY_CTL_VBUSVLDEXT BIT(5)
66#define PHY_CTL_SIDDQ BIT(3)
Andre Przywarab33ee492022-07-14 23:09:21 -050067#define PHY_CTL_H3_SIDDQ BIT(1)
Jagan Teki5f646bf2018-05-07 13:03:30 +053068
69/* A83T specific control bits for PHY2 HSIC */
70#define SUNXI_EHCI_HS_FORCE BIT(20)
71#define SUNXI_HSIC_CONNECT_INT BIT(16)
72#define SUNXI_HSIC BIT(1)
73
Jagan Teki67685942018-05-07 13:03:26 +053074#define MAX_PHYS 4
75
76enum sun4i_usb_phy_type {
Jagan Teki7f90b552018-05-07 13:03:31 +053077 sun4i_a10_phy,
Jagan Tekibf986d12018-05-07 13:03:32 +053078 sun6i_a31_phy,
Jagan Teki61bf0ed2018-05-07 13:03:33 +053079 sun8i_a33_phy,
Jagan Teki5f646bf2018-05-07 13:03:30 +053080 sun8i_a83t_phy,
Jagan Teki43519c42018-05-07 13:03:28 +053081 sun8i_h3_phy,
Andre Przywaraa2f729f2020-01-01 23:44:48 +000082 sun8i_r40_phy,
Jagan Tekibafe5e32018-05-07 13:03:29 +053083 sun8i_v3s_phy,
Jagan Teki67685942018-05-07 13:03:26 +053084 sun50i_a64_phy,
Andre Przywara35fa6732019-06-23 15:09:49 +010085 sun50i_h6_phy,
Jagan Teki67685942018-05-07 13:03:26 +053086};
87
88struct sun4i_usb_phy_cfg {
89 int num_phys;
90 enum sun4i_usb_phy_type type;
91 u32 disc_thresh;
Andre Przywarab33ee492022-07-14 23:09:21 -050092 u32 hci_phy_ctl_clear;
Jagan Teki67685942018-05-07 13:03:26 +053093 u8 phyctl_offset;
Jagan Teki089ffd02018-08-06 12:16:39 +053094 bool dedicated_clocks;
Jagan Teki67685942018-05-07 13:03:26 +053095 bool phy0_dual_route;
Andre Przywara35fa6732019-06-23 15:09:49 +010096 int missing_phys;
Jagan Teki67685942018-05-07 13:03:26 +053097};
98
99struct sun4i_usb_phy_info {
100 const char *gpio_vbus;
101 const char *gpio_vbus_det;
102 const char *gpio_id_det;
Jagan Teki67685942018-05-07 13:03:26 +0530103} phy_info[] = {
104 {
105 .gpio_vbus = CONFIG_USB0_VBUS_PIN,
106 .gpio_vbus_det = CONFIG_USB0_VBUS_DET,
107 .gpio_id_det = CONFIG_USB0_ID_DET,
Jagan Teki67685942018-05-07 13:03:26 +0530108 },
109 {
110 .gpio_vbus = CONFIG_USB1_VBUS_PIN,
111 .gpio_vbus_det = NULL,
112 .gpio_id_det = NULL,
Jagan Teki67685942018-05-07 13:03:26 +0530113 },
114 {
115 .gpio_vbus = CONFIG_USB2_VBUS_PIN,
116 .gpio_vbus_det = NULL,
117 .gpio_id_det = NULL,
Jagan Teki67685942018-05-07 13:03:26 +0530118 },
119 {
120 .gpio_vbus = CONFIG_USB3_VBUS_PIN,
121 .gpio_vbus_det = NULL,
122 .gpio_id_det = NULL,
Jagan Teki67685942018-05-07 13:03:26 +0530123 },
124};
125
126struct sun4i_usb_phy_plat {
127 void __iomem *pmu;
Andre Przywara3c0b9ad2022-06-07 23:36:18 +0100128 struct gpio_desc gpio_vbus;
129 struct gpio_desc gpio_vbus_det;
130 struct gpio_desc gpio_id_det;
Jagan Teki089ffd02018-08-06 12:16:39 +0530131 struct clk clocks;
132 struct reset_ctl resets;
Jagan Teki67685942018-05-07 13:03:26 +0530133 int id;
134};
135
136struct sun4i_usb_phy_data {
137 void __iomem *base;
Jagan Teki67685942018-05-07 13:03:26 +0530138 const struct sun4i_usb_phy_cfg *cfg;
139 struct sun4i_usb_phy_plat *usb_phy;
Samuel Holland6fa41cd2021-09-12 09:22:42 -0500140 struct udevice *vbus_power_supply;
Jagan Teki67685942018-05-07 13:03:26 +0530141};
142
143static int initial_usb_scan_delay = CONFIG_INITIAL_USB_SCAN_DELAY;
144
145static void sun4i_usb_phy_write(struct phy *phy, u32 addr, u32 data, int len)
146{
147 struct sun4i_usb_phy_data *phy_data = dev_get_priv(phy->dev);
148 struct sun4i_usb_phy_plat *usb_phy = &phy_data->usb_phy[phy->id];
149 u32 temp, usbc_bit = BIT(usb_phy->id * 2);
150 void __iomem *phyctl = phy_data->base + phy_data->cfg->phyctl_offset;
151 int i;
152
153 if (phy_data->cfg->phyctl_offset == REG_PHYCTL_A33) {
154 /* SoCs newer than A33 need us to set phyctl to 0 explicitly */
155 writel(0, phyctl);
156 }
157
158 for (i = 0; i < len; i++) {
159 temp = readl(phyctl);
160
161 /* clear the address portion */
162 temp &= ~(0xff << 8);
163
164 /* set the address */
165 temp |= ((addr + i) << 8);
166 writel(temp, phyctl);
167
168 /* set the data bit and clear usbc bit*/
169 temp = readb(phyctl);
170 if (data & 0x1)
171 temp |= PHYCTL_DATA;
172 else
173 temp &= ~PHYCTL_DATA;
174 temp &= ~usbc_bit;
175 writeb(temp, phyctl);
176
177 /* pulse usbc_bit */
178 temp = readb(phyctl);
179 temp |= usbc_bit;
180 writeb(temp, phyctl);
181
182 temp = readb(phyctl);
183 temp &= ~usbc_bit;
184 writeb(temp, phyctl);
185
186 data >>= 1;
187 }
188}
189
Jagan Teki5f646bf2018-05-07 13:03:30 +0530190static void sun4i_usb_phy_passby(struct phy *phy, bool enable)
Jagan Teki67685942018-05-07 13:03:26 +0530191{
Jagan Teki5f646bf2018-05-07 13:03:30 +0530192 struct sun4i_usb_phy_data *data = dev_get_priv(phy->dev);
193 struct sun4i_usb_phy_plat *usb_phy = &data->usb_phy[phy->id];
Jagan Teki67685942018-05-07 13:03:26 +0530194 u32 bits, reg_value;
195
196 if (!usb_phy->pmu)
197 return;
198
199 bits = SUNXI_AHB_ICHR8_EN | SUNXI_AHB_INCR4_BURST_EN |
200 SUNXI_AHB_INCRX_ALIGN_EN | SUNXI_ULPI_BYPASS_EN;
Jagan Teki5f646bf2018-05-07 13:03:30 +0530201
202 /* A83T USB2 is HSIC */
203 if (data->cfg->type == sun8i_a83t_phy && usb_phy->id == 2)
204 bits |= SUNXI_EHCI_HS_FORCE | SUNXI_HSIC_CONNECT_INT |
205 SUNXI_HSIC;
206
Jagan Teki67685942018-05-07 13:03:26 +0530207 reg_value = readl(usb_phy->pmu);
208
209 if (enable)
210 reg_value |= bits;
211 else
212 reg_value &= ~bits;
213
214 writel(reg_value, usb_phy->pmu);
215}
216
217static int sun4i_usb_phy_power_on(struct phy *phy)
218{
219 struct sun4i_usb_phy_data *data = dev_get_priv(phy->dev);
220 struct sun4i_usb_phy_plat *usb_phy = &data->usb_phy[phy->id];
221
222 if (initial_usb_scan_delay) {
223 mdelay(initial_usb_scan_delay);
224 initial_usb_scan_delay = 0;
225 }
226
Samuel Hollanddf202d92022-07-14 22:34:53 -0500227 /* For phy0 only turn on Vbus if we don't have an ext. Vbus */
228 if (phy->id == 0 && sun4i_usb_phy_vbus_detect(phy)) {
229 dev_warn(phy->dev, "External vbus detected, not enabling our own vbus\n");
230 return 0;
231 }
232
Andre Przywara3c0b9ad2022-06-07 23:36:18 +0100233 if (dm_gpio_is_valid(&usb_phy->gpio_vbus))
234 dm_gpio_set_value(&usb_phy->gpio_vbus, 1);
Jagan Teki67685942018-05-07 13:03:26 +0530235
236 return 0;
237}
238
239static int sun4i_usb_phy_power_off(struct phy *phy)
240{
241 struct sun4i_usb_phy_data *data = dev_get_priv(phy->dev);
242 struct sun4i_usb_phy_plat *usb_phy = &data->usb_phy[phy->id];
243
Andre Przywara3c0b9ad2022-06-07 23:36:18 +0100244 if (dm_gpio_is_valid(&usb_phy->gpio_vbus))
245 dm_gpio_set_value(&usb_phy->gpio_vbus, 0);
Jagan Teki67685942018-05-07 13:03:26 +0530246
247 return 0;
248}
249
250static void sun4i_usb_phy0_reroute(struct sun4i_usb_phy_data *data, bool id_det)
251{
252 u32 regval;
253
254 regval = readl(data->base + REG_PHY_OTGCTL);
255 if (!id_det) {
256 /* Host mode. Route phy0 to EHCI/OHCI */
257 regval &= ~OTGCTL_ROUTE_MUSB;
258 } else {
259 /* Peripheral mode. Route phy0 to MUSB */
260 regval |= OTGCTL_ROUTE_MUSB;
261 }
262 writel(regval, data->base + REG_PHY_OTGCTL);
263}
264
265static int sun4i_usb_phy_init(struct phy *phy)
266{
267 struct sun4i_usb_phy_data *data = dev_get_priv(phy->dev);
268 struct sun4i_usb_phy_plat *usb_phy = &data->usb_phy[phy->id];
269 u32 val;
Jagan Teki089ffd02018-08-06 12:16:39 +0530270 int ret;
Jagan Teki67685942018-05-07 13:03:26 +0530271
Jagan Teki089ffd02018-08-06 12:16:39 +0530272 ret = clk_enable(&usb_phy->clocks);
273 if (ret) {
Sean Anderson73345172020-09-15 10:45:04 -0400274 dev_err(phy->dev, "failed to enable usb_%ldphy clock\n",
275 phy->id);
Jagan Teki089ffd02018-08-06 12:16:39 +0530276 return ret;
277 }
278
279 ret = reset_deassert(&usb_phy->resets);
280 if (ret) {
Sean Anderson73345172020-09-15 10:45:04 -0400281 dev_err(phy->dev, "failed to deassert usb_%ldreset reset\n",
282 phy->id);
Jagan Teki089ffd02018-08-06 12:16:39 +0530283 return ret;
284 }
Jagan Teki67685942018-05-07 13:03:26 +0530285
Andre Przywarab33ee492022-07-14 23:09:21 -0500286 if (usb_phy->pmu && data->cfg->hci_phy_ctl_clear) {
287 val = readl(usb_phy->pmu + REG_HCI_PHY_CTL);
288 val &= ~data->cfg->hci_phy_ctl_clear;
289 writel(val, usb_phy->pmu + REG_HCI_PHY_CTL);
290 }
291
Roman Stratiienko462a9c72020-05-12 21:24:49 +0300292 if (data->cfg->type == sun8i_a83t_phy ||
293 data->cfg->type == sun50i_h6_phy) {
Jagan Teki5f646bf2018-05-07 13:03:30 +0530294 if (phy->id == 0) {
295 val = readl(data->base + data->cfg->phyctl_offset);
296 val |= PHY_CTL_VBUSVLDEXT;
297 val &= ~PHY_CTL_SIDDQ;
298 writel(val, data->base + data->cfg->phyctl_offset);
299 }
300 } else {
Jagan Teki5f646bf2018-05-07 13:03:30 +0530301 if (usb_phy->id == 0)
302 sun4i_usb_phy_write(phy, PHY_RES45_CAL_EN,
303 PHY_RES45_CAL_DATA,
304 PHY_RES45_CAL_LEN);
305
306 /* Adjust PHY's magnitude and rate */
307 sun4i_usb_phy_write(phy, PHY_TX_AMPLITUDE_TUNE,
308 PHY_TX_MAGNITUDE | PHY_TX_RATE,
309 PHY_TX_AMPLITUDE_LEN);
310
311 /* Disconnect threshold adjustment */
312 sun4i_usb_phy_write(phy, PHY_DISCON_TH_SEL,
313 data->cfg->disc_thresh, PHY_DISCON_TH_LEN);
Jagan Teki67685942018-05-07 13:03:26 +0530314 }
315
Paul Kocialkowski0d5824c2019-03-14 10:38:00 +0000316#ifdef CONFIG_USB_MUSB_SUNXI
317 /* Needed for HCI and conflicts with MUSB, keep PHY0 on MUSB */
318 if (usb_phy->id != 0)
319 sun4i_usb_phy_passby(phy, true);
320
321 /* Route PHY0 to MUSB to allow USB gadget */
322 if (data->cfg->phy0_dual_route)
323 sun4i_usb_phy0_reroute(data, true);
324#else
Jagan Teki0bfcb472018-07-20 12:34:20 +0530325 sun4i_usb_phy_passby(phy, true);
Jagan Teki67685942018-05-07 13:03:26 +0530326
Paul Kocialkowski0d5824c2019-03-14 10:38:00 +0000327 /* Route PHY0 to HCI to allow USB host */
328 if (data->cfg->phy0_dual_route)
329 sun4i_usb_phy0_reroute(data, false);
330#endif
Jagan Teki67685942018-05-07 13:03:26 +0530331
332 return 0;
333}
334
335static int sun4i_usb_phy_exit(struct phy *phy)
336{
337 struct sun4i_usb_phy_data *data = dev_get_priv(phy->dev);
338 struct sun4i_usb_phy_plat *usb_phy = &data->usb_phy[phy->id];
Jagan Teki089ffd02018-08-06 12:16:39 +0530339 int ret;
Jagan Teki67685942018-05-07 13:03:26 +0530340
Jagan Teki5f646bf2018-05-07 13:03:30 +0530341 if (phy->id == 0) {
Roman Stratiienko462a9c72020-05-12 21:24:49 +0300342 if (data->cfg->type == sun8i_a83t_phy ||
343 data->cfg->type == sun50i_h6_phy) {
Jagan Teki5f646bf2018-05-07 13:03:30 +0530344 void __iomem *phyctl = data->base +
345 data->cfg->phyctl_offset;
346
347 writel(readl(phyctl) | PHY_CTL_SIDDQ, phyctl);
348 }
349 }
350
351 sun4i_usb_phy_passby(phy, false);
Jagan Teki67685942018-05-07 13:03:26 +0530352
Jagan Teki089ffd02018-08-06 12:16:39 +0530353 ret = clk_disable(&usb_phy->clocks);
354 if (ret) {
Sean Anderson73345172020-09-15 10:45:04 -0400355 dev_err(phy->dev, "failed to disable usb_%ldphy clock\n",
356 phy->id);
Jagan Teki089ffd02018-08-06 12:16:39 +0530357 return ret;
358 }
359
360 ret = reset_assert(&usb_phy->resets);
361 if (ret) {
Sean Anderson73345172020-09-15 10:45:04 -0400362 dev_err(phy->dev, "failed to assert usb_%ldreset reset\n",
363 phy->id);
Jagan Teki089ffd02018-08-06 12:16:39 +0530364 return ret;
365 }
Jagan Teki67685942018-05-07 13:03:26 +0530366
367 return 0;
368}
369
370static int sun4i_usb_phy_xlate(struct phy *phy,
371 struct ofnode_phandle_args *args)
372{
373 struct sun4i_usb_phy_data *data = dev_get_priv(phy->dev);
374
375 if (args->args_count >= data->cfg->num_phys)
376 return -EINVAL;
377
Andre Przywara35fa6732019-06-23 15:09:49 +0100378 if (data->cfg->missing_phys & BIT(args->args[0]))
379 return -ENODEV;
380
Jagan Teki67685942018-05-07 13:03:26 +0530381 if (args->args_count)
382 phy->id = args->args[0];
383 else
384 phy->id = 0;
385
386 debug("%s: phy_id = %ld\n", __func__, phy->id);
387 return 0;
388}
389
Jagan Teki129c45c2018-05-07 13:03:27 +0530390int sun4i_usb_phy_vbus_detect(struct phy *phy)
391{
392 struct sun4i_usb_phy_data *data = dev_get_priv(phy->dev);
393 struct sun4i_usb_phy_plat *usb_phy = &data->usb_phy[phy->id];
Samuel Holland1da7b882021-09-12 09:22:41 -0500394 int err = 1, retries = 3;
Jagan Teki129c45c2018-05-07 13:03:27 +0530395
Andre Przywara3c0b9ad2022-06-07 23:36:18 +0100396 if (dm_gpio_is_valid(&usb_phy->gpio_vbus_det)) {
397 err = dm_gpio_get_value(&usb_phy->gpio_vbus_det);
Samuel Holland1da7b882021-09-12 09:22:41 -0500398 /*
399 * Vbus may have been provided by the board and just turned off
400 * some milliseconds ago on reset. What we're measuring then is
401 * a residual charge on Vbus. Sleep a bit and try again.
402 */
403 while (err > 0 && retries--) {
404 mdelay(100);
Andre Przywara3c0b9ad2022-06-07 23:36:18 +0100405 err = dm_gpio_get_value(&usb_phy->gpio_vbus_det);
Samuel Holland1da7b882021-09-12 09:22:41 -0500406 }
Samuel Holland6fa41cd2021-09-12 09:22:42 -0500407 } else if (data->vbus_power_supply) {
408 err = regulator_get_enable(data->vbus_power_supply);
Jagan Teki129c45c2018-05-07 13:03:27 +0530409 }
410
411 return err;
412}
413
414int sun4i_usb_phy_id_detect(struct phy *phy)
415{
416 struct sun4i_usb_phy_data *data = dev_get_priv(phy->dev);
417 struct sun4i_usb_phy_plat *usb_phy = &data->usb_phy[phy->id];
418
Andre Przywara3c0b9ad2022-06-07 23:36:18 +0100419 if (!dm_gpio_is_valid(&usb_phy->gpio_id_det))
420 return -1;
Jagan Teki129c45c2018-05-07 13:03:27 +0530421
Andre Przywara3c0b9ad2022-06-07 23:36:18 +0100422 return dm_gpio_get_value(&usb_phy->gpio_id_det);
Jagan Teki129c45c2018-05-07 13:03:27 +0530423}
424
Jagan Tekiaa29b112018-05-07 13:03:37 +0530425void sun4i_usb_phy_set_squelch_detect(struct phy *phy, bool enabled)
426{
427 sun4i_usb_phy_write(phy, PHY_SQUELCH_DETECT, enabled ? 0 : 2, 2);
428}
429
Jagan Teki67685942018-05-07 13:03:26 +0530430static struct phy_ops sun4i_usb_phy_ops = {
431 .of_xlate = sun4i_usb_phy_xlate,
432 .init = sun4i_usb_phy_init,
433 .power_on = sun4i_usb_phy_power_on,
434 .power_off = sun4i_usb_phy_power_off,
435 .exit = sun4i_usb_phy_exit,
436};
437
438static int sun4i_usb_phy_probe(struct udevice *dev)
439{
Simon Glassc69cda22020-12-03 16:55:20 -0700440 struct sun4i_usb_phy_plat *plat = dev_get_plat(dev);
Jagan Teki67685942018-05-07 13:03:26 +0530441 struct sun4i_usb_phy_data *data = dev_get_priv(dev);
442 int i, ret;
443
444 data->cfg = (const struct sun4i_usb_phy_cfg *)dev_get_driver_data(dev);
445 if (!data->cfg)
446 return -EINVAL;
447
448 data->base = (void __iomem *)devfdt_get_addr_name(dev, "phy_ctrl");
449 if (IS_ERR(data->base))
450 return PTR_ERR(data->base);
451
Samuel Holland6fa41cd2021-09-12 09:22:42 -0500452 device_get_supply_regulator(dev, "usb0_vbus_power-supply",
453 &data->vbus_power_supply);
454
Jagan Teki67685942018-05-07 13:03:26 +0530455 data->usb_phy = plat;
456 for (i = 0; i < data->cfg->num_phys; i++) {
457 struct sun4i_usb_phy_plat *phy = &plat[i];
458 struct sun4i_usb_phy_info *info = &phy_info[i];
459 char name[16];
460
Andre Przywara35fa6732019-06-23 15:09:49 +0100461 if (data->cfg->missing_phys & BIT(i))
462 continue;
463
Andre Przywara3c0b9ad2022-06-07 23:36:18 +0100464 ret = dm_gpio_lookup_name(info->gpio_vbus, &phy->gpio_vbus);
465 if (ret == 0) {
466 ret = dm_gpio_request(&phy->gpio_vbus, "usb_vbus");
Jagan Teki67685942018-05-07 13:03:26 +0530467 if (ret)
468 return ret;
Andre Przywara3c0b9ad2022-06-07 23:36:18 +0100469 ret = dm_gpio_set_dir_flags(&phy->gpio_vbus,
470 GPIOD_IS_OUT);
471 if (ret)
472 return ret;
473 ret = dm_gpio_set_value(&phy->gpio_vbus, 0);
Jagan Teki67685942018-05-07 13:03:26 +0530474 if (ret)
475 return ret;
476 }
477
Andre Przywara3c0b9ad2022-06-07 23:36:18 +0100478 ret = dm_gpio_lookup_name(info->gpio_vbus_det,
479 &phy->gpio_vbus_det);
480 if (ret == 0) {
481 ret = dm_gpio_request(&phy->gpio_vbus_det,
482 "usb_vbus_det");
Jagan Teki67685942018-05-07 13:03:26 +0530483 if (ret)
484 return ret;
Andre Przywara3c0b9ad2022-06-07 23:36:18 +0100485 ret = dm_gpio_set_dir_flags(&phy->gpio_vbus_det,
486 GPIOD_IS_IN);
Jagan Teki67685942018-05-07 13:03:26 +0530487 if (ret)
488 return ret;
489 }
490
Andre Przywara3c0b9ad2022-06-07 23:36:18 +0100491 ret = dm_gpio_lookup_name(info->gpio_id_det, &phy->gpio_id_det);
492 if (ret == 0) {
493 ret = dm_gpio_request(&phy->gpio_id_det, "usb_id_det");
Jagan Teki67685942018-05-07 13:03:26 +0530494 if (ret)
495 return ret;
Andre Przywara3c0b9ad2022-06-07 23:36:18 +0100496 ret = dm_gpio_set_dir_flags(&phy->gpio_id_det,
497 GPIOD_IS_IN | GPIOD_PULL_UP);
Jagan Teki67685942018-05-07 13:03:26 +0530498 if (ret)
499 return ret;
Jagan Teki67685942018-05-07 13:03:26 +0530500 }
501
Jagan Teki089ffd02018-08-06 12:16:39 +0530502 if (data->cfg->dedicated_clocks)
503 snprintf(name, sizeof(name), "usb%d_phy", i);
504 else
505 strlcpy(name, "usb_phy", sizeof(name));
506
507 ret = clk_get_by_name(dev, name, &phy->clocks);
508 if (ret) {
509 dev_err(dev, "failed to get usb%d_phy clock phandle\n", i);
510 return ret;
511 }
512
513 snprintf(name, sizeof(name), "usb%d_reset", i);
514 ret = reset_get_by_name(dev, name, &phy->resets);
515 if (ret) {
516 dev_err(dev, "failed to get usb%d_reset reset phandle\n", i);
517 return ret;
518 }
519
Jagan Teki67685942018-05-07 13:03:26 +0530520 if (i || data->cfg->phy0_dual_route) {
521 snprintf(name, sizeof(name), "pmu%d", i);
522 phy->pmu = (void __iomem *)devfdt_get_addr_name(dev, name);
523 if (IS_ERR(phy->pmu))
524 return PTR_ERR(phy->pmu);
525 }
526
527 phy->id = i;
Jagan Teki67685942018-05-07 13:03:26 +0530528 };
529
Jagan Teki67685942018-05-07 13:03:26 +0530530 debug("Allwinner Sun4I USB PHY driver loaded\n");
531 return 0;
532}
533
Jagan Teki7f90b552018-05-07 13:03:31 +0530534static const struct sun4i_usb_phy_cfg sun4i_a10_cfg = {
535 .num_phys = 3,
536 .type = sun4i_a10_phy,
537 .disc_thresh = 3,
538 .phyctl_offset = REG_PHYCTL_A10,
Jagan Teki089ffd02018-08-06 12:16:39 +0530539 .dedicated_clocks = false,
Jagan Teki7f90b552018-05-07 13:03:31 +0530540};
541
542static const struct sun4i_usb_phy_cfg sun5i_a13_cfg = {
543 .num_phys = 2,
544 .type = sun4i_a10_phy,
545 .disc_thresh = 2,
546 .phyctl_offset = REG_PHYCTL_A10,
Jagan Teki089ffd02018-08-06 12:16:39 +0530547 .dedicated_clocks = false,
Jagan Teki7f90b552018-05-07 13:03:31 +0530548};
549
Jagan Tekibf986d12018-05-07 13:03:32 +0530550static const struct sun4i_usb_phy_cfg sun6i_a31_cfg = {
551 .num_phys = 3,
552 .type = sun6i_a31_phy,
553 .disc_thresh = 3,
554 .phyctl_offset = REG_PHYCTL_A10,
Jagan Teki089ffd02018-08-06 12:16:39 +0530555 .dedicated_clocks = true,
Jagan Tekibf986d12018-05-07 13:03:32 +0530556};
557
Jagan Teki7f90b552018-05-07 13:03:31 +0530558static const struct sun4i_usb_phy_cfg sun7i_a20_cfg = {
559 .num_phys = 3,
560 .type = sun4i_a10_phy,
561 .disc_thresh = 2,
562 .phyctl_offset = REG_PHYCTL_A10,
Jagan Teki089ffd02018-08-06 12:16:39 +0530563 .dedicated_clocks = false,
Jagan Teki7f90b552018-05-07 13:03:31 +0530564};
565
Jagan Teki194ccb92018-05-07 13:03:34 +0530566static const struct sun4i_usb_phy_cfg sun8i_a23_cfg = {
567 .num_phys = 2,
568 .type = sun4i_a10_phy,
569 .disc_thresh = 3,
570 .phyctl_offset = REG_PHYCTL_A10,
Jagan Teki089ffd02018-08-06 12:16:39 +0530571 .dedicated_clocks = true,
Jagan Teki194ccb92018-05-07 13:03:34 +0530572};
573
Jagan Teki61bf0ed2018-05-07 13:03:33 +0530574static const struct sun4i_usb_phy_cfg sun8i_a33_cfg = {
575 .num_phys = 2,
576 .type = sun8i_a33_phy,
577 .disc_thresh = 3,
578 .phyctl_offset = REG_PHYCTL_A33,
Jagan Teki089ffd02018-08-06 12:16:39 +0530579 .dedicated_clocks = true,
Jagan Teki61bf0ed2018-05-07 13:03:33 +0530580};
581
Jagan Teki5f646bf2018-05-07 13:03:30 +0530582static const struct sun4i_usb_phy_cfg sun8i_a83t_cfg = {
583 .num_phys = 3,
584 .type = sun8i_a83t_phy,
585 .phyctl_offset = REG_PHYCTL_A33,
Jagan Teki089ffd02018-08-06 12:16:39 +0530586 .dedicated_clocks = true,
Jagan Teki5f646bf2018-05-07 13:03:30 +0530587};
588
Jagan Teki43519c42018-05-07 13:03:28 +0530589static const struct sun4i_usb_phy_cfg sun8i_h3_cfg = {
590 .num_phys = 4,
591 .type = sun8i_h3_phy,
592 .disc_thresh = 3,
593 .phyctl_offset = REG_PHYCTL_A33,
Jagan Teki089ffd02018-08-06 12:16:39 +0530594 .dedicated_clocks = true,
Andre Przywarab33ee492022-07-14 23:09:21 -0500595 .hci_phy_ctl_clear = PHY_CTL_H3_SIDDQ,
Jagan Teki43519c42018-05-07 13:03:28 +0530596 .phy0_dual_route = true,
597};
598
Andre Przywaraa2f729f2020-01-01 23:44:48 +0000599static const struct sun4i_usb_phy_cfg sun8i_r40_cfg = {
600 .num_phys = 3,
601 .type = sun8i_r40_phy,
602 .disc_thresh = 3,
603 .phyctl_offset = REG_PHYCTL_A33,
604 .dedicated_clocks = true,
Andre Przywarab33ee492022-07-14 23:09:21 -0500605 .hci_phy_ctl_clear = PHY_CTL_H3_SIDDQ,
Andre Przywaraa2f729f2020-01-01 23:44:48 +0000606 .phy0_dual_route = true,
607};
608
Jagan Tekibafe5e32018-05-07 13:03:29 +0530609static const struct sun4i_usb_phy_cfg sun8i_v3s_cfg = {
610 .num_phys = 1,
611 .type = sun8i_v3s_phy,
612 .disc_thresh = 3,
613 .phyctl_offset = REG_PHYCTL_A33,
Jagan Teki089ffd02018-08-06 12:16:39 +0530614 .dedicated_clocks = true,
Andre Przywarab33ee492022-07-14 23:09:21 -0500615 .hci_phy_ctl_clear = PHY_CTL_H3_SIDDQ,
Jagan Tekibafe5e32018-05-07 13:03:29 +0530616 .phy0_dual_route = true,
617};
618
Samuel Holland25ba5be2022-07-14 23:09:22 -0500619static const struct sun4i_usb_phy_cfg sun20i_d1_cfg = {
620 .num_phys = 2,
621 .type = sun50i_h6_phy,
622 .phyctl_offset = REG_PHYCTL_A33,
623 .dedicated_clocks = true,
624 .hci_phy_ctl_clear = PHY_CTL_SIDDQ,
625 .phy0_dual_route = true,
626};
627
Jagan Teki67685942018-05-07 13:03:26 +0530628static const struct sun4i_usb_phy_cfg sun50i_a64_cfg = {
629 .num_phys = 2,
630 .type = sun50i_a64_phy,
631 .disc_thresh = 3,
632 .phyctl_offset = REG_PHYCTL_A33,
Jagan Teki089ffd02018-08-06 12:16:39 +0530633 .dedicated_clocks = true,
Andre Przywarab33ee492022-07-14 23:09:21 -0500634 .hci_phy_ctl_clear = PHY_CTL_H3_SIDDQ,
Jagan Teki67685942018-05-07 13:03:26 +0530635 .phy0_dual_route = true,
636};
637
Andre Przywara35fa6732019-06-23 15:09:49 +0100638static const struct sun4i_usb_phy_cfg sun50i_h6_cfg = {
639 .num_phys = 4,
640 .type = sun50i_h6_phy,
641 .disc_thresh = 3,
642 .phyctl_offset = REG_PHYCTL_A33,
643 .dedicated_clocks = true,
Andre Przywara35fa6732019-06-23 15:09:49 +0100644 .phy0_dual_route = true,
645 .missing_phys = BIT(1) | BIT(2),
646};
647
Jagan Teki67685942018-05-07 13:03:26 +0530648static const struct udevice_id sun4i_usb_phy_ids[] = {
Jagan Teki7f90b552018-05-07 13:03:31 +0530649 { .compatible = "allwinner,sun4i-a10-usb-phy", .data = (ulong)&sun4i_a10_cfg },
650 { .compatible = "allwinner,sun5i-a13-usb-phy", .data = (ulong)&sun5i_a13_cfg },
Jagan Tekibf986d12018-05-07 13:03:32 +0530651 { .compatible = "allwinner,sun6i-a31-usb-phy", .data = (ulong)&sun6i_a31_cfg },
Jagan Teki7f90b552018-05-07 13:03:31 +0530652 { .compatible = "allwinner,sun7i-a20-usb-phy", .data = (ulong)&sun7i_a20_cfg },
Jagan Teki194ccb92018-05-07 13:03:34 +0530653 { .compatible = "allwinner,sun8i-a23-usb-phy", .data = (ulong)&sun8i_a23_cfg },
Jagan Teki61bf0ed2018-05-07 13:03:33 +0530654 { .compatible = "allwinner,sun8i-a33-usb-phy", .data = (ulong)&sun8i_a33_cfg },
Jagan Teki5f646bf2018-05-07 13:03:30 +0530655 { .compatible = "allwinner,sun8i-a83t-usb-phy", .data = (ulong)&sun8i_a83t_cfg },
Jagan Teki43519c42018-05-07 13:03:28 +0530656 { .compatible = "allwinner,sun8i-h3-usb-phy", .data = (ulong)&sun8i_h3_cfg },
Andre Przywaraa2f729f2020-01-01 23:44:48 +0000657 { .compatible = "allwinner,sun8i-r40-usb-phy", .data = (ulong)&sun8i_r40_cfg },
Jagan Tekibafe5e32018-05-07 13:03:29 +0530658 { .compatible = "allwinner,sun8i-v3s-usb-phy", .data = (ulong)&sun8i_v3s_cfg },
Samuel Holland25ba5be2022-07-14 23:09:22 -0500659 { .compatible = "allwinner,sun20i-d1-usb-phy", .data = (ulong)&sun20i_d1_cfg },
Jagan Teki67685942018-05-07 13:03:26 +0530660 { .compatible = "allwinner,sun50i-a64-usb-phy", .data = (ulong)&sun50i_a64_cfg},
Andre Przywara35fa6732019-06-23 15:09:49 +0100661 { .compatible = "allwinner,sun50i-h6-usb-phy", .data = (ulong)&sun50i_h6_cfg},
Jagan Teki67685942018-05-07 13:03:26 +0530662 { }
663};
664
665U_BOOT_DRIVER(sun4i_usb_phy) = {
666 .name = "sun4i_usb_phy",
667 .id = UCLASS_PHY,
668 .of_match = sun4i_usb_phy_ids,
669 .ops = &sun4i_usb_phy_ops,
670 .probe = sun4i_usb_phy_probe,
Simon Glasscaa4daa2020-12-03 16:55:18 -0700671 .plat_auto = sizeof(struct sun4i_usb_phy_plat[MAX_PHYS]),
Simon Glass41575d82020-12-03 16:55:17 -0700672 .priv_auto = sizeof(struct sun4i_usb_phy_data),
Jagan Teki67685942018-05-07 13:03:26 +0530673};