1*2504ba9fSThomas Gleixner // SPDX-License-Identifier: GPL-2.0-only
20b56e9a7SVivek Gautam /*
30b56e9a7SVivek Gautam * Rockchip usb PHY driver
40b56e9a7SVivek Gautam *
50b56e9a7SVivek Gautam * Copyright (C) 2014 Yunzhi Li <lyz@rock-chips.com>
60b56e9a7SVivek Gautam * Copyright (C) 2014 ROCKCHIP, Inc.
70b56e9a7SVivek Gautam */
80b56e9a7SVivek Gautam
90b56e9a7SVivek Gautam #include <linux/clk.h>
100b56e9a7SVivek Gautam #include <linux/clk-provider.h>
110b56e9a7SVivek Gautam #include <linux/io.h>
120b56e9a7SVivek Gautam #include <linux/kernel.h>
130b56e9a7SVivek Gautam #include <linux/module.h>
140b56e9a7SVivek Gautam #include <linux/mutex.h>
150b56e9a7SVivek Gautam #include <linux/of.h>
160b56e9a7SVivek Gautam #include <linux/of_address.h>
170b56e9a7SVivek Gautam #include <linux/of_platform.h>
180b56e9a7SVivek Gautam #include <linux/phy/phy.h>
190b56e9a7SVivek Gautam #include <linux/platform_device.h>
200b56e9a7SVivek Gautam #include <linux/regulator/consumer.h>
210b56e9a7SVivek Gautam #include <linux/reset.h>
220b56e9a7SVivek Gautam #include <linux/regmap.h>
230b56e9a7SVivek Gautam #include <linux/mfd/syscon.h>
240b56e9a7SVivek Gautam #include <linux/delay.h>
250b56e9a7SVivek Gautam
260b56e9a7SVivek Gautam static int enable_usb_uart;
270b56e9a7SVivek Gautam
280b56e9a7SVivek Gautam #define HIWORD_UPDATE(val, mask) \
290b56e9a7SVivek Gautam ((val) | (mask) << 16)
300b56e9a7SVivek Gautam
3163bd0f19SHeiko Stuebner #define UOC_CON0 0x00
320b56e9a7SVivek Gautam #define UOC_CON0_SIDDQ BIT(13)
3363bd0f19SHeiko Stuebner #define UOC_CON0_DISABLE BIT(4)
3463bd0f19SHeiko Stuebner #define UOC_CON0_COMMON_ON_N BIT(0)
3563bd0f19SHeiko Stuebner
3663bd0f19SHeiko Stuebner #define UOC_CON2 0x08
3763bd0f19SHeiko Stuebner #define UOC_CON2_SOFT_CON_SEL BIT(2)
3863bd0f19SHeiko Stuebner
3963bd0f19SHeiko Stuebner #define UOC_CON3 0x0c
4063bd0f19SHeiko Stuebner /* bits present on rk3188 and rk3288 phys */
4163bd0f19SHeiko Stuebner #define UOC_CON3_UTMI_TERMSEL_FULLSPEED BIT(5)
4263bd0f19SHeiko Stuebner #define UOC_CON3_UTMI_XCVRSEELCT_FSTRANSC (1 << 3)
4363bd0f19SHeiko Stuebner #define UOC_CON3_UTMI_XCVRSEELCT_MASK (3 << 3)
4463bd0f19SHeiko Stuebner #define UOC_CON3_UTMI_OPMODE_NODRIVING (1 << 1)
4563bd0f19SHeiko Stuebner #define UOC_CON3_UTMI_OPMODE_MASK (3 << 1)
4663bd0f19SHeiko Stuebner #define UOC_CON3_UTMI_SUSPENDN BIT(0)
470b56e9a7SVivek Gautam
480b56e9a7SVivek Gautam struct rockchip_usb_phys {
490b56e9a7SVivek Gautam int reg;
500b56e9a7SVivek Gautam const char *pll_name;
510b56e9a7SVivek Gautam };
520b56e9a7SVivek Gautam
530b56e9a7SVivek Gautam struct rockchip_usb_phy_base;
540b56e9a7SVivek Gautam struct rockchip_usb_phy_pdata {
550b56e9a7SVivek Gautam struct rockchip_usb_phys *phys;
5663bd0f19SHeiko Stuebner int (*init_usb_uart)(struct regmap *grf,
5763bd0f19SHeiko Stuebner const struct rockchip_usb_phy_pdata *pdata);
580b56e9a7SVivek Gautam int usb_uart_phy;
590b56e9a7SVivek Gautam };
600b56e9a7SVivek Gautam
610b56e9a7SVivek Gautam struct rockchip_usb_phy_base {
620b56e9a7SVivek Gautam struct device *dev;
630b56e9a7SVivek Gautam struct regmap *reg_base;
640b56e9a7SVivek Gautam const struct rockchip_usb_phy_pdata *pdata;
650b56e9a7SVivek Gautam };
660b56e9a7SVivek Gautam
670b56e9a7SVivek Gautam struct rockchip_usb_phy {
680b56e9a7SVivek Gautam struct rockchip_usb_phy_base *base;
690b56e9a7SVivek Gautam struct device_node *np;
700b56e9a7SVivek Gautam unsigned int reg_offset;
710b56e9a7SVivek Gautam struct clk *clk;
720b56e9a7SVivek Gautam struct clk *clk480m;
730b56e9a7SVivek Gautam struct clk_hw clk480m_hw;
740b56e9a7SVivek Gautam struct phy *phy;
750b56e9a7SVivek Gautam bool uart_enabled;
760b56e9a7SVivek Gautam struct reset_control *reset;
770b56e9a7SVivek Gautam struct regulator *vbus;
780b56e9a7SVivek Gautam };
790b56e9a7SVivek Gautam
rockchip_usb_phy_power(struct rockchip_usb_phy * phy,bool siddq)800b56e9a7SVivek Gautam static int rockchip_usb_phy_power(struct rockchip_usb_phy *phy,
810b56e9a7SVivek Gautam bool siddq)
820b56e9a7SVivek Gautam {
830b56e9a7SVivek Gautam u32 val = HIWORD_UPDATE(siddq ? UOC_CON0_SIDDQ : 0, UOC_CON0_SIDDQ);
840b56e9a7SVivek Gautam
850b56e9a7SVivek Gautam return regmap_write(phy->base->reg_base, phy->reg_offset, val);
860b56e9a7SVivek Gautam }
870b56e9a7SVivek Gautam
rockchip_usb_phy480m_recalc_rate(struct clk_hw * hw,unsigned long parent_rate)880b56e9a7SVivek Gautam static unsigned long rockchip_usb_phy480m_recalc_rate(struct clk_hw *hw,
890b56e9a7SVivek Gautam unsigned long parent_rate)
900b56e9a7SVivek Gautam {
910b56e9a7SVivek Gautam return 480000000;
920b56e9a7SVivek Gautam }
930b56e9a7SVivek Gautam
rockchip_usb_phy480m_disable(struct clk_hw * hw)940b56e9a7SVivek Gautam static void rockchip_usb_phy480m_disable(struct clk_hw *hw)
950b56e9a7SVivek Gautam {
960b56e9a7SVivek Gautam struct rockchip_usb_phy *phy = container_of(hw,
970b56e9a7SVivek Gautam struct rockchip_usb_phy,
980b56e9a7SVivek Gautam clk480m_hw);
990b56e9a7SVivek Gautam
1000b56e9a7SVivek Gautam if (phy->vbus)
1010b56e9a7SVivek Gautam regulator_disable(phy->vbus);
1020b56e9a7SVivek Gautam
1030b56e9a7SVivek Gautam /* Power down usb phy analog blocks by set siddq 1 */
1040b56e9a7SVivek Gautam rockchip_usb_phy_power(phy, 1);
1050b56e9a7SVivek Gautam }
1060b56e9a7SVivek Gautam
rockchip_usb_phy480m_enable(struct clk_hw * hw)1070b56e9a7SVivek Gautam static int rockchip_usb_phy480m_enable(struct clk_hw *hw)
1080b56e9a7SVivek Gautam {
1090b56e9a7SVivek Gautam struct rockchip_usb_phy *phy = container_of(hw,
1100b56e9a7SVivek Gautam struct rockchip_usb_phy,
1110b56e9a7SVivek Gautam clk480m_hw);
1120b56e9a7SVivek Gautam
1130b56e9a7SVivek Gautam /* Power up usb phy analog blocks by set siddq 0 */
1140b56e9a7SVivek Gautam return rockchip_usb_phy_power(phy, 0);
1150b56e9a7SVivek Gautam }
1160b56e9a7SVivek Gautam
rockchip_usb_phy480m_is_enabled(struct clk_hw * hw)1170b56e9a7SVivek Gautam static int rockchip_usb_phy480m_is_enabled(struct clk_hw *hw)
1180b56e9a7SVivek Gautam {
1190b56e9a7SVivek Gautam struct rockchip_usb_phy *phy = container_of(hw,
1200b56e9a7SVivek Gautam struct rockchip_usb_phy,
1210b56e9a7SVivek Gautam clk480m_hw);
1220b56e9a7SVivek Gautam int ret;
1230b56e9a7SVivek Gautam u32 val;
1240b56e9a7SVivek Gautam
1250b56e9a7SVivek Gautam ret = regmap_read(phy->base->reg_base, phy->reg_offset, &val);
1260b56e9a7SVivek Gautam if (ret < 0)
1270b56e9a7SVivek Gautam return ret;
1280b56e9a7SVivek Gautam
1290b56e9a7SVivek Gautam return (val & UOC_CON0_SIDDQ) ? 0 : 1;
1300b56e9a7SVivek Gautam }
1310b56e9a7SVivek Gautam
1320b56e9a7SVivek Gautam static const struct clk_ops rockchip_usb_phy480m_ops = {
1330b56e9a7SVivek Gautam .enable = rockchip_usb_phy480m_enable,
1340b56e9a7SVivek Gautam .disable = rockchip_usb_phy480m_disable,
1350b56e9a7SVivek Gautam .is_enabled = rockchip_usb_phy480m_is_enabled,
1360b56e9a7SVivek Gautam .recalc_rate = rockchip_usb_phy480m_recalc_rate,
1370b56e9a7SVivek Gautam };
1380b56e9a7SVivek Gautam
rockchip_usb_phy_power_off(struct phy * _phy)1390b56e9a7SVivek Gautam static int rockchip_usb_phy_power_off(struct phy *_phy)
1400b56e9a7SVivek Gautam {
1410b56e9a7SVivek Gautam struct rockchip_usb_phy *phy = phy_get_drvdata(_phy);
1420b56e9a7SVivek Gautam
1430b56e9a7SVivek Gautam if (phy->uart_enabled)
1440b56e9a7SVivek Gautam return -EBUSY;
1450b56e9a7SVivek Gautam
1460b56e9a7SVivek Gautam clk_disable_unprepare(phy->clk480m);
1470b56e9a7SVivek Gautam
1480b56e9a7SVivek Gautam return 0;
1490b56e9a7SVivek Gautam }
1500b56e9a7SVivek Gautam
rockchip_usb_phy_power_on(struct phy * _phy)1510b56e9a7SVivek Gautam static int rockchip_usb_phy_power_on(struct phy *_phy)
1520b56e9a7SVivek Gautam {
1530b56e9a7SVivek Gautam struct rockchip_usb_phy *phy = phy_get_drvdata(_phy);
1540b56e9a7SVivek Gautam
1550b56e9a7SVivek Gautam if (phy->uart_enabled)
1560b56e9a7SVivek Gautam return -EBUSY;
1570b56e9a7SVivek Gautam
1580b56e9a7SVivek Gautam if (phy->vbus) {
1590b56e9a7SVivek Gautam int ret;
1600b56e9a7SVivek Gautam
1610b56e9a7SVivek Gautam ret = regulator_enable(phy->vbus);
1620b56e9a7SVivek Gautam if (ret)
1630b56e9a7SVivek Gautam return ret;
1640b56e9a7SVivek Gautam }
1650b56e9a7SVivek Gautam
1660b56e9a7SVivek Gautam return clk_prepare_enable(phy->clk480m);
1670b56e9a7SVivek Gautam }
1680b56e9a7SVivek Gautam
rockchip_usb_phy_reset(struct phy * _phy)1690b56e9a7SVivek Gautam static int rockchip_usb_phy_reset(struct phy *_phy)
1700b56e9a7SVivek Gautam {
1710b56e9a7SVivek Gautam struct rockchip_usb_phy *phy = phy_get_drvdata(_phy);
1720b56e9a7SVivek Gautam
1730b56e9a7SVivek Gautam if (phy->reset) {
1740b56e9a7SVivek Gautam reset_control_assert(phy->reset);
1750b56e9a7SVivek Gautam udelay(10);
1760b56e9a7SVivek Gautam reset_control_deassert(phy->reset);
1770b56e9a7SVivek Gautam }
1780b56e9a7SVivek Gautam
1790b56e9a7SVivek Gautam return 0;
1800b56e9a7SVivek Gautam }
1810b56e9a7SVivek Gautam
1820b56e9a7SVivek Gautam static const struct phy_ops ops = {
1830b56e9a7SVivek Gautam .power_on = rockchip_usb_phy_power_on,
1840b56e9a7SVivek Gautam .power_off = rockchip_usb_phy_power_off,
1850b56e9a7SVivek Gautam .reset = rockchip_usb_phy_reset,
1860b56e9a7SVivek Gautam .owner = THIS_MODULE,
1870b56e9a7SVivek Gautam };
1880b56e9a7SVivek Gautam
rockchip_usb_phy_action(void * data)1890b56e9a7SVivek Gautam static void rockchip_usb_phy_action(void *data)
1900b56e9a7SVivek Gautam {
1910b56e9a7SVivek Gautam struct rockchip_usb_phy *rk_phy = data;
1920b56e9a7SVivek Gautam
1930b56e9a7SVivek Gautam if (!rk_phy->uart_enabled) {
1940b56e9a7SVivek Gautam of_clk_del_provider(rk_phy->np);
1950b56e9a7SVivek Gautam clk_unregister(rk_phy->clk480m);
1960b56e9a7SVivek Gautam }
1970b56e9a7SVivek Gautam
1980b56e9a7SVivek Gautam if (rk_phy->clk)
1990b56e9a7SVivek Gautam clk_put(rk_phy->clk);
2000b56e9a7SVivek Gautam }
2010b56e9a7SVivek Gautam
rockchip_usb_phy_init(struct rockchip_usb_phy_base * base,struct device_node * child)2020b56e9a7SVivek Gautam static int rockchip_usb_phy_init(struct rockchip_usb_phy_base *base,
2030b56e9a7SVivek Gautam struct device_node *child)
2040b56e9a7SVivek Gautam {
2050b56e9a7SVivek Gautam struct rockchip_usb_phy *rk_phy;
2060b56e9a7SVivek Gautam unsigned int reg_offset;
2070b56e9a7SVivek Gautam const char *clk_name;
2080b56e9a7SVivek Gautam struct clk_init_data init;
2090b56e9a7SVivek Gautam int err, i;
2100b56e9a7SVivek Gautam
2110b56e9a7SVivek Gautam rk_phy = devm_kzalloc(base->dev, sizeof(*rk_phy), GFP_KERNEL);
2120b56e9a7SVivek Gautam if (!rk_phy)
2130b56e9a7SVivek Gautam return -ENOMEM;
2140b56e9a7SVivek Gautam
2150b56e9a7SVivek Gautam rk_phy->base = base;
2160b56e9a7SVivek Gautam rk_phy->np = child;
2170b56e9a7SVivek Gautam
2180b56e9a7SVivek Gautam if (of_property_read_u32(child, "reg", ®_offset)) {
219ac9ba7dcSRob Herring dev_err(base->dev, "missing reg property in node %pOFn\n",
220ac9ba7dcSRob Herring child);
2210b56e9a7SVivek Gautam return -EINVAL;
2220b56e9a7SVivek Gautam }
2230b56e9a7SVivek Gautam
2240b56e9a7SVivek Gautam rk_phy->reset = of_reset_control_get(child, "phy-reset");
2250b56e9a7SVivek Gautam if (IS_ERR(rk_phy->reset))
2260b56e9a7SVivek Gautam rk_phy->reset = NULL;
2270b56e9a7SVivek Gautam
2280b56e9a7SVivek Gautam rk_phy->reg_offset = reg_offset;
2290b56e9a7SVivek Gautam
2300b56e9a7SVivek Gautam rk_phy->clk = of_clk_get_by_name(child, "phyclk");
2310b56e9a7SVivek Gautam if (IS_ERR(rk_phy->clk))
2320b56e9a7SVivek Gautam rk_phy->clk = NULL;
2330b56e9a7SVivek Gautam
2340b56e9a7SVivek Gautam i = 0;
2350b56e9a7SVivek Gautam init.name = NULL;
2360b56e9a7SVivek Gautam while (base->pdata->phys[i].reg) {
2370b56e9a7SVivek Gautam if (base->pdata->phys[i].reg == reg_offset) {
2380b56e9a7SVivek Gautam init.name = base->pdata->phys[i].pll_name;
2390b56e9a7SVivek Gautam break;
2400b56e9a7SVivek Gautam }
2410b56e9a7SVivek Gautam i++;
2420b56e9a7SVivek Gautam }
2430b56e9a7SVivek Gautam
2440b56e9a7SVivek Gautam if (!init.name) {
2450b56e9a7SVivek Gautam dev_err(base->dev, "phy data not found\n");
2460b56e9a7SVivek Gautam return -EINVAL;
2470b56e9a7SVivek Gautam }
2480b56e9a7SVivek Gautam
2490b56e9a7SVivek Gautam if (enable_usb_uart && base->pdata->usb_uart_phy == i) {
2500b56e9a7SVivek Gautam dev_dbg(base->dev, "phy%d used as uart output\n", i);
2510b56e9a7SVivek Gautam rk_phy->uart_enabled = true;
2520b56e9a7SVivek Gautam } else {
2530b56e9a7SVivek Gautam if (rk_phy->clk) {
2540b56e9a7SVivek Gautam clk_name = __clk_get_name(rk_phy->clk);
2550b56e9a7SVivek Gautam init.flags = 0;
2560b56e9a7SVivek Gautam init.parent_names = &clk_name;
2570b56e9a7SVivek Gautam init.num_parents = 1;
2580b56e9a7SVivek Gautam } else {
2590b56e9a7SVivek Gautam init.flags = 0;
2600b56e9a7SVivek Gautam init.parent_names = NULL;
2610b56e9a7SVivek Gautam init.num_parents = 0;
2620b56e9a7SVivek Gautam }
2630b56e9a7SVivek Gautam
2640b56e9a7SVivek Gautam init.ops = &rockchip_usb_phy480m_ops;
2650b56e9a7SVivek Gautam rk_phy->clk480m_hw.init = &init;
2660b56e9a7SVivek Gautam
2670b56e9a7SVivek Gautam rk_phy->clk480m = clk_register(base->dev, &rk_phy->clk480m_hw);
2680b56e9a7SVivek Gautam if (IS_ERR(rk_phy->clk480m)) {
2690b56e9a7SVivek Gautam err = PTR_ERR(rk_phy->clk480m);
2700b56e9a7SVivek Gautam goto err_clk;
2710b56e9a7SVivek Gautam }
2720b56e9a7SVivek Gautam
2730b56e9a7SVivek Gautam err = of_clk_add_provider(child, of_clk_src_simple_get,
2740b56e9a7SVivek Gautam rk_phy->clk480m);
2750b56e9a7SVivek Gautam if (err < 0)
2760b56e9a7SVivek Gautam goto err_clk_prov;
2770b56e9a7SVivek Gautam }
2780b56e9a7SVivek Gautam
2790b56e9a7SVivek Gautam err = devm_add_action_or_reset(base->dev, rockchip_usb_phy_action,
2800b56e9a7SVivek Gautam rk_phy);
2810b56e9a7SVivek Gautam if (err)
2820b56e9a7SVivek Gautam return err;
2830b56e9a7SVivek Gautam
2840b56e9a7SVivek Gautam rk_phy->phy = devm_phy_create(base->dev, child, &ops);
2850b56e9a7SVivek Gautam if (IS_ERR(rk_phy->phy)) {
2860b56e9a7SVivek Gautam dev_err(base->dev, "failed to create PHY\n");
2870b56e9a7SVivek Gautam return PTR_ERR(rk_phy->phy);
2880b56e9a7SVivek Gautam }
2890b56e9a7SVivek Gautam phy_set_drvdata(rk_phy->phy, rk_phy);
2900b56e9a7SVivek Gautam
2910b56e9a7SVivek Gautam rk_phy->vbus = devm_regulator_get_optional(&rk_phy->phy->dev, "vbus");
2920b56e9a7SVivek Gautam if (IS_ERR(rk_phy->vbus)) {
2930b56e9a7SVivek Gautam if (PTR_ERR(rk_phy->vbus) == -EPROBE_DEFER)
2940b56e9a7SVivek Gautam return PTR_ERR(rk_phy->vbus);
2950b56e9a7SVivek Gautam rk_phy->vbus = NULL;
2960b56e9a7SVivek Gautam }
2970b56e9a7SVivek Gautam
2980b56e9a7SVivek Gautam /*
2990b56e9a7SVivek Gautam * When acting as uart-pipe, just keep clock on otherwise
3000b56e9a7SVivek Gautam * only power up usb phy when it use, so disable it when init
3010b56e9a7SVivek Gautam */
3020b56e9a7SVivek Gautam if (rk_phy->uart_enabled)
3030b56e9a7SVivek Gautam return clk_prepare_enable(rk_phy->clk);
3040b56e9a7SVivek Gautam else
3050b56e9a7SVivek Gautam return rockchip_usb_phy_power(rk_phy, 1);
3060b56e9a7SVivek Gautam
3070b56e9a7SVivek Gautam err_clk_prov:
3080b56e9a7SVivek Gautam if (!rk_phy->uart_enabled)
3090b56e9a7SVivek Gautam clk_unregister(rk_phy->clk480m);
3100b56e9a7SVivek Gautam err_clk:
3110b56e9a7SVivek Gautam if (rk_phy->clk)
3120b56e9a7SVivek Gautam clk_put(rk_phy->clk);
3130b56e9a7SVivek Gautam return err;
3140b56e9a7SVivek Gautam }
3150b56e9a7SVivek Gautam
3160b56e9a7SVivek Gautam static const struct rockchip_usb_phy_pdata rk3066a_pdata = {
3170b56e9a7SVivek Gautam .phys = (struct rockchip_usb_phys[]){
3180b56e9a7SVivek Gautam { .reg = 0x17c, .pll_name = "sclk_otgphy0_480m" },
3190b56e9a7SVivek Gautam { .reg = 0x188, .pll_name = "sclk_otgphy1_480m" },
3200b56e9a7SVivek Gautam { /* sentinel */ }
3210b56e9a7SVivek Gautam },
3220b56e9a7SVivek Gautam };
3230b56e9a7SVivek Gautam
rockchip_init_usb_uart_common(struct regmap * grf,const struct rockchip_usb_phy_pdata * pdata)32463bd0f19SHeiko Stuebner static int __init rockchip_init_usb_uart_common(struct regmap *grf,
32563bd0f19SHeiko Stuebner const struct rockchip_usb_phy_pdata *pdata)
32663bd0f19SHeiko Stuebner {
32763bd0f19SHeiko Stuebner int regoffs = pdata->phys[pdata->usb_uart_phy].reg;
32863bd0f19SHeiko Stuebner int ret;
32963bd0f19SHeiko Stuebner u32 val;
33063bd0f19SHeiko Stuebner
33163bd0f19SHeiko Stuebner /*
33263bd0f19SHeiko Stuebner * COMMON_ON and DISABLE settings are described in the TRM,
33363bd0f19SHeiko Stuebner * but were not present in the original code.
33463bd0f19SHeiko Stuebner * Also disable the analog phy components to save power.
33563bd0f19SHeiko Stuebner */
33663bd0f19SHeiko Stuebner val = HIWORD_UPDATE(UOC_CON0_COMMON_ON_N
33763bd0f19SHeiko Stuebner | UOC_CON0_DISABLE
33863bd0f19SHeiko Stuebner | UOC_CON0_SIDDQ,
33963bd0f19SHeiko Stuebner UOC_CON0_COMMON_ON_N
34063bd0f19SHeiko Stuebner | UOC_CON0_DISABLE
34163bd0f19SHeiko Stuebner | UOC_CON0_SIDDQ);
34263bd0f19SHeiko Stuebner ret = regmap_write(grf, regoffs + UOC_CON0, val);
34363bd0f19SHeiko Stuebner if (ret)
34463bd0f19SHeiko Stuebner return ret;
34563bd0f19SHeiko Stuebner
34663bd0f19SHeiko Stuebner val = HIWORD_UPDATE(UOC_CON2_SOFT_CON_SEL,
34763bd0f19SHeiko Stuebner UOC_CON2_SOFT_CON_SEL);
34863bd0f19SHeiko Stuebner ret = regmap_write(grf, regoffs + UOC_CON2, val);
34963bd0f19SHeiko Stuebner if (ret)
35063bd0f19SHeiko Stuebner return ret;
35163bd0f19SHeiko Stuebner
35263bd0f19SHeiko Stuebner val = HIWORD_UPDATE(UOC_CON3_UTMI_OPMODE_NODRIVING
35363bd0f19SHeiko Stuebner | UOC_CON3_UTMI_XCVRSEELCT_FSTRANSC
35463bd0f19SHeiko Stuebner | UOC_CON3_UTMI_TERMSEL_FULLSPEED,
35563bd0f19SHeiko Stuebner UOC_CON3_UTMI_SUSPENDN
35663bd0f19SHeiko Stuebner | UOC_CON3_UTMI_OPMODE_MASK
35763bd0f19SHeiko Stuebner | UOC_CON3_UTMI_XCVRSEELCT_MASK
35863bd0f19SHeiko Stuebner | UOC_CON3_UTMI_TERMSEL_FULLSPEED);
35963bd0f19SHeiko Stuebner ret = regmap_write(grf, UOC_CON3, val);
36063bd0f19SHeiko Stuebner if (ret)
36163bd0f19SHeiko Stuebner return ret;
36263bd0f19SHeiko Stuebner
36363bd0f19SHeiko Stuebner return 0;
36463bd0f19SHeiko Stuebner }
36563bd0f19SHeiko Stuebner
36663bd0f19SHeiko Stuebner #define RK3188_UOC0_CON0 0x10c
36763bd0f19SHeiko Stuebner #define RK3188_UOC0_CON0_BYPASSSEL BIT(9)
36863bd0f19SHeiko Stuebner #define RK3188_UOC0_CON0_BYPASSDMEN BIT(8)
36963bd0f19SHeiko Stuebner
37063bd0f19SHeiko Stuebner /*
37163bd0f19SHeiko Stuebner * Enable the bypass of uart2 data through the otg usb phy.
37263bd0f19SHeiko Stuebner * See description of rk3288-variant for details.
37363bd0f19SHeiko Stuebner */
rk3188_init_usb_uart(struct regmap * grf,const struct rockchip_usb_phy_pdata * pdata)37463bd0f19SHeiko Stuebner static int __init rk3188_init_usb_uart(struct regmap *grf,
37563bd0f19SHeiko Stuebner const struct rockchip_usb_phy_pdata *pdata)
37663bd0f19SHeiko Stuebner {
37763bd0f19SHeiko Stuebner u32 val;
37863bd0f19SHeiko Stuebner int ret;
37963bd0f19SHeiko Stuebner
38063bd0f19SHeiko Stuebner ret = rockchip_init_usb_uart_common(grf, pdata);
38163bd0f19SHeiko Stuebner if (ret)
38263bd0f19SHeiko Stuebner return ret;
38363bd0f19SHeiko Stuebner
38463bd0f19SHeiko Stuebner val = HIWORD_UPDATE(RK3188_UOC0_CON0_BYPASSSEL
38563bd0f19SHeiko Stuebner | RK3188_UOC0_CON0_BYPASSDMEN,
38663bd0f19SHeiko Stuebner RK3188_UOC0_CON0_BYPASSSEL
38763bd0f19SHeiko Stuebner | RK3188_UOC0_CON0_BYPASSDMEN);
38863bd0f19SHeiko Stuebner ret = regmap_write(grf, RK3188_UOC0_CON0, val);
38963bd0f19SHeiko Stuebner if (ret)
39063bd0f19SHeiko Stuebner return ret;
39163bd0f19SHeiko Stuebner
39263bd0f19SHeiko Stuebner return 0;
39363bd0f19SHeiko Stuebner }
39463bd0f19SHeiko Stuebner
3950b56e9a7SVivek Gautam static const struct rockchip_usb_phy_pdata rk3188_pdata = {
3960b56e9a7SVivek Gautam .phys = (struct rockchip_usb_phys[]){
3970b56e9a7SVivek Gautam { .reg = 0x10c, .pll_name = "sclk_otgphy0_480m" },
3980b56e9a7SVivek Gautam { .reg = 0x11c, .pll_name = "sclk_otgphy1_480m" },
3990b56e9a7SVivek Gautam { /* sentinel */ }
4000b56e9a7SVivek Gautam },
40163bd0f19SHeiko Stuebner .init_usb_uart = rk3188_init_usb_uart,
40263bd0f19SHeiko Stuebner .usb_uart_phy = 0,
4030b56e9a7SVivek Gautam };
4040b56e9a7SVivek Gautam
4050b56e9a7SVivek Gautam #define RK3288_UOC0_CON3 0x32c
4060b56e9a7SVivek Gautam #define RK3288_UOC0_CON3_BYPASSDMEN BIT(6)
4070b56e9a7SVivek Gautam #define RK3288_UOC0_CON3_BYPASSSEL BIT(7)
4080b56e9a7SVivek Gautam
4090b56e9a7SVivek Gautam /*
4100b56e9a7SVivek Gautam * Enable the bypass of uart2 data through the otg usb phy.
4110b56e9a7SVivek Gautam * Original description in the TRM.
4120b56e9a7SVivek Gautam * 1. Disable the OTG block by setting OTGDISABLE0 to 1’b1.
4130b56e9a7SVivek Gautam * 2. Disable the pull-up resistance on the D+ line by setting
4140b56e9a7SVivek Gautam * OPMODE0[1:0] to 2’b01.
4150b56e9a7SVivek Gautam * 3. To ensure that the XO, Bias, and PLL blocks are powered down in Suspend
4160b56e9a7SVivek Gautam * mode, set COMMONONN to 1’b1.
4170b56e9a7SVivek Gautam * 4. Place the USB PHY in Suspend mode by setting SUSPENDM0 to 1’b0.
4180b56e9a7SVivek Gautam * 5. Set BYPASSSEL0 to 1’b1.
4190b56e9a7SVivek Gautam * 6. To transmit data, controls BYPASSDMEN0, and BYPASSDMDATA0.
4200b56e9a7SVivek Gautam * To receive data, monitor FSVPLUS0.
4210b56e9a7SVivek Gautam *
4220b56e9a7SVivek Gautam * The actual code in the vendor kernel does some things differently.
4230b56e9a7SVivek Gautam */
rk3288_init_usb_uart(struct regmap * grf,const struct rockchip_usb_phy_pdata * pdata)42463bd0f19SHeiko Stuebner static int __init rk3288_init_usb_uart(struct regmap *grf,
42563bd0f19SHeiko Stuebner const struct rockchip_usb_phy_pdata *pdata)
4260b56e9a7SVivek Gautam {
4270b56e9a7SVivek Gautam u32 val;
4280b56e9a7SVivek Gautam int ret;
4290b56e9a7SVivek Gautam
43063bd0f19SHeiko Stuebner ret = rockchip_init_usb_uart_common(grf, pdata);
4310b56e9a7SVivek Gautam if (ret)
4320b56e9a7SVivek Gautam return ret;
4330b56e9a7SVivek Gautam
4340b56e9a7SVivek Gautam val = HIWORD_UPDATE(RK3288_UOC0_CON3_BYPASSSEL
4350b56e9a7SVivek Gautam | RK3288_UOC0_CON3_BYPASSDMEN,
4360b56e9a7SVivek Gautam RK3288_UOC0_CON3_BYPASSSEL
4370b56e9a7SVivek Gautam | RK3288_UOC0_CON3_BYPASSDMEN);
4380b56e9a7SVivek Gautam ret = regmap_write(grf, RK3288_UOC0_CON3, val);
4390b56e9a7SVivek Gautam if (ret)
4400b56e9a7SVivek Gautam return ret;
4410b56e9a7SVivek Gautam
4420b56e9a7SVivek Gautam return 0;
4430b56e9a7SVivek Gautam }
4440b56e9a7SVivek Gautam
4450b56e9a7SVivek Gautam static const struct rockchip_usb_phy_pdata rk3288_pdata = {
4460b56e9a7SVivek Gautam .phys = (struct rockchip_usb_phys[]){
4470b56e9a7SVivek Gautam { .reg = 0x320, .pll_name = "sclk_otgphy0_480m" },
4480b56e9a7SVivek Gautam { .reg = 0x334, .pll_name = "sclk_otgphy1_480m" },
4490b56e9a7SVivek Gautam { .reg = 0x348, .pll_name = "sclk_otgphy2_480m" },
4500b56e9a7SVivek Gautam { /* sentinel */ }
4510b56e9a7SVivek Gautam },
4520b56e9a7SVivek Gautam .init_usb_uart = rk3288_init_usb_uart,
4530b56e9a7SVivek Gautam .usb_uart_phy = 0,
4540b56e9a7SVivek Gautam };
4550b56e9a7SVivek Gautam
rockchip_usb_phy_probe(struct platform_device * pdev)4560b56e9a7SVivek Gautam static int rockchip_usb_phy_probe(struct platform_device *pdev)
4570b56e9a7SVivek Gautam {
4580b56e9a7SVivek Gautam struct device *dev = &pdev->dev;
4590b56e9a7SVivek Gautam struct rockchip_usb_phy_base *phy_base;
4600b56e9a7SVivek Gautam struct phy_provider *phy_provider;
4610b56e9a7SVivek Gautam const struct of_device_id *match;
4620b56e9a7SVivek Gautam struct device_node *child;
4630b56e9a7SVivek Gautam int err;
4640b56e9a7SVivek Gautam
4650b56e9a7SVivek Gautam phy_base = devm_kzalloc(dev, sizeof(*phy_base), GFP_KERNEL);
4660b56e9a7SVivek Gautam if (!phy_base)
4670b56e9a7SVivek Gautam return -ENOMEM;
4680b56e9a7SVivek Gautam
4690b56e9a7SVivek Gautam match = of_match_device(dev->driver->of_match_table, dev);
4700b56e9a7SVivek Gautam if (!match || !match->data) {
4710b56e9a7SVivek Gautam dev_err(dev, "missing phy data\n");
4720b56e9a7SVivek Gautam return -EINVAL;
4730b56e9a7SVivek Gautam }
4740b56e9a7SVivek Gautam
4750b56e9a7SVivek Gautam phy_base->pdata = match->data;
4760b56e9a7SVivek Gautam
4770b56e9a7SVivek Gautam phy_base->dev = dev;
4780b56e9a7SVivek Gautam phy_base->reg_base = ERR_PTR(-ENODEV);
4790b56e9a7SVivek Gautam if (dev->parent && dev->parent->of_node)
4800b56e9a7SVivek Gautam phy_base->reg_base = syscon_node_to_regmap(
4810b56e9a7SVivek Gautam dev->parent->of_node);
4820b56e9a7SVivek Gautam if (IS_ERR(phy_base->reg_base))
4830b56e9a7SVivek Gautam phy_base->reg_base = syscon_regmap_lookup_by_phandle(
4840b56e9a7SVivek Gautam dev->of_node, "rockchip,grf");
4850b56e9a7SVivek Gautam if (IS_ERR(phy_base->reg_base)) {
4860b56e9a7SVivek Gautam dev_err(&pdev->dev, "Missing rockchip,grf property\n");
4870b56e9a7SVivek Gautam return PTR_ERR(phy_base->reg_base);
4880b56e9a7SVivek Gautam }
4890b56e9a7SVivek Gautam
4900b56e9a7SVivek Gautam for_each_available_child_of_node(dev->of_node, child) {
4910b56e9a7SVivek Gautam err = rockchip_usb_phy_init(phy_base, child);
4920b56e9a7SVivek Gautam if (err) {
4930b56e9a7SVivek Gautam of_node_put(child);
4940b56e9a7SVivek Gautam return err;
4950b56e9a7SVivek Gautam }
4960b56e9a7SVivek Gautam }
4970b56e9a7SVivek Gautam
4980b56e9a7SVivek Gautam phy_provider = devm_of_phy_provider_register(dev, of_phy_simple_xlate);
4990b56e9a7SVivek Gautam return PTR_ERR_OR_ZERO(phy_provider);
5000b56e9a7SVivek Gautam }
5010b56e9a7SVivek Gautam
5020b56e9a7SVivek Gautam static const struct of_device_id rockchip_usb_phy_dt_ids[] = {
5030b56e9a7SVivek Gautam { .compatible = "rockchip,rk3066a-usb-phy", .data = &rk3066a_pdata },
5040b56e9a7SVivek Gautam { .compatible = "rockchip,rk3188-usb-phy", .data = &rk3188_pdata },
5050b56e9a7SVivek Gautam { .compatible = "rockchip,rk3288-usb-phy", .data = &rk3288_pdata },
5060b56e9a7SVivek Gautam {}
5070b56e9a7SVivek Gautam };
5080b56e9a7SVivek Gautam
5090b56e9a7SVivek Gautam MODULE_DEVICE_TABLE(of, rockchip_usb_phy_dt_ids);
5100b56e9a7SVivek Gautam
5110b56e9a7SVivek Gautam static struct platform_driver rockchip_usb_driver = {
5120b56e9a7SVivek Gautam .probe = rockchip_usb_phy_probe,
5130b56e9a7SVivek Gautam .driver = {
5140b56e9a7SVivek Gautam .name = "rockchip-usb-phy",
5150b56e9a7SVivek Gautam .of_match_table = rockchip_usb_phy_dt_ids,
5160b56e9a7SVivek Gautam },
5170b56e9a7SVivek Gautam };
5180b56e9a7SVivek Gautam
5190b56e9a7SVivek Gautam module_platform_driver(rockchip_usb_driver);
5200b56e9a7SVivek Gautam
5210b56e9a7SVivek Gautam #ifndef MODULE
rockchip_init_usb_uart(void)5220b56e9a7SVivek Gautam static int __init rockchip_init_usb_uart(void)
5230b56e9a7SVivek Gautam {
5240b56e9a7SVivek Gautam const struct of_device_id *match;
5250b56e9a7SVivek Gautam const struct rockchip_usb_phy_pdata *data;
5260b56e9a7SVivek Gautam struct device_node *np;
5270b56e9a7SVivek Gautam struct regmap *grf;
5280b56e9a7SVivek Gautam int ret;
5290b56e9a7SVivek Gautam
5300b56e9a7SVivek Gautam if (!enable_usb_uart)
5310b56e9a7SVivek Gautam return 0;
5320b56e9a7SVivek Gautam
5330b56e9a7SVivek Gautam np = of_find_matching_node_and_match(NULL, rockchip_usb_phy_dt_ids,
5340b56e9a7SVivek Gautam &match);
5350b56e9a7SVivek Gautam if (!np) {
5360b56e9a7SVivek Gautam pr_err("%s: failed to find usbphy node\n", __func__);
5370b56e9a7SVivek Gautam return -ENOTSUPP;
5380b56e9a7SVivek Gautam }
5390b56e9a7SVivek Gautam
5400b56e9a7SVivek Gautam pr_debug("%s: using settings for %s\n", __func__, match->compatible);
5410b56e9a7SVivek Gautam data = match->data;
5420b56e9a7SVivek Gautam
5430b56e9a7SVivek Gautam if (!data->init_usb_uart) {
5440b56e9a7SVivek Gautam pr_err("%s: usb-uart not available on %s\n",
5450b56e9a7SVivek Gautam __func__, match->compatible);
5460b56e9a7SVivek Gautam return -ENOTSUPP;
5470b56e9a7SVivek Gautam }
5480b56e9a7SVivek Gautam
5490b56e9a7SVivek Gautam grf = ERR_PTR(-ENODEV);
5500b56e9a7SVivek Gautam if (np->parent)
5510b56e9a7SVivek Gautam grf = syscon_node_to_regmap(np->parent);
5520b56e9a7SVivek Gautam if (IS_ERR(grf))
5530b56e9a7SVivek Gautam grf = syscon_regmap_lookup_by_phandle(np, "rockchip,grf");
5540b56e9a7SVivek Gautam if (IS_ERR(grf)) {
5550b56e9a7SVivek Gautam pr_err("%s: Missing rockchip,grf property, %lu\n",
5560b56e9a7SVivek Gautam __func__, PTR_ERR(grf));
5570b56e9a7SVivek Gautam return PTR_ERR(grf);
5580b56e9a7SVivek Gautam }
5590b56e9a7SVivek Gautam
56063bd0f19SHeiko Stuebner ret = data->init_usb_uart(grf, data);
5610b56e9a7SVivek Gautam if (ret) {
5620b56e9a7SVivek Gautam pr_err("%s: could not init usb_uart, %d\n", __func__, ret);
5630b56e9a7SVivek Gautam enable_usb_uart = 0;
5640b56e9a7SVivek Gautam return ret;
5650b56e9a7SVivek Gautam }
5660b56e9a7SVivek Gautam
5670b56e9a7SVivek Gautam return 0;
5680b56e9a7SVivek Gautam }
5690b56e9a7SVivek Gautam early_initcall(rockchip_init_usb_uart);
5700b56e9a7SVivek Gautam
rockchip_usb_uart(char * buf)5710b56e9a7SVivek Gautam static int __init rockchip_usb_uart(char *buf)
5720b56e9a7SVivek Gautam {
5730b56e9a7SVivek Gautam enable_usb_uart = true;
5740b56e9a7SVivek Gautam return 0;
5750b56e9a7SVivek Gautam }
5760b56e9a7SVivek Gautam early_param("rockchip.usb_uart", rockchip_usb_uart);
5770b56e9a7SVivek Gautam #endif
5780b56e9a7SVivek Gautam
5790b56e9a7SVivek Gautam MODULE_AUTHOR("Yunzhi Li <lyz@rock-chips.com>");
5800b56e9a7SVivek Gautam MODULE_DESCRIPTION("Rockchip USB 2.0 PHY driver");
5810b56e9a7SVivek Gautam MODULE_LICENSE("GPL v2");
582