blob: 2411e050351f568d9b1d6e2a3e0e3439a5c93d17 [file] [log] [blame]
Richard Zhaob3d99682012-07-07 22:56:47 +08001/*
Peter Chen24007802014-02-24 10:20:54 +08002 * Copyright 2012-2013 Freescale Semiconductor, Inc.
Richard Zhaob3d99682012-07-07 22:56:47 +08003 * Copyright (C) 2012 Marek Vasut <marex@denx.de>
4 * on behalf of DENX Software Engineering GmbH
5 *
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:
9 *
10 * http://www.opensource.org/licenses/gpl-license.html
11 * http://www.gnu.org/copyleft/gpl.html
12 */
13
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>
22#include <linux/io.h>
Peter Chen24007802014-02-24 10:20:54 +080023#include <linux/of_device.h>
Peter Chen0d896532014-02-24 10:20:57 +080024#include <linux/regmap.h>
25#include <linux/mfd/syscon.h>
Richard Zhaob3d99682012-07-07 22:56:47 +080026
27#define DRIVER_NAME "mxs_phy"
28
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
33
34#define BM_USBPHY_CTRL_SFTRST BIT(31)
35#define BM_USBPHY_CTRL_CLKGATE BIT(30)
Peter Chen13644142014-02-24 10:20:55 +080036#define BM_USBPHY_CTRL_ENAUTOSET_USBCLKS BIT(26)
37#define BM_USBPHY_CTRL_ENAUTOCLR_USBCLKGATE BIT(25)
38#define BM_USBPHY_CTRL_ENAUTOCLR_PHY_PWD BIT(20)
39#define BM_USBPHY_CTRL_ENAUTOCLR_CLKGATE BIT(19)
40#define BM_USBPHY_CTRL_ENAUTO_PWRON_PLL BIT(18)
Richard Zhaob3d99682012-07-07 22:56:47 +080041#define BM_USBPHY_CTRL_ENUTMILEVEL3 BIT(15)
42#define BM_USBPHY_CTRL_ENUTMILEVEL2 BIT(14)
43#define BM_USBPHY_CTRL_ENHOSTDISCONDETECT BIT(1)
44
Peter Chen24007802014-02-24 10:20:54 +080045#define to_mxs_phy(p) container_of((p), struct mxs_phy, phy)
46
47/* Do disconnection between PHY and controller without vbus */
48#define MXS_PHY_DISCONNECT_LINE_WITHOUT_VBUS BIT(0)
49
50/*
51 * The PHY will be in messy if there is a wakeup after putting
52 * bus to suspend (set portsc.suspendM) but before setting PHY to low
53 * power mode (set portsc.phcd).
54 */
55#define MXS_PHY_ABNORMAL_IN_SUSPEND BIT(1)
56
57/*
58 * The SOF sends too fast after resuming, it will cause disconnection
59 * between host and high speed device.
60 */
61#define MXS_PHY_SENDING_SOF_TOO_FAST BIT(2)
62
63struct mxs_phy_data {
64 unsigned int flags;
65};
66
67static const struct mxs_phy_data imx23_phy_data = {
68 .flags = MXS_PHY_ABNORMAL_IN_SUSPEND | MXS_PHY_SENDING_SOF_TOO_FAST,
69};
70
71static const struct mxs_phy_data imx6q_phy_data = {
72 .flags = MXS_PHY_SENDING_SOF_TOO_FAST |
73 MXS_PHY_DISCONNECT_LINE_WITHOUT_VBUS,
74};
75
76static const struct mxs_phy_data imx6sl_phy_data = {
77 .flags = MXS_PHY_DISCONNECT_LINE_WITHOUT_VBUS,
78};
79
80static const struct of_device_id mxs_phy_dt_ids[] = {
81 { .compatible = "fsl,imx6sl-usbphy", .data = &imx6sl_phy_data, },
82 { .compatible = "fsl,imx6q-usbphy", .data = &imx6q_phy_data, },
83 { .compatible = "fsl,imx23-usbphy", .data = &imx23_phy_data, },
84 { /* sentinel */ }
85};
86MODULE_DEVICE_TABLE(of, mxs_phy_dt_ids);
87
Richard Zhaob3d99682012-07-07 22:56:47 +080088struct mxs_phy {
89 struct usb_phy phy;
90 struct clk *clk;
Peter Chen24007802014-02-24 10:20:54 +080091 const struct mxs_phy_data *data;
Peter Chen0d896532014-02-24 10:20:57 +080092 struct regmap *regmap_anatop;
Richard Zhaob3d99682012-07-07 22:56:47 +080093};
94
Fabio Estevam51e563e2013-07-03 16:34:13 -030095static int mxs_phy_hw_init(struct mxs_phy *mxs_phy)
Richard Zhaob3d99682012-07-07 22:56:47 +080096{
Fabio Estevam51e563e2013-07-03 16:34:13 -030097 int ret;
Richard Zhaob3d99682012-07-07 22:56:47 +080098 void __iomem *base = mxs_phy->phy.io_priv;
99
Fabio Estevam51e563e2013-07-03 16:34:13 -0300100 ret = stmp_reset_block(base + HW_USBPHY_CTRL);
101 if (ret)
102 return ret;
Richard Zhaob3d99682012-07-07 22:56:47 +0800103
104 /* Power up the PHY */
Marc Kleine-Buddeb5a726b2013-02-28 11:52:30 +0100105 writel(0, base + HW_USBPHY_PWD);
Richard Zhaob3d99682012-07-07 22:56:47 +0800106
Peter Chen13644142014-02-24 10:20:55 +0800107 /*
108 * USB PHY Ctrl Setting
109 * - Auto clock/power on
110 * - Enable full/low speed support
111 */
112 writel(BM_USBPHY_CTRL_ENAUTOSET_USBCLKS |
113 BM_USBPHY_CTRL_ENAUTOCLR_USBCLKGATE |
114 BM_USBPHY_CTRL_ENAUTOCLR_PHY_PWD |
115 BM_USBPHY_CTRL_ENAUTOCLR_CLKGATE |
116 BM_USBPHY_CTRL_ENAUTO_PWRON_PLL |
117 BM_USBPHY_CTRL_ENUTMILEVEL2 |
118 BM_USBPHY_CTRL_ENUTMILEVEL3,
Marc Kleine-Buddeb5a726b2013-02-28 11:52:30 +0100119 base + HW_USBPHY_CTRL_SET);
Fabio Estevam51e563e2013-07-03 16:34:13 -0300120
121 return 0;
Richard Zhaob3d99682012-07-07 22:56:47 +0800122}
123
124static int mxs_phy_init(struct usb_phy *phy)
125{
Fabio Estevam67c21fc2013-12-02 01:02:34 -0200126 int ret;
Richard Zhaob3d99682012-07-07 22:56:47 +0800127 struct mxs_phy *mxs_phy = to_mxs_phy(phy);
128
Fabio Estevam67c21fc2013-12-02 01:02:34 -0200129 ret = clk_prepare_enable(mxs_phy->clk);
130 if (ret)
131 return ret;
132
Fabio Estevam51e563e2013-07-03 16:34:13 -0300133 return mxs_phy_hw_init(mxs_phy);
Richard Zhaob3d99682012-07-07 22:56:47 +0800134}
135
136static void mxs_phy_shutdown(struct usb_phy *phy)
137{
138 struct mxs_phy *mxs_phy = to_mxs_phy(phy);
139
Marc Kleine-Buddeb5a726b2013-02-28 11:52:30 +0100140 writel(BM_USBPHY_CTRL_CLKGATE,
141 phy->io_priv + HW_USBPHY_CTRL_SET);
Richard Zhaob3d99682012-07-07 22:56:47 +0800142
143 clk_disable_unprepare(mxs_phy->clk);
144}
145
Peter Chen04a62212013-01-10 16:35:53 +0800146static int mxs_phy_suspend(struct usb_phy *x, int suspend)
147{
Fabio Estevam67c21fc2013-12-02 01:02:34 -0200148 int ret;
Peter Chen04a62212013-01-10 16:35:53 +0800149 struct mxs_phy *mxs_phy = to_mxs_phy(x);
150
151 if (suspend) {
Marc Kleine-Buddeb5a726b2013-02-28 11:52:30 +0100152 writel(0xffffffff, x->io_priv + HW_USBPHY_PWD);
153 writel(BM_USBPHY_CTRL_CLKGATE,
154 x->io_priv + HW_USBPHY_CTRL_SET);
Peter Chen04a62212013-01-10 16:35:53 +0800155 clk_disable_unprepare(mxs_phy->clk);
156 } else {
Fabio Estevam67c21fc2013-12-02 01:02:34 -0200157 ret = clk_prepare_enable(mxs_phy->clk);
158 if (ret)
159 return ret;
Marc Kleine-Buddeb5a726b2013-02-28 11:52:30 +0100160 writel(BM_USBPHY_CTRL_CLKGATE,
161 x->io_priv + HW_USBPHY_CTRL_CLR);
162 writel(0, x->io_priv + HW_USBPHY_PWD);
Peter Chen04a62212013-01-10 16:35:53 +0800163 }
164
165 return 0;
166}
167
Peter Chenac965112012-11-09 09:44:44 +0800168static int mxs_phy_on_connect(struct usb_phy *phy,
169 enum usb_device_speed speed)
Richard Zhaob3d99682012-07-07 22:56:47 +0800170{
Peter Chenac965112012-11-09 09:44:44 +0800171 dev_dbg(phy->dev, "%s speed device has connected\n",
172 (speed == USB_SPEED_HIGH) ? "high" : "non-high");
Richard Zhaob3d99682012-07-07 22:56:47 +0800173
Peter Chenac965112012-11-09 09:44:44 +0800174 if (speed == USB_SPEED_HIGH)
Marc Kleine-Buddeb5a726b2013-02-28 11:52:30 +0100175 writel(BM_USBPHY_CTRL_ENHOSTDISCONDETECT,
176 phy->io_priv + HW_USBPHY_CTRL_SET);
Richard Zhaob3d99682012-07-07 22:56:47 +0800177
178 return 0;
179}
180
Peter Chenac965112012-11-09 09:44:44 +0800181static int mxs_phy_on_disconnect(struct usb_phy *phy,
182 enum usb_device_speed speed)
Richard Zhaob3d99682012-07-07 22:56:47 +0800183{
Peter Chenac965112012-11-09 09:44:44 +0800184 dev_dbg(phy->dev, "%s speed device has disconnected\n",
185 (speed == USB_SPEED_HIGH) ? "high" : "non-high");
Richard Zhaob3d99682012-07-07 22:56:47 +0800186
Peter Chenac965112012-11-09 09:44:44 +0800187 if (speed == USB_SPEED_HIGH)
Marc Kleine-Buddeb5a726b2013-02-28 11:52:30 +0100188 writel(BM_USBPHY_CTRL_ENHOSTDISCONDETECT,
189 phy->io_priv + HW_USBPHY_CTRL_CLR);
Richard Zhaob3d99682012-07-07 22:56:47 +0800190
191 return 0;
192}
193
194static int mxs_phy_probe(struct platform_device *pdev)
195{
196 struct resource *res;
197 void __iomem *base;
198 struct clk *clk;
199 struct mxs_phy *mxs_phy;
Sascha Hauer25df6392013-02-27 15:16:30 +0100200 int ret;
Peter Chen24007802014-02-24 10:20:54 +0800201 const struct of_device_id *of_id =
202 of_match_device(mxs_phy_dt_ids, &pdev->dev);
Peter Chen0d896532014-02-24 10:20:57 +0800203 struct device_node *np = pdev->dev.of_node;
Richard Zhaob3d99682012-07-07 22:56:47 +0800204
205 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Thierry Reding148e1132013-01-21 11:09:22 +0100206 base = devm_ioremap_resource(&pdev->dev, res);
207 if (IS_ERR(base))
208 return PTR_ERR(base);
Richard Zhaob3d99682012-07-07 22:56:47 +0800209
210 clk = devm_clk_get(&pdev->dev, NULL);
211 if (IS_ERR(clk)) {
212 dev_err(&pdev->dev,
213 "can't get the clock, err=%ld", PTR_ERR(clk));
214 return PTR_ERR(clk);
215 }
216
217 mxs_phy = devm_kzalloc(&pdev->dev, sizeof(*mxs_phy), GFP_KERNEL);
218 if (!mxs_phy) {
219 dev_err(&pdev->dev, "Failed to allocate USB PHY structure!\n");
220 return -ENOMEM;
221 }
222
Peter Chen0d896532014-02-24 10:20:57 +0800223 /* Some SoCs don't have anatop registers */
224 if (of_get_property(np, "fsl,anatop", NULL)) {
225 mxs_phy->regmap_anatop = syscon_regmap_lookup_by_phandle
226 (np, "fsl,anatop");
227 if (IS_ERR(mxs_phy->regmap_anatop)) {
228 dev_dbg(&pdev->dev,
229 "failed to find regmap for anatop\n");
230 return PTR_ERR(mxs_phy->regmap_anatop);
231 }
232 }
233
Richard Zhaob3d99682012-07-07 22:56:47 +0800234 mxs_phy->phy.io_priv = base;
235 mxs_phy->phy.dev = &pdev->dev;
236 mxs_phy->phy.label = DRIVER_NAME;
237 mxs_phy->phy.init = mxs_phy_init;
238 mxs_phy->phy.shutdown = mxs_phy_shutdown;
Peter Chen04a62212013-01-10 16:35:53 +0800239 mxs_phy->phy.set_suspend = mxs_phy_suspend;
Richard Zhaob3d99682012-07-07 22:56:47 +0800240 mxs_phy->phy.notify_connect = mxs_phy_on_connect;
241 mxs_phy->phy.notify_disconnect = mxs_phy_on_disconnect;
Michael Grzeschik4e0aa632013-05-15 15:03:14 +0200242 mxs_phy->phy.type = USB_PHY_TYPE_USB2;
Richard Zhaob3d99682012-07-07 22:56:47 +0800243
Richard Zhaob3d99682012-07-07 22:56:47 +0800244 mxs_phy->clk = clk;
Peter Chen24007802014-02-24 10:20:54 +0800245 mxs_phy->data = of_id->data;
Richard Zhaob3d99682012-07-07 22:56:47 +0800246
Jisheng Zhang97a27f72013-11-07 10:55:49 +0800247 platform_set_drvdata(pdev, mxs_phy);
Richard Zhaob3d99682012-07-07 22:56:47 +0800248
Sascha Hauer25df6392013-02-27 15:16:30 +0100249 ret = usb_add_phy_dev(&mxs_phy->phy);
250 if (ret)
251 return ret;
252
Richard Zhaob3d99682012-07-07 22:56:47 +0800253 return 0;
254}
255
Bill Pembertonfb4e98a2012-11-19 13:26:20 -0500256static int mxs_phy_remove(struct platform_device *pdev)
Richard Zhaob3d99682012-07-07 22:56:47 +0800257{
Sascha Hauer25df6392013-02-27 15:16:30 +0100258 struct mxs_phy *mxs_phy = platform_get_drvdata(pdev);
259
260 usb_remove_phy(&mxs_phy->phy);
261
Richard Zhaob3d99682012-07-07 22:56:47 +0800262 return 0;
263}
264
Richard Zhaob3d99682012-07-07 22:56:47 +0800265static struct platform_driver mxs_phy_driver = {
266 .probe = mxs_phy_probe,
Bill Pemberton76904172012-11-19 13:21:08 -0500267 .remove = mxs_phy_remove,
Richard Zhaob3d99682012-07-07 22:56:47 +0800268 .driver = {
269 .name = DRIVER_NAME,
270 .owner = THIS_MODULE,
271 .of_match_table = mxs_phy_dt_ids,
272 },
273};
274
275static int __init mxs_phy_module_init(void)
276{
277 return platform_driver_register(&mxs_phy_driver);
278}
279postcore_initcall(mxs_phy_module_init);
280
281static void __exit mxs_phy_module_exit(void)
282{
283 platform_driver_unregister(&mxs_phy_driver);
284}
285module_exit(mxs_phy_module_exit);
286
287MODULE_ALIAS("platform:mxs-usb-phy");
288MODULE_AUTHOR("Marek Vasut <marex@denx.de>");
289MODULE_AUTHOR("Richard Zhao <richard.zhao@freescale.com>");
290MODULE_DESCRIPTION("Freescale MXS USB PHY driver");
291MODULE_LICENSE("GPL");