blob: 62e65f0a72847be6c5ec88e3566781c23e7e888d [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
Ajay Kumar Guptaeb830922010-10-19 10:08:12 +0300424 /* Global reset */
425 sw_reset = omap_ctrl_readl(AM35XX_CONTROL_IP_SW_RESET);
426
427 sw_reset |= AM35XX_USBOTGSS_SW_RST;
428 omap_ctrl_writel(sw_reset, AM35XX_CONTROL_IP_SW_RESET);
429
430 sw_reset &= ~AM35XX_USBOTGSS_SW_RST;
431 omap_ctrl_writel(sw_reset, AM35XX_CONTROL_IP_SW_RESET);
432
433 /* Reset the controller */
434 musb_writel(reg_base, USB_CTRL_REG, AM35X_SOFT_RESET_MASK);
435
436 /* Start the on-chip PHY and its PLL. */
437 phy_on();
438
439 msleep(5);
440
Felipe Balbi743411b2010-12-01 13:22:05 +0200441 musb->isr = am35x_musb_interrupt;
Ajay Kumar Guptaeb830922010-10-19 10:08:12 +0300442
443 /* clear level interrupt */
444 lvl_intr = omap_ctrl_readl(AM35XX_CONTROL_LVL_INTR_CLEAR);
445 lvl_intr |= AM35XX_USBOTGSS_INT_CLR;
446 omap_ctrl_writel(lvl_intr, AM35XX_CONTROL_LVL_INTR_CLEAR);
Felipe Balbi03491762010-12-02 09:57:08 +0200447
Ajay Kumar Guptaeb830922010-10-19 10:08:12 +0300448 return 0;
Ajay Kumar Guptaeb830922010-10-19 10:08:12 +0300449}
450
Felipe Balbi743411b2010-12-01 13:22:05 +0200451static int am35x_musb_exit(struct musb *musb)
Ajay Kumar Guptaeb830922010-10-19 10:08:12 +0300452{
453 if (is_host_enabled(musb))
454 del_timer_sync(&otg_workaround);
455
456 phy_off();
457
458 otg_put_transceiver(musb->xceiv);
459 usb_nop_xceiv_unregister();
460
Ajay Kumar Guptaeb830922010-10-19 10:08:12 +0300461 return 0;
462}
463
Ajay Kumar Gupta843bb1d2010-10-19 10:08:13 +0300464/* AM35x supports only 32bit read operation */
465void musb_read_fifo(struct musb_hw_ep *hw_ep, u16 len, u8 *dst)
466{
467 void __iomem *fifo = hw_ep->fifo;
468 u32 val;
469 int i;
470
471 /* Read for 32bit-aligned destination address */
472 if (likely((0x03 & (unsigned long) dst) == 0) && len >= 4) {
473 readsl(fifo, dst, len >> 2);
474 dst += len & ~0x03;
475 len &= 0x03;
476 }
477 /*
478 * Now read the remaining 1 to 3 byte or complete length if
479 * unaligned address.
480 */
481 if (len > 4) {
482 for (i = 0; i < (len >> 2); i++) {
483 *(u32 *) dst = musb_readl(fifo, 0);
484 dst += 4;
485 }
486 len &= 0x03;
487 }
488 if (len > 0) {
489 val = musb_readl(fifo, 0);
490 memcpy(dst, &val, len);
491 }
492}
Felipe Balbi743411b2010-12-01 13:22:05 +0200493
Felipe Balbif7ec9432010-12-02 09:48:58 +0200494static const struct musb_platform_ops am35x_ops = {
Felipe Balbi743411b2010-12-01 13:22:05 +0200495 .init = am35x_musb_init,
496 .exit = am35x_musb_exit,
497
498 .enable = am35x_musb_enable,
499 .disable = am35x_musb_disable,
500
501 .set_mode = am35x_musb_set_mode,
502 .try_idle = am35x_musb_try_idle,
503
504 .set_vbus = am35x_musb_set_vbus,
505};
Felipe Balbice40c572010-12-02 09:06:51 +0200506
507static u64 am35x_dmamask = DMA_BIT_MASK(32);
508
509static int __init am35x_probe(struct platform_device *pdev)
510{
511 struct musb_hdrc_platform_data *pdata = pdev->dev.platform_data;
512 struct platform_device *musb;
Felipe Balbi0919dfc2010-12-02 09:33:24 +0200513 struct am35x_glue *glue;
Felipe Balbice40c572010-12-02 09:06:51 +0200514
Felipe Balbi03491762010-12-02 09:57:08 +0200515 struct clk *phy_clk;
516 struct clk *clk;
517
Felipe Balbice40c572010-12-02 09:06:51 +0200518 int ret = -ENOMEM;
519
Felipe Balbi0919dfc2010-12-02 09:33:24 +0200520 glue = kzalloc(sizeof(*glue), GFP_KERNEL);
521 if (!glue) {
522 dev_err(&pdev->dev, "failed to allocate glue context\n");
523 goto err0;
524 }
525
Felipe Balbice40c572010-12-02 09:06:51 +0200526 musb = platform_device_alloc("musb-hdrc", -1);
527 if (!musb) {
528 dev_err(&pdev->dev, "failed to allocate musb device\n");
Felipe Balbi0919dfc2010-12-02 09:33:24 +0200529 goto err1;
Felipe Balbice40c572010-12-02 09:06:51 +0200530 }
531
Felipe Balbi03491762010-12-02 09:57:08 +0200532 phy_clk = clk_get(&pdev->dev, "fck");
533 if (IS_ERR(phy_clk)) {
534 dev_err(&pdev->dev, "failed to get PHY clock\n");
535 ret = PTR_ERR(phy_clk);
536 goto err2;
537 }
538
539 clk = clk_get(&pdev->dev, "ick");
540 if (IS_ERR(clk)) {
541 dev_err(&pdev->dev, "failed to get clock\n");
542 ret = PTR_ERR(clk);
543 goto err3;
544 }
545
546 ret = clk_enable(phy_clk);
547 if (ret) {
548 dev_err(&pdev->dev, "failed to enable PHY clock\n");
549 goto err4;
550 }
551
552 ret = clk_enable(clk);
553 if (ret) {
554 dev_err(&pdev->dev, "failed to enable clock\n");
555 goto err5;
556 }
557
Felipe Balbice40c572010-12-02 09:06:51 +0200558 musb->dev.parent = &pdev->dev;
559 musb->dev.dma_mask = &am35x_dmamask;
560 musb->dev.coherent_dma_mask = am35x_dmamask;
561
Felipe Balbi0919dfc2010-12-02 09:33:24 +0200562 glue->dev = &pdev->dev;
563 glue->musb = musb;
Felipe Balbi03491762010-12-02 09:57:08 +0200564 glue->phy_clk = phy_clk;
565 glue->clk = clk;
Felipe Balbi0919dfc2010-12-02 09:33:24 +0200566
Felipe Balbif7ec9432010-12-02 09:48:58 +0200567 pdata->platform_ops = &am35x_ops;
568
Felipe Balbi0919dfc2010-12-02 09:33:24 +0200569 platform_set_drvdata(pdev, glue);
Felipe Balbice40c572010-12-02 09:06:51 +0200570
571 ret = platform_device_add_resources(musb, pdev->resource,
572 pdev->num_resources);
573 if (ret) {
574 dev_err(&pdev->dev, "failed to add resources\n");
Felipe Balbi03491762010-12-02 09:57:08 +0200575 goto err6;
Felipe Balbice40c572010-12-02 09:06:51 +0200576 }
577
578 ret = platform_device_add_data(musb, pdata, sizeof(*pdata));
579 if (ret) {
580 dev_err(&pdev->dev, "failed to add platform_data\n");
Felipe Balbi03491762010-12-02 09:57:08 +0200581 goto err6;
Felipe Balbice40c572010-12-02 09:06:51 +0200582 }
583
584 ret = platform_device_add(musb);
585 if (ret) {
586 dev_err(&pdev->dev, "failed to register musb device\n");
Felipe Balbi03491762010-12-02 09:57:08 +0200587 goto err6;
Felipe Balbice40c572010-12-02 09:06:51 +0200588 }
589
590 return 0;
591
Felipe Balbi03491762010-12-02 09:57:08 +0200592err6:
593 clk_disable(clk);
594
595err5:
596 clk_disable(phy_clk);
597
598err4:
599 clk_put(clk);
600
601err3:
602 clk_put(phy_clk);
603
Felipe Balbi0919dfc2010-12-02 09:33:24 +0200604err2:
Felipe Balbice40c572010-12-02 09:06:51 +0200605 platform_device_put(musb);
606
Felipe Balbi0919dfc2010-12-02 09:33:24 +0200607err1:
608 kfree(glue);
609
Felipe Balbice40c572010-12-02 09:06:51 +0200610err0:
611 return ret;
612}
613
614static int __exit am35x_remove(struct platform_device *pdev)
615{
Felipe Balbi0919dfc2010-12-02 09:33:24 +0200616 struct am35x_glue *glue = platform_get_drvdata(pdev);
Felipe Balbice40c572010-12-02 09:06:51 +0200617
Felipe Balbi0919dfc2010-12-02 09:33:24 +0200618 platform_device_del(glue->musb);
619 platform_device_put(glue->musb);
Felipe Balbi03491762010-12-02 09:57:08 +0200620 clk_disable(glue->clk);
621 clk_disable(glue->phy_clk);
622 clk_put(glue->clk);
623 clk_put(glue->phy_clk);
Felipe Balbi0919dfc2010-12-02 09:33:24 +0200624 kfree(glue);
Felipe Balbice40c572010-12-02 09:06:51 +0200625
626 return 0;
627}
628
Felipe Balbi6f783e22010-12-02 12:53:22 +0200629#ifdef CONFIG_PM
630static int am35x_suspend(struct device *dev)
631{
632 struct am35x_glue *glue = dev_get_drvdata(dev);
633
634 phy_off();
635 clk_disable(glue->phy_clk);
636 clk_disable(glue->clk);
637
638 return 0;
639}
640
641static int am35x_resume(struct device *dev)
642{
643 struct am35x_glue *glue = dev_get_drvdata(dev);
644 int ret;
645
646 phy_on();
647 ret = clk_enable(glue->phy_clk);
648 if (ret) {
649 dev_err(dev, "failed to enable PHY clock\n");
650 return ret;
651 }
652
653 ret = clk_enable(glue->clk);
654 if (ret) {
655 dev_err(dev, "failed to enable clock\n");
656 return ret;
657 }
658
659 return 0;
660}
661
662static struct dev_pm_ops am35x_pm_ops = {
663 .suspend = am35x_suspend,
664 .resume = am35x_resume,
665};
666
667#define DEV_PM_OPS &am35x_pm_ops
668#else
669#define DEV_PM_OPS NULL
670#endif
671
Felipe Balbice40c572010-12-02 09:06:51 +0200672static struct platform_driver am35x_driver = {
673 .remove = __exit_p(am35x_remove),
674 .driver = {
675 .name = "musb-am35x",
Felipe Balbi6f783e22010-12-02 12:53:22 +0200676 .pm = DEV_PM_OPS,
Felipe Balbice40c572010-12-02 09:06:51 +0200677 },
678};
679
680MODULE_DESCRIPTION("AM35x MUSB Glue Layer");
681MODULE_AUTHOR("Ajay Kumar Gupta <ajay.gupta@ti.com>");
682MODULE_LICENSE("GPL v2");
683
684static int __init am35x_init(void)
685{
686 return platform_driver_probe(&am35x_driver, am35x_probe);
687}
688subsys_initcall(am35x_init);
689
690static void __exit am35x_exit(void)
691{
692 platform_driver_unregister(&am35x_driver);
693}
694module_exit(am35x_exit);