blob: 797c45b9ddab1b82669d4480b9fd094ee2b568df [file] [log] [blame]
Richard Zhaob3d99682012-07-07 22:56:47 +08001/*
2 * Copyright 2012 Freescale Semiconductor, Inc.
3 * 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>
23
24#define DRIVER_NAME "mxs_phy"
25
26#define HW_USBPHY_PWD 0x00
27#define HW_USBPHY_CTRL 0x30
28#define HW_USBPHY_CTRL_SET 0x34
29#define HW_USBPHY_CTRL_CLR 0x38
30
31#define BM_USBPHY_CTRL_SFTRST BIT(31)
32#define BM_USBPHY_CTRL_CLKGATE BIT(30)
33#define BM_USBPHY_CTRL_ENUTMILEVEL3 BIT(15)
34#define BM_USBPHY_CTRL_ENUTMILEVEL2 BIT(14)
35#define BM_USBPHY_CTRL_ENHOSTDISCONDETECT BIT(1)
36
37struct mxs_phy {
38 struct usb_phy phy;
39 struct clk *clk;
40};
41
42#define to_mxs_phy(p) container_of((p), struct mxs_phy, phy)
43
Fabio Estevam51e563e2013-07-03 16:34:13 -030044static int mxs_phy_hw_init(struct mxs_phy *mxs_phy)
Richard Zhaob3d99682012-07-07 22:56:47 +080045{
Fabio Estevam51e563e2013-07-03 16:34:13 -030046 int ret;
Richard Zhaob3d99682012-07-07 22:56:47 +080047 void __iomem *base = mxs_phy->phy.io_priv;
48
Fabio Estevam51e563e2013-07-03 16:34:13 -030049 ret = stmp_reset_block(base + HW_USBPHY_CTRL);
50 if (ret)
51 return ret;
Richard Zhaob3d99682012-07-07 22:56:47 +080052
53 /* Power up the PHY */
Marc Kleine-Buddeb5a726b2013-02-28 11:52:30 +010054 writel(0, base + HW_USBPHY_PWD);
Richard Zhaob3d99682012-07-07 22:56:47 +080055
56 /* enable FS/LS device */
Marc Kleine-Buddeb5a726b2013-02-28 11:52:30 +010057 writel(BM_USBPHY_CTRL_ENUTMILEVEL2 |
58 BM_USBPHY_CTRL_ENUTMILEVEL3,
59 base + HW_USBPHY_CTRL_SET);
Fabio Estevam51e563e2013-07-03 16:34:13 -030060
61 return 0;
Richard Zhaob3d99682012-07-07 22:56:47 +080062}
63
64static int mxs_phy_init(struct usb_phy *phy)
65{
Fabio Estevam67c21fc2013-12-02 01:02:34 -020066 int ret;
Richard Zhaob3d99682012-07-07 22:56:47 +080067 struct mxs_phy *mxs_phy = to_mxs_phy(phy);
68
Fabio Estevam67c21fc2013-12-02 01:02:34 -020069 ret = clk_prepare_enable(mxs_phy->clk);
70 if (ret)
71 return ret;
72
Fabio Estevam51e563e2013-07-03 16:34:13 -030073 return mxs_phy_hw_init(mxs_phy);
Richard Zhaob3d99682012-07-07 22:56:47 +080074}
75
76static void mxs_phy_shutdown(struct usb_phy *phy)
77{
78 struct mxs_phy *mxs_phy = to_mxs_phy(phy);
79
Marc Kleine-Buddeb5a726b2013-02-28 11:52:30 +010080 writel(BM_USBPHY_CTRL_CLKGATE,
81 phy->io_priv + HW_USBPHY_CTRL_SET);
Richard Zhaob3d99682012-07-07 22:56:47 +080082
83 clk_disable_unprepare(mxs_phy->clk);
84}
85
Peter Chen04a62212013-01-10 16:35:53 +080086static int mxs_phy_suspend(struct usb_phy *x, int suspend)
87{
Fabio Estevam67c21fc2013-12-02 01:02:34 -020088 int ret;
Peter Chen04a62212013-01-10 16:35:53 +080089 struct mxs_phy *mxs_phy = to_mxs_phy(x);
90
91 if (suspend) {
Marc Kleine-Buddeb5a726b2013-02-28 11:52:30 +010092 writel(0xffffffff, x->io_priv + HW_USBPHY_PWD);
93 writel(BM_USBPHY_CTRL_CLKGATE,
94 x->io_priv + HW_USBPHY_CTRL_SET);
Peter Chen04a62212013-01-10 16:35:53 +080095 clk_disable_unprepare(mxs_phy->clk);
96 } else {
Fabio Estevam67c21fc2013-12-02 01:02:34 -020097 ret = clk_prepare_enable(mxs_phy->clk);
98 if (ret)
99 return ret;
Marc Kleine-Buddeb5a726b2013-02-28 11:52:30 +0100100 writel(BM_USBPHY_CTRL_CLKGATE,
101 x->io_priv + HW_USBPHY_CTRL_CLR);
102 writel(0, x->io_priv + HW_USBPHY_PWD);
Peter Chen04a62212013-01-10 16:35:53 +0800103 }
104
105 return 0;
106}
107
Peter Chenac965112012-11-09 09:44:44 +0800108static int mxs_phy_on_connect(struct usb_phy *phy,
109 enum usb_device_speed speed)
Richard Zhaob3d99682012-07-07 22:56:47 +0800110{
Peter Chenac965112012-11-09 09:44:44 +0800111 dev_dbg(phy->dev, "%s speed device has connected\n",
112 (speed == USB_SPEED_HIGH) ? "high" : "non-high");
Richard Zhaob3d99682012-07-07 22:56:47 +0800113
Peter Chenac965112012-11-09 09:44:44 +0800114 if (speed == USB_SPEED_HIGH)
Marc Kleine-Buddeb5a726b2013-02-28 11:52:30 +0100115 writel(BM_USBPHY_CTRL_ENHOSTDISCONDETECT,
116 phy->io_priv + HW_USBPHY_CTRL_SET);
Richard Zhaob3d99682012-07-07 22:56:47 +0800117
118 return 0;
119}
120
Peter Chenac965112012-11-09 09:44:44 +0800121static int mxs_phy_on_disconnect(struct usb_phy *phy,
122 enum usb_device_speed speed)
Richard Zhaob3d99682012-07-07 22:56:47 +0800123{
Peter Chenac965112012-11-09 09:44:44 +0800124 dev_dbg(phy->dev, "%s speed device has disconnected\n",
125 (speed == USB_SPEED_HIGH) ? "high" : "non-high");
Richard Zhaob3d99682012-07-07 22:56:47 +0800126
Peter Chenac965112012-11-09 09:44:44 +0800127 if (speed == USB_SPEED_HIGH)
Marc Kleine-Buddeb5a726b2013-02-28 11:52:30 +0100128 writel(BM_USBPHY_CTRL_ENHOSTDISCONDETECT,
129 phy->io_priv + HW_USBPHY_CTRL_CLR);
Richard Zhaob3d99682012-07-07 22:56:47 +0800130
131 return 0;
132}
133
134static int mxs_phy_probe(struct platform_device *pdev)
135{
136 struct resource *res;
137 void __iomem *base;
138 struct clk *clk;
139 struct mxs_phy *mxs_phy;
Sascha Hauer25df6392013-02-27 15:16:30 +0100140 int ret;
Richard Zhaob3d99682012-07-07 22:56:47 +0800141
142 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Thierry Reding148e1132013-01-21 11:09:22 +0100143 base = devm_ioremap_resource(&pdev->dev, res);
144 if (IS_ERR(base))
145 return PTR_ERR(base);
Richard Zhaob3d99682012-07-07 22:56:47 +0800146
147 clk = devm_clk_get(&pdev->dev, NULL);
148 if (IS_ERR(clk)) {
149 dev_err(&pdev->dev,
150 "can't get the clock, err=%ld", PTR_ERR(clk));
151 return PTR_ERR(clk);
152 }
153
154 mxs_phy = devm_kzalloc(&pdev->dev, sizeof(*mxs_phy), GFP_KERNEL);
155 if (!mxs_phy) {
156 dev_err(&pdev->dev, "Failed to allocate USB PHY structure!\n");
157 return -ENOMEM;
158 }
159
160 mxs_phy->phy.io_priv = base;
161 mxs_phy->phy.dev = &pdev->dev;
162 mxs_phy->phy.label = DRIVER_NAME;
163 mxs_phy->phy.init = mxs_phy_init;
164 mxs_phy->phy.shutdown = mxs_phy_shutdown;
Peter Chen04a62212013-01-10 16:35:53 +0800165 mxs_phy->phy.set_suspend = mxs_phy_suspend;
Richard Zhaob3d99682012-07-07 22:56:47 +0800166 mxs_phy->phy.notify_connect = mxs_phy_on_connect;
167 mxs_phy->phy.notify_disconnect = mxs_phy_on_disconnect;
Michael Grzeschik4e0aa632013-05-15 15:03:14 +0200168 mxs_phy->phy.type = USB_PHY_TYPE_USB2;
Richard Zhaob3d99682012-07-07 22:56:47 +0800169
170 ATOMIC_INIT_NOTIFIER_HEAD(&mxs_phy->phy.notifier);
171
172 mxs_phy->clk = clk;
173
174 platform_set_drvdata(pdev, &mxs_phy->phy);
175
Sascha Hauer25df6392013-02-27 15:16:30 +0100176 ret = usb_add_phy_dev(&mxs_phy->phy);
177 if (ret)
178 return ret;
179
Richard Zhaob3d99682012-07-07 22:56:47 +0800180 return 0;
181}
182
Bill Pembertonfb4e98a2012-11-19 13:26:20 -0500183static int mxs_phy_remove(struct platform_device *pdev)
Richard Zhaob3d99682012-07-07 22:56:47 +0800184{
Sascha Hauer25df6392013-02-27 15:16:30 +0100185 struct mxs_phy *mxs_phy = platform_get_drvdata(pdev);
186
187 usb_remove_phy(&mxs_phy->phy);
188
Richard Zhaob3d99682012-07-07 22:56:47 +0800189 return 0;
190}
191
192static const struct of_device_id mxs_phy_dt_ids[] = {
193 { .compatible = "fsl,imx23-usbphy", },
194 { /* sentinel */ }
195};
196MODULE_DEVICE_TABLE(of, mxs_phy_dt_ids);
197
198static struct platform_driver mxs_phy_driver = {
199 .probe = mxs_phy_probe,
Bill Pemberton76904172012-11-19 13:21:08 -0500200 .remove = mxs_phy_remove,
Richard Zhaob3d99682012-07-07 22:56:47 +0800201 .driver = {
202 .name = DRIVER_NAME,
203 .owner = THIS_MODULE,
204 .of_match_table = mxs_phy_dt_ids,
205 },
206};
207
208static int __init mxs_phy_module_init(void)
209{
210 return platform_driver_register(&mxs_phy_driver);
211}
212postcore_initcall(mxs_phy_module_init);
213
214static void __exit mxs_phy_module_exit(void)
215{
216 platform_driver_unregister(&mxs_phy_driver);
217}
218module_exit(mxs_phy_module_exit);
219
220MODULE_ALIAS("platform:mxs-usb-phy");
221MODULE_AUTHOR("Marek Vasut <marex@denx.de>");
222MODULE_AUTHOR("Richard Zhao <richard.zhao@freescale.com>");
223MODULE_DESCRIPTION("Freescale MXS USB PHY driver");
224MODULE_LICENSE("GPL");