2 * Rockchip usb PHY driver
4 * Copyright (C) 2014 Yunzhi Li <lyz@rock-chips.com>
5 * Copyright (C) 2014 ROCKCHIP, Inc.
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
17 #include <linux/clk.h>
18 #include <linux/clk-provider.h>
20 #include <linux/kernel.h>
21 #include <linux/module.h>
22 #include <linux/mutex.h>
24 #include <linux/of_address.h>
25 #include <linux/of_platform.h>
26 #include <linux/phy/phy.h>
27 #include <linux/platform_device.h>
28 #include <linux/regulator/consumer.h>
29 #include <linux/reset.h>
30 #include <linux/regmap.h>
31 #include <linux/mfd/syscon.h>
33 static int enable_usb_uart
;
35 #define HIWORD_UPDATE(val, mask) \
36 ((val) | (mask) << 16)
38 #define UOC_CON0_SIDDQ BIT(13)
40 struct rockchip_usb_phys
{
45 struct rockchip_usb_phy_base
;
46 struct rockchip_usb_phy_pdata
{
47 struct rockchip_usb_phys
*phys
;
48 int (*init_usb_uart
)(struct regmap
*grf
);
52 struct rockchip_usb_phy_base
{
54 struct regmap
*reg_base
;
55 const struct rockchip_usb_phy_pdata
*pdata
;
58 struct rockchip_usb_phy
{
59 struct rockchip_usb_phy_base
*base
;
60 struct device_node
*np
;
61 unsigned int reg_offset
;
64 struct clk_hw clk480m_hw
;
69 static int rockchip_usb_phy_power(struct rockchip_usb_phy
*phy
,
72 u32 val
= HIWORD_UPDATE(siddq
? UOC_CON0_SIDDQ
: 0, UOC_CON0_SIDDQ
);
74 return regmap_write(phy
->base
->reg_base
, phy
->reg_offset
, val
);
77 static unsigned long rockchip_usb_phy480m_recalc_rate(struct clk_hw
*hw
,
78 unsigned long parent_rate
)
83 static void rockchip_usb_phy480m_disable(struct clk_hw
*hw
)
85 struct rockchip_usb_phy
*phy
= container_of(hw
,
86 struct rockchip_usb_phy
,
89 /* Power down usb phy analog blocks by set siddq 1 */
90 rockchip_usb_phy_power(phy
, 1);
93 static int rockchip_usb_phy480m_enable(struct clk_hw
*hw
)
95 struct rockchip_usb_phy
*phy
= container_of(hw
,
96 struct rockchip_usb_phy
,
99 /* Power up usb phy analog blocks by set siddq 0 */
100 return rockchip_usb_phy_power(phy
, 0);
103 static int rockchip_usb_phy480m_is_enabled(struct clk_hw
*hw
)
105 struct rockchip_usb_phy
*phy
= container_of(hw
,
106 struct rockchip_usb_phy
,
111 ret
= regmap_read(phy
->base
->reg_base
, phy
->reg_offset
, &val
);
115 return (val
& UOC_CON0_SIDDQ
) ? 0 : 1;
118 static const struct clk_ops rockchip_usb_phy480m_ops
= {
119 .enable
= rockchip_usb_phy480m_enable
,
120 .disable
= rockchip_usb_phy480m_disable
,
121 .is_enabled
= rockchip_usb_phy480m_is_enabled
,
122 .recalc_rate
= rockchip_usb_phy480m_recalc_rate
,
125 static int rockchip_usb_phy_power_off(struct phy
*_phy
)
127 struct rockchip_usb_phy
*phy
= phy_get_drvdata(_phy
);
129 if (phy
->uart_enabled
)
132 clk_disable_unprepare(phy
->clk480m
);
137 static int rockchip_usb_phy_power_on(struct phy
*_phy
)
139 struct rockchip_usb_phy
*phy
= phy_get_drvdata(_phy
);
141 if (phy
->uart_enabled
)
144 return clk_prepare_enable(phy
->clk480m
);
147 static const struct phy_ops ops
= {
148 .power_on
= rockchip_usb_phy_power_on
,
149 .power_off
= rockchip_usb_phy_power_off
,
150 .owner
= THIS_MODULE
,
153 static void rockchip_usb_phy_action(void *data
)
155 struct rockchip_usb_phy
*rk_phy
= data
;
157 if (!rk_phy
->uart_enabled
) {
158 of_clk_del_provider(rk_phy
->np
);
159 clk_unregister(rk_phy
->clk480m
);
163 clk_put(rk_phy
->clk
);
166 static int rockchip_usb_phy_init(struct rockchip_usb_phy_base
*base
,
167 struct device_node
*child
)
169 struct rockchip_usb_phy
*rk_phy
;
170 unsigned int reg_offset
;
171 const char *clk_name
;
172 struct clk_init_data init
;
175 rk_phy
= devm_kzalloc(base
->dev
, sizeof(*rk_phy
), GFP_KERNEL
);
182 if (of_property_read_u32(child
, "reg", ®_offset
)) {
183 dev_err(base
->dev
, "missing reg property in node %s\n",
188 rk_phy
->reg_offset
= reg_offset
;
190 rk_phy
->clk
= of_clk_get_by_name(child
, "phyclk");
191 if (IS_ERR(rk_phy
->clk
))
196 while (base
->pdata
->phys
[i
].reg
) {
197 if (base
->pdata
->phys
[i
].reg
== reg_offset
) {
198 init
.name
= base
->pdata
->phys
[i
].pll_name
;
205 dev_err(base
->dev
, "phy data not found\n");
209 if (enable_usb_uart
&& base
->pdata
->usb_uart_phy
== i
) {
210 dev_dbg(base
->dev
, "phy%d used as uart output\n", i
);
211 rk_phy
->uart_enabled
= true;
214 clk_name
= __clk_get_name(rk_phy
->clk
);
216 init
.parent_names
= &clk_name
;
217 init
.num_parents
= 1;
219 init
.flags
= CLK_IS_ROOT
;
220 init
.parent_names
= NULL
;
221 init
.num_parents
= 0;
224 init
.ops
= &rockchip_usb_phy480m_ops
;
225 rk_phy
->clk480m_hw
.init
= &init
;
227 rk_phy
->clk480m
= clk_register(base
->dev
, &rk_phy
->clk480m_hw
);
228 if (IS_ERR(rk_phy
->clk480m
)) {
229 err
= PTR_ERR(rk_phy
->clk480m
);
233 err
= of_clk_add_provider(child
, of_clk_src_simple_get
,
239 err
= devm_add_action(base
->dev
, rockchip_usb_phy_action
, rk_phy
);
241 goto err_devm_action
;
243 rk_phy
->phy
= devm_phy_create(base
->dev
, child
, &ops
);
244 if (IS_ERR(rk_phy
->phy
)) {
245 dev_err(base
->dev
, "failed to create PHY\n");
246 return PTR_ERR(rk_phy
->phy
);
248 phy_set_drvdata(rk_phy
->phy
, rk_phy
);
251 * When acting as uart-pipe, just keep clock on otherwise
252 * only power up usb phy when it use, so disable it when init
254 if (rk_phy
->uart_enabled
)
255 return clk_prepare_enable(rk_phy
->clk
);
257 return rockchip_usb_phy_power(rk_phy
, 1);
260 if (!rk_phy
->uart_enabled
)
261 of_clk_del_provider(child
);
263 if (!rk_phy
->uart_enabled
)
264 clk_unregister(rk_phy
->clk480m
);
267 clk_put(rk_phy
->clk
);
271 static const struct rockchip_usb_phy_pdata rk3066a_pdata
= {
272 .phys
= (struct rockchip_usb_phys
[]){
273 { .reg
= 0x17c, .pll_name
= "sclk_otgphy0_480m" },
274 { .reg
= 0x188, .pll_name
= "sclk_otgphy1_480m" },
279 static const struct rockchip_usb_phy_pdata rk3188_pdata
= {
280 .phys
= (struct rockchip_usb_phys
[]){
281 { .reg
= 0x10c, .pll_name
= "sclk_otgphy0_480m" },
282 { .reg
= 0x11c, .pll_name
= "sclk_otgphy1_480m" },
287 #define RK3288_UOC0_CON0 0x320
288 #define RK3288_UOC0_CON0_COMMON_ON_N BIT(0)
289 #define RK3288_UOC0_CON0_DISABLE BIT(4)
291 #define RK3288_UOC0_CON2 0x328
292 #define RK3288_UOC0_CON2_SOFT_CON_SEL BIT(2)
294 #define RK3288_UOC0_CON3 0x32c
295 #define RK3288_UOC0_CON3_UTMI_SUSPENDN BIT(0)
296 #define RK3288_UOC0_CON3_UTMI_OPMODE_NODRIVING (1 << 1)
297 #define RK3288_UOC0_CON3_UTMI_OPMODE_MASK (3 << 1)
298 #define RK3288_UOC0_CON3_UTMI_XCVRSEELCT_FSTRANSC (1 << 3)
299 #define RK3288_UOC0_CON3_UTMI_XCVRSEELCT_MASK (3 << 3)
300 #define RK3288_UOC0_CON3_UTMI_TERMSEL_FULLSPEED BIT(5)
301 #define RK3288_UOC0_CON3_BYPASSDMEN BIT(6)
302 #define RK3288_UOC0_CON3_BYPASSSEL BIT(7)
305 * Enable the bypass of uart2 data through the otg usb phy.
306 * Original description in the TRM.
307 * 1. Disable the OTG block by setting OTGDISABLE0 to 1’b1.
308 * 2. Disable the pull-up resistance on the D+ line by setting
309 * OPMODE0[1:0] to 2’b01.
310 * 3. To ensure that the XO, Bias, and PLL blocks are powered down in Suspend
311 * mode, set COMMONONN to 1’b1.
312 * 4. Place the USB PHY in Suspend mode by setting SUSPENDM0 to 1’b0.
313 * 5. Set BYPASSSEL0 to 1’b1.
314 * 6. To transmit data, controls BYPASSDMEN0, and BYPASSDMDATA0.
315 * To receive data, monitor FSVPLUS0.
317 * The actual code in the vendor kernel does some things differently.
319 static int __init
rk3288_init_usb_uart(struct regmap
*grf
)
325 * COMMON_ON and DISABLE settings are described in the TRM,
326 * but were not present in the original code.
327 * Also disable the analog phy components to save power.
329 val
= HIWORD_UPDATE(RK3288_UOC0_CON0_COMMON_ON_N
330 | RK3288_UOC0_CON0_DISABLE
332 RK3288_UOC0_CON0_COMMON_ON_N
333 | RK3288_UOC0_CON0_DISABLE
335 ret
= regmap_write(grf
, RK3288_UOC0_CON0
, val
);
339 val
= HIWORD_UPDATE(RK3288_UOC0_CON2_SOFT_CON_SEL
,
340 RK3288_UOC0_CON2_SOFT_CON_SEL
);
341 ret
= regmap_write(grf
, RK3288_UOC0_CON2
, val
);
345 val
= HIWORD_UPDATE(RK3288_UOC0_CON3_UTMI_OPMODE_NODRIVING
346 | RK3288_UOC0_CON3_UTMI_XCVRSEELCT_FSTRANSC
347 | RK3288_UOC0_CON3_UTMI_TERMSEL_FULLSPEED
,
348 RK3288_UOC0_CON3_UTMI_SUSPENDN
349 | RK3288_UOC0_CON3_UTMI_OPMODE_MASK
350 | RK3288_UOC0_CON3_UTMI_XCVRSEELCT_MASK
351 | RK3288_UOC0_CON3_UTMI_TERMSEL_FULLSPEED
);
352 ret
= regmap_write(grf
, RK3288_UOC0_CON3
, val
);
356 val
= HIWORD_UPDATE(RK3288_UOC0_CON3_BYPASSSEL
357 | RK3288_UOC0_CON3_BYPASSDMEN
,
358 RK3288_UOC0_CON3_BYPASSSEL
359 | RK3288_UOC0_CON3_BYPASSDMEN
);
360 ret
= regmap_write(grf
, RK3288_UOC0_CON3
, val
);
367 static const struct rockchip_usb_phy_pdata rk3288_pdata
= {
368 .phys
= (struct rockchip_usb_phys
[]){
369 { .reg
= 0x320, .pll_name
= "sclk_otgphy0_480m" },
370 { .reg
= 0x334, .pll_name
= "sclk_otgphy1_480m" },
371 { .reg
= 0x348, .pll_name
= "sclk_otgphy2_480m" },
374 .init_usb_uart
= rk3288_init_usb_uart
,
378 static int rockchip_usb_phy_probe(struct platform_device
*pdev
)
380 struct device
*dev
= &pdev
->dev
;
381 struct rockchip_usb_phy_base
*phy_base
;
382 struct phy_provider
*phy_provider
;
383 const struct of_device_id
*match
;
384 struct device_node
*child
;
387 phy_base
= devm_kzalloc(dev
, sizeof(*phy_base
), GFP_KERNEL
);
391 match
= of_match_device(dev
->driver
->of_match_table
, dev
);
392 if (!match
|| !match
->data
) {
393 dev_err(dev
, "missing phy data\n");
397 phy_base
->pdata
= match
->data
;
400 phy_base
->reg_base
= syscon_regmap_lookup_by_phandle(dev
->of_node
,
402 if (IS_ERR(phy_base
->reg_base
)) {
403 dev_err(&pdev
->dev
, "Missing rockchip,grf property\n");
404 return PTR_ERR(phy_base
->reg_base
);
407 for_each_available_child_of_node(dev
->of_node
, child
) {
408 err
= rockchip_usb_phy_init(phy_base
, child
);
415 phy_provider
= devm_of_phy_provider_register(dev
, of_phy_simple_xlate
);
416 return PTR_ERR_OR_ZERO(phy_provider
);
419 static const struct of_device_id rockchip_usb_phy_dt_ids
[] = {
420 { .compatible
= "rockchip,rk3066a-usb-phy", .data
= &rk3066a_pdata
},
421 { .compatible
= "rockchip,rk3188-usb-phy", .data
= &rk3188_pdata
},
422 { .compatible
= "rockchip,rk3288-usb-phy", .data
= &rk3288_pdata
},
426 MODULE_DEVICE_TABLE(of
, rockchip_usb_phy_dt_ids
);
428 static struct platform_driver rockchip_usb_driver
= {
429 .probe
= rockchip_usb_phy_probe
,
431 .name
= "rockchip-usb-phy",
432 .of_match_table
= rockchip_usb_phy_dt_ids
,
436 module_platform_driver(rockchip_usb_driver
);
439 static int __init
rockchip_init_usb_uart(void)
441 const struct of_device_id
*match
;
442 const struct rockchip_usb_phy_pdata
*data
;
443 struct device_node
*np
;
447 if (!enable_usb_uart
)
450 np
= of_find_matching_node_and_match(NULL
, rockchip_usb_phy_dt_ids
,
453 pr_err("%s: failed to find usbphy node\n", __func__
);
457 pr_debug("%s: using settings for %s\n", __func__
, match
->compatible
);
460 if (!data
->init_usb_uart
) {
461 pr_err("%s: usb-uart not available on %s\n",
462 __func__
, match
->compatible
);
466 grf
= syscon_regmap_lookup_by_phandle(np
, "rockchip,grf");
468 pr_err("%s: Missing rockchip,grf property, %lu\n",
469 __func__
, PTR_ERR(grf
));
473 ret
= data
->init_usb_uart(grf
);
475 pr_err("%s: could not init usb_uart, %d\n", __func__
, ret
);
482 early_initcall(rockchip_init_usb_uart
);
484 static int __init
rockchip_usb_uart(char *buf
)
486 enable_usb_uart
= true;
489 early_param("rockchip.usb_uart", rockchip_usb_uart
);
492 MODULE_AUTHOR("Yunzhi Li <lyz@rock-chips.com>");
493 MODULE_DESCRIPTION("Rockchip USB 2.0 PHY driver");
494 MODULE_LICENSE("GPL v2");