blob: 028ff4d07dc74a3346df56c6a677e4e8d95bbf9e [file] [log] [blame]
Mian Yousaf Kaukab4bc36fd2010-12-09 13:05:01 +01001/*
2 * Copyright (C) 2010 ST-Ericsson AB
3 * Mian Yousaf Kaukab <mian.yousaf.kaukab@stericsson.com>
4 *
5 * Based on omap2430.c
6 *
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, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20 */
21
22#include <linux/module.h>
23#include <linux/kernel.h>
24#include <linux/init.h>
25#include <linux/clk.h>
Kishon Vijay Abraham Ided017e2012-06-26 17:40:32 +053026#include <linux/err.h>
Mian Yousaf Kaukab4bc36fd2010-12-09 13:05:01 +010027#include <linux/io.h>
28#include <linux/platform_device.h>
Fabio Baltieriaf6882b2013-03-08 10:27:09 +080029#include <linux/usb/musb-ux500.h>
Mian Yousaf Kaukab4bc36fd2010-12-09 13:05:01 +010030
31#include "musb_core.h"
32
33struct ux500_glue {
34 struct device *dev;
35 struct platform_device *musb;
36 struct clk *clk;
37};
38#define glue_to_musb(g) platform_get_drvdata(g->musb)
39
Fabio Baltieri996a9d22013-03-08 10:27:06 +080040static void ux500_musb_set_vbus(struct musb *musb, int is_on)
41{
42 u8 devctl;
43 unsigned long timeout = jiffies + msecs_to_jiffies(1000);
44 /* HDRC controls CPEN, but beware current surges during device
45 * connect. They can trigger transient overcurrent conditions
46 * that must be ignored.
47 */
48
49 devctl = musb_readb(musb->mregs, MUSB_DEVCTL);
50
51 if (is_on) {
52 if (musb->xceiv->state == OTG_STATE_A_IDLE) {
53 /* start the session */
54 devctl |= MUSB_DEVCTL_SESSION;
55 musb_writeb(musb->mregs, MUSB_DEVCTL, devctl);
56 /*
57 * Wait for the musb to set as A device to enable the
58 * VBUS
59 */
60 while (musb_readb(musb->mregs, MUSB_DEVCTL) & 0x80) {
61
62 if (time_after(jiffies, timeout)) {
63 dev_err(musb->controller,
64 "configured as A device timeout");
65 break;
66 }
67 }
68
69 } else {
70 musb->is_active = 1;
71 musb->xceiv->otg->default_a = 1;
72 musb->xceiv->state = OTG_STATE_A_WAIT_VRISE;
73 devctl |= MUSB_DEVCTL_SESSION;
74 MUSB_HST_MODE(musb);
75 }
76 } else {
77 musb->is_active = 0;
78
79 /* NOTE: we're skipping A_WAIT_VFALL -> A_IDLE and jumping
80 * right to B_IDLE...
81 */
82 musb->xceiv->otg->default_a = 0;
83 devctl &= ~MUSB_DEVCTL_SESSION;
84 MUSB_DEV_MODE(musb);
85 }
86 musb_writeb(musb->mregs, MUSB_DEVCTL, devctl);
87
88 /*
89 * Devctl values will be updated after vbus goes below
90 * session_valid. The time taken depends on the capacitance
91 * on VBUS line. The max discharge time can be upto 1 sec
92 * as per the spec. Typically on our platform, it is 200ms
93 */
94 if (!is_on)
95 mdelay(200);
96
97 dev_dbg(musb->controller, "VBUS %s, devctl %02x\n",
98 usb_otg_state_string(musb->xceiv->state),
99 musb_readb(musb->mregs, MUSB_DEVCTL));
100}
101
Fabio Baltieri01355222013-03-08 10:27:07 +0800102static int musb_otg_notifications(struct notifier_block *nb,
103 unsigned long event, void *unused)
104{
105 struct musb *musb = container_of(nb, struct musb, nb);
106
107 dev_dbg(musb->controller, "musb_otg_notifications %ld %s\n",
108 event, usb_otg_state_string(musb->xceiv->state));
109
110 switch (event) {
Fabio Baltieriaf6882b2013-03-08 10:27:09 +0800111 case UX500_MUSB_ID:
Fabio Baltieri01355222013-03-08 10:27:07 +0800112 dev_dbg(musb->controller, "ID GND\n");
113 ux500_musb_set_vbus(musb, 1);
114 break;
Fabio Baltieriaf6882b2013-03-08 10:27:09 +0800115 case UX500_MUSB_VBUS:
Fabio Baltieri01355222013-03-08 10:27:07 +0800116 dev_dbg(musb->controller, "VBUS Connect\n");
Fabio Baltieri01355222013-03-08 10:27:07 +0800117 break;
Fabio Baltieriaf6882b2013-03-08 10:27:09 +0800118 case UX500_MUSB_NONE:
Fabio Baltieri01355222013-03-08 10:27:07 +0800119 dev_dbg(musb->controller, "VBUS Disconnect\n");
120 if (is_host_active(musb))
121 ux500_musb_set_vbus(musb, 0);
122 else
123 musb->xceiv->state = OTG_STATE_B_IDLE;
124 break;
125 default:
126 dev_dbg(musb->controller, "ID float\n");
127 return NOTIFY_DONE;
128 }
129 return NOTIFY_OK;
130}
131
Philippe De Swertbaef6532012-11-06 15:32:13 +0200132static irqreturn_t ux500_musb_interrupt(int irq, void *__hci)
133{
134 unsigned long flags;
135 irqreturn_t retval = IRQ_NONE;
136 struct musb *musb = __hci;
137
138 spin_lock_irqsave(&musb->lock, flags);
139
140 musb->int_usb = musb_readb(musb->mregs, MUSB_INTRUSB);
141 musb->int_tx = musb_readw(musb->mregs, MUSB_INTRTX);
142 musb->int_rx = musb_readw(musb->mregs, MUSB_INTRRX);
143
144 if (musb->int_usb || musb->int_tx || musb->int_rx)
145 retval = musb_interrupt(musb);
146
147 spin_unlock_irqrestore(&musb->lock, flags);
148
149 return retval;
150}
151
Mian Yousaf Kaukab4bc36fd2010-12-09 13:05:01 +0100152static int ux500_musb_init(struct musb *musb)
153{
Fabio Baltieri01355222013-03-08 10:27:07 +0800154 int status;
155
Kishon Vijay Abraham I662dca52012-06-22 17:02:46 +0530156 musb->xceiv = usb_get_phy(USB_PHY_TYPE_USB2);
Kishon Vijay Abraham Ided017e2012-06-26 17:40:32 +0530157 if (IS_ERR_OR_NULL(musb->xceiv)) {
Mian Yousaf Kaukab4bc36fd2010-12-09 13:05:01 +0100158 pr_err("HS USB OTG: no transceiver configured\n");
Ming Lei25736e02013-01-04 23:13:58 +0800159 return -EPROBE_DEFER;
Mian Yousaf Kaukab4bc36fd2010-12-09 13:05:01 +0100160 }
161
Fabio Baltieri01355222013-03-08 10:27:07 +0800162 musb->nb.notifier_call = musb_otg_notifications;
163 status = usb_register_notifier(musb->xceiv, &musb->nb);
164 if (status < 0) {
165 dev_dbg(musb->controller, "notification register failed\n");
166 return status;
167 }
168
Philippe De Swertbaef6532012-11-06 15:32:13 +0200169 musb->isr = ux500_musb_interrupt;
170
Mian Yousaf Kaukab4bc36fd2010-12-09 13:05:01 +0100171 return 0;
172}
173
174static int ux500_musb_exit(struct musb *musb)
175{
Fabio Baltieri01355222013-03-08 10:27:07 +0800176 usb_unregister_notifier(musb->xceiv, &musb->nb);
177
Kishon Vijay Abraham I721002e2012-06-22 17:02:45 +0530178 usb_put_phy(musb->xceiv);
Mian Yousaf Kaukab4bc36fd2010-12-09 13:05:01 +0100179
180 return 0;
181}
182
183static const struct musb_platform_ops ux500_ops = {
184 .init = ux500_musb_init,
185 .exit = ux500_musb_exit,
Fabio Baltieri996a9d22013-03-08 10:27:06 +0800186
187 .set_vbus = ux500_musb_set_vbus,
Mian Yousaf Kaukab4bc36fd2010-12-09 13:05:01 +0100188};
189
Bill Pemberton41ac7b32012-11-19 13:21:48 -0500190static int ux500_probe(struct platform_device *pdev)
Mian Yousaf Kaukab4bc36fd2010-12-09 13:05:01 +0100191{
Felipe Balbi09fc7d22013-04-24 17:21:42 +0300192 struct resource musb_resources[2];
Mian Yousaf Kaukab4bc36fd2010-12-09 13:05:01 +0100193 struct musb_hdrc_platform_data *pdata = pdev->dev.platform_data;
194 struct platform_device *musb;
195 struct ux500_glue *glue;
196 struct clk *clk;
Mian Yousaf Kaukab4bc36fd2010-12-09 13:05:01 +0100197 int ret = -ENOMEM;
198
199 glue = kzalloc(sizeof(*glue), GFP_KERNEL);
200 if (!glue) {
201 dev_err(&pdev->dev, "failed to allocate glue context\n");
202 goto err0;
203 }
204
Sebastian Andrzej Siewior2f771162012-10-31 16:12:43 +0100205 musb = platform_device_alloc("musb-hdrc", PLATFORM_DEVID_AUTO);
Mian Yousaf Kaukab4bc36fd2010-12-09 13:05:01 +0100206 if (!musb) {
207 dev_err(&pdev->dev, "failed to allocate musb device\n");
Sebastian Andrzej Siewior2f771162012-10-31 16:12:43 +0100208 goto err1;
Mian Yousaf Kaukab4bc36fd2010-12-09 13:05:01 +0100209 }
210
211 clk = clk_get(&pdev->dev, "usb");
212 if (IS_ERR(clk)) {
213 dev_err(&pdev->dev, "failed to get clock\n");
214 ret = PTR_ERR(clk);
B, Ravi65b3d522012-08-31 11:09:49 +0000215 goto err3;
Mian Yousaf Kaukab4bc36fd2010-12-09 13:05:01 +0100216 }
217
Fabio Baltieri99d17cf2013-01-07 17:47:41 +0100218 ret = clk_prepare_enable(clk);
Mian Yousaf Kaukab4bc36fd2010-12-09 13:05:01 +0100219 if (ret) {
220 dev_err(&pdev->dev, "failed to enable clock\n");
B, Ravi65b3d522012-08-31 11:09:49 +0000221 goto err4;
Mian Yousaf Kaukab4bc36fd2010-12-09 13:05:01 +0100222 }
223
224 musb->dev.parent = &pdev->dev;
Mian Yousaf Kaukab87266062011-03-15 16:24:29 +0100225 musb->dev.dma_mask = pdev->dev.dma_mask;
226 musb->dev.coherent_dma_mask = pdev->dev.coherent_dma_mask;
Mian Yousaf Kaukab4bc36fd2010-12-09 13:05:01 +0100227
228 glue->dev = &pdev->dev;
229 glue->musb = musb;
230 glue->clk = clk;
231
232 pdata->platform_ops = &ux500_ops;
233
234 platform_set_drvdata(pdev, glue);
235
Felipe Balbi09fc7d22013-04-24 17:21:42 +0300236 memset(musb_resources, 0x00, sizeof(*musb_resources) *
237 ARRAY_SIZE(musb_resources));
238
239 musb_resources[0].name = pdev->resource[0].name;
240 musb_resources[0].start = pdev->resource[0].start;
241 musb_resources[0].end = pdev->resource[0].end;
242 musb_resources[0].flags = pdev->resource[0].flags;
243
244 musb_resources[1].name = pdev->resource[1].name;
245 musb_resources[1].start = pdev->resource[1].start;
246 musb_resources[1].end = pdev->resource[1].end;
247 musb_resources[1].flags = pdev->resource[1].flags;
248
249 ret = platform_device_add_resources(musb, musb_resources,
250 ARRAY_SIZE(musb_resources));
Mian Yousaf Kaukab4bc36fd2010-12-09 13:05:01 +0100251 if (ret) {
252 dev_err(&pdev->dev, "failed to add resources\n");
B, Ravi65b3d522012-08-31 11:09:49 +0000253 goto err5;
Mian Yousaf Kaukab4bc36fd2010-12-09 13:05:01 +0100254 }
255
256 ret = platform_device_add_data(musb, pdata, sizeof(*pdata));
257 if (ret) {
258 dev_err(&pdev->dev, "failed to add platform_data\n");
B, Ravi65b3d522012-08-31 11:09:49 +0000259 goto err5;
Mian Yousaf Kaukab4bc36fd2010-12-09 13:05:01 +0100260 }
261
262 ret = platform_device_add(musb);
263 if (ret) {
264 dev_err(&pdev->dev, "failed to register musb device\n");
B, Ravi65b3d522012-08-31 11:09:49 +0000265 goto err5;
Mian Yousaf Kaukab4bc36fd2010-12-09 13:05:01 +0100266 }
267
268 return 0;
269
B, Ravi65b3d522012-08-31 11:09:49 +0000270err5:
Fabio Baltieri99d17cf2013-01-07 17:47:41 +0100271 clk_disable_unprepare(clk);
Mian Yousaf Kaukab4bc36fd2010-12-09 13:05:01 +0100272
B, Ravi65b3d522012-08-31 11:09:49 +0000273err4:
Mian Yousaf Kaukab4bc36fd2010-12-09 13:05:01 +0100274 clk_put(clk);
275
B, Ravi65b3d522012-08-31 11:09:49 +0000276err3:
Mian Yousaf Kaukab4bc36fd2010-12-09 13:05:01 +0100277 platform_device_put(musb);
278
279err1:
280 kfree(glue);
281
282err0:
283 return ret;
284}
285
Bill Pembertonfb4e98a2012-11-19 13:26:20 -0500286static int ux500_remove(struct platform_device *pdev)
Mian Yousaf Kaukab4bc36fd2010-12-09 13:05:01 +0100287{
288 struct ux500_glue *glue = platform_get_drvdata(pdev);
289
Wei Yongjun4b0de6f2012-10-23 13:36:43 +0800290 platform_device_unregister(glue->musb);
Fabio Baltieri99d17cf2013-01-07 17:47:41 +0100291 clk_disable_unprepare(glue->clk);
Mian Yousaf Kaukab4bc36fd2010-12-09 13:05:01 +0100292 clk_put(glue->clk);
293 kfree(glue);
294
295 return 0;
296}
297
298#ifdef CONFIG_PM
299static int ux500_suspend(struct device *dev)
300{
301 struct ux500_glue *glue = dev_get_drvdata(dev);
302 struct musb *musb = glue_to_musb(glue);
303
Heikki Krogerusb96d3b02012-02-13 13:24:18 +0200304 usb_phy_set_suspend(musb->xceiv, 1);
Fabio Baltieri99d17cf2013-01-07 17:47:41 +0100305 clk_disable_unprepare(glue->clk);
Mian Yousaf Kaukab4bc36fd2010-12-09 13:05:01 +0100306
307 return 0;
308}
309
310static int ux500_resume(struct device *dev)
311{
312 struct ux500_glue *glue = dev_get_drvdata(dev);
313 struct musb *musb = glue_to_musb(glue);
314 int ret;
315
Fabio Baltieri99d17cf2013-01-07 17:47:41 +0100316 ret = clk_prepare_enable(glue->clk);
Mian Yousaf Kaukab4bc36fd2010-12-09 13:05:01 +0100317 if (ret) {
318 dev_err(dev, "failed to enable clock\n");
319 return ret;
320 }
321
Heikki Krogerusb96d3b02012-02-13 13:24:18 +0200322 usb_phy_set_suspend(musb->xceiv, 0);
Mian Yousaf Kaukab4bc36fd2010-12-09 13:05:01 +0100323
324 return 0;
325}
326
327static const struct dev_pm_ops ux500_pm_ops = {
328 .suspend = ux500_suspend,
329 .resume = ux500_resume,
330};
331
332#define DEV_PM_OPS (&ux500_pm_ops)
333#else
334#define DEV_PM_OPS NULL
335#endif
336
337static struct platform_driver ux500_driver = {
Felipe Balbie9e8c852012-01-26 12:40:23 +0200338 .probe = ux500_probe,
Bill Pemberton76904172012-11-19 13:21:08 -0500339 .remove = ux500_remove,
Mian Yousaf Kaukab4bc36fd2010-12-09 13:05:01 +0100340 .driver = {
341 .name = "musb-ux500",
342 .pm = DEV_PM_OPS,
343 },
344};
345
346MODULE_DESCRIPTION("UX500 MUSB Glue Layer");
347MODULE_AUTHOR("Mian Yousaf Kaukab <mian.yousaf.kaukab@stericsson.com>");
348MODULE_LICENSE("GPL v2");
Srinivas Kandagatla0e7090a2012-10-10 19:37:21 +0100349module_platform_driver(ux500_driver);