1 // SPDX-License-Identifier: GPL-2.0
4 * Texas Instruments AM35x "glue layer"
6 * Copyright (c) 2010, by Texas Instruments
8 * Based on the DA8xx "glue layer" code.
9 * Copyright (c) 2008-2009, MontaVista Software, Inc. <source@mvista.com>
11 * This file is part of the Inventra Controller Driver for Linux.
14 #include <linux/module.h>
15 #include <linux/clk.h>
16 #include <linux/err.h>
18 #include <linux/platform_device.h>
19 #include <linux/dma-mapping.h>
20 #include <linux/usb/usb_phy_generic.h>
21 #include <linux/platform_data/usb-omap.h>
23 #include "musb_core.h"
26 * AM35x specific definitions
28 /* USB 2.0 OTG module registers */
29 #define USB_REVISION_REG 0x00
30 #define USB_CTRL_REG 0x04
31 #define USB_STAT_REG 0x08
32 #define USB_EMULATION_REG 0x0c
34 #define USB_AUTOREQ_REG 0x14
35 #define USB_SRP_FIX_TIME_REG 0x18
36 #define USB_TEARDOWN_REG 0x1c
37 #define EP_INTR_SRC_REG 0x20
38 #define EP_INTR_SRC_SET_REG 0x24
39 #define EP_INTR_SRC_CLEAR_REG 0x28
40 #define EP_INTR_MASK_REG 0x2c
41 #define EP_INTR_MASK_SET_REG 0x30
42 #define EP_INTR_MASK_CLEAR_REG 0x34
43 #define EP_INTR_SRC_MASKED_REG 0x38
44 #define CORE_INTR_SRC_REG 0x40
45 #define CORE_INTR_SRC_SET_REG 0x44
46 #define CORE_INTR_SRC_CLEAR_REG 0x48
47 #define CORE_INTR_MASK_REG 0x4c
48 #define CORE_INTR_MASK_SET_REG 0x50
49 #define CORE_INTR_MASK_CLEAR_REG 0x54
50 #define CORE_INTR_SRC_MASKED_REG 0x58
52 #define USB_END_OF_INTR_REG 0x60
54 /* Control register bits */
55 #define AM35X_SOFT_RESET_MASK 1
57 /* USB interrupt register bits */
58 #define AM35X_INTR_USB_SHIFT 16
59 #define AM35X_INTR_USB_MASK (0x1ff << AM35X_INTR_USB_SHIFT)
60 #define AM35X_INTR_DRVVBUS 0x100
61 #define AM35X_INTR_RX_SHIFT 16
62 #define AM35X_INTR_TX_SHIFT 0
63 #define AM35X_TX_EP_MASK 0xffff /* EP0 + 15 Tx EPs */
64 #define AM35X_RX_EP_MASK 0xfffe /* 15 Rx EPs */
65 #define AM35X_TX_INTR_MASK (AM35X_TX_EP_MASK << AM35X_INTR_TX_SHIFT)
66 #define AM35X_RX_INTR_MASK (AM35X_RX_EP_MASK << AM35X_INTR_RX_SHIFT)
68 #define USB_MENTOR_CORE_OFFSET 0x400
72 struct platform_device
*musb
;
73 struct platform_device
*phy
;
79 * am35x_musb_enable - enable interrupts
81 static void am35x_musb_enable(struct musb
*musb
)
83 void __iomem
*reg_base
= musb
->ctrl_base
;
86 /* Workaround: setup IRQs through both register sets. */
87 epmask
= ((musb
->epmask
& AM35X_TX_EP_MASK
) << AM35X_INTR_TX_SHIFT
) |
88 ((musb
->epmask
& AM35X_RX_EP_MASK
) << AM35X_INTR_RX_SHIFT
);
90 musb_writel(reg_base
, EP_INTR_MASK_SET_REG
, epmask
);
91 musb_writel(reg_base
, CORE_INTR_MASK_SET_REG
, AM35X_INTR_USB_MASK
);
93 /* Force the DRVVBUS IRQ so we can start polling for ID change. */
94 musb_writel(reg_base
, CORE_INTR_SRC_SET_REG
,
95 AM35X_INTR_DRVVBUS
<< AM35X_INTR_USB_SHIFT
);
99 * am35x_musb_disable - disable HDRC and flush interrupts
101 static void am35x_musb_disable(struct musb
*musb
)
103 void __iomem
*reg_base
= musb
->ctrl_base
;
105 musb_writel(reg_base
, CORE_INTR_MASK_CLEAR_REG
, AM35X_INTR_USB_MASK
);
106 musb_writel(reg_base
, EP_INTR_MASK_CLEAR_REG
,
107 AM35X_TX_INTR_MASK
| AM35X_RX_INTR_MASK
);
108 musb_writel(reg_base
, USB_END_OF_INTR_REG
, 0);
111 #define portstate(stmt) stmt
113 static void am35x_musb_set_vbus(struct musb
*musb
, int is_on
)
115 WARN_ON(is_on
&& is_peripheral_active(musb
));
118 #define POLL_SECONDS 2
120 static void otg_timer(struct timer_list
*t
)
122 struct musb
*musb
= from_timer(musb
, t
, dev_timer
);
123 void __iomem
*mregs
= musb
->mregs
;
128 * We poll because AM35x's won't expose several OTG-critical
129 * status change events (from the transceiver) otherwise.
131 devctl
= musb_readb(mregs
, MUSB_DEVCTL
);
132 dev_dbg(musb
->controller
, "Poll devctl %02x (%s)\n", devctl
,
133 usb_otg_state_string(musb
->xceiv
->otg
->state
));
135 spin_lock_irqsave(&musb
->lock
, flags
);
136 switch (musb
->xceiv
->otg
->state
) {
137 case OTG_STATE_A_WAIT_BCON
:
138 devctl
&= ~MUSB_DEVCTL_SESSION
;
139 musb_writeb(musb
->mregs
, MUSB_DEVCTL
, devctl
);
141 devctl
= musb_readb(musb
->mregs
, MUSB_DEVCTL
);
142 if (devctl
& MUSB_DEVCTL_BDEVICE
) {
143 musb
->xceiv
->otg
->state
= OTG_STATE_B_IDLE
;
146 musb
->xceiv
->otg
->state
= OTG_STATE_A_IDLE
;
150 case OTG_STATE_A_WAIT_VFALL
:
151 musb
->xceiv
->otg
->state
= OTG_STATE_A_WAIT_VRISE
;
152 musb_writel(musb
->ctrl_base
, CORE_INTR_SRC_SET_REG
,
153 MUSB_INTR_VBUSERROR
<< AM35X_INTR_USB_SHIFT
);
155 case OTG_STATE_B_IDLE
:
156 devctl
= musb_readb(mregs
, MUSB_DEVCTL
);
157 if (devctl
& MUSB_DEVCTL_BDEVICE
)
158 mod_timer(&musb
->dev_timer
, jiffies
+ POLL_SECONDS
* HZ
);
160 musb
->xceiv
->otg
->state
= OTG_STATE_A_IDLE
;
165 spin_unlock_irqrestore(&musb
->lock
, flags
);
168 static void am35x_musb_try_idle(struct musb
*musb
, unsigned long timeout
)
170 static unsigned long last_timer
;
173 timeout
= jiffies
+ msecs_to_jiffies(3);
175 /* Never idle if active, or when VBUS timeout is not set as host */
176 if (musb
->is_active
|| (musb
->a_wait_bcon
== 0 &&
177 musb
->xceiv
->otg
->state
== OTG_STATE_A_WAIT_BCON
)) {
178 dev_dbg(musb
->controller
, "%s active, deleting timer\n",
179 usb_otg_state_string(musb
->xceiv
->otg
->state
));
180 del_timer(&musb
->dev_timer
);
181 last_timer
= jiffies
;
185 if (time_after(last_timer
, timeout
) && timer_pending(&musb
->dev_timer
)) {
186 dev_dbg(musb
->controller
, "Longer idle timer already pending, ignoring...\n");
189 last_timer
= timeout
;
191 dev_dbg(musb
->controller
, "%s inactive, starting idle timer for %u ms\n",
192 usb_otg_state_string(musb
->xceiv
->otg
->state
),
193 jiffies_to_msecs(timeout
- jiffies
));
194 mod_timer(&musb
->dev_timer
, timeout
);
197 static irqreturn_t
am35x_musb_interrupt(int irq
, void *hci
)
199 struct musb
*musb
= hci
;
200 void __iomem
*reg_base
= musb
->ctrl_base
;
201 struct device
*dev
= musb
->controller
;
202 struct musb_hdrc_platform_data
*plat
= dev_get_platdata(dev
);
203 struct omap_musb_board_data
*data
= plat
->board_data
;
205 irqreturn_t ret
= IRQ_NONE
;
208 spin_lock_irqsave(&musb
->lock
, flags
);
210 /* Get endpoint interrupts */
211 epintr
= musb_readl(reg_base
, EP_INTR_SRC_MASKED_REG
);
214 musb_writel(reg_base
, EP_INTR_SRC_CLEAR_REG
, epintr
);
217 (epintr
& AM35X_RX_INTR_MASK
) >> AM35X_INTR_RX_SHIFT
;
219 (epintr
& AM35X_TX_INTR_MASK
) >> AM35X_INTR_TX_SHIFT
;
222 /* Get usb core interrupts */
223 usbintr
= musb_readl(reg_base
, CORE_INTR_SRC_MASKED_REG
);
224 if (!usbintr
&& !epintr
)
228 musb_writel(reg_base
, CORE_INTR_SRC_CLEAR_REG
, usbintr
);
231 (usbintr
& AM35X_INTR_USB_MASK
) >> AM35X_INTR_USB_SHIFT
;
234 * DRVVBUS IRQs are the only proxy we have (a very poor one!) for
235 * AM35x's missing ID change IRQ. We need an ID change IRQ to
236 * switch appropriately between halves of the OTG state machine.
237 * Managing DEVCTL.SESSION per Mentor docs requires that we know its
238 * value but DEVCTL.BDEVICE is invalid without DEVCTL.SESSION set.
239 * Also, DRVVBUS pulses for SRP (but not at 5V) ...
241 if (usbintr
& (AM35X_INTR_DRVVBUS
<< AM35X_INTR_USB_SHIFT
)) {
242 int drvvbus
= musb_readl(reg_base
, USB_STAT_REG
);
243 void __iomem
*mregs
= musb
->mregs
;
244 u8 devctl
= musb_readb(mregs
, MUSB_DEVCTL
);
247 err
= musb
->int_usb
& MUSB_INTR_VBUSERROR
;
250 * The Mentor core doesn't debounce VBUS as needed
251 * to cope with device connect current spikes. This
252 * means it's not uncommon for bus-powered devices
253 * to get VBUS errors during enumeration.
255 * This is a workaround, but newer RTL from Mentor
256 * seems to allow a better one: "re"-starting sessions
257 * without waiting for VBUS to stop registering in
260 musb
->int_usb
&= ~MUSB_INTR_VBUSERROR
;
261 musb
->xceiv
->otg
->state
= OTG_STATE_A_WAIT_VFALL
;
262 mod_timer(&musb
->dev_timer
, jiffies
+ POLL_SECONDS
* HZ
);
263 WARNING("VBUS error workaround (delay coming)\n");
264 } else if (drvvbus
) {
266 musb
->xceiv
->otg
->state
= OTG_STATE_A_WAIT_VRISE
;
267 portstate(musb
->port1_status
|= USB_PORT_STAT_POWER
);
268 del_timer(&musb
->dev_timer
);
272 musb
->xceiv
->otg
->state
= OTG_STATE_B_IDLE
;
273 portstate(musb
->port1_status
&= ~USB_PORT_STAT_POWER
);
276 /* NOTE: this must complete power-on within 100 ms. */
277 dev_dbg(musb
->controller
, "VBUS %s (%s)%s, devctl %02x\n",
278 drvvbus
? "on" : "off",
279 usb_otg_state_string(musb
->xceiv
->otg
->state
),
285 /* Drop spurious RX and TX if device is disconnected */
286 if (musb
->int_usb
& MUSB_INTR_DISCONNECT
) {
291 if (musb
->int_tx
|| musb
->int_rx
|| musb
->int_usb
)
292 ret
|= musb_interrupt(musb
);
295 /* EOI needs to be written for the IRQ to be re-asserted. */
296 if (ret
== IRQ_HANDLED
|| epintr
|| usbintr
) {
297 /* clear level interrupt */
301 musb_writel(reg_base
, USB_END_OF_INTR_REG
, 0);
304 /* Poll for ID change */
305 if (musb
->xceiv
->otg
->state
== OTG_STATE_B_IDLE
)
306 mod_timer(&musb
->dev_timer
, jiffies
+ POLL_SECONDS
* HZ
);
308 spin_unlock_irqrestore(&musb
->lock
, flags
);
313 static int am35x_musb_set_mode(struct musb
*musb
, u8 musb_mode
)
315 struct device
*dev
= musb
->controller
;
316 struct musb_hdrc_platform_data
*plat
= dev_get_platdata(dev
);
317 struct omap_musb_board_data
*data
= plat
->board_data
;
321 data
->set_mode(musb_mode
);
328 static int am35x_musb_init(struct musb
*musb
)
330 struct device
*dev
= musb
->controller
;
331 struct musb_hdrc_platform_data
*plat
= dev_get_platdata(dev
);
332 struct omap_musb_board_data
*data
= plat
->board_data
;
333 void __iomem
*reg_base
= musb
->ctrl_base
;
336 musb
->mregs
+= USB_MENTOR_CORE_OFFSET
;
338 /* Returns zero if e.g. not clocked */
339 rev
= musb_readl(reg_base
, USB_REVISION_REG
);
343 musb
->xceiv
= usb_get_phy(USB_PHY_TYPE_USB2
);
344 if (IS_ERR_OR_NULL(musb
->xceiv
))
345 return -EPROBE_DEFER
;
347 timer_setup(&musb
->dev_timer
, otg_timer
, 0);
353 /* Reset the controller */
354 musb_writel(reg_base
, USB_CTRL_REG
, AM35X_SOFT_RESET_MASK
);
356 /* Start the on-chip PHY and its PLL. */
357 if (data
->set_phy_power
)
358 data
->set_phy_power(1);
362 musb
->isr
= am35x_musb_interrupt
;
364 /* clear level interrupt */
371 static int am35x_musb_exit(struct musb
*musb
)
373 struct device
*dev
= musb
->controller
;
374 struct musb_hdrc_platform_data
*plat
= dev_get_platdata(dev
);
375 struct omap_musb_board_data
*data
= plat
->board_data
;
377 del_timer_sync(&musb
->dev_timer
);
379 /* Shutdown the on-chip PHY and its PLL. */
380 if (data
->set_phy_power
)
381 data
->set_phy_power(0);
383 usb_put_phy(musb
->xceiv
);
388 /* AM35x supports only 32bit read operation */
389 static void am35x_read_fifo(struct musb_hw_ep
*hw_ep
, u16 len
, u8
*dst
)
391 void __iomem
*fifo
= hw_ep
->fifo
;
395 /* Read for 32bit-aligned destination address */
396 if (likely((0x03 & (unsigned long) dst
) == 0) && len
>= 4) {
397 readsl(fifo
, dst
, len
>> 2);
402 * Now read the remaining 1 to 3 byte or complete length if
406 for (i
= 0; i
< (len
>> 2); i
++) {
407 *(u32
*) dst
= musb_readl(fifo
, 0);
413 val
= musb_readl(fifo
, 0);
414 memcpy(dst
, &val
, len
);
418 static const struct musb_platform_ops am35x_ops
= {
419 .quirks
= MUSB_DMA_INVENTRA
| MUSB_INDEXED_EP
,
420 .init
= am35x_musb_init
,
421 .exit
= am35x_musb_exit
,
423 .read_fifo
= am35x_read_fifo
,
424 #ifdef CONFIG_USB_INVENTRA_DMA
425 .dma_init
= musbhs_dma_controller_create
,
426 .dma_exit
= musbhs_dma_controller_destroy
,
428 .enable
= am35x_musb_enable
,
429 .disable
= am35x_musb_disable
,
431 .set_mode
= am35x_musb_set_mode
,
432 .try_idle
= am35x_musb_try_idle
,
434 .set_vbus
= am35x_musb_set_vbus
,
437 static const struct platform_device_info am35x_dev_info
= {
439 .id
= PLATFORM_DEVID_AUTO
,
440 .dma_mask
= DMA_BIT_MASK(32),
443 static int am35x_probe(struct platform_device
*pdev
)
445 struct musb_hdrc_platform_data
*pdata
= dev_get_platdata(&pdev
->dev
);
446 struct platform_device
*musb
;
447 struct am35x_glue
*glue
;
448 struct platform_device_info pinfo
;
454 glue
= kzalloc(sizeof(*glue
), GFP_KERNEL
);
458 phy_clk
= clk_get(&pdev
->dev
, "fck");
459 if (IS_ERR(phy_clk
)) {
460 dev_err(&pdev
->dev
, "failed to get PHY clock\n");
461 ret
= PTR_ERR(phy_clk
);
465 clk
= clk_get(&pdev
->dev
, "ick");
467 dev_err(&pdev
->dev
, "failed to get clock\n");
472 ret
= clk_enable(phy_clk
);
474 dev_err(&pdev
->dev
, "failed to enable PHY clock\n");
478 ret
= clk_enable(clk
);
480 dev_err(&pdev
->dev
, "failed to enable clock\n");
484 glue
->dev
= &pdev
->dev
;
485 glue
->phy_clk
= phy_clk
;
488 pdata
->platform_ops
= &am35x_ops
;
490 glue
->phy
= usb_phy_generic_register();
491 if (IS_ERR(glue
->phy
)) {
492 ret
= PTR_ERR(glue
->phy
);
495 platform_set_drvdata(pdev
, glue
);
497 pinfo
= am35x_dev_info
;
498 pinfo
.parent
= &pdev
->dev
;
499 pinfo
.res
= pdev
->resource
;
500 pinfo
.num_res
= pdev
->num_resources
;
502 pinfo
.size_data
= sizeof(*pdata
);
504 glue
->musb
= musb
= platform_device_register_full(&pinfo
);
507 dev_err(&pdev
->dev
, "failed to register musb device: %d\n", ret
);
514 usb_phy_generic_unregister(glue
->phy
);
520 clk_disable(phy_clk
);
535 static int am35x_remove(struct platform_device
*pdev
)
537 struct am35x_glue
*glue
= platform_get_drvdata(pdev
);
539 platform_device_unregister(glue
->musb
);
540 usb_phy_generic_unregister(glue
->phy
);
541 clk_disable(glue
->clk
);
542 clk_disable(glue
->phy_clk
);
544 clk_put(glue
->phy_clk
);
550 #ifdef CONFIG_PM_SLEEP
551 static int am35x_suspend(struct device
*dev
)
553 struct am35x_glue
*glue
= dev_get_drvdata(dev
);
554 struct musb_hdrc_platform_data
*plat
= dev_get_platdata(dev
);
555 struct omap_musb_board_data
*data
= plat
->board_data
;
557 /* Shutdown the on-chip PHY and its PLL. */
558 if (data
->set_phy_power
)
559 data
->set_phy_power(0);
561 clk_disable(glue
->phy_clk
);
562 clk_disable(glue
->clk
);
567 static int am35x_resume(struct device
*dev
)
569 struct am35x_glue
*glue
= dev_get_drvdata(dev
);
570 struct musb_hdrc_platform_data
*plat
= dev_get_platdata(dev
);
571 struct omap_musb_board_data
*data
= plat
->board_data
;
574 /* Start the on-chip PHY and its PLL. */
575 if (data
->set_phy_power
)
576 data
->set_phy_power(1);
578 ret
= clk_enable(glue
->phy_clk
);
580 dev_err(dev
, "failed to enable PHY clock\n");
584 ret
= clk_enable(glue
->clk
);
586 dev_err(dev
, "failed to enable clock\n");
594 static SIMPLE_DEV_PM_OPS(am35x_pm_ops
, am35x_suspend
, am35x_resume
);
596 static struct platform_driver am35x_driver
= {
597 .probe
= am35x_probe
,
598 .remove
= am35x_remove
,
600 .name
= "musb-am35x",
605 MODULE_DESCRIPTION("AM35x MUSB Glue Layer");
606 MODULE_AUTHOR("Ajay Kumar Gupta <ajay.gupta@ti.com>");
607 MODULE_LICENSE("GPL v2");
608 module_platform_driver(am35x_driver
);