1 // SPDX-License-Identifier: GPL-2.0+ OR BSD-3-Clause
3 * Copyright (C) 2018, STMicroelectronics - All Rights Reserved
11 #include <generic-phy.h>
16 #include <linux/bitops.h>
17 #include <power/regulator.h>
19 /* USBPHYC registers */
20 #define STM32_USBPHYC_PLL 0x0
21 #define STM32_USBPHYC_MISC 0x8
23 /* STM32_USBPHYC_PLL bit fields */
24 #define PLLNDIV GENMASK(6, 0)
25 #define PLLNDIV_SHIFT 0
26 #define PLLFRACIN GENMASK(25, 10)
27 #define PLLFRACIN_SHIFT 10
29 #define PLLSTRB BIT(27)
30 #define PLLSTRBYP BIT(28)
31 #define PLLFRACCTL BIT(29)
32 #define PLLDITHEN0 BIT(30)
33 #define PLLDITHEN1 BIT(31)
35 /* STM32_USBPHYC_MISC bit fields */
36 #define SWITHOST BIT(0)
40 #define PLL_LOCK_TIME_US 100
41 #define PLL_PWR_DOWN_TIME_US 5
42 #define PLL_FVCO 2880 /* in MHz */
43 #define PLL_INFF_MIN_RATE 19200000 /* in Hz */
44 #define PLL_INFF_MAX_RATE 38400000 /* in Hz */
51 struct stm32_usbphyc {
54 struct stm32_usbphyc_phy {
56 struct udevice *vdda1v1;
57 struct udevice *vdda1v8;
64 void stm32_usbphyc_get_pll_params(u32 clk_rate, struct pll_params *pll_params)
66 unsigned long long fvco, ndiv, frac;
69 * | FVCO = INFF*2*(NDIV + FRACT/2^16 ) when DITHER_DISABLE[1] = 1
71 * | NDIV = integer part of input bits to set the LDF
72 * | FRACT = fractional part of input bits to set the LDF
73 * => PLLNDIV = integer part of (FVCO / (INFF*2))
74 * => PLLFRACIN = fractional part of(FVCO / INFF*2) * 2^16
75 * <=> PLLFRACIN = ((FVCO / (INFF*2)) - PLLNDIV) * 2^16
77 fvco = (unsigned long long)PLL_FVCO * 1000000; /* In Hz */
80 do_div(ndiv, (clk_rate * 2));
81 pll_params->ndiv = (u8)ndiv;
83 frac = fvco * (1 << 16);
84 do_div(frac, (clk_rate * 2));
85 frac = frac - (ndiv * (1 << 16));
86 pll_params->frac = (u16)frac;
89 static int stm32_usbphyc_pll_init(struct stm32_usbphyc *usbphyc)
91 struct pll_params pll_params;
92 u32 clk_rate = clk_get_rate(&usbphyc->clk);
95 if ((clk_rate < PLL_INFF_MIN_RATE) || (clk_rate > PLL_INFF_MAX_RATE)) {
96 pr_debug("%s: input clk freq (%dHz) out of range\n",
101 stm32_usbphyc_get_pll_params(clk_rate, &pll_params);
103 usbphyc_pll = PLLDITHEN1 | PLLDITHEN0 | PLLSTRBYP;
104 usbphyc_pll |= ((pll_params.ndiv << PLLNDIV_SHIFT) & PLLNDIV);
106 if (pll_params.frac) {
107 usbphyc_pll |= PLLFRACCTL;
108 usbphyc_pll |= ((pll_params.frac << PLLFRACIN_SHIFT)
112 writel(usbphyc_pll, usbphyc->base + STM32_USBPHYC_PLL);
114 pr_debug("%s: input clk freq=%dHz, ndiv=%d, frac=%d\n", __func__,
115 clk_rate, pll_params.ndiv, pll_params.frac);
120 static bool stm32_usbphyc_is_init(struct stm32_usbphyc *usbphyc)
124 for (i = 0; i < MAX_PHYS; i++) {
125 if (usbphyc->phys[i].init)
132 static bool stm32_usbphyc_is_powered(struct stm32_usbphyc *usbphyc)
136 for (i = 0; i < MAX_PHYS; i++) {
137 if (usbphyc->phys[i].powered)
144 static int stm32_usbphyc_phy_init(struct phy *phy)
146 struct stm32_usbphyc *usbphyc = dev_get_priv(phy->dev);
147 struct stm32_usbphyc_phy *usbphyc_phy = usbphyc->phys + phy->id;
148 bool pllen = readl(usbphyc->base + STM32_USBPHYC_PLL) & PLLEN ?
152 pr_debug("%s phy ID = %lu\n", __func__, phy->id);
153 /* Check if one phy port has already configured the pll */
154 if (pllen && stm32_usbphyc_is_init(usbphyc))
158 clrbits_le32(usbphyc->base + STM32_USBPHYC_PLL, PLLEN);
159 udelay(PLL_PWR_DOWN_TIME_US);
162 ret = stm32_usbphyc_pll_init(usbphyc);
166 setbits_le32(usbphyc->base + STM32_USBPHYC_PLL, PLLEN);
169 * We must wait PLL_LOCK_TIME_US before checking that PLLEN
172 udelay(PLL_LOCK_TIME_US);
174 if (!(readl(usbphyc->base + STM32_USBPHYC_PLL) & PLLEN))
178 usbphyc_phy->init = true;
183 static int stm32_usbphyc_phy_exit(struct phy *phy)
185 struct stm32_usbphyc *usbphyc = dev_get_priv(phy->dev);
186 struct stm32_usbphyc_phy *usbphyc_phy = usbphyc->phys + phy->id;
188 pr_debug("%s phy ID = %lu\n", __func__, phy->id);
189 usbphyc_phy->init = false;
191 /* Check if other phy port requires pllen */
192 if (stm32_usbphyc_is_init(usbphyc))
195 clrbits_le32(usbphyc->base + STM32_USBPHYC_PLL, PLLEN);
198 * We must wait PLL_PWR_DOWN_TIME_US before checking that PLLEN
201 udelay(PLL_PWR_DOWN_TIME_US);
203 if (readl(usbphyc->base + STM32_USBPHYC_PLL) & PLLEN)
209 static int stm32_usbphyc_phy_power_on(struct phy *phy)
211 struct stm32_usbphyc *usbphyc = dev_get_priv(phy->dev);
212 struct stm32_usbphyc_phy *usbphyc_phy = usbphyc->phys + phy->id;
215 pr_debug("%s phy ID = %lu\n", __func__, phy->id);
216 if (usbphyc_phy->vdda1v1) {
217 ret = regulator_set_enable(usbphyc_phy->vdda1v1, true);
222 if (usbphyc_phy->vdda1v8) {
223 ret = regulator_set_enable(usbphyc_phy->vdda1v8, true);
227 if (usbphyc_phy->vdd) {
228 ret = regulator_set_enable(usbphyc_phy->vdd, true);
233 usbphyc_phy->powered = true;
238 static int stm32_usbphyc_phy_power_off(struct phy *phy)
240 struct stm32_usbphyc *usbphyc = dev_get_priv(phy->dev);
241 struct stm32_usbphyc_phy *usbphyc_phy = usbphyc->phys + phy->id;
244 pr_debug("%s phy ID = %lu\n", __func__, phy->id);
245 usbphyc_phy->powered = false;
247 if (stm32_usbphyc_is_powered(usbphyc))
250 if (usbphyc_phy->vdda1v1) {
251 ret = regulator_set_enable(usbphyc_phy->vdda1v1, false);
256 if (usbphyc_phy->vdda1v8) {
257 ret = regulator_set_enable(usbphyc_phy->vdda1v8, false);
262 if (usbphyc_phy->vdd) {
263 ret = regulator_set_enable(usbphyc_phy->vdd, false);
271 static int stm32_usbphyc_get_regulator(struct udevice *dev, ofnode node,
273 struct udevice **regulator)
275 struct ofnode_phandle_args regulator_phandle;
278 ret = ofnode_parse_phandle_with_args(node, supply_name,
282 dev_err(dev, "Can't find %s property (%d)\n", supply_name, ret);
286 ret = uclass_get_device_by_ofnode(UCLASS_REGULATOR,
287 regulator_phandle.node,
291 dev_err(dev, "Can't get %s regulator (%d)\n", supply_name, ret);
298 static int stm32_usbphyc_of_xlate(struct phy *phy,
299 struct ofnode_phandle_args *args)
301 if (args->args_count > 1) {
302 pr_debug("%s: invalid args_count: %d\n", __func__,
307 if (args->args[0] >= MAX_PHYS)
310 if (args->args_count)
311 phy->id = args->args[0];
318 static const struct phy_ops stm32_usbphyc_phy_ops = {
319 .init = stm32_usbphyc_phy_init,
320 .exit = stm32_usbphyc_phy_exit,
321 .power_on = stm32_usbphyc_phy_power_on,
322 .power_off = stm32_usbphyc_phy_power_off,
323 .of_xlate = stm32_usbphyc_of_xlate,
326 static int stm32_usbphyc_probe(struct udevice *dev)
328 struct stm32_usbphyc *usbphyc = dev_get_priv(dev);
329 struct reset_ctl reset;
333 usbphyc->base = dev_read_addr(dev);
334 if (usbphyc->base == FDT_ADDR_T_NONE)
338 ret = clk_get_by_index(dev, 0, &usbphyc->clk);
342 ret = clk_enable(&usbphyc->clk);
347 ret = reset_get_by_index(dev, 0, &reset);
349 reset_assert(&reset);
351 reset_deassert(&reset);
355 * parse all PHY subnodes in order to populate regulator associated
358 node = dev_read_first_subnode(dev);
359 for (i = 0; i < MAX_PHYS; i++) {
360 struct stm32_usbphyc_phy *usbphyc_phy = usbphyc->phys + i;
362 usbphyc_phy->index = i;
363 usbphyc_phy->init = false;
364 usbphyc_phy->powered = false;
365 ret = stm32_usbphyc_get_regulator(dev, node, "phy-supply",
370 ret = stm32_usbphyc_get_regulator(dev, node, "vdda1v1-supply",
371 &usbphyc_phy->vdda1v1);
375 ret = stm32_usbphyc_get_regulator(dev, node, "vdda1v8-supply",
376 &usbphyc_phy->vdda1v8);
380 node = dev_read_next_subnode(node);
383 /* Check if second port has to be used for host controller */
384 if (dev_read_bool(dev, "st,port2-switch-to-host"))
385 setbits_le32(usbphyc->base + STM32_USBPHYC_MISC, SWITHOST);
390 static const struct udevice_id stm32_usbphyc_of_match[] = {
391 { .compatible = "st,stm32mp1-usbphyc", },
395 U_BOOT_DRIVER(stm32_usb_phyc) = {
396 .name = "stm32-usbphyc",
398 .of_match = stm32_usbphyc_of_match,
399 .ops = &stm32_usbphyc_phy_ops,
400 .probe = stm32_usbphyc_probe,
401 .priv_auto_alloc_size = sizeof(struct stm32_usbphyc),