blob: 779862d245902522c33a6388c910c9dc3a6abfa6 [file] [log] [blame]
Felipe Balbi550a7372008-07-24 12:27:36 +03001/*
2 * Copyright (C) 2005-2007 by Texas Instruments
3 * Some code has been taken from tusb6010.c
4 * Copyrights for that are attributable to:
5 * Copyright (C) 2006 Nokia Corporation
Felipe Balbi550a7372008-07-24 12:27:36 +03006 * Tony Lindgren <tony@atomide.com>
7 *
8 * This file is part of the Inventra Controller Driver for Linux.
9 *
10 * The Inventra Controller Driver for Linux is free software; you
11 * can redistribute it and/or modify it under the terms of the GNU
12 * General Public License version 2 as published by the Free Software
13 * Foundation.
14 *
15 * The Inventra Controller Driver for Linux is distributed in
16 * the hope that it will be useful, but WITHOUT ANY WARRANTY;
17 * without even the implied warranty of MERCHANTABILITY or
18 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
19 * License for more details.
20 *
21 * You should have received a copy of the GNU General Public License
22 * along with The Inventra Controller Driver for Linux ; if not,
23 * write to the Free Software Foundation, Inc., 59 Temple Place,
24 * Suite 330, Boston, MA 02111-1307 USA
25 *
26 */
27#include <linux/module.h>
28#include <linux/kernel.h>
29#include <linux/sched.h>
Felipe Balbi550a7372008-07-24 12:27:36 +030030#include <linux/init.h>
31#include <linux/list.h>
Felipe Balbi550a7372008-07-24 12:27:36 +030032#include <linux/io.h>
Kishon Vijay Abraham I00a0b1d2012-09-11 14:39:40 +053033#include <linux/of.h>
Felipe Balbidc098862010-12-01 15:01:11 +020034#include <linux/platform_device.h>
35#include <linux/dma-mapping.h>
Hema HK207b0e12011-02-17 12:07:22 +053036#include <linux/pm_runtime.h>
37#include <linux/err.h>
NeilBrown12a19b52012-08-13 12:32:58 +100038#include <linux/delay.h>
Kishon Vijay Abraham Ic9721432012-06-22 17:40:52 +053039#include <linux/usb/musb-omap.h>
Kishon Vijay Abraham Ica784be2013-01-25 15:54:00 +053040#include <linux/usb/omap_control_usb.h>
Felipe Balbi550a7372008-07-24 12:27:36 +030041
Felipe Balbi550a7372008-07-24 12:27:36 +030042#include "musb_core.h"
43#include "omap2430.h"
44
Felipe Balbia3cee122010-12-02 09:27:29 +020045struct omap2430_glue {
46 struct device *dev;
47 struct platform_device *musb;
Kishon Vijay Abraham Ic9721432012-06-22 17:40:52 +053048 enum omap_musb_vbus_id_status status;
Kishon Vijay Abraham I1e5acb82012-06-22 17:40:51 +053049 struct work_struct omap_musb_mailbox_work;
Kishon Vijay Abraham Ica784be2013-01-25 15:54:00 +053050 struct device *control_otghs;
Felipe Balbia3cee122010-12-02 09:27:29 +020051};
Felipe Balbic20aebb2010-12-02 12:44:40 +020052#define glue_to_musb(g) platform_get_drvdata(g->musb)
Felipe Balbia3cee122010-12-02 09:27:29 +020053
Kishon Vijay Abraham Ic9721432012-06-22 17:40:52 +053054struct omap2430_glue *_glue;
55
Felipe Balbi550a7372008-07-24 12:27:36 +030056static struct timer_list musb_idle_timer;
57
58static void musb_do_idle(unsigned long _musb)
59{
60 struct musb *musb = (void *)_musb;
61 unsigned long flags;
62 u8 power;
Felipe Balbi550a7372008-07-24 12:27:36 +030063 u8 devctl;
64
Felipe Balbi550a7372008-07-24 12:27:36 +030065 spin_lock_irqsave(&musb->lock, flags);
66
David Brownell84e250f2009-03-31 12:30:04 -070067 switch (musb->xceiv->state) {
Felipe Balbi550a7372008-07-24 12:27:36 +030068 case OTG_STATE_A_WAIT_BCON:
Felipe Balbi550a7372008-07-24 12:27:36 +030069
70 devctl = musb_readb(musb->mregs, MUSB_DEVCTL);
71 if (devctl & MUSB_DEVCTL_BDEVICE) {
David Brownell84e250f2009-03-31 12:30:04 -070072 musb->xceiv->state = OTG_STATE_B_IDLE;
Felipe Balbi550a7372008-07-24 12:27:36 +030073 MUSB_DEV_MODE(musb);
74 } else {
David Brownell84e250f2009-03-31 12:30:04 -070075 musb->xceiv->state = OTG_STATE_A_IDLE;
Felipe Balbi550a7372008-07-24 12:27:36 +030076 MUSB_HST_MODE(musb);
77 }
78 break;
Felipe Balbi550a7372008-07-24 12:27:36 +030079 case OTG_STATE_A_SUSPEND:
80 /* finish RESUME signaling? */
81 if (musb->port1_status & MUSB_PORT_STAT_RESUME) {
82 power = musb_readb(musb->mregs, MUSB_POWER);
83 power &= ~MUSB_POWER_RESUME;
Felipe Balbi5c8a86e2011-05-11 12:44:08 +030084 dev_dbg(musb->controller, "root port resume stopped, power %02x\n", power);
Felipe Balbi550a7372008-07-24 12:27:36 +030085 musb_writeb(musb->mregs, MUSB_POWER, power);
86 musb->is_active = 1;
87 musb->port1_status &= ~(USB_PORT_STAT_SUSPEND
88 | MUSB_PORT_STAT_RESUME);
89 musb->port1_status |= USB_PORT_STAT_C_SUSPEND << 16;
90 usb_hcd_poll_rh_status(musb_to_hcd(musb));
91 /* NOTE: it might really be A_WAIT_BCON ... */
David Brownell84e250f2009-03-31 12:30:04 -070092 musb->xceiv->state = OTG_STATE_A_HOST;
Felipe Balbi550a7372008-07-24 12:27:36 +030093 }
94 break;
Felipe Balbi550a7372008-07-24 12:27:36 +030095 case OTG_STATE_A_HOST:
96 devctl = musb_readb(musb->mregs, MUSB_DEVCTL);
97 if (devctl & MUSB_DEVCTL_BDEVICE)
David Brownell84e250f2009-03-31 12:30:04 -070098 musb->xceiv->state = OTG_STATE_B_IDLE;
Felipe Balbi550a7372008-07-24 12:27:36 +030099 else
David Brownell84e250f2009-03-31 12:30:04 -0700100 musb->xceiv->state = OTG_STATE_A_WAIT_BCON;
Felipe Balbi550a7372008-07-24 12:27:36 +0300101 default:
102 break;
103 }
104 spin_unlock_irqrestore(&musb->lock, flags);
105}
106
107
Felipe Balbi743411b2010-12-01 13:22:05 +0200108static void omap2430_musb_try_idle(struct musb *musb, unsigned long timeout)
Felipe Balbi550a7372008-07-24 12:27:36 +0300109{
110 unsigned long default_timeout = jiffies + msecs_to_jiffies(3);
111 static unsigned long last_timer;
112
113 if (timeout == 0)
114 timeout = default_timeout;
115
116 /* Never idle if active, or when VBUS timeout is not set as host */
117 if (musb->is_active || ((musb->a_wait_bcon == 0)
David Brownell84e250f2009-03-31 12:30:04 -0700118 && (musb->xceiv->state == OTG_STATE_A_WAIT_BCON))) {
Felipe Balbi5c8a86e2011-05-11 12:44:08 +0300119 dev_dbg(musb->controller, "%s active, deleting timer\n",
Anatolij Gustschin3df00452011-05-05 12:11:21 +0200120 otg_state_string(musb->xceiv->state));
Felipe Balbi550a7372008-07-24 12:27:36 +0300121 del_timer(&musb_idle_timer);
122 last_timer = jiffies;
123 return;
124 }
125
126 if (time_after(last_timer, timeout)) {
127 if (!timer_pending(&musb_idle_timer))
128 last_timer = timeout;
129 else {
Felipe Balbi5c8a86e2011-05-11 12:44:08 +0300130 dev_dbg(musb->controller, "Longer idle timer already pending, ignoring\n");
Felipe Balbi550a7372008-07-24 12:27:36 +0300131 return;
132 }
133 }
134 last_timer = timeout;
135
Felipe Balbi5c8a86e2011-05-11 12:44:08 +0300136 dev_dbg(musb->controller, "%s inactive, for idle timer for %lu ms\n",
Anatolij Gustschin3df00452011-05-05 12:11:21 +0200137 otg_state_string(musb->xceiv->state),
Felipe Balbi550a7372008-07-24 12:27:36 +0300138 (unsigned long)jiffies_to_msecs(timeout - jiffies));
139 mod_timer(&musb_idle_timer, timeout);
140}
141
Felipe Balbi743411b2010-12-01 13:22:05 +0200142static void omap2430_musb_set_vbus(struct musb *musb, int is_on)
Felipe Balbi550a7372008-07-24 12:27:36 +0300143{
Heikki Krogerusd445b6d2012-02-13 13:24:15 +0200144 struct usb_otg *otg = musb->xceiv->otg;
Felipe Balbi550a7372008-07-24 12:27:36 +0300145 u8 devctl;
Hema HK594632e2010-12-10 18:10:51 +0530146 unsigned long timeout = jiffies + msecs_to_jiffies(1000);
Felipe Balbi550a7372008-07-24 12:27:36 +0300147 /* HDRC controls CPEN, but beware current surges during device
148 * connect. They can trigger transient overcurrent conditions
149 * that must be ignored.
150 */
151
152 devctl = musb_readb(musb->mregs, MUSB_DEVCTL);
153
154 if (is_on) {
Hema HK594632e2010-12-10 18:10:51 +0530155 if (musb->xceiv->state == OTG_STATE_A_IDLE) {
NeilBrown12a19b52012-08-13 12:32:58 +1000156 int loops = 100;
Hema HK594632e2010-12-10 18:10:51 +0530157 /* start the session */
158 devctl |= MUSB_DEVCTL_SESSION;
159 musb_writeb(musb->mregs, MUSB_DEVCTL, devctl);
160 /*
161 * Wait for the musb to set as A device to enable the
162 * VBUS
163 */
164 while (musb_readb(musb->mregs, MUSB_DEVCTL) & 0x80) {
Felipe Balbi550a7372008-07-24 12:27:36 +0300165
NeilBrown12a19b52012-08-13 12:32:58 +1000166 mdelay(5);
Hema HK594632e2010-12-10 18:10:51 +0530167 cpu_relax();
168
NeilBrown12a19b52012-08-13 12:32:58 +1000169 if (time_after(jiffies, timeout)
170 || loops-- <= 0) {
Hema HK594632e2010-12-10 18:10:51 +0530171 dev_err(musb->controller,
172 "configured as A device timeout");
Hema HK594632e2010-12-10 18:10:51 +0530173 break;
174 }
175 }
176
Matthias Brugger10770c52012-08-16 13:00:25 +0200177 if (otg->set_vbus)
Heikki Krogerus6e13c652012-02-13 13:24:20 +0200178 otg_set_vbus(otg, 1);
Hema HK594632e2010-12-10 18:10:51 +0530179 } else {
180 musb->is_active = 1;
Heikki Krogerusd445b6d2012-02-13 13:24:15 +0200181 otg->default_a = 1;
Hema HK594632e2010-12-10 18:10:51 +0530182 musb->xceiv->state = OTG_STATE_A_WAIT_VRISE;
183 devctl |= MUSB_DEVCTL_SESSION;
184 MUSB_HST_MODE(musb);
185 }
Felipe Balbi550a7372008-07-24 12:27:36 +0300186 } else {
187 musb->is_active = 0;
188
189 /* NOTE: we're skipping A_WAIT_VFALL -> A_IDLE and
190 * jumping right to B_IDLE...
191 */
192
Heikki Krogerusd445b6d2012-02-13 13:24:15 +0200193 otg->default_a = 0;
David Brownell84e250f2009-03-31 12:30:04 -0700194 musb->xceiv->state = OTG_STATE_B_IDLE;
Felipe Balbi550a7372008-07-24 12:27:36 +0300195 devctl &= ~MUSB_DEVCTL_SESSION;
196
197 MUSB_DEV_MODE(musb);
198 }
199 musb_writeb(musb->mregs, MUSB_DEVCTL, devctl);
200
Felipe Balbi5c8a86e2011-05-11 12:44:08 +0300201 dev_dbg(musb->controller, "VBUS %s, devctl %02x "
Felipe Balbi550a7372008-07-24 12:27:36 +0300202 /* otg %3x conf %08x prcm %08x */ "\n",
Anatolij Gustschin3df00452011-05-05 12:11:21 +0200203 otg_state_string(musb->xceiv->state),
Felipe Balbi550a7372008-07-24 12:27:36 +0300204 musb_readb(musb->mregs, MUSB_DEVCTL));
205}
Felipe Balbi550a7372008-07-24 12:27:36 +0300206
Felipe Balbi743411b2010-12-01 13:22:05 +0200207static int omap2430_musb_set_mode(struct musb *musb, u8 musb_mode)
Felipe Balbi550a7372008-07-24 12:27:36 +0300208{
209 u8 devctl = musb_readb(musb->mregs, MUSB_DEVCTL);
210
211 devctl |= MUSB_DEVCTL_SESSION;
212 musb_writeb(musb->mregs, MUSB_DEVCTL, devctl);
213
David Brownell96a274d2008-11-24 13:06:47 +0200214 return 0;
Felipe Balbi550a7372008-07-24 12:27:36 +0300215}
216
Felipe Balbic20aebb2010-12-02 12:44:40 +0200217static inline void omap2430_low_level_exit(struct musb *musb)
218{
219 u32 l;
220
221 /* in any role */
222 l = musb_readl(musb->mregs, OTG_FORCESTDBY);
223 l |= ENABLEFORCE; /* enable MSTANDBY */
224 musb_writel(musb->mregs, OTG_FORCESTDBY, l);
Felipe Balbic20aebb2010-12-02 12:44:40 +0200225}
226
227static inline void omap2430_low_level_init(struct musb *musb)
228{
229 u32 l;
230
Felipe Balbic20aebb2010-12-02 12:44:40 +0200231 l = musb_readl(musb->mregs, OTG_FORCESTDBY);
232 l &= ~ENABLEFORCE; /* disable MSTANDBY */
233 musb_writel(musb->mregs, OTG_FORCESTDBY, l);
234}
235
Kishon Vijay Abraham Ic9721432012-06-22 17:40:52 +0530236void omap_musb_mailbox(enum omap_musb_vbus_id_status status)
Hema HK594632e2010-12-10 18:10:51 +0530237{
Kishon Vijay Abraham Ic9721432012-06-22 17:40:52 +0530238 struct omap2430_glue *glue = _glue;
239 struct musb *musb = glue_to_musb(glue);
Vikram Pandita712d8ef2011-08-12 07:38:51 -0700240
Kishon Vijay Abraham Ic9721432012-06-22 17:40:52 +0530241 glue->status = status;
242 if (!musb) {
243 dev_err(glue->dev, "musb core is not yet ready\n");
244 return;
245 }
246
Kishon Vijay Abraham I1e5acb82012-06-22 17:40:51 +0530247 schedule_work(&glue->omap_musb_mailbox_work);
Vikram Pandita712d8ef2011-08-12 07:38:51 -0700248}
Kishon Vijay Abraham Ic9721432012-06-22 17:40:52 +0530249EXPORT_SYMBOL_GPL(omap_musb_mailbox);
Vikram Pandita712d8ef2011-08-12 07:38:51 -0700250
Kishon Vijay Abraham Ic9721432012-06-22 17:40:52 +0530251static void omap_musb_set_mailbox(struct omap2430_glue *glue)
Vikram Pandita712d8ef2011-08-12 07:38:51 -0700252{
Kishon Vijay Abraham I1e5acb82012-06-22 17:40:51 +0530253 struct musb *musb = glue_to_musb(glue);
Hema HK594632e2010-12-10 18:10:51 +0530254 struct device *dev = musb->controller;
255 struct musb_hdrc_platform_data *pdata = dev->platform_data;
256 struct omap_musb_board_data *data = pdata->board_data;
Kishon Vijay Abraham Ic83a8542012-06-22 17:40:53 +0530257 struct usb_otg *otg = musb->xceiv->otg;
Hema HK594632e2010-12-10 18:10:51 +0530258
Kishon Vijay Abraham Ic9721432012-06-22 17:40:52 +0530259 switch (glue->status) {
260 case OMAP_MUSB_ID_GROUND:
261 dev_dbg(dev, "ID GND\n");
Hema HK594632e2010-12-10 18:10:51 +0530262
Kishon Vijay Abraham Ic83a8542012-06-22 17:40:53 +0530263 otg->default_a = true;
264 musb->xceiv->state = OTG_STATE_A_IDLE;
Kishon Vijay Abraham Ic9721432012-06-22 17:40:52 +0530265 musb->xceiv->last_event = USB_EVENT_ID;
Felipe Balbi032ec492011-11-24 15:46:26 +0200266 if (musb->gadget_driver) {
Kishon Vijay Abraham Ic9721432012-06-22 17:40:52 +0530267 pm_runtime_get_sync(dev);
Kishon Vijay Abraham Ica784be2013-01-25 15:54:00 +0530268 omap_control_usb_set_mode(glue->control_otghs,
269 USB_MODE_HOST);
Hema HK70045c52011-02-28 15:05:29 +0530270 omap2430_musb_set_vbus(musb, 1);
Hema HK594632e2010-12-10 18:10:51 +0530271 }
272 break;
273
Kishon Vijay Abraham Ic9721432012-06-22 17:40:52 +0530274 case OMAP_MUSB_VBUS_VALID:
275 dev_dbg(dev, "VBUS Connect\n");
Hema HK594632e2010-12-10 18:10:51 +0530276
Kishon Vijay Abraham Ic83a8542012-06-22 17:40:53 +0530277 otg->default_a = false;
278 musb->xceiv->state = OTG_STATE_B_IDLE;
Kishon Vijay Abraham Ic9721432012-06-22 17:40:52 +0530279 musb->xceiv->last_event = USB_EVENT_VBUS;
Hema HK7acc6192011-02-28 14:19:34 +0530280 if (musb->gadget_driver)
Kishon Vijay Abraham Ic9721432012-06-22 17:40:52 +0530281 pm_runtime_get_sync(dev);
Kishon Vijay Abraham Ica784be2013-01-25 15:54:00 +0530282 omap_control_usb_set_mode(glue->control_otghs, USB_MODE_DEVICE);
Hema HK594632e2010-12-10 18:10:51 +0530283 break;
284
Kishon Vijay Abraham Ic9721432012-06-22 17:40:52 +0530285 case OMAP_MUSB_ID_FLOAT:
286 case OMAP_MUSB_VBUS_OFF:
287 dev_dbg(dev, "VBUS Disconnect\n");
Hema HK594632e2010-12-10 18:10:51 +0530288
Kishon Vijay Abraham Ic9721432012-06-22 17:40:52 +0530289 musb->xceiv->last_event = USB_EVENT_NONE;
Felipe Balbi032ec492011-11-24 15:46:26 +0200290 if (musb->gadget_driver) {
291 pm_runtime_mark_last_busy(dev);
292 pm_runtime_put_autosuspend(dev);
293 }
Hema HK7acc6192011-02-28 14:19:34 +0530294
Hema HK594632e2010-12-10 18:10:51 +0530295 if (data->interface_type == MUSB_INTERFACE_UTMI) {
Heikki Krogerus6e13c652012-02-13 13:24:20 +0200296 if (musb->xceiv->otg->set_vbus)
297 otg_set_vbus(musb->xceiv->otg, 0);
Hema HK594632e2010-12-10 18:10:51 +0530298 }
Kishon Vijay Abraham Ica784be2013-01-25 15:54:00 +0530299 omap_control_usb_set_mode(glue->control_otghs,
300 USB_MODE_DISCONNECT);
Hema HK594632e2010-12-10 18:10:51 +0530301 break;
302 default:
Kishon Vijay Abraham Ic9721432012-06-22 17:40:52 +0530303 dev_dbg(dev, "ID float\n");
Hema HK594632e2010-12-10 18:10:51 +0530304 }
Hema HK594632e2010-12-10 18:10:51 +0530305}
306
Kishon Vijay Abraham Ic9721432012-06-22 17:40:52 +0530307
308static void omap_musb_mailbox_work(struct work_struct *mailbox_work)
309{
310 struct omap2430_glue *glue = container_of(mailbox_work,
311 struct omap2430_glue, omap_musb_mailbox_work);
312 omap_musb_set_mailbox(glue);
313}
314
Philippe De Swertbaef6532012-11-06 15:32:13 +0200315static irqreturn_t omap2430_musb_interrupt(int irq, void *__hci)
316{
317 unsigned long flags;
318 irqreturn_t retval = IRQ_NONE;
319 struct musb *musb = __hci;
320
321 spin_lock_irqsave(&musb->lock, flags);
322
323 musb->int_usb = musb_readb(musb->mregs, MUSB_INTRUSB);
324 musb->int_tx = musb_readw(musb->mregs, MUSB_INTRTX);
325 musb->int_rx = musb_readw(musb->mregs, MUSB_INTRRX);
326
327 if (musb->int_usb || musb->int_tx || musb->int_rx)
328 retval = musb_interrupt(musb);
329
330 spin_unlock_irqrestore(&musb->lock, flags);
331
332 return retval;
333}
334
Felipe Balbi743411b2010-12-01 13:22:05 +0200335static int omap2430_musb_init(struct musb *musb)
Felipe Balbi550a7372008-07-24 12:27:36 +0300336{
Shubhrajyoti Dad579692012-03-22 12:48:06 +0530337 u32 l;
338 int status = 0;
Hema Kalliguddiea65df52010-09-22 19:27:40 -0500339 struct device *dev = musb->controller;
Kishon Vijay Abraham Ic9721432012-06-22 17:40:52 +0530340 struct omap2430_glue *glue = dev_get_drvdata(dev->parent);
Hema Kalliguddiea65df52010-09-22 19:27:40 -0500341 struct musb_hdrc_platform_data *plat = dev->platform_data;
342 struct omap_musb_board_data *data = plat->board_data;
Felipe Balbi550a7372008-07-24 12:27:36 +0300343
David Brownell84e250f2009-03-31 12:30:04 -0700344 /* We require some kind of external transceiver, hooked
345 * up through ULPI. TWL4030-family PMICs include one,
346 * which needs a driver, drivers aren't always needed.
347 */
Kishon Vijay Abraham Ib1183c22012-06-22 17:40:54 +0530348 musb->xceiv = devm_usb_get_phy(dev, USB_PHY_TYPE_USB2);
Kishon Vijay Abraham Ided017e2012-06-26 17:40:32 +0530349 if (IS_ERR_OR_NULL(musb->xceiv)) {
David Brownell84e250f2009-03-31 12:30:04 -0700350 pr_err("HS USB OTG: no transceiver configured\n");
351 return -ENODEV;
352 }
353
Philippe De Swertbaef6532012-11-06 15:32:13 +0200354 musb->isr = omap2430_musb_interrupt;
355
Hema HK7acc6192011-02-28 14:19:34 +0530356 status = pm_runtime_get_sync(dev);
357 if (status < 0) {
Shubhrajyoti Dad579692012-03-22 12:48:06 +0530358 dev_err(dev, "pm_runtime_get_sync FAILED %d\n", status);
Hema HK7acc6192011-02-28 14:19:34 +0530359 goto err1;
360 }
Felipe Balbi550a7372008-07-24 12:27:36 +0300361
Felipe Balbi8573e6a2010-01-21 15:33:53 +0200362 l = musb_readl(musb->mregs, OTG_INTERFSEL);
Maulik Mankadde2e1b02010-03-12 10:29:07 +0200363
364 if (data->interface_type == MUSB_INTERFACE_UTMI) {
365 /* OMAP4 uses Internal PHY GS70 which uses UTMI interface */
366 l &= ~ULPI_12PIN; /* Disable ULPI */
367 l |= UTMI_8BIT; /* Enable UTMI */
368 } else {
369 l |= ULPI_12PIN;
370 }
371
Felipe Balbi8573e6a2010-01-21 15:33:53 +0200372 musb_writel(musb->mregs, OTG_INTERFSEL, l);
Felipe Balbi550a7372008-07-24 12:27:36 +0300373
374 pr_debug("HS USB OTG: revision 0x%x, sysconfig 0x%02x, "
375 "sysstatus 0x%x, intrfsel 0x%x, simenable 0x%x\n",
Felipe Balbi8573e6a2010-01-21 15:33:53 +0200376 musb_readl(musb->mregs, OTG_REVISION),
377 musb_readl(musb->mregs, OTG_SYSCONFIG),
378 musb_readl(musb->mregs, OTG_SYSSTATUS),
379 musb_readl(musb->mregs, OTG_INTERFSEL),
380 musb_readl(musb->mregs, OTG_SIMENABLE));
Felipe Balbi550a7372008-07-24 12:27:36 +0300381
Felipe Balbi550a7372008-07-24 12:27:36 +0300382 setup_timer(&musb_idle_timer, musb_do_idle, (unsigned long) musb);
383
Kishon Vijay Abraham Ic9721432012-06-22 17:40:52 +0530384 if (glue->status != OMAP_MUSB_UNKNOWN)
385 omap_musb_set_mailbox(glue);
386
Grazvydas Ignotasc04352a2012-02-04 19:43:51 +0200387 pm_runtime_put_noidle(musb->controller);
Felipe Balbi550a7372008-07-24 12:27:36 +0300388 return 0;
Hema HK7acc6192011-02-28 14:19:34 +0530389
390err1:
Hema HK7acc6192011-02-28 14:19:34 +0530391 return status;
Felipe Balbi550a7372008-07-24 12:27:36 +0300392}
393
Hema HK002eda12011-02-17 12:06:10 +0530394static void omap2430_musb_enable(struct musb *musb)
395{
396 u8 devctl;
397 unsigned long timeout = jiffies + msecs_to_jiffies(1000);
398 struct device *dev = musb->controller;
Kishon Vijay Abraham Ic9721432012-06-22 17:40:52 +0530399 struct omap2430_glue *glue = dev_get_drvdata(dev->parent);
Hema HK002eda12011-02-17 12:06:10 +0530400 struct musb_hdrc_platform_data *pdata = dev->platform_data;
401 struct omap_musb_board_data *data = pdata->board_data;
402
Kishon Vijay Abraham Ic9721432012-06-22 17:40:52 +0530403 switch (glue->status) {
Hema HK002eda12011-02-17 12:06:10 +0530404
Kishon Vijay Abraham Ic9721432012-06-22 17:40:52 +0530405 case OMAP_MUSB_ID_GROUND:
Kishon Vijay Abraham Ica784be2013-01-25 15:54:00 +0530406 omap_control_usb_set_mode(glue->control_otghs, USB_MODE_HOST);
Felipe Contreras08dec562011-12-19 22:17:50 +0200407 if (data->interface_type != MUSB_INTERFACE_UTMI)
408 break;
409 devctl = musb_readb(musb->mregs, MUSB_DEVCTL);
410 /* start the session */
411 devctl |= MUSB_DEVCTL_SESSION;
412 musb_writeb(musb->mregs, MUSB_DEVCTL, devctl);
413 while (musb_readb(musb->mregs, MUSB_DEVCTL) &
414 MUSB_DEVCTL_BDEVICE) {
415 cpu_relax();
Hema HK002eda12011-02-17 12:06:10 +0530416
Felipe Contreras08dec562011-12-19 22:17:50 +0200417 if (time_after(jiffies, timeout)) {
418 dev_err(dev, "configured as A device timeout");
419 break;
Hema HK002eda12011-02-17 12:06:10 +0530420 }
421 }
422 break;
423
Kishon Vijay Abraham Ic9721432012-06-22 17:40:52 +0530424 case OMAP_MUSB_VBUS_VALID:
Kishon Vijay Abraham Ica784be2013-01-25 15:54:00 +0530425 omap_control_usb_set_mode(glue->control_otghs, USB_MODE_DEVICE);
Hema HK002eda12011-02-17 12:06:10 +0530426 break;
427
428 default:
429 break;
430 }
431}
432
433static void omap2430_musb_disable(struct musb *musb)
434{
Kishon Vijay Abraham Ic9721432012-06-22 17:40:52 +0530435 struct device *dev = musb->controller;
436 struct omap2430_glue *glue = dev_get_drvdata(dev->parent);
437
Kishon Vijay Abraham Ica784be2013-01-25 15:54:00 +0530438 if (glue->status != OMAP_MUSB_UNKNOWN)
439 omap_control_usb_set_mode(glue->control_otghs,
440 USB_MODE_DISCONNECT);
Felipe Balbi550a7372008-07-24 12:27:36 +0300441}
442
Felipe Balbi743411b2010-12-01 13:22:05 +0200443static int omap2430_musb_exit(struct musb *musb)
Felipe Balbi550a7372008-07-24 12:27:36 +0300444{
Johan Hovold19b9a832011-02-11 16:57:08 +0100445 del_timer_sync(&musb_idle_timer);
Felipe Balbi550a7372008-07-24 12:27:36 +0300446
Felipe Balbic20aebb2010-12-02 12:44:40 +0200447 omap2430_low_level_exit(musb);
Felipe Balbic20aebb2010-12-02 12:44:40 +0200448
Felipe Balbi550a7372008-07-24 12:27:36 +0300449 return 0;
450}
Felipe Balbi743411b2010-12-01 13:22:05 +0200451
Felipe Balbif7ec9432010-12-02 09:48:58 +0200452static const struct musb_platform_ops omap2430_ops = {
Felipe Balbi743411b2010-12-01 13:22:05 +0200453 .init = omap2430_musb_init,
454 .exit = omap2430_musb_exit,
455
Felipe Balbi743411b2010-12-01 13:22:05 +0200456 .set_mode = omap2430_musb_set_mode,
457 .try_idle = omap2430_musb_try_idle,
458
459 .set_vbus = omap2430_musb_set_vbus,
Hema HK002eda12011-02-17 12:06:10 +0530460
461 .enable = omap2430_musb_enable,
462 .disable = omap2430_musb_disable,
Felipe Balbi743411b2010-12-01 13:22:05 +0200463};
Felipe Balbidc098862010-12-01 15:01:11 +0200464
465static u64 omap2430_dmamask = DMA_BIT_MASK(32);
466
Bill Pemberton41ac7b32012-11-19 13:21:48 -0500467static int omap2430_probe(struct platform_device *pdev)
Felipe Balbidc098862010-12-01 15:01:11 +0200468{
469 struct musb_hdrc_platform_data *pdata = pdev->dev.platform_data;
Kishon Vijay Abraham I00a0b1d2012-09-11 14:39:40 +0530470 struct omap_musb_board_data *data;
Felipe Balbidc098862010-12-01 15:01:11 +0200471 struct platform_device *musb;
Felipe Balbia3cee122010-12-02 09:27:29 +0200472 struct omap2430_glue *glue;
Kishon Vijay Abraham I00a0b1d2012-09-11 14:39:40 +0530473 struct device_node *np = pdev->dev.of_node;
474 struct musb_hdrc_config *config;
Felipe Balbidc098862010-12-01 15:01:11 +0200475 int ret = -ENOMEM;
476
Kishon Vijay Abraham Ib1183c22012-06-22 17:40:54 +0530477 glue = devm_kzalloc(&pdev->dev, sizeof(*glue), GFP_KERNEL);
Felipe Balbia3cee122010-12-02 09:27:29 +0200478 if (!glue) {
479 dev_err(&pdev->dev, "failed to allocate glue context\n");
480 goto err0;
481 }
482
Sebastian Andrzej Siewior2f771162012-10-31 16:12:43 +0100483 musb = platform_device_alloc("musb-hdrc", PLATFORM_DEVID_AUTO);
484 if (!musb) {
485 dev_err(&pdev->dev, "failed to allocate musb device\n");
Kishon Vijay Abraham Ib1183c22012-06-22 17:40:54 +0530486 goto err0;
Felipe Balbidc098862010-12-01 15:01:11 +0200487 }
488
489 musb->dev.parent = &pdev->dev;
490 musb->dev.dma_mask = &omap2430_dmamask;
491 musb->dev.coherent_dma_mask = omap2430_dmamask;
492
Felipe Balbia3cee122010-12-02 09:27:29 +0200493 glue->dev = &pdev->dev;
494 glue->musb = musb;
Kishon Vijay Abraham Ic9721432012-06-22 17:40:52 +0530495 glue->status = OMAP_MUSB_UNKNOWN;
Felipe Balbia3cee122010-12-02 09:27:29 +0200496
Kishon Vijay Abraham I00a0b1d2012-09-11 14:39:40 +0530497 if (np) {
498 pdata = devm_kzalloc(&pdev->dev, sizeof(*pdata), GFP_KERNEL);
499 if (!pdata) {
500 dev_err(&pdev->dev,
501 "failed to allocate musb platfrom data\n");
502 ret = -ENOMEM;
Sebastian Andrzej Siewior2f771162012-10-31 16:12:43 +0100503 goto err2;
Kishon Vijay Abraham I00a0b1d2012-09-11 14:39:40 +0530504 }
505
506 data = devm_kzalloc(&pdev->dev, sizeof(*data), GFP_KERNEL);
507 if (!data) {
508 dev_err(&pdev->dev,
509 "failed to allocate musb board data\n");
510 ret = -ENOMEM;
Sebastian Andrzej Siewior2f771162012-10-31 16:12:43 +0100511 goto err2;
Kishon Vijay Abraham I00a0b1d2012-09-11 14:39:40 +0530512 }
513
514 config = devm_kzalloc(&pdev->dev, sizeof(*config), GFP_KERNEL);
515 if (!data) {
516 dev_err(&pdev->dev,
517 "failed to allocate musb hdrc config\n");
Sebastian Andrzej Siewior2f771162012-10-31 16:12:43 +0100518 goto err2;
Kishon Vijay Abraham I00a0b1d2012-09-11 14:39:40 +0530519 }
520
521 of_property_read_u32(np, "mode", (u32 *)&pdata->mode);
522 of_property_read_u32(np, "interface_type",
523 (u32 *)&data->interface_type);
524 of_property_read_u32(np, "num_eps", (u32 *)&config->num_eps);
525 of_property_read_u32(np, "ram_bits", (u32 *)&config->ram_bits);
526 of_property_read_u32(np, "power", (u32 *)&pdata->power);
527 config->multipoint = of_property_read_bool(np, "multipoint");
Kishon Vijay Abraham Ica784be2013-01-25 15:54:00 +0530528 pdata->has_mailbox = of_property_read_bool(np,
529 "ti,has-mailbox");
Kishon Vijay Abraham I00a0b1d2012-09-11 14:39:40 +0530530
531 pdata->board_data = data;
532 pdata->config = config;
533 }
534
Kishon Vijay Abraham Ica784be2013-01-25 15:54:00 +0530535 if (pdata->has_mailbox) {
536 glue->control_otghs = omap_get_control_dev();
537 if (IS_ERR(glue->control_otghs)) {
538 dev_vdbg(&pdev->dev, "Failed to get control device\n");
539 return -ENODEV;
540 }
541 } else {
542 glue->control_otghs = ERR_PTR(-ENODEV);
543 }
Felipe Balbif7ec9432010-12-02 09:48:58 +0200544 pdata->platform_ops = &omap2430_ops;
545
Felipe Balbia3cee122010-12-02 09:27:29 +0200546 platform_set_drvdata(pdev, glue);
Felipe Balbidc098862010-12-01 15:01:11 +0200547
Kishon Vijay Abraham Ic9721432012-06-22 17:40:52 +0530548 /*
549 * REVISIT if we ever have two instances of the wrapper, we will be
550 * in big trouble
551 */
552 _glue = glue;
553
Kishon Vijay Abraham I1e5acb82012-06-22 17:40:51 +0530554 INIT_WORK(&glue->omap_musb_mailbox_work, omap_musb_mailbox_work);
555
Felipe Balbidc098862010-12-01 15:01:11 +0200556 ret = platform_device_add_resources(musb, pdev->resource,
557 pdev->num_resources);
558 if (ret) {
559 dev_err(&pdev->dev, "failed to add resources\n");
B, Ravi65b3d522012-08-31 11:09:49 +0000560 goto err2;
Felipe Balbidc098862010-12-01 15:01:11 +0200561 }
562
563 ret = platform_device_add_data(musb, pdata, sizeof(*pdata));
564 if (ret) {
565 dev_err(&pdev->dev, "failed to add platform_data\n");
B, Ravi65b3d522012-08-31 11:09:49 +0000566 goto err2;
Felipe Balbidc098862010-12-01 15:01:11 +0200567 }
568
Kishon Vijay Abraham I3006dc82012-03-21 21:30:20 +0530569 pm_runtime_enable(&pdev->dev);
570
Felipe Balbidc098862010-12-01 15:01:11 +0200571 ret = platform_device_add(musb);
572 if (ret) {
573 dev_err(&pdev->dev, "failed to register musb device\n");
B, Ravi65b3d522012-08-31 11:09:49 +0000574 goto err2;
Felipe Balbidc098862010-12-01 15:01:11 +0200575 }
576
577 return 0;
578
B, Ravi65b3d522012-08-31 11:09:49 +0000579err2:
Kishon Vijay Abraham Ib1183c22012-06-22 17:40:54 +0530580 platform_device_put(musb);
Felipe Balbia3cee122010-12-02 09:27:29 +0200581
Felipe Balbidc098862010-12-01 15:01:11 +0200582err0:
583 return ret;
584}
585
Bill Pembertonfb4e98a2012-11-19 13:26:20 -0500586static int omap2430_remove(struct platform_device *pdev)
Felipe Balbidc098862010-12-01 15:01:11 +0200587{
Felipe Balbia3cee122010-12-02 09:27:29 +0200588 struct omap2430_glue *glue = platform_get_drvdata(pdev);
Felipe Balbidc098862010-12-01 15:01:11 +0200589
Kishon Vijay Abraham I1e5acb82012-06-22 17:40:51 +0530590 cancel_work_sync(&glue->omap_musb_mailbox_work);
Kishon Vijay Abraham If039df52012-08-02 15:30:07 +0530591 platform_device_unregister(glue->musb);
Felipe Balbidc098862010-12-01 15:01:11 +0200592
593 return 0;
594}
595
Felipe Balbic20aebb2010-12-02 12:44:40 +0200596#ifdef CONFIG_PM
Felipe Balbic20aebb2010-12-02 12:44:40 +0200597
Hema HK7acc6192011-02-28 14:19:34 +0530598static int omap2430_runtime_suspend(struct device *dev)
Felipe Balbic20aebb2010-12-02 12:44:40 +0200599{
600 struct omap2430_glue *glue = dev_get_drvdata(dev);
601 struct musb *musb = glue_to_musb(glue);
602
Vladimir Zapolskiyafb76df2011-12-23 18:37:18 +0200603 if (musb) {
604 musb->context.otg_interfsel = musb_readl(musb->mregs,
605 OTG_INTERFSEL);
Hema HKe25bec12011-09-07 09:19:24 -0700606
Vladimir Zapolskiyafb76df2011-12-23 18:37:18 +0200607 omap2430_low_level_exit(musb);
608 usb_phy_set_suspend(musb->xceiv, 1);
609 }
Felipe Balbic20aebb2010-12-02 12:44:40 +0200610
611 return 0;
612}
613
Hema HK7acc6192011-02-28 14:19:34 +0530614static int omap2430_runtime_resume(struct device *dev)
Felipe Balbic20aebb2010-12-02 12:44:40 +0200615{
616 struct omap2430_glue *glue = dev_get_drvdata(dev);
617 struct musb *musb = glue_to_musb(glue);
Felipe Balbic20aebb2010-12-02 12:44:40 +0200618
Vladimir Zapolskiyafb76df2011-12-23 18:37:18 +0200619 if (musb) {
620 omap2430_low_level_init(musb);
621 musb_writel(musb->mregs, OTG_INTERFSEL,
622 musb->context.otg_interfsel);
Hema HKe25bec12011-09-07 09:19:24 -0700623
Vladimir Zapolskiyafb76df2011-12-23 18:37:18 +0200624 usb_phy_set_suspend(musb->xceiv, 0);
625 }
Felipe Balbic20aebb2010-12-02 12:44:40 +0200626
627 return 0;
628}
629
630static struct dev_pm_ops omap2430_pm_ops = {
Hema HK7acc6192011-02-28 14:19:34 +0530631 .runtime_suspend = omap2430_runtime_suspend,
632 .runtime_resume = omap2430_runtime_resume,
Felipe Balbic20aebb2010-12-02 12:44:40 +0200633};
634
635#define DEV_PM_OPS (&omap2430_pm_ops)
636#else
637#define DEV_PM_OPS NULL
638#endif
639
Kishon Vijay Abraham I00a0b1d2012-09-11 14:39:40 +0530640#ifdef CONFIG_OF
641static const struct of_device_id omap2430_id_table[] = {
642 {
643 .compatible = "ti,omap4-musb"
644 },
645 {
646 .compatible = "ti,omap3-musb"
647 },
648 {},
649};
650MODULE_DEVICE_TABLE(of, omap2430_id_table);
651#endif
652
Felipe Balbidc098862010-12-01 15:01:11 +0200653static struct platform_driver omap2430_driver = {
Felipe Balbie9e8c852012-01-26 12:40:23 +0200654 .probe = omap2430_probe,
Bill Pemberton76904172012-11-19 13:21:08 -0500655 .remove = omap2430_remove,
Felipe Balbidc098862010-12-01 15:01:11 +0200656 .driver = {
657 .name = "musb-omap2430",
Felipe Balbic20aebb2010-12-02 12:44:40 +0200658 .pm = DEV_PM_OPS,
Kishon Vijay Abraham I00a0b1d2012-09-11 14:39:40 +0530659 .of_match_table = of_match_ptr(omap2430_id_table),
Felipe Balbidc098862010-12-01 15:01:11 +0200660 },
661};
662
663MODULE_DESCRIPTION("OMAP2PLUS MUSB Glue Layer");
664MODULE_AUTHOR("Felipe Balbi <balbi@ti.com>");
665MODULE_LICENSE("GPL v2");
666
667static int __init omap2430_init(void)
668{
Felipe Balbie9e8c852012-01-26 12:40:23 +0200669 return platform_driver_register(&omap2430_driver);
Felipe Balbidc098862010-12-01 15:01:11 +0200670}
Kishon Vijay Abraham Ic9721432012-06-22 17:40:52 +0530671subsys_initcall(omap2430_init);
Felipe Balbidc098862010-12-01 15:01:11 +0200672
673static void __exit omap2430_exit(void)
674{
675 platform_driver_unregister(&omap2430_driver);
676}
677module_exit(omap2430_exit);