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
;
204 struct usb_otg
*otg
= musb
->xceiv
->otg
;
206 irqreturn_t ret
= IRQ_NONE
;
209 spin_lock_irqsave(&musb
->lock
, flags
);
211 /* Get endpoint interrupts */
212 epintr
= musb_readl(reg_base
, EP_INTR_SRC_MASKED_REG
);
215 musb_writel(reg_base
, EP_INTR_SRC_CLEAR_REG
, epintr
);
218 (epintr
& AM35X_RX_INTR_MASK
) >> AM35X_INTR_RX_SHIFT
;
220 (epintr
& AM35X_TX_INTR_MASK
) >> AM35X_INTR_TX_SHIFT
;
223 /* Get usb core interrupts */
224 usbintr
= musb_readl(reg_base
, CORE_INTR_SRC_MASKED_REG
);
225 if (!usbintr
&& !epintr
)
229 musb_writel(reg_base
, CORE_INTR_SRC_CLEAR_REG
, usbintr
);
232 (usbintr
& AM35X_INTR_USB_MASK
) >> AM35X_INTR_USB_SHIFT
;
235 * DRVVBUS IRQs are the only proxy we have (a very poor one!) for
236 * AM35x's missing ID change IRQ. We need an ID change IRQ to
237 * switch appropriately between halves of the OTG state machine.
238 * Managing DEVCTL.SESSION per Mentor docs requires that we know its
239 * value but DEVCTL.BDEVICE is invalid without DEVCTL.SESSION set.
240 * Also, DRVVBUS pulses for SRP (but not at 5V) ...
242 if (usbintr
& (AM35X_INTR_DRVVBUS
<< AM35X_INTR_USB_SHIFT
)) {
243 int drvvbus
= musb_readl(reg_base
, USB_STAT_REG
);
244 void __iomem
*mregs
= musb
->mregs
;
245 u8 devctl
= musb_readb(mregs
, MUSB_DEVCTL
);
248 err
= musb
->int_usb
& MUSB_INTR_VBUSERROR
;
251 * The Mentor core doesn't debounce VBUS as needed
252 * to cope with device connect current spikes. This
253 * means it's not uncommon for bus-powered devices
254 * to get VBUS errors during enumeration.
256 * This is a workaround, but newer RTL from Mentor
257 * seems to allow a better one: "re"-starting sessions
258 * without waiting for VBUS to stop registering in
261 musb
->int_usb
&= ~MUSB_INTR_VBUSERROR
;
262 musb
->xceiv
->otg
->state
= OTG_STATE_A_WAIT_VFALL
;
263 mod_timer(&musb
->dev_timer
, jiffies
+ POLL_SECONDS
* HZ
);
264 WARNING("VBUS error workaround (delay coming)\n");
265 } else if (drvvbus
) {
268 musb
->xceiv
->otg
->state
= OTG_STATE_A_WAIT_VRISE
;
269 portstate(musb
->port1_status
|= USB_PORT_STAT_POWER
);
270 del_timer(&musb
->dev_timer
);
275 musb
->xceiv
->otg
->state
= OTG_STATE_B_IDLE
;
276 portstate(musb
->port1_status
&= ~USB_PORT_STAT_POWER
);
279 /* NOTE: this must complete power-on within 100 ms. */
280 dev_dbg(musb
->controller
, "VBUS %s (%s)%s, devctl %02x\n",
281 drvvbus
? "on" : "off",
282 usb_otg_state_string(musb
->xceiv
->otg
->state
),
288 /* Drop spurious RX and TX if device is disconnected */
289 if (musb
->int_usb
& MUSB_INTR_DISCONNECT
) {
294 if (musb
->int_tx
|| musb
->int_rx
|| musb
->int_usb
)
295 ret
|= musb_interrupt(musb
);
298 /* EOI needs to be written for the IRQ to be re-asserted. */
299 if (ret
== IRQ_HANDLED
|| epintr
|| usbintr
) {
300 /* clear level interrupt */
304 musb_writel(reg_base
, USB_END_OF_INTR_REG
, 0);
307 /* Poll for ID change */
308 if (musb
->xceiv
->otg
->state
== OTG_STATE_B_IDLE
)
309 mod_timer(&musb
->dev_timer
, jiffies
+ POLL_SECONDS
* HZ
);
311 spin_unlock_irqrestore(&musb
->lock
, flags
);
316 static int am35x_musb_set_mode(struct musb
*musb
, u8 musb_mode
)
318 struct device
*dev
= musb
->controller
;
319 struct musb_hdrc_platform_data
*plat
= dev_get_platdata(dev
);
320 struct omap_musb_board_data
*data
= plat
->board_data
;
324 data
->set_mode(musb_mode
);
331 static int am35x_musb_init(struct musb
*musb
)
333 struct device
*dev
= musb
->controller
;
334 struct musb_hdrc_platform_data
*plat
= dev_get_platdata(dev
);
335 struct omap_musb_board_data
*data
= plat
->board_data
;
336 void __iomem
*reg_base
= musb
->ctrl_base
;
339 musb
->mregs
+= USB_MENTOR_CORE_OFFSET
;
341 /* Returns zero if e.g. not clocked */
342 rev
= musb_readl(reg_base
, USB_REVISION_REG
);
346 musb
->xceiv
= usb_get_phy(USB_PHY_TYPE_USB2
);
347 if (IS_ERR_OR_NULL(musb
->xceiv
))
348 return -EPROBE_DEFER
;
350 timer_setup(&musb
->dev_timer
, otg_timer
, 0);
356 /* Reset the controller */
357 musb_writel(reg_base
, USB_CTRL_REG
, AM35X_SOFT_RESET_MASK
);
359 /* Start the on-chip PHY and its PLL. */
360 if (data
->set_phy_power
)
361 data
->set_phy_power(1);
365 musb
->isr
= am35x_musb_interrupt
;
367 /* clear level interrupt */
374 static int am35x_musb_exit(struct musb
*musb
)
376 struct device
*dev
= musb
->controller
;
377 struct musb_hdrc_platform_data
*plat
= dev_get_platdata(dev
);
378 struct omap_musb_board_data
*data
= plat
->board_data
;
380 del_timer_sync(&musb
->dev_timer
);
382 /* Shutdown the on-chip PHY and its PLL. */
383 if (data
->set_phy_power
)
384 data
->set_phy_power(0);
386 usb_put_phy(musb
->xceiv
);
391 /* AM35x supports only 32bit read operation */
392 static void am35x_read_fifo(struct musb_hw_ep
*hw_ep
, u16 len
, u8
*dst
)
394 void __iomem
*fifo
= hw_ep
->fifo
;
398 /* Read for 32bit-aligned destination address */
399 if (likely((0x03 & (unsigned long) dst
) == 0) && len
>= 4) {
400 readsl(fifo
, dst
, len
>> 2);
405 * Now read the remaining 1 to 3 byte or complete length if
409 for (i
= 0; i
< (len
>> 2); i
++) {
410 *(u32
*) dst
= musb_readl(fifo
, 0);
416 val
= musb_readl(fifo
, 0);
417 memcpy(dst
, &val
, len
);
421 static const struct musb_platform_ops am35x_ops
= {
422 .quirks
= MUSB_DMA_INVENTRA
| MUSB_INDEXED_EP
,
423 .init
= am35x_musb_init
,
424 .exit
= am35x_musb_exit
,
426 .read_fifo
= am35x_read_fifo
,
427 #ifdef CONFIG_USB_INVENTRA_DMA
428 .dma_init
= musbhs_dma_controller_create
,
429 .dma_exit
= musbhs_dma_controller_destroy
,
431 .enable
= am35x_musb_enable
,
432 .disable
= am35x_musb_disable
,
434 .set_mode
= am35x_musb_set_mode
,
435 .try_idle
= am35x_musb_try_idle
,
437 .set_vbus
= am35x_musb_set_vbus
,
440 static const struct platform_device_info am35x_dev_info
= {
442 .id
= PLATFORM_DEVID_AUTO
,
443 .dma_mask
= DMA_BIT_MASK(32),
446 static int am35x_probe(struct platform_device
*pdev
)
448 struct musb_hdrc_platform_data
*pdata
= dev_get_platdata(&pdev
->dev
);
449 struct platform_device
*musb
;
450 struct am35x_glue
*glue
;
451 struct platform_device_info pinfo
;
457 glue
= kzalloc(sizeof(*glue
), GFP_KERNEL
);
461 phy_clk
= clk_get(&pdev
->dev
, "fck");
462 if (IS_ERR(phy_clk
)) {
463 dev_err(&pdev
->dev
, "failed to get PHY clock\n");
464 ret
= PTR_ERR(phy_clk
);
468 clk
= clk_get(&pdev
->dev
, "ick");
470 dev_err(&pdev
->dev
, "failed to get clock\n");
475 ret
= clk_enable(phy_clk
);
477 dev_err(&pdev
->dev
, "failed to enable PHY clock\n");
481 ret
= clk_enable(clk
);
483 dev_err(&pdev
->dev
, "failed to enable clock\n");
487 glue
->dev
= &pdev
->dev
;
488 glue
->phy_clk
= phy_clk
;
491 pdata
->platform_ops
= &am35x_ops
;
493 glue
->phy
= usb_phy_generic_register();
494 if (IS_ERR(glue
->phy
)) {
495 ret
= PTR_ERR(glue
->phy
);
498 platform_set_drvdata(pdev
, glue
);
500 pinfo
= am35x_dev_info
;
501 pinfo
.parent
= &pdev
->dev
;
502 pinfo
.res
= pdev
->resource
;
503 pinfo
.num_res
= pdev
->num_resources
;
505 pinfo
.size_data
= sizeof(*pdata
);
507 glue
->musb
= musb
= platform_device_register_full(&pinfo
);
510 dev_err(&pdev
->dev
, "failed to register musb device: %d\n", ret
);
517 usb_phy_generic_unregister(glue
->phy
);
523 clk_disable(phy_clk
);
538 static int am35x_remove(struct platform_device
*pdev
)
540 struct am35x_glue
*glue
= platform_get_drvdata(pdev
);
542 platform_device_unregister(glue
->musb
);
543 usb_phy_generic_unregister(glue
->phy
);
544 clk_disable(glue
->clk
);
545 clk_disable(glue
->phy_clk
);
547 clk_put(glue
->phy_clk
);
553 #ifdef CONFIG_PM_SLEEP
554 static int am35x_suspend(struct device
*dev
)
556 struct am35x_glue
*glue
= dev_get_drvdata(dev
);
557 struct musb_hdrc_platform_data
*plat
= dev_get_platdata(dev
);
558 struct omap_musb_board_data
*data
= plat
->board_data
;
560 /* Shutdown the on-chip PHY and its PLL. */
561 if (data
->set_phy_power
)
562 data
->set_phy_power(0);
564 clk_disable(glue
->phy_clk
);
565 clk_disable(glue
->clk
);
570 static int am35x_resume(struct device
*dev
)
572 struct am35x_glue
*glue
= dev_get_drvdata(dev
);
573 struct musb_hdrc_platform_data
*plat
= dev_get_platdata(dev
);
574 struct omap_musb_board_data
*data
= plat
->board_data
;
577 /* Start the on-chip PHY and its PLL. */
578 if (data
->set_phy_power
)
579 data
->set_phy_power(1);
581 ret
= clk_enable(glue
->phy_clk
);
583 dev_err(dev
, "failed to enable PHY clock\n");
587 ret
= clk_enable(glue
->clk
);
589 dev_err(dev
, "failed to enable clock\n");
597 static SIMPLE_DEV_PM_OPS(am35x_pm_ops
, am35x_suspend
, am35x_resume
);
599 static struct platform_driver am35x_driver
= {
600 .probe
= am35x_probe
,
601 .remove
= am35x_remove
,
603 .name
= "musb-am35x",
608 MODULE_DESCRIPTION("AM35x MUSB Glue Layer");
609 MODULE_AUTHOR("Ajay Kumar Gupta <ajay.gupta@ti.com>");
610 MODULE_LICENSE("GPL v2");
611 module_platform_driver(am35x_driver
);