blob: fa3154b03044f4dc5692cc1548eb4783f4077b7f [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>
32#include <linux/clk.h>
33#include <linux/io.h>
Felipe Balbidc098862010-12-01 15:01:11 +020034#include <linux/platform_device.h>
35#include <linux/dma-mapping.h>
Felipe Balbi550a7372008-07-24 12:27:36 +030036
Felipe Balbi550a7372008-07-24 12:27:36 +030037#include "musb_core.h"
38#include "omap2430.h"
39
Felipe Balbia3cee122010-12-02 09:27:29 +020040struct omap2430_glue {
41 struct device *dev;
42 struct platform_device *musb;
Felipe Balbi03491762010-12-02 09:57:08 +020043 struct clk *clk;
Felipe Balbia3cee122010-12-02 09:27:29 +020044};
45
Felipe Balbi550a7372008-07-24 12:27:36 +030046static struct timer_list musb_idle_timer;
47
48static void musb_do_idle(unsigned long _musb)
49{
50 struct musb *musb = (void *)_musb;
51 unsigned long flags;
Ajay Kumar Guptaeef767b2008-10-29 15:10:38 +020052#ifdef CONFIG_USB_MUSB_HDRC_HCD
Felipe Balbi550a7372008-07-24 12:27:36 +030053 u8 power;
Ajay Kumar Guptaeef767b2008-10-29 15:10:38 +020054#endif
Felipe Balbi550a7372008-07-24 12:27:36 +030055 u8 devctl;
56
Felipe Balbi550a7372008-07-24 12:27:36 +030057 spin_lock_irqsave(&musb->lock, flags);
58
David Brownell71783e02008-11-24 13:06:49 +020059 devctl = musb_readb(musb->mregs, MUSB_DEVCTL);
60
David Brownell84e250f2009-03-31 12:30:04 -070061 switch (musb->xceiv->state) {
Felipe Balbi550a7372008-07-24 12:27:36 +030062 case OTG_STATE_A_WAIT_BCON:
63 devctl &= ~MUSB_DEVCTL_SESSION;
64 musb_writeb(musb->mregs, MUSB_DEVCTL, devctl);
65
66 devctl = musb_readb(musb->mregs, MUSB_DEVCTL);
67 if (devctl & MUSB_DEVCTL_BDEVICE) {
David Brownell84e250f2009-03-31 12:30:04 -070068 musb->xceiv->state = OTG_STATE_B_IDLE;
Felipe Balbi550a7372008-07-24 12:27:36 +030069 MUSB_DEV_MODE(musb);
70 } else {
David Brownell84e250f2009-03-31 12:30:04 -070071 musb->xceiv->state = OTG_STATE_A_IDLE;
Felipe Balbi550a7372008-07-24 12:27:36 +030072 MUSB_HST_MODE(musb);
73 }
74 break;
75#ifdef CONFIG_USB_MUSB_HDRC_HCD
76 case OTG_STATE_A_SUSPEND:
77 /* finish RESUME signaling? */
78 if (musb->port1_status & MUSB_PORT_STAT_RESUME) {
79 power = musb_readb(musb->mregs, MUSB_POWER);
80 power &= ~MUSB_POWER_RESUME;
81 DBG(1, "root port resume stopped, power %02x\n", power);
82 musb_writeb(musb->mregs, MUSB_POWER, power);
83 musb->is_active = 1;
84 musb->port1_status &= ~(USB_PORT_STAT_SUSPEND
85 | MUSB_PORT_STAT_RESUME);
86 musb->port1_status |= USB_PORT_STAT_C_SUSPEND << 16;
87 usb_hcd_poll_rh_status(musb_to_hcd(musb));
88 /* NOTE: it might really be A_WAIT_BCON ... */
David Brownell84e250f2009-03-31 12:30:04 -070089 musb->xceiv->state = OTG_STATE_A_HOST;
Felipe Balbi550a7372008-07-24 12:27:36 +030090 }
91 break;
92#endif
93#ifdef CONFIG_USB_MUSB_HDRC_HCD
94 case OTG_STATE_A_HOST:
95 devctl = musb_readb(musb->mregs, MUSB_DEVCTL);
96 if (devctl & MUSB_DEVCTL_BDEVICE)
David Brownell84e250f2009-03-31 12:30:04 -070097 musb->xceiv->state = OTG_STATE_B_IDLE;
Felipe Balbi550a7372008-07-24 12:27:36 +030098 else
David Brownell84e250f2009-03-31 12:30:04 -070099 musb->xceiv->state = OTG_STATE_A_WAIT_BCON;
Felipe Balbi550a7372008-07-24 12:27:36 +0300100#endif
101 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 Balbi550a7372008-07-24 12:27:36 +0300119 DBG(4, "%s active, deleting timer\n", otg_state_string(musb));
120 del_timer(&musb_idle_timer);
121 last_timer = jiffies;
122 return;
123 }
124
125 if (time_after(last_timer, timeout)) {
126 if (!timer_pending(&musb_idle_timer))
127 last_timer = timeout;
128 else {
129 DBG(4, "Longer idle timer already pending, ignoring\n");
130 return;
131 }
132 }
133 last_timer = timeout;
134
135 DBG(4, "%s inactive, for idle timer for %lu ms\n",
136 otg_state_string(musb),
137 (unsigned long)jiffies_to_msecs(timeout - jiffies));
138 mod_timer(&musb_idle_timer, timeout);
139}
140
Felipe Balbi743411b2010-12-01 13:22:05 +0200141static void omap2430_musb_enable(struct musb *musb)
Felipe Balbi550a7372008-07-24 12:27:36 +0300142{
143}
Felipe Balbi743411b2010-12-01 13:22:05 +0200144
145static void omap2430_musb_disable(struct musb *musb)
Felipe Balbi550a7372008-07-24 12:27:36 +0300146{
147}
Felipe Balbi743411b2010-12-01 13:22:05 +0200148
149static void omap2430_musb_set_vbus(struct musb *musb, int is_on)
Felipe Balbi550a7372008-07-24 12:27:36 +0300150{
151 u8 devctl;
152 /* HDRC controls CPEN, but beware current surges during device
153 * connect. They can trigger transient overcurrent conditions
154 * that must be ignored.
155 */
156
157 devctl = musb_readb(musb->mregs, MUSB_DEVCTL);
158
159 if (is_on) {
160 musb->is_active = 1;
David Brownell84e250f2009-03-31 12:30:04 -0700161 musb->xceiv->default_a = 1;
162 musb->xceiv->state = OTG_STATE_A_WAIT_VRISE;
Felipe Balbi550a7372008-07-24 12:27:36 +0300163 devctl |= MUSB_DEVCTL_SESSION;
164
165 MUSB_HST_MODE(musb);
166 } else {
167 musb->is_active = 0;
168
169 /* NOTE: we're skipping A_WAIT_VFALL -> A_IDLE and
170 * jumping right to B_IDLE...
171 */
172
David Brownell84e250f2009-03-31 12:30:04 -0700173 musb->xceiv->default_a = 0;
174 musb->xceiv->state = OTG_STATE_B_IDLE;
Felipe Balbi550a7372008-07-24 12:27:36 +0300175 devctl &= ~MUSB_DEVCTL_SESSION;
176
177 MUSB_DEV_MODE(musb);
178 }
179 musb_writeb(musb->mregs, MUSB_DEVCTL, devctl);
180
181 DBG(1, "VBUS %s, devctl %02x "
182 /* otg %3x conf %08x prcm %08x */ "\n",
183 otg_state_string(musb),
184 musb_readb(musb->mregs, MUSB_DEVCTL));
185}
Felipe Balbi550a7372008-07-24 12:27:36 +0300186
Felipe Balbi743411b2010-12-01 13:22:05 +0200187static int omap2430_musb_resume(struct musb *musb);
Felipe Balbi550a7372008-07-24 12:27:36 +0300188
Felipe Balbi743411b2010-12-01 13:22:05 +0200189static int omap2430_musb_set_mode(struct musb *musb, u8 musb_mode)
Felipe Balbi550a7372008-07-24 12:27:36 +0300190{
191 u8 devctl = musb_readb(musb->mregs, MUSB_DEVCTL);
192
193 devctl |= MUSB_DEVCTL_SESSION;
194 musb_writeb(musb->mregs, MUSB_DEVCTL, devctl);
195
David Brownell96a274d2008-11-24 13:06:47 +0200196 return 0;
Felipe Balbi550a7372008-07-24 12:27:36 +0300197}
198
Felipe Balbi743411b2010-12-01 13:22:05 +0200199static int omap2430_musb_init(struct musb *musb)
Felipe Balbi550a7372008-07-24 12:27:36 +0300200{
201 u32 l;
Hema Kalliguddiea65df52010-09-22 19:27:40 -0500202 struct device *dev = musb->controller;
203 struct musb_hdrc_platform_data *plat = dev->platform_data;
204 struct omap_musb_board_data *data = plat->board_data;
Felipe Balbi550a7372008-07-24 12:27:36 +0300205
David Brownell84e250f2009-03-31 12:30:04 -0700206 /* We require some kind of external transceiver, hooked
207 * up through ULPI. TWL4030-family PMICs include one,
208 * which needs a driver, drivers aren't always needed.
209 */
210 musb->xceiv = otg_get_transceiver();
211 if (!musb->xceiv) {
212 pr_err("HS USB OTG: no transceiver configured\n");
213 return -ENODEV;
214 }
215
Felipe Balbi743411b2010-12-01 13:22:05 +0200216 omap2430_musb_resume(musb);
Felipe Balbi550a7372008-07-24 12:27:36 +0300217
Felipe Balbi8573e6a2010-01-21 15:33:53 +0200218 l = musb_readl(musb->mregs, OTG_SYSCONFIG);
Felipe Balbi550a7372008-07-24 12:27:36 +0300219 l &= ~ENABLEWAKEUP; /* disable wakeup */
220 l &= ~NOSTDBY; /* remove possible nostdby */
221 l |= SMARTSTDBY; /* enable smart standby */
222 l &= ~AUTOIDLE; /* disable auto idle */
223 l &= ~NOIDLE; /* remove possible noidle */
224 l |= SMARTIDLE; /* enable smart idle */
Niilo Minkkinen9a4b5e32009-05-18 17:54:16 +0300225 /*
226 * MUSB AUTOIDLE don't work in 3430.
227 * Workaround by Richard Woodruff/TI
228 */
229 if (!cpu_is_omap3430())
230 l |= AUTOIDLE; /* enable auto idle */
Felipe Balbi8573e6a2010-01-21 15:33:53 +0200231 musb_writel(musb->mregs, OTG_SYSCONFIG, l);
Felipe Balbi550a7372008-07-24 12:27:36 +0300232
Felipe Balbi8573e6a2010-01-21 15:33:53 +0200233 l = musb_readl(musb->mregs, OTG_INTERFSEL);
Maulik Mankadde2e1b02010-03-12 10:29:07 +0200234
235 if (data->interface_type == MUSB_INTERFACE_UTMI) {
236 /* OMAP4 uses Internal PHY GS70 which uses UTMI interface */
237 l &= ~ULPI_12PIN; /* Disable ULPI */
238 l |= UTMI_8BIT; /* Enable UTMI */
239 } else {
240 l |= ULPI_12PIN;
241 }
242
Felipe Balbi8573e6a2010-01-21 15:33:53 +0200243 musb_writel(musb->mregs, OTG_INTERFSEL, l);
Felipe Balbi550a7372008-07-24 12:27:36 +0300244
245 pr_debug("HS USB OTG: revision 0x%x, sysconfig 0x%02x, "
246 "sysstatus 0x%x, intrfsel 0x%x, simenable 0x%x\n",
Felipe Balbi8573e6a2010-01-21 15:33:53 +0200247 musb_readl(musb->mregs, OTG_REVISION),
248 musb_readl(musb->mregs, OTG_SYSCONFIG),
249 musb_readl(musb->mregs, OTG_SYSSTATUS),
250 musb_readl(musb->mregs, OTG_INTERFSEL),
251 musb_readl(musb->mregs, OTG_SIMENABLE));
Felipe Balbi550a7372008-07-24 12:27:36 +0300252
Felipe Balbi550a7372008-07-24 12:27:36 +0300253 if (is_host_enabled(musb))
Felipe Balbi743411b2010-12-01 13:22:05 +0200254 musb->board_set_vbus = omap2430_musb_set_vbus;
Felipe Balbi550a7372008-07-24 12:27:36 +0300255
256 setup_timer(&musb_idle_timer, musb_do_idle, (unsigned long) musb);
257
258 return 0;
259}
260
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +0200261#ifdef CONFIG_PM
Felipe Balbi8573e6a2010-01-21 15:33:53 +0200262void musb_platform_save_context(struct musb *musb,
263 struct musb_context_registers *musb_context)
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +0200264{
Felipe Balbi8573e6a2010-01-21 15:33:53 +0200265 musb_context->otg_sysconfig = musb_readl(musb->mregs, OTG_SYSCONFIG);
266 musb_context->otg_forcestandby = musb_readl(musb->mregs, OTG_FORCESTDBY);
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +0200267}
268
Felipe Balbi8573e6a2010-01-21 15:33:53 +0200269void musb_platform_restore_context(struct musb *musb,
270 struct musb_context_registers *musb_context)
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +0200271{
Felipe Balbi8573e6a2010-01-21 15:33:53 +0200272 musb_writel(musb->mregs, OTG_SYSCONFIG, musb_context->otg_sysconfig);
273 musb_writel(musb->mregs, OTG_FORCESTDBY, musb_context->otg_forcestandby);
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +0200274}
275#endif
276
Felipe Balbi743411b2010-12-01 13:22:05 +0200277static int omap2430_musb_suspend(struct musb *musb)
Felipe Balbi550a7372008-07-24 12:27:36 +0300278{
279 u32 l;
280
Felipe Balbi550a7372008-07-24 12:27:36 +0300281 /* in any role */
Felipe Balbi8573e6a2010-01-21 15:33:53 +0200282 l = musb_readl(musb->mregs, OTG_FORCESTDBY);
Felipe Balbi550a7372008-07-24 12:27:36 +0300283 l |= ENABLEFORCE; /* enable MSTANDBY */
Felipe Balbi8573e6a2010-01-21 15:33:53 +0200284 musb_writel(musb->mregs, OTG_FORCESTDBY, l);
Felipe Balbi550a7372008-07-24 12:27:36 +0300285
Felipe Balbi8573e6a2010-01-21 15:33:53 +0200286 l = musb_readl(musb->mregs, OTG_SYSCONFIG);
Felipe Balbi550a7372008-07-24 12:27:36 +0300287 l |= ENABLEWAKEUP; /* enable wakeup */
Felipe Balbi8573e6a2010-01-21 15:33:53 +0200288 musb_writel(musb->mregs, OTG_SYSCONFIG, l);
Felipe Balbi550a7372008-07-24 12:27:36 +0300289
David Brownell84e250f2009-03-31 12:30:04 -0700290 otg_set_suspend(musb->xceiv, 1);
Felipe Balbi550a7372008-07-24 12:27:36 +0300291
Felipe Balbi550a7372008-07-24 12:27:36 +0300292 return 0;
293}
294
Felipe Balbi743411b2010-12-01 13:22:05 +0200295static int omap2430_musb_resume(struct musb *musb)
Felipe Balbi550a7372008-07-24 12:27:36 +0300296{
297 u32 l;
298
David Brownell84e250f2009-03-31 12:30:04 -0700299 otg_set_suspend(musb->xceiv, 0);
Felipe Balbi550a7372008-07-24 12:27:36 +0300300
Felipe Balbi8573e6a2010-01-21 15:33:53 +0200301 l = musb_readl(musb->mregs, OTG_SYSCONFIG);
Felipe Balbi550a7372008-07-24 12:27:36 +0300302 l &= ~ENABLEWAKEUP; /* disable wakeup */
Felipe Balbi8573e6a2010-01-21 15:33:53 +0200303 musb_writel(musb->mregs, OTG_SYSCONFIG, l);
Felipe Balbi550a7372008-07-24 12:27:36 +0300304
Felipe Balbi8573e6a2010-01-21 15:33:53 +0200305 l = musb_readl(musb->mregs, OTG_FORCESTDBY);
Felipe Balbi550a7372008-07-24 12:27:36 +0300306 l &= ~ENABLEFORCE; /* disable MSTANDBY */
Felipe Balbi8573e6a2010-01-21 15:33:53 +0200307 musb_writel(musb->mregs, OTG_FORCESTDBY, l);
Felipe Balbi550a7372008-07-24 12:27:36 +0300308
309 return 0;
310}
311
Felipe Balbi743411b2010-12-01 13:22:05 +0200312static int omap2430_musb_exit(struct musb *musb)
Felipe Balbi550a7372008-07-24 12:27:36 +0300313{
314
Felipe Balbi743411b2010-12-01 13:22:05 +0200315 omap2430_musb_suspend(musb);
Felipe Balbi550a7372008-07-24 12:27:36 +0300316
Sergei Shtylyovf4053872010-09-29 09:54:29 +0300317 otg_put_transceiver(musb->xceiv);
Felipe Balbi550a7372008-07-24 12:27:36 +0300318 return 0;
319}
Felipe Balbi743411b2010-12-01 13:22:05 +0200320
Felipe Balbif7ec9432010-12-02 09:48:58 +0200321static const struct musb_platform_ops omap2430_ops = {
Felipe Balbi743411b2010-12-01 13:22:05 +0200322 .init = omap2430_musb_init,
323 .exit = omap2430_musb_exit,
324
325 .suspend = omap2430_musb_suspend,
326 .resume = omap2430_musb_resume,
327
328 .enable = omap2430_musb_enable,
329 .disable = omap2430_musb_disable,
330
331 .set_mode = omap2430_musb_set_mode,
332 .try_idle = omap2430_musb_try_idle,
333
334 .set_vbus = omap2430_musb_set_vbus,
335};
Felipe Balbidc098862010-12-01 15:01:11 +0200336
337static u64 omap2430_dmamask = DMA_BIT_MASK(32);
338
339static int __init omap2430_probe(struct platform_device *pdev)
340{
341 struct musb_hdrc_platform_data *pdata = pdev->dev.platform_data;
342 struct platform_device *musb;
Felipe Balbia3cee122010-12-02 09:27:29 +0200343 struct omap2430_glue *glue;
Felipe Balbi03491762010-12-02 09:57:08 +0200344 struct clk *clk;
Felipe Balbidc098862010-12-01 15:01:11 +0200345
346 int ret = -ENOMEM;
347
Felipe Balbia3cee122010-12-02 09:27:29 +0200348 glue = kzalloc(sizeof(*glue), GFP_KERNEL);
349 if (!glue) {
350 dev_err(&pdev->dev, "failed to allocate glue context\n");
351 goto err0;
352 }
353
Felipe Balbidc098862010-12-01 15:01:11 +0200354 musb = platform_device_alloc("musb-hdrc", -1);
355 if (!musb) {
356 dev_err(&pdev->dev, "failed to allocate musb device\n");
Felipe Balbia3cee122010-12-02 09:27:29 +0200357 goto err1;
Felipe Balbidc098862010-12-01 15:01:11 +0200358 }
359
Felipe Balbi03491762010-12-02 09:57:08 +0200360 clk = clk_get(&pdev->dev, "ick");
361 if (IS_ERR(clk)) {
362 dev_err(&pdev->dev, "failed to get clock\n");
363 ret = PTR_ERR(clk);
364 goto err2;
365 }
366
367 ret = clk_enable(clk);
368 if (ret) {
369 dev_err(&pdev->dev, "failed to enable clock\n");
370 goto err3;
371 }
372
Felipe Balbidc098862010-12-01 15:01:11 +0200373 musb->dev.parent = &pdev->dev;
374 musb->dev.dma_mask = &omap2430_dmamask;
375 musb->dev.coherent_dma_mask = omap2430_dmamask;
376
Felipe Balbia3cee122010-12-02 09:27:29 +0200377 glue->dev = &pdev->dev;
378 glue->musb = musb;
Felipe Balbi03491762010-12-02 09:57:08 +0200379 glue->clk = clk;
Felipe Balbia3cee122010-12-02 09:27:29 +0200380
Felipe Balbif7ec9432010-12-02 09:48:58 +0200381 pdata->platform_ops = &omap2430_ops;
382
Felipe Balbia3cee122010-12-02 09:27:29 +0200383 platform_set_drvdata(pdev, glue);
Felipe Balbidc098862010-12-01 15:01:11 +0200384
385 ret = platform_device_add_resources(musb, pdev->resource,
386 pdev->num_resources);
387 if (ret) {
388 dev_err(&pdev->dev, "failed to add resources\n");
Felipe Balbi03491762010-12-02 09:57:08 +0200389 goto err4;
Felipe Balbidc098862010-12-01 15:01:11 +0200390 }
391
392 ret = platform_device_add_data(musb, pdata, sizeof(*pdata));
393 if (ret) {
394 dev_err(&pdev->dev, "failed to add platform_data\n");
Felipe Balbi03491762010-12-02 09:57:08 +0200395 goto err4;
Felipe Balbidc098862010-12-01 15:01:11 +0200396 }
397
398 ret = platform_device_add(musb);
399 if (ret) {
400 dev_err(&pdev->dev, "failed to register musb device\n");
Felipe Balbi03491762010-12-02 09:57:08 +0200401 goto err4;
Felipe Balbidc098862010-12-01 15:01:11 +0200402 }
403
404 return 0;
405
Felipe Balbi03491762010-12-02 09:57:08 +0200406err4:
407 clk_disable(clk);
408
409err3:
410 clk_put(clk);
411
Felipe Balbia3cee122010-12-02 09:27:29 +0200412err2:
Felipe Balbidc098862010-12-01 15:01:11 +0200413 platform_device_put(musb);
414
Felipe Balbia3cee122010-12-02 09:27:29 +0200415err1:
416 kfree(glue);
417
Felipe Balbidc098862010-12-01 15:01:11 +0200418err0:
419 return ret;
420}
421
422static int __exit omap2430_remove(struct platform_device *pdev)
423{
Felipe Balbia3cee122010-12-02 09:27:29 +0200424 struct omap2430_glue *glue = platform_get_drvdata(pdev);
Felipe Balbidc098862010-12-01 15:01:11 +0200425
Felipe Balbia3cee122010-12-02 09:27:29 +0200426 platform_device_del(glue->musb);
427 platform_device_put(glue->musb);
Felipe Balbi03491762010-12-02 09:57:08 +0200428 clk_disable(glue->clk);
429 clk_put(glue->clk);
Felipe Balbia3cee122010-12-02 09:27:29 +0200430 kfree(glue);
Felipe Balbidc098862010-12-01 15:01:11 +0200431
432 return 0;
433}
434
435static struct platform_driver omap2430_driver = {
436 .remove = __exit_p(omap2430_remove),
437 .driver = {
438 .name = "musb-omap2430",
439 },
440};
441
442MODULE_DESCRIPTION("OMAP2PLUS MUSB Glue Layer");
443MODULE_AUTHOR("Felipe Balbi <balbi@ti.com>");
444MODULE_LICENSE("GPL v2");
445
446static int __init omap2430_init(void)
447{
448 return platform_driver_probe(&omap2430_driver, omap2430_probe);
449}
450subsys_initcall(omap2430_init);
451
452static void __exit omap2430_exit(void)
453{
454 platform_driver_unregister(&omap2430_driver);
455}
456module_exit(omap2430_exit);