2 * Copyright 2012-2014 Freescale Semiconductor, Inc.
3 * Copyright (C) 2012 Marek Vasut <marex@denx.de>
4 * on behalf of DENX Software Engineering GmbH
6 * The code contained herein is licensed under the GNU General Public
7 * License. You may obtain a copy of the GNU General Public License
8 * Version 2 or later at the following locations:
10 * http://www.opensource.org/licenses/gpl-license.html
11 * http://www.gnu.org/copyleft/gpl.html
14 #include <linux/module.h>
15 #include <linux/kernel.h>
16 #include <linux/platform_device.h>
17 #include <linux/clk.h>
18 #include <linux/usb/otg.h>
19 #include <linux/stmp_device.h>
20 #include <linux/delay.h>
21 #include <linux/err.h>
23 #include <linux/of_device.h>
24 #include <linux/regmap.h>
25 #include <linux/mfd/syscon.h>
27 #define DRIVER_NAME "mxs_phy"
29 #define HW_USBPHY_PWD 0x00
30 #define HW_USBPHY_CTRL 0x30
31 #define HW_USBPHY_CTRL_SET 0x34
32 #define HW_USBPHY_CTRL_CLR 0x38
34 #define HW_USBPHY_DEBUG_SET 0x54
35 #define HW_USBPHY_DEBUG_CLR 0x58
37 #define HW_USBPHY_IP 0x90
38 #define HW_USBPHY_IP_SET 0x94
39 #define HW_USBPHY_IP_CLR 0x98
41 #define BM_USBPHY_CTRL_SFTRST BIT(31)
42 #define BM_USBPHY_CTRL_CLKGATE BIT(30)
43 #define BM_USBPHY_CTRL_ENAUTOSET_USBCLKS BIT(26)
44 #define BM_USBPHY_CTRL_ENAUTOCLR_USBCLKGATE BIT(25)
45 #define BM_USBPHY_CTRL_ENVBUSCHG_WKUP BIT(23)
46 #define BM_USBPHY_CTRL_ENIDCHG_WKUP BIT(22)
47 #define BM_USBPHY_CTRL_ENDPDMCHG_WKUP BIT(21)
48 #define BM_USBPHY_CTRL_ENAUTOCLR_PHY_PWD BIT(20)
49 #define BM_USBPHY_CTRL_ENAUTOCLR_CLKGATE BIT(19)
50 #define BM_USBPHY_CTRL_ENAUTO_PWRON_PLL BIT(18)
51 #define BM_USBPHY_CTRL_ENUTMILEVEL3 BIT(15)
52 #define BM_USBPHY_CTRL_ENUTMILEVEL2 BIT(14)
53 #define BM_USBPHY_CTRL_ENHOSTDISCONDETECT BIT(1)
55 #define BM_USBPHY_IP_FIX (BIT(17) | BIT(18))
57 #define BM_USBPHY_DEBUG_CLKGATE BIT(30)
59 /* Anatop Registers */
60 #define ANADIG_ANA_MISC0 0x150
61 #define ANADIG_ANA_MISC0_SET 0x154
62 #define ANADIG_ANA_MISC0_CLR 0x158
64 #define ANADIG_USB1_VBUS_DET_STAT 0x1c0
65 #define ANADIG_USB2_VBUS_DET_STAT 0x220
67 #define ANADIG_USB1_LOOPBACK_SET 0x1e4
68 #define ANADIG_USB1_LOOPBACK_CLR 0x1e8
69 #define ANADIG_USB2_LOOPBACK_SET 0x244
70 #define ANADIG_USB2_LOOPBACK_CLR 0x248
72 #define BM_ANADIG_ANA_MISC0_STOP_MODE_CONFIG BIT(12)
73 #define BM_ANADIG_ANA_MISC0_STOP_MODE_CONFIG_SL BIT(11)
75 #define BM_ANADIG_USB1_VBUS_DET_STAT_VBUS_VALID BIT(3)
76 #define BM_ANADIG_USB2_VBUS_DET_STAT_VBUS_VALID BIT(3)
78 #define BM_ANADIG_USB1_LOOPBACK_UTMI_DIG_TST1 BIT(2)
79 #define BM_ANADIG_USB1_LOOPBACK_TSTI_TX_EN BIT(5)
80 #define BM_ANADIG_USB2_LOOPBACK_UTMI_DIG_TST1 BIT(2)
81 #define BM_ANADIG_USB2_LOOPBACK_TSTI_TX_EN BIT(5)
83 #define to_mxs_phy(p) container_of((p), struct mxs_phy, phy)
85 /* Do disconnection between PHY and controller without vbus */
86 #define MXS_PHY_DISCONNECT_LINE_WITHOUT_VBUS BIT(0)
89 * The PHY will be in messy if there is a wakeup after putting
90 * bus to suspend (set portsc.suspendM) but before setting PHY to low
91 * power mode (set portsc.phcd).
93 #define MXS_PHY_ABNORMAL_IN_SUSPEND BIT(1)
96 * The SOF sends too fast after resuming, it will cause disconnection
97 * between host and high speed device.
99 #define MXS_PHY_SENDING_SOF_TOO_FAST BIT(2)
102 * IC has bug fixes logic, they include
103 * MXS_PHY_ABNORMAL_IN_SUSPEND and MXS_PHY_SENDING_SOF_TOO_FAST
104 * which are described at above flags, the RTL will handle it
105 * according to different versions.
107 #define MXS_PHY_NEED_IP_FIX BIT(3)
109 struct mxs_phy_data
{
113 static const struct mxs_phy_data imx23_phy_data
= {
114 .flags
= MXS_PHY_ABNORMAL_IN_SUSPEND
| MXS_PHY_SENDING_SOF_TOO_FAST
,
117 static const struct mxs_phy_data imx6q_phy_data
= {
118 .flags
= MXS_PHY_SENDING_SOF_TOO_FAST
|
119 MXS_PHY_DISCONNECT_LINE_WITHOUT_VBUS
|
123 static const struct mxs_phy_data imx6sl_phy_data
= {
124 .flags
= MXS_PHY_DISCONNECT_LINE_WITHOUT_VBUS
|
128 static const struct mxs_phy_data vf610_phy_data
= {
129 .flags
= MXS_PHY_DISCONNECT_LINE_WITHOUT_VBUS
|
133 static const struct mxs_phy_data imx6sx_phy_data
= {
134 .flags
= MXS_PHY_DISCONNECT_LINE_WITHOUT_VBUS
|
138 static const struct of_device_id mxs_phy_dt_ids
[] = {
139 { .compatible
= "fsl,imx6sx-usbphy", .data
= &imx6sx_phy_data
, },
140 { .compatible
= "fsl,imx6sl-usbphy", .data
= &imx6sl_phy_data
, },
141 { .compatible
= "fsl,imx6q-usbphy", .data
= &imx6q_phy_data
, },
142 { .compatible
= "fsl,imx23-usbphy", .data
= &imx23_phy_data
, },
143 { .compatible
= "fsl,vf610-usbphy", .data
= &vf610_phy_data
, },
146 MODULE_DEVICE_TABLE(of
, mxs_phy_dt_ids
);
151 const struct mxs_phy_data
*data
;
152 struct regmap
*regmap_anatop
;
156 static inline bool is_imx6q_phy(struct mxs_phy
*mxs_phy
)
158 return mxs_phy
->data
== &imx6q_phy_data
;
161 static inline bool is_imx6sl_phy(struct mxs_phy
*mxs_phy
)
163 return mxs_phy
->data
== &imx6sl_phy_data
;
167 * PHY needs some 32K cycles to switch from 32K clock to
168 * bus (such as AHB/AXI, etc) clock.
170 static void mxs_phy_clock_switch_delay(void)
172 usleep_range(300, 400);
175 static int mxs_phy_hw_init(struct mxs_phy
*mxs_phy
)
178 void __iomem
*base
= mxs_phy
->phy
.io_priv
;
180 ret
= stmp_reset_block(base
+ HW_USBPHY_CTRL
);
184 /* Power up the PHY */
185 writel(0, base
+ HW_USBPHY_PWD
);
188 * USB PHY Ctrl Setting
189 * - Auto clock/power on
190 * - Enable full/low speed support
192 writel(BM_USBPHY_CTRL_ENAUTOSET_USBCLKS
|
193 BM_USBPHY_CTRL_ENAUTOCLR_USBCLKGATE
|
194 BM_USBPHY_CTRL_ENAUTOCLR_PHY_PWD
|
195 BM_USBPHY_CTRL_ENAUTOCLR_CLKGATE
|
196 BM_USBPHY_CTRL_ENAUTO_PWRON_PLL
|
197 BM_USBPHY_CTRL_ENUTMILEVEL2
|
198 BM_USBPHY_CTRL_ENUTMILEVEL3
,
199 base
+ HW_USBPHY_CTRL_SET
);
201 if (mxs_phy
->data
->flags
& MXS_PHY_NEED_IP_FIX
)
202 writel(BM_USBPHY_IP_FIX
, base
+ HW_USBPHY_IP_SET
);
207 /* Return true if the vbus is there */
208 static bool mxs_phy_get_vbus_status(struct mxs_phy
*mxs_phy
)
210 unsigned int vbus_value
;
212 if (mxs_phy
->port_id
== 0)
213 regmap_read(mxs_phy
->regmap_anatop
,
214 ANADIG_USB1_VBUS_DET_STAT
,
216 else if (mxs_phy
->port_id
== 1)
217 regmap_read(mxs_phy
->regmap_anatop
,
218 ANADIG_USB2_VBUS_DET_STAT
,
221 if (vbus_value
& BM_ANADIG_USB1_VBUS_DET_STAT_VBUS_VALID
)
227 static void __mxs_phy_disconnect_line(struct mxs_phy
*mxs_phy
, bool disconnect
)
229 void __iomem
*base
= mxs_phy
->phy
.io_priv
;
233 writel_relaxed(BM_USBPHY_DEBUG_CLKGATE
,
234 base
+ HW_USBPHY_DEBUG_CLR
);
236 if (mxs_phy
->port_id
== 0) {
237 reg
= disconnect
? ANADIG_USB1_LOOPBACK_SET
238 : ANADIG_USB1_LOOPBACK_CLR
;
239 regmap_write(mxs_phy
->regmap_anatop
, reg
,
240 BM_ANADIG_USB1_LOOPBACK_UTMI_DIG_TST1
|
241 BM_ANADIG_USB1_LOOPBACK_TSTI_TX_EN
);
242 } else if (mxs_phy
->port_id
== 1) {
243 reg
= disconnect
? ANADIG_USB2_LOOPBACK_SET
244 : ANADIG_USB2_LOOPBACK_CLR
;
245 regmap_write(mxs_phy
->regmap_anatop
, reg
,
246 BM_ANADIG_USB2_LOOPBACK_UTMI_DIG_TST1
|
247 BM_ANADIG_USB2_LOOPBACK_TSTI_TX_EN
);
251 writel_relaxed(BM_USBPHY_DEBUG_CLKGATE
,
252 base
+ HW_USBPHY_DEBUG_SET
);
254 /* Delay some time, and let Linestate be SE0 for controller */
256 usleep_range(500, 1000);
259 static void mxs_phy_disconnect_line(struct mxs_phy
*mxs_phy
, bool on
)
261 bool vbus_is_on
= false;
263 /* If the SoCs don't need to disconnect line without vbus, quit */
264 if (!(mxs_phy
->data
->flags
& MXS_PHY_DISCONNECT_LINE_WITHOUT_VBUS
))
267 /* If the SoCs don't have anatop, quit */
268 if (!mxs_phy
->regmap_anatop
)
271 vbus_is_on
= mxs_phy_get_vbus_status(mxs_phy
);
273 if (on
&& !vbus_is_on
)
274 __mxs_phy_disconnect_line(mxs_phy
, true);
276 __mxs_phy_disconnect_line(mxs_phy
, false);
280 static int mxs_phy_init(struct usb_phy
*phy
)
283 struct mxs_phy
*mxs_phy
= to_mxs_phy(phy
);
285 mxs_phy_clock_switch_delay();
286 ret
= clk_prepare_enable(mxs_phy
->clk
);
290 return mxs_phy_hw_init(mxs_phy
);
293 static void mxs_phy_shutdown(struct usb_phy
*phy
)
295 struct mxs_phy
*mxs_phy
= to_mxs_phy(phy
);
297 writel(BM_USBPHY_CTRL_CLKGATE
,
298 phy
->io_priv
+ HW_USBPHY_CTRL_SET
);
300 clk_disable_unprepare(mxs_phy
->clk
);
303 static int mxs_phy_suspend(struct usb_phy
*x
, int suspend
)
306 struct mxs_phy
*mxs_phy
= to_mxs_phy(x
);
309 writel(0xffffffff, x
->io_priv
+ HW_USBPHY_PWD
);
310 writel(BM_USBPHY_CTRL_CLKGATE
,
311 x
->io_priv
+ HW_USBPHY_CTRL_SET
);
312 clk_disable_unprepare(mxs_phy
->clk
);
314 mxs_phy_clock_switch_delay();
315 ret
= clk_prepare_enable(mxs_phy
->clk
);
318 writel(BM_USBPHY_CTRL_CLKGATE
,
319 x
->io_priv
+ HW_USBPHY_CTRL_CLR
);
320 writel(0, x
->io_priv
+ HW_USBPHY_PWD
);
326 static int mxs_phy_set_wakeup(struct usb_phy
*x
, bool enabled
)
328 struct mxs_phy
*mxs_phy
= to_mxs_phy(x
);
329 u32 value
= BM_USBPHY_CTRL_ENVBUSCHG_WKUP
|
330 BM_USBPHY_CTRL_ENDPDMCHG_WKUP
|
331 BM_USBPHY_CTRL_ENIDCHG_WKUP
;
333 mxs_phy_disconnect_line(mxs_phy
, true);
334 writel_relaxed(value
, x
->io_priv
+ HW_USBPHY_CTRL_SET
);
336 writel_relaxed(value
, x
->io_priv
+ HW_USBPHY_CTRL_CLR
);
337 mxs_phy_disconnect_line(mxs_phy
, false);
343 static int mxs_phy_on_connect(struct usb_phy
*phy
,
344 enum usb_device_speed speed
)
346 dev_dbg(phy
->dev
, "%s device has connected\n",
347 (speed
== USB_SPEED_HIGH
) ? "HS" : "FS/LS");
349 if (speed
== USB_SPEED_HIGH
)
350 writel(BM_USBPHY_CTRL_ENHOSTDISCONDETECT
,
351 phy
->io_priv
+ HW_USBPHY_CTRL_SET
);
356 static int mxs_phy_on_disconnect(struct usb_phy
*phy
,
357 enum usb_device_speed speed
)
359 dev_dbg(phy
->dev
, "%s device has disconnected\n",
360 (speed
== USB_SPEED_HIGH
) ? "HS" : "FS/LS");
362 if (speed
== USB_SPEED_HIGH
)
363 writel(BM_USBPHY_CTRL_ENHOSTDISCONDETECT
,
364 phy
->io_priv
+ HW_USBPHY_CTRL_CLR
);
369 static int mxs_phy_probe(struct platform_device
*pdev
)
371 struct resource
*res
;
374 struct mxs_phy
*mxs_phy
;
376 const struct of_device_id
*of_id
=
377 of_match_device(mxs_phy_dt_ids
, &pdev
->dev
);
378 struct device_node
*np
= pdev
->dev
.of_node
;
380 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
381 base
= devm_ioremap_resource(&pdev
->dev
, res
);
383 return PTR_ERR(base
);
385 clk
= devm_clk_get(&pdev
->dev
, NULL
);
388 "can't get the clock, err=%ld", PTR_ERR(clk
));
392 mxs_phy
= devm_kzalloc(&pdev
->dev
, sizeof(*mxs_phy
), GFP_KERNEL
);
396 /* Some SoCs don't have anatop registers */
397 if (of_get_property(np
, "fsl,anatop", NULL
)) {
398 mxs_phy
->regmap_anatop
= syscon_regmap_lookup_by_phandle
400 if (IS_ERR(mxs_phy
->regmap_anatop
)) {
402 "failed to find regmap for anatop\n");
403 return PTR_ERR(mxs_phy
->regmap_anatop
);
407 ret
= of_alias_get_id(np
, "usbphy");
409 dev_dbg(&pdev
->dev
, "failed to get alias id, errno %d\n", ret
);
410 mxs_phy
->port_id
= ret
;
412 mxs_phy
->phy
.io_priv
= base
;
413 mxs_phy
->phy
.dev
= &pdev
->dev
;
414 mxs_phy
->phy
.label
= DRIVER_NAME
;
415 mxs_phy
->phy
.init
= mxs_phy_init
;
416 mxs_phy
->phy
.shutdown
= mxs_phy_shutdown
;
417 mxs_phy
->phy
.set_suspend
= mxs_phy_suspend
;
418 mxs_phy
->phy
.notify_connect
= mxs_phy_on_connect
;
419 mxs_phy
->phy
.notify_disconnect
= mxs_phy_on_disconnect
;
420 mxs_phy
->phy
.type
= USB_PHY_TYPE_USB2
;
421 mxs_phy
->phy
.set_wakeup
= mxs_phy_set_wakeup
;
424 mxs_phy
->data
= of_id
->data
;
426 platform_set_drvdata(pdev
, mxs_phy
);
428 device_set_wakeup_capable(&pdev
->dev
, true);
430 ret
= usb_add_phy_dev(&mxs_phy
->phy
);
437 static int mxs_phy_remove(struct platform_device
*pdev
)
439 struct mxs_phy
*mxs_phy
= platform_get_drvdata(pdev
);
441 usb_remove_phy(&mxs_phy
->phy
);
446 #ifdef CONFIG_PM_SLEEP
447 static void mxs_phy_enable_ldo_in_suspend(struct mxs_phy
*mxs_phy
, bool on
)
449 unsigned int reg
= on
? ANADIG_ANA_MISC0_SET
: ANADIG_ANA_MISC0_CLR
;
451 /* If the SoCs don't have anatop, quit */
452 if (!mxs_phy
->regmap_anatop
)
455 if (is_imx6q_phy(mxs_phy
))
456 regmap_write(mxs_phy
->regmap_anatop
, reg
,
457 BM_ANADIG_ANA_MISC0_STOP_MODE_CONFIG
);
458 else if (is_imx6sl_phy(mxs_phy
))
459 regmap_write(mxs_phy
->regmap_anatop
,
460 reg
, BM_ANADIG_ANA_MISC0_STOP_MODE_CONFIG_SL
);
463 static int mxs_phy_system_suspend(struct device
*dev
)
465 struct mxs_phy
*mxs_phy
= dev_get_drvdata(dev
);
467 if (device_may_wakeup(dev
))
468 mxs_phy_enable_ldo_in_suspend(mxs_phy
, true);
473 static int mxs_phy_system_resume(struct device
*dev
)
475 struct mxs_phy
*mxs_phy
= dev_get_drvdata(dev
);
477 if (device_may_wakeup(dev
))
478 mxs_phy_enable_ldo_in_suspend(mxs_phy
, false);
482 #endif /* CONFIG_PM_SLEEP */
484 static SIMPLE_DEV_PM_OPS(mxs_phy_pm
, mxs_phy_system_suspend
,
485 mxs_phy_system_resume
);
487 static struct platform_driver mxs_phy_driver
= {
488 .probe
= mxs_phy_probe
,
489 .remove
= mxs_phy_remove
,
492 .of_match_table
= mxs_phy_dt_ids
,
497 static int __init
mxs_phy_module_init(void)
499 return platform_driver_register(&mxs_phy_driver
);
501 postcore_initcall(mxs_phy_module_init
);
503 static void __exit
mxs_phy_module_exit(void)
505 platform_driver_unregister(&mxs_phy_driver
);
507 module_exit(mxs_phy_module_exit
);
509 MODULE_ALIAS("platform:mxs-usb-phy");
510 MODULE_AUTHOR("Marek Vasut <marex@denx.de>");
511 MODULE_AUTHOR("Richard Zhao <richard.zhao@freescale.com>");
512 MODULE_DESCRIPTION("Freescale MXS USB PHY driver");
513 MODULE_LICENSE("GPL");