blob: fdc7c8878f8b0764ab75740df48623c4cd77c137 [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};
Felipe Balbi6f783e22010-12-02 12:53:22 +020091#define glue_to_musb(g) platform_get_drvdata(g->musb)
Felipe Balbi0919dfc2010-12-02 09:33:24 +020092
Ajay Kumar Guptaeb830922010-10-19 10:08:12 +030093static inline void phy_on(void)
94{
95 unsigned long timeout = jiffies + msecs_to_jiffies(100);
96 u32 devconf2;
97
98 /*
99 * Start the on-chip PHY and its PLL.
100 */
101 devconf2 = omap_ctrl_readl(AM35XX_CONTROL_DEVCONF2);
102
103 devconf2 &= ~(CONF2_RESET | CONF2_PHYPWRDN | CONF2_OTGPWRDN);
104 devconf2 |= CONF2_PHY_PLLON;
105
106 omap_ctrl_writel(devconf2, AM35XX_CONTROL_DEVCONF2);
107
108 DBG(1, "Waiting for PHY clock good...\n");
109 while (!(omap_ctrl_readl(AM35XX_CONTROL_DEVCONF2)
110 & CONF2_PHYCLKGD)) {
111 cpu_relax();
112
113 if (time_after(jiffies, timeout)) {
114 DBG(1, "musb PHY clock good timed out\n");
115 break;
116 }
117 }
118}
119
120static inline void phy_off(void)
121{
122 u32 devconf2;
123
124 /*
125 * Power down the on-chip PHY.
126 */
127 devconf2 = omap_ctrl_readl(AM35XX_CONTROL_DEVCONF2);
128
129 devconf2 &= ~CONF2_PHY_PLLON;
130 devconf2 |= CONF2_PHYPWRDN | CONF2_OTGPWRDN;
131 omap_ctrl_writel(devconf2, AM35XX_CONTROL_DEVCONF2);
132}
133
134/*
Felipe Balbi743411b2010-12-01 13:22:05 +0200135 * am35x_musb_enable - enable interrupts
Ajay Kumar Guptaeb830922010-10-19 10:08:12 +0300136 */
Felipe Balbi743411b2010-12-01 13:22:05 +0200137static void am35x_musb_enable(struct musb *musb)
Ajay Kumar Guptaeb830922010-10-19 10:08:12 +0300138{
139 void __iomem *reg_base = musb->ctrl_base;
140 u32 epmask;
141
142 /* Workaround: setup IRQs through both register sets. */
143 epmask = ((musb->epmask & AM35X_TX_EP_MASK) << AM35X_INTR_TX_SHIFT) |
144 ((musb->epmask & AM35X_RX_EP_MASK) << AM35X_INTR_RX_SHIFT);
145
146 musb_writel(reg_base, EP_INTR_MASK_SET_REG, epmask);
147 musb_writel(reg_base, CORE_INTR_MASK_SET_REG, AM35X_INTR_USB_MASK);
148
149 /* Force the DRVVBUS IRQ so we can start polling for ID change. */
150 if (is_otg_enabled(musb))
151 musb_writel(reg_base, CORE_INTR_SRC_SET_REG,
152 AM35X_INTR_DRVVBUS << AM35X_INTR_USB_SHIFT);
153}
154
155/*
Felipe Balbi743411b2010-12-01 13:22:05 +0200156 * am35x_musb_disable - disable HDRC and flush interrupts
Ajay Kumar Guptaeb830922010-10-19 10:08:12 +0300157 */
Felipe Balbi743411b2010-12-01 13:22:05 +0200158static void am35x_musb_disable(struct musb *musb)
Ajay Kumar Guptaeb830922010-10-19 10:08:12 +0300159{
160 void __iomem *reg_base = musb->ctrl_base;
161
162 musb_writel(reg_base, CORE_INTR_MASK_CLEAR_REG, AM35X_INTR_USB_MASK);
163 musb_writel(reg_base, EP_INTR_MASK_CLEAR_REG,
164 AM35X_TX_INTR_MASK | AM35X_RX_INTR_MASK);
165 musb_writeb(musb->mregs, MUSB_DEVCTL, 0);
166 musb_writel(reg_base, USB_END_OF_INTR_REG, 0);
167}
168
169#ifdef CONFIG_USB_MUSB_HDRC_HCD
170#define portstate(stmt) stmt
171#else
172#define portstate(stmt)
173#endif
174
Felipe Balbi743411b2010-12-01 13:22:05 +0200175static void am35x_musb_set_vbus(struct musb *musb, int is_on)
Ajay Kumar Guptaeb830922010-10-19 10:08:12 +0300176{
177 WARN_ON(is_on && is_peripheral_active(musb));
178}
179
180#define POLL_SECONDS 2
181
182static struct timer_list otg_workaround;
183
184static void otg_timer(unsigned long _musb)
185{
186 struct musb *musb = (void *)_musb;
187 void __iomem *mregs = musb->mregs;
188 u8 devctl;
189 unsigned long flags;
190
191 /*
192 * We poll because AM35x's won't expose several OTG-critical
193 * status change events (from the transceiver) otherwise.
194 */
195 devctl = musb_readb(mregs, MUSB_DEVCTL);
196 DBG(7, "Poll devctl %02x (%s)\n", devctl, otg_state_string(musb));
197
198 spin_lock_irqsave(&musb->lock, flags);
199 switch (musb->xceiv->state) {
200 case OTG_STATE_A_WAIT_BCON:
201 devctl &= ~MUSB_DEVCTL_SESSION;
202 musb_writeb(musb->mregs, MUSB_DEVCTL, devctl);
203
204 devctl = musb_readb(musb->mregs, MUSB_DEVCTL);
205 if (devctl & MUSB_DEVCTL_BDEVICE) {
206 musb->xceiv->state = OTG_STATE_B_IDLE;
207 MUSB_DEV_MODE(musb);
208 } else {
209 musb->xceiv->state = OTG_STATE_A_IDLE;
210 MUSB_HST_MODE(musb);
211 }
212 break;
213 case OTG_STATE_A_WAIT_VFALL:
214 musb->xceiv->state = OTG_STATE_A_WAIT_VRISE;
215 musb_writel(musb->ctrl_base, CORE_INTR_SRC_SET_REG,
216 MUSB_INTR_VBUSERROR << AM35X_INTR_USB_SHIFT);
217 break;
218 case OTG_STATE_B_IDLE:
219 if (!is_peripheral_enabled(musb))
220 break;
221
222 devctl = musb_readb(mregs, MUSB_DEVCTL);
223 if (devctl & MUSB_DEVCTL_BDEVICE)
224 mod_timer(&otg_workaround, jiffies + POLL_SECONDS * HZ);
225 else
226 musb->xceiv->state = OTG_STATE_A_IDLE;
227 break;
228 default:
229 break;
230 }
231 spin_unlock_irqrestore(&musb->lock, flags);
232}
233
Felipe Balbi743411b2010-12-01 13:22:05 +0200234static void am35x_musb_try_idle(struct musb *musb, unsigned long timeout)
Ajay Kumar Guptaeb830922010-10-19 10:08:12 +0300235{
236 static unsigned long last_timer;
237
238 if (!is_otg_enabled(musb))
239 return;
240
241 if (timeout == 0)
242 timeout = jiffies + msecs_to_jiffies(3);
243
244 /* Never idle if active, or when VBUS timeout is not set as host */
245 if (musb->is_active || (musb->a_wait_bcon == 0 &&
246 musb->xceiv->state == OTG_STATE_A_WAIT_BCON)) {
247 DBG(4, "%s active, deleting timer\n", otg_state_string(musb));
248 del_timer(&otg_workaround);
249 last_timer = jiffies;
250 return;
251 }
252
253 if (time_after(last_timer, timeout) && timer_pending(&otg_workaround)) {
254 DBG(4, "Longer idle timer already pending, ignoring...\n");
255 return;
256 }
257 last_timer = timeout;
258
259 DBG(4, "%s inactive, starting idle timer for %u ms\n",
260 otg_state_string(musb), jiffies_to_msecs(timeout - jiffies));
261 mod_timer(&otg_workaround, timeout);
262}
263
Felipe Balbi743411b2010-12-01 13:22:05 +0200264static irqreturn_t am35x_musb_interrupt(int irq, void *hci)
Ajay Kumar Guptaeb830922010-10-19 10:08:12 +0300265{
266 struct musb *musb = hci;
267 void __iomem *reg_base = musb->ctrl_base;
268 unsigned long flags;
269 irqreturn_t ret = IRQ_NONE;
270 u32 epintr, usbintr, lvl_intr;
271
272 spin_lock_irqsave(&musb->lock, flags);
273
274 /* Get endpoint interrupts */
275 epintr = musb_readl(reg_base, EP_INTR_SRC_MASKED_REG);
276
277 if (epintr) {
278 musb_writel(reg_base, EP_INTR_SRC_CLEAR_REG, epintr);
279
280 musb->int_rx =
281 (epintr & AM35X_RX_INTR_MASK) >> AM35X_INTR_RX_SHIFT;
282 musb->int_tx =
283 (epintr & AM35X_TX_INTR_MASK) >> AM35X_INTR_TX_SHIFT;
284 }
285
286 /* Get usb core interrupts */
287 usbintr = musb_readl(reg_base, CORE_INTR_SRC_MASKED_REG);
288 if (!usbintr && !epintr)
289 goto eoi;
290
291 if (usbintr) {
292 musb_writel(reg_base, CORE_INTR_SRC_CLEAR_REG, usbintr);
293
294 musb->int_usb =
295 (usbintr & AM35X_INTR_USB_MASK) >> AM35X_INTR_USB_SHIFT;
296 }
297 /*
298 * DRVVBUS IRQs are the only proxy we have (a very poor one!) for
299 * AM35x's missing ID change IRQ. We need an ID change IRQ to
300 * switch appropriately between halves of the OTG state machine.
301 * Managing DEVCTL.SESSION per Mentor docs requires that we know its
302 * value but DEVCTL.BDEVICE is invalid without DEVCTL.SESSION set.
303 * Also, DRVVBUS pulses for SRP (but not at 5V) ...
304 */
305 if (usbintr & (AM35X_INTR_DRVVBUS << AM35X_INTR_USB_SHIFT)) {
306 int drvvbus = musb_readl(reg_base, USB_STAT_REG);
307 void __iomem *mregs = musb->mregs;
308 u8 devctl = musb_readb(mregs, MUSB_DEVCTL);
309 int err;
310
311 err = is_host_enabled(musb) && (musb->int_usb &
312 MUSB_INTR_VBUSERROR);
313 if (err) {
314 /*
315 * The Mentor core doesn't debounce VBUS as needed
316 * to cope with device connect current spikes. This
317 * means it's not uncommon for bus-powered devices
318 * to get VBUS errors during enumeration.
319 *
320 * This is a workaround, but newer RTL from Mentor
321 * seems to allow a better one: "re"-starting sessions
322 * without waiting for VBUS to stop registering in
323 * devctl.
324 */
325 musb->int_usb &= ~MUSB_INTR_VBUSERROR;
326 musb->xceiv->state = OTG_STATE_A_WAIT_VFALL;
327 mod_timer(&otg_workaround, jiffies + POLL_SECONDS * HZ);
328 WARNING("VBUS error workaround (delay coming)\n");
329 } else if (is_host_enabled(musb) && drvvbus) {
330 MUSB_HST_MODE(musb);
331 musb->xceiv->default_a = 1;
332 musb->xceiv->state = OTG_STATE_A_WAIT_VRISE;
333 portstate(musb->port1_status |= USB_PORT_STAT_POWER);
334 del_timer(&otg_workaround);
335 } else {
336 musb->is_active = 0;
337 MUSB_DEV_MODE(musb);
338 musb->xceiv->default_a = 0;
339 musb->xceiv->state = OTG_STATE_B_IDLE;
340 portstate(musb->port1_status &= ~USB_PORT_STAT_POWER);
341 }
342
343 /* NOTE: this must complete power-on within 100 ms. */
344 DBG(2, "VBUS %s (%s)%s, devctl %02x\n",
345 drvvbus ? "on" : "off",
346 otg_state_string(musb),
347 err ? " ERROR" : "",
348 devctl);
349 ret = IRQ_HANDLED;
350 }
351
352 if (musb->int_tx || musb->int_rx || musb->int_usb)
353 ret |= musb_interrupt(musb);
354
355eoi:
356 /* EOI needs to be written for the IRQ to be re-asserted. */
357 if (ret == IRQ_HANDLED || epintr || usbintr) {
358 /* clear level interrupt */
359 lvl_intr = omap_ctrl_readl(AM35XX_CONTROL_LVL_INTR_CLEAR);
360 lvl_intr |= AM35XX_USBOTGSS_INT_CLR;
361 omap_ctrl_writel(lvl_intr, AM35XX_CONTROL_LVL_INTR_CLEAR);
362 /* write EOI */
363 musb_writel(reg_base, USB_END_OF_INTR_REG, 0);
364 }
365
366 /* Poll for ID change */
367 if (is_otg_enabled(musb) && musb->xceiv->state == OTG_STATE_B_IDLE)
368 mod_timer(&otg_workaround, jiffies + POLL_SECONDS * HZ);
369
370 spin_unlock_irqrestore(&musb->lock, flags);
371
372 return ret;
373}
374
Felipe Balbi743411b2010-12-01 13:22:05 +0200375static int am35x_musb_set_mode(struct musb *musb, u8 musb_mode)
Ajay Kumar Guptaeb830922010-10-19 10:08:12 +0300376{
377 u32 devconf2 = omap_ctrl_readl(AM35XX_CONTROL_DEVCONF2);
378
379 devconf2 &= ~CONF2_OTGMODE;
380 switch (musb_mode) {
381#ifdef CONFIG_USB_MUSB_HDRC_HCD
382 case MUSB_HOST: /* Force VBUS valid, ID = 0 */
383 devconf2 |= CONF2_FORCE_HOST;
384 break;
385#endif
386#ifdef CONFIG_USB_GADGET_MUSB_HDRC
387 case MUSB_PERIPHERAL: /* Force VBUS valid, ID = 1 */
388 devconf2 |= CONF2_FORCE_DEVICE;
389 break;
390#endif
391#ifdef CONFIG_USB_MUSB_OTG
392 case MUSB_OTG: /* Don't override the VBUS/ID comparators */
393 devconf2 |= CONF2_NO_OVERRIDE;
394 break;
395#endif
396 default:
397 DBG(2, "Trying to set unsupported mode %u\n", musb_mode);
398 }
399
400 omap_ctrl_writel(devconf2, AM35XX_CONTROL_DEVCONF2);
401 return 0;
402}
403
Felipe Balbi743411b2010-12-01 13:22:05 +0200404static int am35x_musb_init(struct musb *musb)
Ajay Kumar Guptaeb830922010-10-19 10:08:12 +0300405{
406 void __iomem *reg_base = musb->ctrl_base;
407 u32 rev, lvl_intr, sw_reset;
Ajay Kumar Guptaeb830922010-10-19 10:08:12 +0300408
409 musb->mregs += USB_MENTOR_CORE_OFFSET;
410
Ajay Kumar Guptaeb830922010-10-19 10:08:12 +0300411 /* Returns zero if e.g. not clocked */
412 rev = musb_readl(reg_base, USB_REVISION_REG);
Felipe Balbi03491762010-12-02 09:57:08 +0200413 if (!rev)
414 return -ENODEV;
Ajay Kumar Guptaeb830922010-10-19 10:08:12 +0300415
416 usb_nop_xceiv_register();
417 musb->xceiv = otg_get_transceiver();
Felipe Balbi03491762010-12-02 09:57:08 +0200418 if (!musb->xceiv)
419 return -ENODEV;
Ajay Kumar Guptaeb830922010-10-19 10:08:12 +0300420
421 if (is_host_enabled(musb))
422 setup_timer(&otg_workaround, otg_timer, (unsigned long) musb);
423
Felipe Balbi743411b2010-12-01 13:22:05 +0200424 musb->board_set_vbus = am35x_musb_set_vbus;
Ajay Kumar Guptaeb830922010-10-19 10:08:12 +0300425
426 /* Global reset */
427 sw_reset = omap_ctrl_readl(AM35XX_CONTROL_IP_SW_RESET);
428
429 sw_reset |= AM35XX_USBOTGSS_SW_RST;
430 omap_ctrl_writel(sw_reset, AM35XX_CONTROL_IP_SW_RESET);
431
432 sw_reset &= ~AM35XX_USBOTGSS_SW_RST;
433 omap_ctrl_writel(sw_reset, AM35XX_CONTROL_IP_SW_RESET);
434
435 /* Reset the controller */
436 musb_writel(reg_base, USB_CTRL_REG, AM35X_SOFT_RESET_MASK);
437
438 /* Start the on-chip PHY and its PLL. */
439 phy_on();
440
441 msleep(5);
442
Felipe Balbi743411b2010-12-01 13:22:05 +0200443 musb->isr = am35x_musb_interrupt;
Ajay Kumar Guptaeb830922010-10-19 10:08:12 +0300444
445 /* clear level interrupt */
446 lvl_intr = omap_ctrl_readl(AM35XX_CONTROL_LVL_INTR_CLEAR);
447 lvl_intr |= AM35XX_USBOTGSS_INT_CLR;
448 omap_ctrl_writel(lvl_intr, AM35XX_CONTROL_LVL_INTR_CLEAR);
Felipe Balbi03491762010-12-02 09:57:08 +0200449
Ajay Kumar Guptaeb830922010-10-19 10:08:12 +0300450 return 0;
Ajay Kumar Guptaeb830922010-10-19 10:08:12 +0300451}
452
Felipe Balbi743411b2010-12-01 13:22:05 +0200453static int am35x_musb_exit(struct musb *musb)
Ajay Kumar Guptaeb830922010-10-19 10:08:12 +0300454{
455 if (is_host_enabled(musb))
456 del_timer_sync(&otg_workaround);
457
458 phy_off();
459
460 otg_put_transceiver(musb->xceiv);
461 usb_nop_xceiv_unregister();
462
Ajay Kumar Guptaeb830922010-10-19 10:08:12 +0300463 return 0;
464}
465
Ajay Kumar Gupta843bb1d2010-10-19 10:08:13 +0300466/* AM35x supports only 32bit read operation */
467void musb_read_fifo(struct musb_hw_ep *hw_ep, u16 len, u8 *dst)
468{
469 void __iomem *fifo = hw_ep->fifo;
470 u32 val;
471 int i;
472
473 /* Read for 32bit-aligned destination address */
474 if (likely((0x03 & (unsigned long) dst) == 0) && len >= 4) {
475 readsl(fifo, dst, len >> 2);
476 dst += len & ~0x03;
477 len &= 0x03;
478 }
479 /*
480 * Now read the remaining 1 to 3 byte or complete length if
481 * unaligned address.
482 */
483 if (len > 4) {
484 for (i = 0; i < (len >> 2); i++) {
485 *(u32 *) dst = musb_readl(fifo, 0);
486 dst += 4;
487 }
488 len &= 0x03;
489 }
490 if (len > 0) {
491 val = musb_readl(fifo, 0);
492 memcpy(dst, &val, len);
493 }
494}
Felipe Balbi743411b2010-12-01 13:22:05 +0200495
Felipe Balbif7ec9432010-12-02 09:48:58 +0200496static const struct musb_platform_ops am35x_ops = {
Felipe Balbi743411b2010-12-01 13:22:05 +0200497 .init = am35x_musb_init,
498 .exit = am35x_musb_exit,
499
500 .enable = am35x_musb_enable,
501 .disable = am35x_musb_disable,
502
503 .set_mode = am35x_musb_set_mode,
504 .try_idle = am35x_musb_try_idle,
505
506 .set_vbus = am35x_musb_set_vbus,
507};
Felipe Balbice40c572010-12-02 09:06:51 +0200508
509static u64 am35x_dmamask = DMA_BIT_MASK(32);
510
511static int __init am35x_probe(struct platform_device *pdev)
512{
513 struct musb_hdrc_platform_data *pdata = pdev->dev.platform_data;
514 struct platform_device *musb;
Felipe Balbi0919dfc2010-12-02 09:33:24 +0200515 struct am35x_glue *glue;
Felipe Balbice40c572010-12-02 09:06:51 +0200516
Felipe Balbi03491762010-12-02 09:57:08 +0200517 struct clk *phy_clk;
518 struct clk *clk;
519
Felipe Balbice40c572010-12-02 09:06:51 +0200520 int ret = -ENOMEM;
521
Felipe Balbi0919dfc2010-12-02 09:33:24 +0200522 glue = kzalloc(sizeof(*glue), GFP_KERNEL);
523 if (!glue) {
524 dev_err(&pdev->dev, "failed to allocate glue context\n");
525 goto err0;
526 }
527
Felipe Balbice40c572010-12-02 09:06:51 +0200528 musb = platform_device_alloc("musb-hdrc", -1);
529 if (!musb) {
530 dev_err(&pdev->dev, "failed to allocate musb device\n");
Felipe Balbi0919dfc2010-12-02 09:33:24 +0200531 goto err1;
Felipe Balbice40c572010-12-02 09:06:51 +0200532 }
533
Felipe Balbi03491762010-12-02 09:57:08 +0200534 phy_clk = clk_get(&pdev->dev, "fck");
535 if (IS_ERR(phy_clk)) {
536 dev_err(&pdev->dev, "failed to get PHY clock\n");
537 ret = PTR_ERR(phy_clk);
538 goto err2;
539 }
540
541 clk = clk_get(&pdev->dev, "ick");
542 if (IS_ERR(clk)) {
543 dev_err(&pdev->dev, "failed to get clock\n");
544 ret = PTR_ERR(clk);
545 goto err3;
546 }
547
548 ret = clk_enable(phy_clk);
549 if (ret) {
550 dev_err(&pdev->dev, "failed to enable PHY clock\n");
551 goto err4;
552 }
553
554 ret = clk_enable(clk);
555 if (ret) {
556 dev_err(&pdev->dev, "failed to enable clock\n");
557 goto err5;
558 }
559
Felipe Balbice40c572010-12-02 09:06:51 +0200560 musb->dev.parent = &pdev->dev;
561 musb->dev.dma_mask = &am35x_dmamask;
562 musb->dev.coherent_dma_mask = am35x_dmamask;
563
Felipe Balbi0919dfc2010-12-02 09:33:24 +0200564 glue->dev = &pdev->dev;
565 glue->musb = musb;
Felipe Balbi03491762010-12-02 09:57:08 +0200566 glue->phy_clk = phy_clk;
567 glue->clk = clk;
Felipe Balbi0919dfc2010-12-02 09:33:24 +0200568
Felipe Balbif7ec9432010-12-02 09:48:58 +0200569 pdata->platform_ops = &am35x_ops;
570
Felipe Balbi0919dfc2010-12-02 09:33:24 +0200571 platform_set_drvdata(pdev, glue);
Felipe Balbice40c572010-12-02 09:06:51 +0200572
573 ret = platform_device_add_resources(musb, pdev->resource,
574 pdev->num_resources);
575 if (ret) {
576 dev_err(&pdev->dev, "failed to add resources\n");
Felipe Balbi03491762010-12-02 09:57:08 +0200577 goto err6;
Felipe Balbice40c572010-12-02 09:06:51 +0200578 }
579
580 ret = platform_device_add_data(musb, pdata, sizeof(*pdata));
581 if (ret) {
582 dev_err(&pdev->dev, "failed to add platform_data\n");
Felipe Balbi03491762010-12-02 09:57:08 +0200583 goto err6;
Felipe Balbice40c572010-12-02 09:06:51 +0200584 }
585
586 ret = platform_device_add(musb);
587 if (ret) {
588 dev_err(&pdev->dev, "failed to register musb device\n");
Felipe Balbi03491762010-12-02 09:57:08 +0200589 goto err6;
Felipe Balbice40c572010-12-02 09:06:51 +0200590 }
591
592 return 0;
593
Felipe Balbi03491762010-12-02 09:57:08 +0200594err6:
595 clk_disable(clk);
596
597err5:
598 clk_disable(phy_clk);
599
600err4:
601 clk_put(clk);
602
603err3:
604 clk_put(phy_clk);
605
Felipe Balbi0919dfc2010-12-02 09:33:24 +0200606err2:
Felipe Balbice40c572010-12-02 09:06:51 +0200607 platform_device_put(musb);
608
Felipe Balbi0919dfc2010-12-02 09:33:24 +0200609err1:
610 kfree(glue);
611
Felipe Balbice40c572010-12-02 09:06:51 +0200612err0:
613 return ret;
614}
615
616static int __exit am35x_remove(struct platform_device *pdev)
617{
Felipe Balbi0919dfc2010-12-02 09:33:24 +0200618 struct am35x_glue *glue = platform_get_drvdata(pdev);
Felipe Balbice40c572010-12-02 09:06:51 +0200619
Felipe Balbi0919dfc2010-12-02 09:33:24 +0200620 platform_device_del(glue->musb);
621 platform_device_put(glue->musb);
Felipe Balbi03491762010-12-02 09:57:08 +0200622 clk_disable(glue->clk);
623 clk_disable(glue->phy_clk);
624 clk_put(glue->clk);
625 clk_put(glue->phy_clk);
Felipe Balbi0919dfc2010-12-02 09:33:24 +0200626 kfree(glue);
Felipe Balbice40c572010-12-02 09:06:51 +0200627
628 return 0;
629}
630
Felipe Balbi6f783e22010-12-02 12:53:22 +0200631#ifdef CONFIG_PM
632static int am35x_suspend(struct device *dev)
633{
634 struct am35x_glue *glue = dev_get_drvdata(dev);
635
636 phy_off();
637 clk_disable(glue->phy_clk);
638 clk_disable(glue->clk);
639
640 return 0;
641}
642
643static int am35x_resume(struct device *dev)
644{
645 struct am35x_glue *glue = dev_get_drvdata(dev);
646 int ret;
647
648 phy_on();
649 ret = clk_enable(glue->phy_clk);
650 if (ret) {
651 dev_err(dev, "failed to enable PHY clock\n");
652 return ret;
653 }
654
655 ret = clk_enable(glue->clk);
656 if (ret) {
657 dev_err(dev, "failed to enable clock\n");
658 return ret;
659 }
660
661 return 0;
662}
663
664static struct dev_pm_ops am35x_pm_ops = {
665 .suspend = am35x_suspend,
666 .resume = am35x_resume,
667};
668
669#define DEV_PM_OPS &am35x_pm_ops
670#else
671#define DEV_PM_OPS NULL
672#endif
673
Felipe Balbice40c572010-12-02 09:06:51 +0200674static struct platform_driver am35x_driver = {
675 .remove = __exit_p(am35x_remove),
676 .driver = {
677 .name = "musb-am35x",
Felipe Balbi6f783e22010-12-02 12:53:22 +0200678 .pm = DEV_PM_OPS,
Felipe Balbice40c572010-12-02 09:06:51 +0200679 },
680};
681
682MODULE_DESCRIPTION("AM35x MUSB Glue Layer");
683MODULE_AUTHOR("Ajay Kumar Gupta <ajay.gupta@ti.com>");
684MODULE_LICENSE("GPL v2");
685
686static int __init am35x_init(void)
687{
688 return platform_driver_probe(&am35x_driver, am35x_probe);
689}
690subsys_initcall(am35x_init);
691
692static void __exit am35x_exit(void)
693{
694 platform_driver_unregister(&am35x_driver);
695}
696module_exit(am35x_exit);