blob: e4e571bf9ba73a7d881f4f90b6390eb15d0f1b98 [file] [log] [blame]
Ajay Kumar Guptaeb830922010-10-19 10:08:12 +03001/*
2 * Texas Instruments AM35x "glue layer"
3 *
4 * Copyright (c) 2010, by Texas Instruments
5 *
6 * Based on the DA8xx "glue layer" code.
7 * Copyright (c) 2008-2009, MontaVista Software, Inc. <source@mvista.com>
8 *
9 * This file is part of the Inventra Controller Driver for Linux.
10 *
11 * The Inventra Controller Driver for Linux is free software; you
12 * can redistribute it and/or modify it under the terms of the GNU
13 * General Public License version 2 as published by the Free Software
14 * Foundation.
15 *
16 * The Inventra Controller Driver for Linux is distributed in
17 * the hope that it will be useful, but WITHOUT ANY WARRANTY;
18 * without even the implied warranty of MERCHANTABILITY or
19 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
20 * License for more details.
21 *
22 * You should have received a copy of the GNU General Public License
23 * along with The Inventra Controller Driver for Linux ; if not,
24 * write to the Free Software Foundation, Inc., 59 Temple Place,
25 * Suite 330, Boston, MA 02111-1307 USA
26 *
27 */
28
29#include <linux/init.h>
30#include <linux/clk.h>
31#include <linux/io.h>
Felipe Balbice40c572010-12-02 09:06:51 +020032#include <linux/platform_device.h>
33#include <linux/dma-mapping.h>
Ajay Kumar Guptaeb830922010-10-19 10:08:12 +030034
35#include <plat/control.h>
36#include <plat/usb.h>
37
38#include "musb_core.h"
39
40/*
41 * AM35x specific definitions
42 */
43/* USB 2.0 OTG module registers */
44#define USB_REVISION_REG 0x00
45#define USB_CTRL_REG 0x04
46#define USB_STAT_REG 0x08
47#define USB_EMULATION_REG 0x0c
48/* 0x10 Reserved */
49#define USB_AUTOREQ_REG 0x14
50#define USB_SRP_FIX_TIME_REG 0x18
51#define USB_TEARDOWN_REG 0x1c
52#define EP_INTR_SRC_REG 0x20
53#define EP_INTR_SRC_SET_REG 0x24
54#define EP_INTR_SRC_CLEAR_REG 0x28
55#define EP_INTR_MASK_REG 0x2c
56#define EP_INTR_MASK_SET_REG 0x30
57#define EP_INTR_MASK_CLEAR_REG 0x34
58#define EP_INTR_SRC_MASKED_REG 0x38
59#define CORE_INTR_SRC_REG 0x40
60#define CORE_INTR_SRC_SET_REG 0x44
61#define CORE_INTR_SRC_CLEAR_REG 0x48
62#define CORE_INTR_MASK_REG 0x4c
63#define CORE_INTR_MASK_SET_REG 0x50
64#define CORE_INTR_MASK_CLEAR_REG 0x54
65#define CORE_INTR_SRC_MASKED_REG 0x58
66/* 0x5c Reserved */
67#define USB_END_OF_INTR_REG 0x60
68
69/* Control register bits */
70#define AM35X_SOFT_RESET_MASK 1
71
72/* USB interrupt register bits */
73#define AM35X_INTR_USB_SHIFT 16
74#define AM35X_INTR_USB_MASK (0x1ff << AM35X_INTR_USB_SHIFT)
75#define AM35X_INTR_DRVVBUS 0x100
76#define AM35X_INTR_RX_SHIFT 16
77#define AM35X_INTR_TX_SHIFT 0
78#define AM35X_TX_EP_MASK 0xffff /* EP0 + 15 Tx EPs */
79#define AM35X_RX_EP_MASK 0xfffe /* 15 Rx EPs */
80#define AM35X_TX_INTR_MASK (AM35X_TX_EP_MASK << AM35X_INTR_TX_SHIFT)
81#define AM35X_RX_INTR_MASK (AM35X_RX_EP_MASK << AM35X_INTR_RX_SHIFT)
82
83#define USB_MENTOR_CORE_OFFSET 0x400
84
Felipe Balbi0919dfc2010-12-02 09:33:24 +020085struct am35x_glue {
86 struct device *dev;
87 struct platform_device *musb;
Felipe Balbi03491762010-12-02 09:57:08 +020088 struct clk *phy_clk;
89 struct clk *clk;
Felipe Balbi0919dfc2010-12-02 09:33:24 +020090};
91
Ajay Kumar Guptaeb830922010-10-19 10:08:12 +030092static inline void phy_on(void)
93{
94 unsigned long timeout = jiffies + msecs_to_jiffies(100);
95 u32 devconf2;
96
97 /*
98 * Start the on-chip PHY and its PLL.
99 */
100 devconf2 = omap_ctrl_readl(AM35XX_CONTROL_DEVCONF2);
101
102 devconf2 &= ~(CONF2_RESET | CONF2_PHYPWRDN | CONF2_OTGPWRDN);
103 devconf2 |= CONF2_PHY_PLLON;
104
105 omap_ctrl_writel(devconf2, AM35XX_CONTROL_DEVCONF2);
106
107 DBG(1, "Waiting for PHY clock good...\n");
108 while (!(omap_ctrl_readl(AM35XX_CONTROL_DEVCONF2)
109 & CONF2_PHYCLKGD)) {
110 cpu_relax();
111
112 if (time_after(jiffies, timeout)) {
113 DBG(1, "musb PHY clock good timed out\n");
114 break;
115 }
116 }
117}
118
119static inline void phy_off(void)
120{
121 u32 devconf2;
122
123 /*
124 * Power down the on-chip PHY.
125 */
126 devconf2 = omap_ctrl_readl(AM35XX_CONTROL_DEVCONF2);
127
128 devconf2 &= ~CONF2_PHY_PLLON;
129 devconf2 |= CONF2_PHYPWRDN | CONF2_OTGPWRDN;
130 omap_ctrl_writel(devconf2, AM35XX_CONTROL_DEVCONF2);
131}
132
133/*
Felipe Balbi743411b2010-12-01 13:22:05 +0200134 * am35x_musb_enable - enable interrupts
Ajay Kumar Guptaeb830922010-10-19 10:08:12 +0300135 */
Felipe Balbi743411b2010-12-01 13:22:05 +0200136static void am35x_musb_enable(struct musb *musb)
Ajay Kumar Guptaeb830922010-10-19 10:08:12 +0300137{
138 void __iomem *reg_base = musb->ctrl_base;
139 u32 epmask;
140
141 /* Workaround: setup IRQs through both register sets. */
142 epmask = ((musb->epmask & AM35X_TX_EP_MASK) << AM35X_INTR_TX_SHIFT) |
143 ((musb->epmask & AM35X_RX_EP_MASK) << AM35X_INTR_RX_SHIFT);
144
145 musb_writel(reg_base, EP_INTR_MASK_SET_REG, epmask);
146 musb_writel(reg_base, CORE_INTR_MASK_SET_REG, AM35X_INTR_USB_MASK);
147
148 /* Force the DRVVBUS IRQ so we can start polling for ID change. */
149 if (is_otg_enabled(musb))
150 musb_writel(reg_base, CORE_INTR_SRC_SET_REG,
151 AM35X_INTR_DRVVBUS << AM35X_INTR_USB_SHIFT);
152}
153
154/*
Felipe Balbi743411b2010-12-01 13:22:05 +0200155 * am35x_musb_disable - disable HDRC and flush interrupts
Ajay Kumar Guptaeb830922010-10-19 10:08:12 +0300156 */
Felipe Balbi743411b2010-12-01 13:22:05 +0200157static void am35x_musb_disable(struct musb *musb)
Ajay Kumar Guptaeb830922010-10-19 10:08:12 +0300158{
159 void __iomem *reg_base = musb->ctrl_base;
160
161 musb_writel(reg_base, CORE_INTR_MASK_CLEAR_REG, AM35X_INTR_USB_MASK);
162 musb_writel(reg_base, EP_INTR_MASK_CLEAR_REG,
163 AM35X_TX_INTR_MASK | AM35X_RX_INTR_MASK);
164 musb_writeb(musb->mregs, MUSB_DEVCTL, 0);
165 musb_writel(reg_base, USB_END_OF_INTR_REG, 0);
166}
167
168#ifdef CONFIG_USB_MUSB_HDRC_HCD
169#define portstate(stmt) stmt
170#else
171#define portstate(stmt)
172#endif
173
Felipe Balbi743411b2010-12-01 13:22:05 +0200174static void am35x_musb_set_vbus(struct musb *musb, int is_on)
Ajay Kumar Guptaeb830922010-10-19 10:08:12 +0300175{
176 WARN_ON(is_on && is_peripheral_active(musb));
177}
178
179#define POLL_SECONDS 2
180
181static struct timer_list otg_workaround;
182
183static void otg_timer(unsigned long _musb)
184{
185 struct musb *musb = (void *)_musb;
186 void __iomem *mregs = musb->mregs;
187 u8 devctl;
188 unsigned long flags;
189
190 /*
191 * We poll because AM35x's won't expose several OTG-critical
192 * status change events (from the transceiver) otherwise.
193 */
194 devctl = musb_readb(mregs, MUSB_DEVCTL);
195 DBG(7, "Poll devctl %02x (%s)\n", devctl, otg_state_string(musb));
196
197 spin_lock_irqsave(&musb->lock, flags);
198 switch (musb->xceiv->state) {
199 case OTG_STATE_A_WAIT_BCON:
200 devctl &= ~MUSB_DEVCTL_SESSION;
201 musb_writeb(musb->mregs, MUSB_DEVCTL, devctl);
202
203 devctl = musb_readb(musb->mregs, MUSB_DEVCTL);
204 if (devctl & MUSB_DEVCTL_BDEVICE) {
205 musb->xceiv->state = OTG_STATE_B_IDLE;
206 MUSB_DEV_MODE(musb);
207 } else {
208 musb->xceiv->state = OTG_STATE_A_IDLE;
209 MUSB_HST_MODE(musb);
210 }
211 break;
212 case OTG_STATE_A_WAIT_VFALL:
213 musb->xceiv->state = OTG_STATE_A_WAIT_VRISE;
214 musb_writel(musb->ctrl_base, CORE_INTR_SRC_SET_REG,
215 MUSB_INTR_VBUSERROR << AM35X_INTR_USB_SHIFT);
216 break;
217 case OTG_STATE_B_IDLE:
218 if (!is_peripheral_enabled(musb))
219 break;
220
221 devctl = musb_readb(mregs, MUSB_DEVCTL);
222 if (devctl & MUSB_DEVCTL_BDEVICE)
223 mod_timer(&otg_workaround, jiffies + POLL_SECONDS * HZ);
224 else
225 musb->xceiv->state = OTG_STATE_A_IDLE;
226 break;
227 default:
228 break;
229 }
230 spin_unlock_irqrestore(&musb->lock, flags);
231}
232
Felipe Balbi743411b2010-12-01 13:22:05 +0200233static void am35x_musb_try_idle(struct musb *musb, unsigned long timeout)
Ajay Kumar Guptaeb830922010-10-19 10:08:12 +0300234{
235 static unsigned long last_timer;
236
237 if (!is_otg_enabled(musb))
238 return;
239
240 if (timeout == 0)
241 timeout = jiffies + msecs_to_jiffies(3);
242
243 /* Never idle if active, or when VBUS timeout is not set as host */
244 if (musb->is_active || (musb->a_wait_bcon == 0 &&
245 musb->xceiv->state == OTG_STATE_A_WAIT_BCON)) {
246 DBG(4, "%s active, deleting timer\n", otg_state_string(musb));
247 del_timer(&otg_workaround);
248 last_timer = jiffies;
249 return;
250 }
251
252 if (time_after(last_timer, timeout) && timer_pending(&otg_workaround)) {
253 DBG(4, "Longer idle timer already pending, ignoring...\n");
254 return;
255 }
256 last_timer = timeout;
257
258 DBG(4, "%s inactive, starting idle timer for %u ms\n",
259 otg_state_string(musb), jiffies_to_msecs(timeout - jiffies));
260 mod_timer(&otg_workaround, timeout);
261}
262
Felipe Balbi743411b2010-12-01 13:22:05 +0200263static irqreturn_t am35x_musb_interrupt(int irq, void *hci)
Ajay Kumar Guptaeb830922010-10-19 10:08:12 +0300264{
265 struct musb *musb = hci;
266 void __iomem *reg_base = musb->ctrl_base;
267 unsigned long flags;
268 irqreturn_t ret = IRQ_NONE;
269 u32 epintr, usbintr, lvl_intr;
270
271 spin_lock_irqsave(&musb->lock, flags);
272
273 /* Get endpoint interrupts */
274 epintr = musb_readl(reg_base, EP_INTR_SRC_MASKED_REG);
275
276 if (epintr) {
277 musb_writel(reg_base, EP_INTR_SRC_CLEAR_REG, epintr);
278
279 musb->int_rx =
280 (epintr & AM35X_RX_INTR_MASK) >> AM35X_INTR_RX_SHIFT;
281 musb->int_tx =
282 (epintr & AM35X_TX_INTR_MASK) >> AM35X_INTR_TX_SHIFT;
283 }
284
285 /* Get usb core interrupts */
286 usbintr = musb_readl(reg_base, CORE_INTR_SRC_MASKED_REG);
287 if (!usbintr && !epintr)
288 goto eoi;
289
290 if (usbintr) {
291 musb_writel(reg_base, CORE_INTR_SRC_CLEAR_REG, usbintr);
292
293 musb->int_usb =
294 (usbintr & AM35X_INTR_USB_MASK) >> AM35X_INTR_USB_SHIFT;
295 }
296 /*
297 * DRVVBUS IRQs are the only proxy we have (a very poor one!) for
298 * AM35x's missing ID change IRQ. We need an ID change IRQ to
299 * switch appropriately between halves of the OTG state machine.
300 * Managing DEVCTL.SESSION per Mentor docs requires that we know its
301 * value but DEVCTL.BDEVICE is invalid without DEVCTL.SESSION set.
302 * Also, DRVVBUS pulses for SRP (but not at 5V) ...
303 */
304 if (usbintr & (AM35X_INTR_DRVVBUS << AM35X_INTR_USB_SHIFT)) {
305 int drvvbus = musb_readl(reg_base, USB_STAT_REG);
306 void __iomem *mregs = musb->mregs;
307 u8 devctl = musb_readb(mregs, MUSB_DEVCTL);
308 int err;
309
310 err = is_host_enabled(musb) && (musb->int_usb &
311 MUSB_INTR_VBUSERROR);
312 if (err) {
313 /*
314 * The Mentor core doesn't debounce VBUS as needed
315 * to cope with device connect current spikes. This
316 * means it's not uncommon for bus-powered devices
317 * to get VBUS errors during enumeration.
318 *
319 * This is a workaround, but newer RTL from Mentor
320 * seems to allow a better one: "re"-starting sessions
321 * without waiting for VBUS to stop registering in
322 * devctl.
323 */
324 musb->int_usb &= ~MUSB_INTR_VBUSERROR;
325 musb->xceiv->state = OTG_STATE_A_WAIT_VFALL;
326 mod_timer(&otg_workaround, jiffies + POLL_SECONDS * HZ);
327 WARNING("VBUS error workaround (delay coming)\n");
328 } else if (is_host_enabled(musb) && drvvbus) {
329 MUSB_HST_MODE(musb);
330 musb->xceiv->default_a = 1;
331 musb->xceiv->state = OTG_STATE_A_WAIT_VRISE;
332 portstate(musb->port1_status |= USB_PORT_STAT_POWER);
333 del_timer(&otg_workaround);
334 } else {
335 musb->is_active = 0;
336 MUSB_DEV_MODE(musb);
337 musb->xceiv->default_a = 0;
338 musb->xceiv->state = OTG_STATE_B_IDLE;
339 portstate(musb->port1_status &= ~USB_PORT_STAT_POWER);
340 }
341
342 /* NOTE: this must complete power-on within 100 ms. */
343 DBG(2, "VBUS %s (%s)%s, devctl %02x\n",
344 drvvbus ? "on" : "off",
345 otg_state_string(musb),
346 err ? " ERROR" : "",
347 devctl);
348 ret = IRQ_HANDLED;
349 }
350
351 if (musb->int_tx || musb->int_rx || musb->int_usb)
352 ret |= musb_interrupt(musb);
353
354eoi:
355 /* EOI needs to be written for the IRQ to be re-asserted. */
356 if (ret == IRQ_HANDLED || epintr || usbintr) {
357 /* clear level interrupt */
358 lvl_intr = omap_ctrl_readl(AM35XX_CONTROL_LVL_INTR_CLEAR);
359 lvl_intr |= AM35XX_USBOTGSS_INT_CLR;
360 omap_ctrl_writel(lvl_intr, AM35XX_CONTROL_LVL_INTR_CLEAR);
361 /* write EOI */
362 musb_writel(reg_base, USB_END_OF_INTR_REG, 0);
363 }
364
365 /* Poll for ID change */
366 if (is_otg_enabled(musb) && musb->xceiv->state == OTG_STATE_B_IDLE)
367 mod_timer(&otg_workaround, jiffies + POLL_SECONDS * HZ);
368
369 spin_unlock_irqrestore(&musb->lock, flags);
370
371 return ret;
372}
373
Felipe Balbi743411b2010-12-01 13:22:05 +0200374static int am35x_musb_set_mode(struct musb *musb, u8 musb_mode)
Ajay Kumar Guptaeb830922010-10-19 10:08:12 +0300375{
376 u32 devconf2 = omap_ctrl_readl(AM35XX_CONTROL_DEVCONF2);
377
378 devconf2 &= ~CONF2_OTGMODE;
379 switch (musb_mode) {
380#ifdef CONFIG_USB_MUSB_HDRC_HCD
381 case MUSB_HOST: /* Force VBUS valid, ID = 0 */
382 devconf2 |= CONF2_FORCE_HOST;
383 break;
384#endif
385#ifdef CONFIG_USB_GADGET_MUSB_HDRC
386 case MUSB_PERIPHERAL: /* Force VBUS valid, ID = 1 */
387 devconf2 |= CONF2_FORCE_DEVICE;
388 break;
389#endif
390#ifdef CONFIG_USB_MUSB_OTG
391 case MUSB_OTG: /* Don't override the VBUS/ID comparators */
392 devconf2 |= CONF2_NO_OVERRIDE;
393 break;
394#endif
395 default:
396 DBG(2, "Trying to set unsupported mode %u\n", musb_mode);
397 }
398
399 omap_ctrl_writel(devconf2, AM35XX_CONTROL_DEVCONF2);
400 return 0;
401}
402
Felipe Balbi743411b2010-12-01 13:22:05 +0200403static int am35x_musb_init(struct musb *musb)
Ajay Kumar Guptaeb830922010-10-19 10:08:12 +0300404{
405 void __iomem *reg_base = musb->ctrl_base;
406 u32 rev, lvl_intr, sw_reset;
Ajay Kumar Guptaeb830922010-10-19 10:08:12 +0300407
408 musb->mregs += USB_MENTOR_CORE_OFFSET;
409
Ajay Kumar Guptaeb830922010-10-19 10:08:12 +0300410 /* Returns zero if e.g. not clocked */
411 rev = musb_readl(reg_base, USB_REVISION_REG);
Felipe Balbi03491762010-12-02 09:57:08 +0200412 if (!rev)
413 return -ENODEV;
Ajay Kumar Guptaeb830922010-10-19 10:08:12 +0300414
415 usb_nop_xceiv_register();
416 musb->xceiv = otg_get_transceiver();
Felipe Balbi03491762010-12-02 09:57:08 +0200417 if (!musb->xceiv)
418 return -ENODEV;
Ajay Kumar Guptaeb830922010-10-19 10:08:12 +0300419
420 if (is_host_enabled(musb))
421 setup_timer(&otg_workaround, otg_timer, (unsigned long) musb);
422
Felipe Balbi743411b2010-12-01 13:22:05 +0200423 musb->board_set_vbus = am35x_musb_set_vbus;
Ajay Kumar Guptaeb830922010-10-19 10:08:12 +0300424
425 /* Global reset */
426 sw_reset = omap_ctrl_readl(AM35XX_CONTROL_IP_SW_RESET);
427
428 sw_reset |= AM35XX_USBOTGSS_SW_RST;
429 omap_ctrl_writel(sw_reset, AM35XX_CONTROL_IP_SW_RESET);
430
431 sw_reset &= ~AM35XX_USBOTGSS_SW_RST;
432 omap_ctrl_writel(sw_reset, AM35XX_CONTROL_IP_SW_RESET);
433
434 /* Reset the controller */
435 musb_writel(reg_base, USB_CTRL_REG, AM35X_SOFT_RESET_MASK);
436
437 /* Start the on-chip PHY and its PLL. */
438 phy_on();
439
440 msleep(5);
441
Felipe Balbi743411b2010-12-01 13:22:05 +0200442 musb->isr = am35x_musb_interrupt;
Ajay Kumar Guptaeb830922010-10-19 10:08:12 +0300443
444 /* clear level interrupt */
445 lvl_intr = omap_ctrl_readl(AM35XX_CONTROL_LVL_INTR_CLEAR);
446 lvl_intr |= AM35XX_USBOTGSS_INT_CLR;
447 omap_ctrl_writel(lvl_intr, AM35XX_CONTROL_LVL_INTR_CLEAR);
Felipe Balbi03491762010-12-02 09:57:08 +0200448
Ajay Kumar Guptaeb830922010-10-19 10:08:12 +0300449 return 0;
Ajay Kumar Guptaeb830922010-10-19 10:08:12 +0300450}
451
Felipe Balbi743411b2010-12-01 13:22:05 +0200452static int am35x_musb_exit(struct musb *musb)
Ajay Kumar Guptaeb830922010-10-19 10:08:12 +0300453{
454 if (is_host_enabled(musb))
455 del_timer_sync(&otg_workaround);
456
457 phy_off();
458
459 otg_put_transceiver(musb->xceiv);
460 usb_nop_xceiv_unregister();
461
Ajay Kumar Guptaeb830922010-10-19 10:08:12 +0300462 return 0;
463}
464
465#ifdef CONFIG_PM
466void musb_platform_save_context(struct musb *musb,
467 struct musb_context_registers *musb_context)
468{
469 phy_off();
470}
471
472void musb_platform_restore_context(struct musb *musb,
473 struct musb_context_registers *musb_context)
474{
475 phy_on();
476}
477#endif
Ajay Kumar Gupta843bb1d2010-10-19 10:08:13 +0300478
479/* AM35x supports only 32bit read operation */
480void musb_read_fifo(struct musb_hw_ep *hw_ep, u16 len, u8 *dst)
481{
482 void __iomem *fifo = hw_ep->fifo;
483 u32 val;
484 int i;
485
486 /* Read for 32bit-aligned destination address */
487 if (likely((0x03 & (unsigned long) dst) == 0) && len >= 4) {
488 readsl(fifo, dst, len >> 2);
489 dst += len & ~0x03;
490 len &= 0x03;
491 }
492 /*
493 * Now read the remaining 1 to 3 byte or complete length if
494 * unaligned address.
495 */
496 if (len > 4) {
497 for (i = 0; i < (len >> 2); i++) {
498 *(u32 *) dst = musb_readl(fifo, 0);
499 dst += 4;
500 }
501 len &= 0x03;
502 }
503 if (len > 0) {
504 val = musb_readl(fifo, 0);
505 memcpy(dst, &val, len);
506 }
507}
Felipe Balbi743411b2010-12-01 13:22:05 +0200508
Felipe Balbif7ec9432010-12-02 09:48:58 +0200509static const struct musb_platform_ops am35x_ops = {
Felipe Balbi743411b2010-12-01 13:22:05 +0200510 .init = am35x_musb_init,
511 .exit = am35x_musb_exit,
512
513 .enable = am35x_musb_enable,
514 .disable = am35x_musb_disable,
515
516 .set_mode = am35x_musb_set_mode,
517 .try_idle = am35x_musb_try_idle,
518
519 .set_vbus = am35x_musb_set_vbus,
520};
Felipe Balbice40c572010-12-02 09:06:51 +0200521
522static u64 am35x_dmamask = DMA_BIT_MASK(32);
523
524static int __init am35x_probe(struct platform_device *pdev)
525{
526 struct musb_hdrc_platform_data *pdata = pdev->dev.platform_data;
527 struct platform_device *musb;
Felipe Balbi0919dfc2010-12-02 09:33:24 +0200528 struct am35x_glue *glue;
Felipe Balbice40c572010-12-02 09:06:51 +0200529
Felipe Balbi03491762010-12-02 09:57:08 +0200530 struct clk *phy_clk;
531 struct clk *clk;
532
Felipe Balbice40c572010-12-02 09:06:51 +0200533 int ret = -ENOMEM;
534
Felipe Balbi0919dfc2010-12-02 09:33:24 +0200535 glue = kzalloc(sizeof(*glue), GFP_KERNEL);
536 if (!glue) {
537 dev_err(&pdev->dev, "failed to allocate glue context\n");
538 goto err0;
539 }
540
Felipe Balbice40c572010-12-02 09:06:51 +0200541 musb = platform_device_alloc("musb-hdrc", -1);
542 if (!musb) {
543 dev_err(&pdev->dev, "failed to allocate musb device\n");
Felipe Balbi0919dfc2010-12-02 09:33:24 +0200544 goto err1;
Felipe Balbice40c572010-12-02 09:06:51 +0200545 }
546
Felipe Balbi03491762010-12-02 09:57:08 +0200547 phy_clk = clk_get(&pdev->dev, "fck");
548 if (IS_ERR(phy_clk)) {
549 dev_err(&pdev->dev, "failed to get PHY clock\n");
550 ret = PTR_ERR(phy_clk);
551 goto err2;
552 }
553
554 clk = clk_get(&pdev->dev, "ick");
555 if (IS_ERR(clk)) {
556 dev_err(&pdev->dev, "failed to get clock\n");
557 ret = PTR_ERR(clk);
558 goto err3;
559 }
560
561 ret = clk_enable(phy_clk);
562 if (ret) {
563 dev_err(&pdev->dev, "failed to enable PHY clock\n");
564 goto err4;
565 }
566
567 ret = clk_enable(clk);
568 if (ret) {
569 dev_err(&pdev->dev, "failed to enable clock\n");
570 goto err5;
571 }
572
Felipe Balbice40c572010-12-02 09:06:51 +0200573 musb->dev.parent = &pdev->dev;
574 musb->dev.dma_mask = &am35x_dmamask;
575 musb->dev.coherent_dma_mask = am35x_dmamask;
576
Felipe Balbi0919dfc2010-12-02 09:33:24 +0200577 glue->dev = &pdev->dev;
578 glue->musb = musb;
Felipe Balbi03491762010-12-02 09:57:08 +0200579 glue->phy_clk = phy_clk;
580 glue->clk = clk;
Felipe Balbi0919dfc2010-12-02 09:33:24 +0200581
Felipe Balbif7ec9432010-12-02 09:48:58 +0200582 pdata->platform_ops = &am35x_ops;
583
Felipe Balbi0919dfc2010-12-02 09:33:24 +0200584 platform_set_drvdata(pdev, glue);
Felipe Balbice40c572010-12-02 09:06:51 +0200585
586 ret = platform_device_add_resources(musb, pdev->resource,
587 pdev->num_resources);
588 if (ret) {
589 dev_err(&pdev->dev, "failed to add resources\n");
Felipe Balbi03491762010-12-02 09:57:08 +0200590 goto err6;
Felipe Balbice40c572010-12-02 09:06:51 +0200591 }
592
593 ret = platform_device_add_data(musb, pdata, sizeof(*pdata));
594 if (ret) {
595 dev_err(&pdev->dev, "failed to add platform_data\n");
Felipe Balbi03491762010-12-02 09:57:08 +0200596 goto err6;
Felipe Balbice40c572010-12-02 09:06:51 +0200597 }
598
599 ret = platform_device_add(musb);
600 if (ret) {
601 dev_err(&pdev->dev, "failed to register musb device\n");
Felipe Balbi03491762010-12-02 09:57:08 +0200602 goto err6;
Felipe Balbice40c572010-12-02 09:06:51 +0200603 }
604
605 return 0;
606
Felipe Balbi03491762010-12-02 09:57:08 +0200607err6:
608 clk_disable(clk);
609
610err5:
611 clk_disable(phy_clk);
612
613err4:
614 clk_put(clk);
615
616err3:
617 clk_put(phy_clk);
618
Felipe Balbi0919dfc2010-12-02 09:33:24 +0200619err2:
Felipe Balbice40c572010-12-02 09:06:51 +0200620 platform_device_put(musb);
621
Felipe Balbi0919dfc2010-12-02 09:33:24 +0200622err1:
623 kfree(glue);
624
Felipe Balbice40c572010-12-02 09:06:51 +0200625err0:
626 return ret;
627}
628
629static int __exit am35x_remove(struct platform_device *pdev)
630{
Felipe Balbi0919dfc2010-12-02 09:33:24 +0200631 struct am35x_glue *glue = platform_get_drvdata(pdev);
Felipe Balbice40c572010-12-02 09:06:51 +0200632
Felipe Balbi0919dfc2010-12-02 09:33:24 +0200633 platform_device_del(glue->musb);
634 platform_device_put(glue->musb);
Felipe Balbi03491762010-12-02 09:57:08 +0200635 clk_disable(glue->clk);
636 clk_disable(glue->phy_clk);
637 clk_put(glue->clk);
638 clk_put(glue->phy_clk);
Felipe Balbi0919dfc2010-12-02 09:33:24 +0200639 kfree(glue);
Felipe Balbice40c572010-12-02 09:06:51 +0200640
641 return 0;
642}
643
644static struct platform_driver am35x_driver = {
645 .remove = __exit_p(am35x_remove),
646 .driver = {
647 .name = "musb-am35x",
648 },
649};
650
651MODULE_DESCRIPTION("AM35x MUSB Glue Layer");
652MODULE_AUTHOR("Ajay Kumar Gupta <ajay.gupta@ti.com>");
653MODULE_LICENSE("GPL v2");
654
655static int __init am35x_init(void)
656{
657 return platform_driver_probe(&am35x_driver, am35x_probe);
658}
659subsys_initcall(am35x_init);
660
661static void __exit am35x_exit(void)
662{
663 platform_driver_unregister(&am35x_driver);
664}
665module_exit(am35x_exit);