1 // SPDX-License-Identifier: GPL-2.0+
3 * Copyright (C) 2019 Stefan Roese <sr@denx.de>
5 * Derived from linux/drivers/phy/ralink/phy-ralink-usb.c
6 * Copyright (C) 2017 John Crispin <john@phrozen.org>
12 #include <generic-phy.h>
16 #include <linux/bitops.h>
18 #define OFS_U2_PHY_AC0 0x800
19 #define USBPLL_FBDIV_S 16
20 #define USBPLL_FBDIV_M GENMASK(22, 16)
22 #define BG_TRIM_M GENMASK(11, 8)
24 #define BG_RBSEL_M GENMASK(7, 6)
26 #define BG_RASEL_M GENMASK(5, 4)
28 #define BGR_DIV_M GENMASK(3, 2)
31 #define OFS_U2_PHY_AC1 0x804
32 #define VRT_VREF_SEL_S 28
33 #define VRT_VREF_SEL_M GENMASK(30, 28)
34 #define TERM_VREF_SEL_S 24
35 #define TERM_VREF_SEL_M GENMASK(26, 24)
36 #define USBPLL_RSVD BIT(4)
37 #define USBPLL_ACCEN BIT(3)
38 #define USBPLL_LF BIT(2)
40 #define OFS_U2_PHY_AC2 0x808
42 #define OFS_U2_PHY_ACR0 0x810
43 #define HSTX_SRCAL_EN BIT(23)
44 #define HSTX_SRCTRL_S 16
45 #define HSTX_SRCTRL_M GENMASK(18, 16)
47 #define OFS_U2_PHY_ACR3 0x81C
48 #define HSTX_DBIST_S 28
49 #define HSTX_DBIST_M GENMASK(31, 28)
50 #define HSRX_BIAS_EN_SEL_S 20
51 #define HSRX_BIAS_EN_SEL_M GENMASK(21, 20)
53 #define OFS_U2_PHY_DCR0 0x860
54 #define PHYD_RESERVE_S 8
55 #define PHYD_RESERVE_M GENMASK(23, 8)
57 #define CDR_FILT_M GENMASK(3, 0)
59 #define OFS_U2_PHY_DTM0 0x868
60 #define FORCE_USB_CLKEN BIT(25)
62 #define OFS_FM_CR0 0xf00
63 #define FREQDET_EN BIT(24)
65 #define CYCLECNT_M GENMASK(23, 0)
67 #define OFS_FM_MONR0 0xf0c
69 #define OFS_FM_MONR1 0xf10
70 #define FRCK_EN BIT(8)
72 #define U2_SR_COEF_7628 32
74 struct mt76x8_usb_phy {
76 struct clk cg; /* for clock gating */
77 struct reset_ctl rst_phy;
80 static void phy_w32(struct mt76x8_usb_phy *phy, u32 reg, u32 val)
82 writel(val, phy->base + reg);
85 static u32 phy_r32(struct mt76x8_usb_phy *phy, u32 reg)
87 return readl(phy->base + reg);
90 static void phy_rmw32(struct mt76x8_usb_phy *phy, u32 reg, u32 clr, u32 set)
92 clrsetbits_32(phy->base + reg, clr, set);
95 static void mt76x8_usb_phy_init(struct mt76x8_usb_phy *phy)
97 phy_r32(phy, OFS_U2_PHY_AC2);
98 phy_r32(phy, OFS_U2_PHY_ACR0);
99 phy_r32(phy, OFS_U2_PHY_DCR0);
101 phy_w32(phy, OFS_U2_PHY_DCR0,
102 (0xffff << PHYD_RESERVE_S) | (2 << CDR_FILT_S));
103 phy_r32(phy, OFS_U2_PHY_DCR0);
105 phy_w32(phy, OFS_U2_PHY_DCR0,
106 (0x5555 << PHYD_RESERVE_S) | (2 << CDR_FILT_S));
107 phy_r32(phy, OFS_U2_PHY_DCR0);
109 phy_w32(phy, OFS_U2_PHY_DCR0,
110 (0xaaaa << PHYD_RESERVE_S) | (2 << CDR_FILT_S));
111 phy_r32(phy, OFS_U2_PHY_DCR0);
113 phy_w32(phy, OFS_U2_PHY_DCR0,
114 (4 << PHYD_RESERVE_S) | (2 << CDR_FILT_S));
115 phy_r32(phy, OFS_U2_PHY_DCR0);
117 phy_w32(phy, OFS_U2_PHY_AC0,
118 (0x48 << USBPLL_FBDIV_S) | (8 << BG_TRIM_S) |
119 (1 << BG_RBSEL_S) | (2 << BG_RASEL_S) | (2 << BGR_DIV_S) |
122 phy_w32(phy, OFS_U2_PHY_AC1,
123 (4 << VRT_VREF_SEL_S) | (4 << TERM_VREF_SEL_S) | USBPLL_RSVD |
124 USBPLL_ACCEN | USBPLL_LF);
126 phy_w32(phy, OFS_U2_PHY_ACR3,
127 (12 << HSTX_DBIST_S) | (2 << HSRX_BIAS_EN_SEL_S));
129 phy_w32(phy, OFS_U2_PHY_DTM0, FORCE_USB_CLKEN);
132 static void mt76x8_usb_phy_sr_calibrate(struct mt76x8_usb_phy *phy)
137 /* Enable HS TX SR calibration */
138 phy_rmw32(phy, OFS_U2_PHY_ACR0, 0, HSTX_SRCAL_EN);
141 /* Enable free run clock */
142 phy_rmw32(phy, OFS_FM_MONR1, 0, FRCK_EN);
144 /* Set cycle count = 0x400 */
145 phy_rmw32(phy, OFS_FM_CR0, CYCLECNT_M, 0x400 << CYCLECNT_S);
147 /* Enable frequency meter */
148 phy_rmw32(phy, OFS_FM_CR0, 0, FREQDET_EN);
150 /* Wait for FM detection done, set timeout to 10ms */
151 for (i = 0; i < 10; i++) {
152 fmout = phy_r32(phy, OFS_FM_MONR0);
160 /* Disable frequency meter */
161 phy_rmw32(phy, OFS_FM_CR0, FREQDET_EN, 0);
163 /* Disable free run clock */
164 phy_rmw32(phy, OFS_FM_MONR1, FRCK_EN, 0);
166 /* Disable HS TX SR calibration */
167 phy_rmw32(phy, OFS_U2_PHY_ACR0, HSTX_SRCAL_EN, 0);
172 * set reg = (1024 / FM_OUT) * 25 * 0.028
173 * (round to the nearest digits)
175 tmp = (((1024 * 25 * U2_SR_COEF_7628) / fmout) + 500) / 1000;
178 phy_rmw32(phy, OFS_U2_PHY_ACR0, HSTX_SRCTRL_M,
179 (tmp << HSTX_SRCTRL_S) & HSTX_SRCTRL_M);
182 static int mt76x8_usb_phy_power_on(struct phy *_phy)
184 struct mt76x8_usb_phy *phy = dev_get_priv(_phy->dev);
186 clk_enable(&phy->cg);
188 reset_deassert(&phy->rst_phy);
191 * The SDK kernel had a delay of 100ms. however on device
192 * testing showed that 10ms is enough
196 mt76x8_usb_phy_init(phy);
197 mt76x8_usb_phy_sr_calibrate(phy);
202 static int mt76x8_usb_phy_power_off(struct phy *_phy)
204 struct mt76x8_usb_phy *phy = dev_get_priv(_phy->dev);
206 clk_disable(&phy->cg);
208 reset_assert(&phy->rst_phy);
213 static int mt76x8_usb_phy_probe(struct udevice *dev)
215 struct mt76x8_usb_phy *phy = dev_get_priv(dev);
218 phy->base = dev_read_addr_ptr(dev);
223 ret = clk_get_by_name(dev, "cg", &phy->cg);
227 ret = reset_get_by_name(dev, "phy", &phy->rst_phy);
234 static struct phy_ops mt76x8_usb_phy_ops = {
235 .power_on = mt76x8_usb_phy_power_on,
236 .power_off = mt76x8_usb_phy_power_off,
239 static const struct udevice_id mt76x8_usb_phy_ids[] = {
240 { .compatible = "mediatek,mt7628-usbphy" },
244 U_BOOT_DRIVER(mt76x8_usb_phy) = {
245 .name = "mt76x8_usb_phy",
247 .of_match = mt76x8_usb_phy_ids,
248 .ops = &mt76x8_usb_phy_ops,
249 .probe = mt76x8_usb_phy_probe,
250 .priv_auto_alloc_size = sizeof(struct mt76x8_usb_phy),