2 * Allwinner sun4i MUSB Glue Layer
4 * Copyright (C) 2015 Hans de Goede <hdegoede@redhat.com>
7 * Allwinner Technology Co., Ltd. <www.allwinnertech.com>
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
20 #include <linux/clk.h>
21 #include <linux/err.h>
22 #include <linux/extcon.h>
24 #include <linux/kernel.h>
25 #include <linux/module.h>
27 #include <linux/phy/phy-sun4i-usb.h>
28 #include <linux/platform_device.h>
29 #include <linux/reset.h>
30 #include <linux/soc/sunxi/sunxi_sram.h>
31 #include <linux/usb/musb.h>
32 #include <linux/usb/of.h>
33 #include <linux/usb/usb_phy_generic.h>
34 #include <linux/workqueue.h>
35 #include "musb_core.h"
38 * Register offsets, note sunxi musb has a different layout then most
39 * musb implementations, we translate the layout in musb_readb & friends.
41 #define SUNXI_MUSB_POWER 0x0040
42 #define SUNXI_MUSB_DEVCTL 0x0041
43 #define SUNXI_MUSB_INDEX 0x0042
44 #define SUNXI_MUSB_VEND0 0x0043
45 #define SUNXI_MUSB_INTRTX 0x0044
46 #define SUNXI_MUSB_INTRRX 0x0046
47 #define SUNXI_MUSB_INTRTXE 0x0048
48 #define SUNXI_MUSB_INTRRXE 0x004a
49 #define SUNXI_MUSB_INTRUSB 0x004c
50 #define SUNXI_MUSB_INTRUSBE 0x0050
51 #define SUNXI_MUSB_FRAME 0x0054
52 #define SUNXI_MUSB_TXFIFOSZ 0x0090
53 #define SUNXI_MUSB_TXFIFOADD 0x0092
54 #define SUNXI_MUSB_RXFIFOSZ 0x0094
55 #define SUNXI_MUSB_RXFIFOADD 0x0096
56 #define SUNXI_MUSB_FADDR 0x0098
57 #define SUNXI_MUSB_TXFUNCADDR 0x0098
58 #define SUNXI_MUSB_TXHUBADDR 0x009a
59 #define SUNXI_MUSB_TXHUBPORT 0x009b
60 #define SUNXI_MUSB_RXFUNCADDR 0x009c
61 #define SUNXI_MUSB_RXHUBADDR 0x009e
62 #define SUNXI_MUSB_RXHUBPORT 0x009f
63 #define SUNXI_MUSB_CONFIGDATA 0x00c0
66 #define SUNXI_MUSB_VEND0_PIO_MODE 0
69 #define SUNXI_MUSB_FL_ENABLED 0
70 #define SUNXI_MUSB_FL_HOSTMODE 1
71 #define SUNXI_MUSB_FL_HOSTMODE_PEND 2
72 #define SUNXI_MUSB_FL_VBUS_ON 3
73 #define SUNXI_MUSB_FL_PHY_ON 4
74 #define SUNXI_MUSB_FL_HAS_SRAM 5
75 #define SUNXI_MUSB_FL_HAS_RESET 6
76 #define SUNXI_MUSB_FL_NO_CONFIGDATA 7
78 /* Our read/write methods need access and do not get passed in a musb ref :| */
79 static struct musb
*sunxi_musb
;
84 struct platform_device
*musb_pdev
;
86 struct reset_control
*rst
;
88 struct platform_device
*usb_phy
;
89 struct usb_phy
*xceiv
;
91 struct work_struct work
;
92 struct extcon_dev
*extcon
;
93 struct notifier_block host_nb
;
96 /* phy_power_on / off may sleep, so we use a workqueue */
97 static void sunxi_musb_work(struct work_struct
*work
)
99 struct sunxi_glue
*glue
= container_of(work
, struct sunxi_glue
, work
);
100 bool vbus_on
, phy_on
;
102 if (!test_bit(SUNXI_MUSB_FL_ENABLED
, &glue
->flags
))
105 if (test_and_clear_bit(SUNXI_MUSB_FL_HOSTMODE_PEND
, &glue
->flags
)) {
106 struct musb
*musb
= glue
->musb
;
110 spin_lock_irqsave(&musb
->lock
, flags
);
112 devctl
= readb(musb
->mregs
+ SUNXI_MUSB_DEVCTL
);
113 if (test_bit(SUNXI_MUSB_FL_HOSTMODE
, &glue
->flags
)) {
114 set_bit(SUNXI_MUSB_FL_VBUS_ON
, &glue
->flags
);
115 musb
->xceiv
->otg
->default_a
= 1;
116 musb
->xceiv
->otg
->state
= OTG_STATE_A_WAIT_VRISE
;
118 devctl
|= MUSB_DEVCTL_SESSION
;
120 clear_bit(SUNXI_MUSB_FL_VBUS_ON
, &glue
->flags
);
121 musb
->xceiv
->otg
->default_a
= 0;
122 musb
->xceiv
->otg
->state
= OTG_STATE_B_IDLE
;
124 devctl
&= ~MUSB_DEVCTL_SESSION
;
126 writeb(devctl
, musb
->mregs
+ SUNXI_MUSB_DEVCTL
);
128 spin_unlock_irqrestore(&musb
->lock
, flags
);
131 vbus_on
= test_bit(SUNXI_MUSB_FL_VBUS_ON
, &glue
->flags
);
132 phy_on
= test_bit(SUNXI_MUSB_FL_PHY_ON
, &glue
->flags
);
134 if (phy_on
!= vbus_on
) {
136 phy_power_on(glue
->phy
);
137 set_bit(SUNXI_MUSB_FL_PHY_ON
, &glue
->flags
);
139 phy_power_off(glue
->phy
);
140 clear_bit(SUNXI_MUSB_FL_PHY_ON
, &glue
->flags
);
145 static void sunxi_musb_set_vbus(struct musb
*musb
, int is_on
)
147 struct sunxi_glue
*glue
= dev_get_drvdata(musb
->controller
->parent
);
150 set_bit(SUNXI_MUSB_FL_VBUS_ON
, &glue
->flags
);
151 musb
->xceiv
->otg
->state
= OTG_STATE_A_WAIT_VRISE
;
153 clear_bit(SUNXI_MUSB_FL_VBUS_ON
, &glue
->flags
);
156 schedule_work(&glue
->work
);
159 static void sunxi_musb_pre_root_reset_end(struct musb
*musb
)
161 struct sunxi_glue
*glue
= dev_get_drvdata(musb
->controller
->parent
);
163 sun4i_usb_phy_set_squelch_detect(glue
->phy
, false);
166 static void sunxi_musb_post_root_reset_end(struct musb
*musb
)
168 struct sunxi_glue
*glue
= dev_get_drvdata(musb
->controller
->parent
);
170 sun4i_usb_phy_set_squelch_detect(glue
->phy
, true);
173 static irqreturn_t
sunxi_musb_interrupt(int irq
, void *__hci
)
175 struct musb
*musb
= __hci
;
178 spin_lock_irqsave(&musb
->lock
, flags
);
180 musb
->int_usb
= readb(musb
->mregs
+ SUNXI_MUSB_INTRUSB
);
182 writeb(musb
->int_usb
, musb
->mregs
+ SUNXI_MUSB_INTRUSB
);
185 * sunxi musb often signals babble on low / full speed device
186 * disconnect, without ever raising MUSB_INTR_DISCONNECT, since
187 * normally babble never happens treat it as disconnect.
189 if ((musb
->int_usb
& MUSB_INTR_BABBLE
) && is_host_active(musb
)) {
190 musb
->int_usb
&= ~MUSB_INTR_BABBLE
;
191 musb
->int_usb
|= MUSB_INTR_DISCONNECT
;
194 if ((musb
->int_usb
& MUSB_INTR_RESET
) && !is_host_active(musb
)) {
195 /* ep0 FADDR must be 0 when (re)entering peripheral mode */
196 musb_ep_select(musb
->mregs
, 0);
197 musb_writeb(musb
->mregs
, MUSB_FADDR
, 0);
200 musb
->int_tx
= readw(musb
->mregs
+ SUNXI_MUSB_INTRTX
);
202 writew(musb
->int_tx
, musb
->mregs
+ SUNXI_MUSB_INTRTX
);
204 musb
->int_rx
= readw(musb
->mregs
+ SUNXI_MUSB_INTRRX
);
206 writew(musb
->int_rx
, musb
->mregs
+ SUNXI_MUSB_INTRRX
);
208 musb_interrupt(musb
);
210 spin_unlock_irqrestore(&musb
->lock
, flags
);
215 static int sunxi_musb_host_notifier(struct notifier_block
*nb
,
216 unsigned long event
, void *ptr
)
218 struct sunxi_glue
*glue
= container_of(nb
, struct sunxi_glue
, host_nb
);
221 set_bit(SUNXI_MUSB_FL_HOSTMODE
, &glue
->flags
);
223 clear_bit(SUNXI_MUSB_FL_HOSTMODE
, &glue
->flags
);
225 set_bit(SUNXI_MUSB_FL_HOSTMODE_PEND
, &glue
->flags
);
226 schedule_work(&glue
->work
);
231 static int sunxi_musb_init(struct musb
*musb
)
233 struct sunxi_glue
*glue
= dev_get_drvdata(musb
->controller
->parent
);
237 musb
->phy
= glue
->phy
;
238 musb
->xceiv
= glue
->xceiv
;
240 if (test_bit(SUNXI_MUSB_FL_HAS_SRAM
, &glue
->flags
)) {
241 ret
= sunxi_sram_claim(musb
->controller
->parent
);
246 ret
= clk_prepare_enable(glue
->clk
);
248 goto error_sram_release
;
250 if (test_bit(SUNXI_MUSB_FL_HAS_RESET
, &glue
->flags
)) {
251 ret
= reset_control_deassert(glue
->rst
);
253 goto error_clk_disable
;
256 writeb(SUNXI_MUSB_VEND0_PIO_MODE
, musb
->mregs
+ SUNXI_MUSB_VEND0
);
258 /* Register notifier before calling phy_init() */
259 if (musb
->port_mode
== MUSB_PORT_MODE_DUAL_ROLE
) {
260 ret
= extcon_register_notifier(glue
->extcon
, EXTCON_USB_HOST
,
263 goto error_reset_assert
;
266 ret
= phy_init(glue
->phy
);
268 goto error_unregister_notifier
;
270 musb
->isr
= sunxi_musb_interrupt
;
272 /* Stop the musb-core from doing runtime pm (not supported on sunxi) */
273 pm_runtime_get(musb
->controller
);
277 error_unregister_notifier
:
278 if (musb
->port_mode
== MUSB_PORT_MODE_DUAL_ROLE
)
279 extcon_unregister_notifier(glue
->extcon
, EXTCON_USB_HOST
,
282 if (test_bit(SUNXI_MUSB_FL_HAS_RESET
, &glue
->flags
))
283 reset_control_assert(glue
->rst
);
285 clk_disable_unprepare(glue
->clk
);
287 if (test_bit(SUNXI_MUSB_FL_HAS_SRAM
, &glue
->flags
))
288 sunxi_sram_release(musb
->controller
->parent
);
292 static int sunxi_musb_exit(struct musb
*musb
)
294 struct sunxi_glue
*glue
= dev_get_drvdata(musb
->controller
->parent
);
296 pm_runtime_put(musb
->controller
);
298 cancel_work_sync(&glue
->work
);
299 if (test_bit(SUNXI_MUSB_FL_PHY_ON
, &glue
->flags
))
300 phy_power_off(glue
->phy
);
304 if (musb
->port_mode
== MUSB_PORT_MODE_DUAL_ROLE
)
305 extcon_unregister_notifier(glue
->extcon
, EXTCON_USB_HOST
,
308 if (test_bit(SUNXI_MUSB_FL_HAS_RESET
, &glue
->flags
))
309 reset_control_assert(glue
->rst
);
311 clk_disable_unprepare(glue
->clk
);
312 if (test_bit(SUNXI_MUSB_FL_HAS_SRAM
, &glue
->flags
))
313 sunxi_sram_release(musb
->controller
->parent
);
318 static int sunxi_set_mode(struct musb
*musb
, u8 mode
)
320 struct sunxi_glue
*glue
= dev_get_drvdata(musb
->controller
->parent
);
323 if (mode
== MUSB_HOST
) {
324 ret
= phy_power_on(glue
->phy
);
328 set_bit(SUNXI_MUSB_FL_PHY_ON
, &glue
->flags
);
329 /* Stop musb work from turning vbus off again */
330 set_bit(SUNXI_MUSB_FL_VBUS_ON
, &glue
->flags
);
331 musb
->xceiv
->otg
->state
= OTG_STATE_A_WAIT_VRISE
;
337 static void sunxi_musb_enable(struct musb
*musb
)
339 struct sunxi_glue
*glue
= dev_get_drvdata(musb
->controller
->parent
);
343 /* musb_core does not call us in a balanced manner */
344 if (test_and_set_bit(SUNXI_MUSB_FL_ENABLED
, &glue
->flags
))
347 schedule_work(&glue
->work
);
350 static void sunxi_musb_disable(struct musb
*musb
)
352 struct sunxi_glue
*glue
= dev_get_drvdata(musb
->controller
->parent
);
354 clear_bit(SUNXI_MUSB_FL_ENABLED
, &glue
->flags
);
357 struct dma_controller
*sunxi_musb_dma_controller_create(struct musb
*musb
,
363 void sunxi_musb_dma_controller_destroy(struct dma_controller
*c
)
368 * sunxi musb register layout
369 * 0x00 - 0x17 fifo regs, 1 long per fifo
370 * 0x40 - 0x57 generic control regs (power - frame)
371 * 0x80 - 0x8f ep control regs (addressed through hw_ep->regs, indexed)
372 * 0x90 - 0x97 fifo control regs (indexed)
373 * 0x98 - 0x9f multipoint / busctl regs (indexed)
374 * 0xc0 configdata reg
377 static u32
sunxi_musb_fifo_offset(u8 epnum
)
382 static u32
sunxi_musb_ep_offset(u8 epnum
, u16 offset
)
384 WARN_ONCE(offset
!= 0,
385 "sunxi_musb_ep_offset called with non 0 offset\n");
387 return 0x80; /* indexed, so ignore epnum */
390 static u32
sunxi_musb_busctl_offset(u8 epnum
, u16 offset
)
392 return SUNXI_MUSB_TXFUNCADDR
+ offset
;
395 static u8
sunxi_musb_readb(const void __iomem
*addr
, unsigned offset
)
397 struct sunxi_glue
*glue
;
399 if (addr
== sunxi_musb
->mregs
) {
400 /* generic control or fifo control reg access */
403 return readb(addr
+ SUNXI_MUSB_FADDR
);
405 return readb(addr
+ SUNXI_MUSB_POWER
);
407 return readb(addr
+ SUNXI_MUSB_INTRUSB
);
409 return readb(addr
+ SUNXI_MUSB_INTRUSBE
);
411 return readb(addr
+ SUNXI_MUSB_INDEX
);
413 return 0; /* No testmode on sunxi */
415 return readb(addr
+ SUNXI_MUSB_DEVCTL
);
417 return readb(addr
+ SUNXI_MUSB_TXFIFOSZ
);
419 return readb(addr
+ SUNXI_MUSB_RXFIFOSZ
);
420 case MUSB_CONFIGDATA
+ 0x10: /* See musb_read_configdata() */
421 glue
= dev_get_drvdata(sunxi_musb
->controller
->parent
);
422 /* A33 saves a reg, and we get to hardcode this */
423 if (test_bit(SUNXI_MUSB_FL_NO_CONFIGDATA
,
427 return readb(addr
+ SUNXI_MUSB_CONFIGDATA
);
428 /* Offset for these is fixed by sunxi_musb_busctl_offset() */
429 case SUNXI_MUSB_TXFUNCADDR
:
430 case SUNXI_MUSB_TXHUBADDR
:
431 case SUNXI_MUSB_TXHUBPORT
:
432 case SUNXI_MUSB_RXFUNCADDR
:
433 case SUNXI_MUSB_RXHUBADDR
:
434 case SUNXI_MUSB_RXHUBPORT
:
435 /* multipoint / busctl reg access */
436 return readb(addr
+ offset
);
438 dev_err(sunxi_musb
->controller
->parent
,
439 "Error unknown readb offset %u\n", offset
);
442 } else if (addr
== (sunxi_musb
->mregs
+ 0x80)) {
443 /* ep control reg access */
444 /* sunxi has a 2 byte hole before the txtype register */
445 if (offset
>= MUSB_TXTYPE
)
447 return readb(addr
+ offset
);
450 dev_err(sunxi_musb
->controller
->parent
,
451 "Error unknown readb at 0x%x bytes offset\n",
452 (int)(addr
- sunxi_musb
->mregs
));
456 static void sunxi_musb_writeb(void __iomem
*addr
, unsigned offset
, u8 data
)
458 if (addr
== sunxi_musb
->mregs
) {
459 /* generic control or fifo control reg access */
462 return writeb(data
, addr
+ SUNXI_MUSB_FADDR
);
464 return writeb(data
, addr
+ SUNXI_MUSB_POWER
);
466 return writeb(data
, addr
+ SUNXI_MUSB_INTRUSB
);
468 return writeb(data
, addr
+ SUNXI_MUSB_INTRUSBE
);
470 return writeb(data
, addr
+ SUNXI_MUSB_INDEX
);
473 dev_warn(sunxi_musb
->controller
->parent
,
474 "sunxi-musb does not have testmode\n");
477 return writeb(data
, addr
+ SUNXI_MUSB_DEVCTL
);
479 return writeb(data
, addr
+ SUNXI_MUSB_TXFIFOSZ
);
481 return writeb(data
, addr
+ SUNXI_MUSB_RXFIFOSZ
);
482 /* Offset for these is fixed by sunxi_musb_busctl_offset() */
483 case SUNXI_MUSB_TXFUNCADDR
:
484 case SUNXI_MUSB_TXHUBADDR
:
485 case SUNXI_MUSB_TXHUBPORT
:
486 case SUNXI_MUSB_RXFUNCADDR
:
487 case SUNXI_MUSB_RXHUBADDR
:
488 case SUNXI_MUSB_RXHUBPORT
:
489 /* multipoint / busctl reg access */
490 return writeb(data
, addr
+ offset
);
492 dev_err(sunxi_musb
->controller
->parent
,
493 "Error unknown writeb offset %u\n", offset
);
496 } else if (addr
== (sunxi_musb
->mregs
+ 0x80)) {
497 /* ep control reg access */
498 if (offset
>= MUSB_TXTYPE
)
500 return writeb(data
, addr
+ offset
);
503 dev_err(sunxi_musb
->controller
->parent
,
504 "Error unknown writeb at 0x%x bytes offset\n",
505 (int)(addr
- sunxi_musb
->mregs
));
508 static u16
sunxi_musb_readw(const void __iomem
*addr
, unsigned offset
)
510 if (addr
== sunxi_musb
->mregs
) {
511 /* generic control or fifo control reg access */
514 return readw(addr
+ SUNXI_MUSB_INTRTX
);
516 return readw(addr
+ SUNXI_MUSB_INTRRX
);
518 return readw(addr
+ SUNXI_MUSB_INTRTXE
);
520 return readw(addr
+ SUNXI_MUSB_INTRRXE
);
522 return readw(addr
+ SUNXI_MUSB_FRAME
);
524 return readw(addr
+ SUNXI_MUSB_TXFIFOADD
);
526 return readw(addr
+ SUNXI_MUSB_RXFIFOADD
);
528 return 0; /* sunxi musb version is not known */
530 dev_err(sunxi_musb
->controller
->parent
,
531 "Error unknown readw offset %u\n", offset
);
534 } else if (addr
== (sunxi_musb
->mregs
+ 0x80)) {
535 /* ep control reg access */
536 return readw(addr
+ offset
);
539 dev_err(sunxi_musb
->controller
->parent
,
540 "Error unknown readw at 0x%x bytes offset\n",
541 (int)(addr
- sunxi_musb
->mregs
));
545 static void sunxi_musb_writew(void __iomem
*addr
, unsigned offset
, u16 data
)
547 if (addr
== sunxi_musb
->mregs
) {
548 /* generic control or fifo control reg access */
551 return writew(data
, addr
+ SUNXI_MUSB_INTRTX
);
553 return writew(data
, addr
+ SUNXI_MUSB_INTRRX
);
555 return writew(data
, addr
+ SUNXI_MUSB_INTRTXE
);
557 return writew(data
, addr
+ SUNXI_MUSB_INTRRXE
);
559 return writew(data
, addr
+ SUNXI_MUSB_FRAME
);
561 return writew(data
, addr
+ SUNXI_MUSB_TXFIFOADD
);
563 return writew(data
, addr
+ SUNXI_MUSB_RXFIFOADD
);
565 dev_err(sunxi_musb
->controller
->parent
,
566 "Error unknown writew offset %u\n", offset
);
569 } else if (addr
== (sunxi_musb
->mregs
+ 0x80)) {
570 /* ep control reg access */
571 return writew(data
, addr
+ offset
);
574 dev_err(sunxi_musb
->controller
->parent
,
575 "Error unknown writew at 0x%x bytes offset\n",
576 (int)(addr
- sunxi_musb
->mregs
));
579 static const struct musb_platform_ops sunxi_musb_ops
= {
580 .quirks
= MUSB_INDEXED_EP
,
581 .init
= sunxi_musb_init
,
582 .exit
= sunxi_musb_exit
,
583 .enable
= sunxi_musb_enable
,
584 .disable
= sunxi_musb_disable
,
585 .set_mode
= sunxi_set_mode
,
586 .fifo_offset
= sunxi_musb_fifo_offset
,
587 .ep_offset
= sunxi_musb_ep_offset
,
588 .busctl_offset
= sunxi_musb_busctl_offset
,
589 .readb
= sunxi_musb_readb
,
590 .writeb
= sunxi_musb_writeb
,
591 .readw
= sunxi_musb_readw
,
592 .writew
= sunxi_musb_writew
,
593 .dma_init
= sunxi_musb_dma_controller_create
,
594 .dma_exit
= sunxi_musb_dma_controller_destroy
,
595 .set_vbus
= sunxi_musb_set_vbus
,
596 .pre_root_reset_end
= sunxi_musb_pre_root_reset_end
,
597 .post_root_reset_end
= sunxi_musb_post_root_reset_end
,
600 /* Allwinner OTG supports up to 5 endpoints */
601 #define SUNXI_MUSB_MAX_EP_NUM 6
602 #define SUNXI_MUSB_RAM_BITS 11
604 static struct musb_fifo_cfg sunxi_musb_mode_cfg
[] = {
605 MUSB_EP_FIFO_SINGLE(1, FIFO_TX
, 512),
606 MUSB_EP_FIFO_SINGLE(1, FIFO_RX
, 512),
607 MUSB_EP_FIFO_SINGLE(2, FIFO_TX
, 512),
608 MUSB_EP_FIFO_SINGLE(2, FIFO_RX
, 512),
609 MUSB_EP_FIFO_SINGLE(3, FIFO_TX
, 512),
610 MUSB_EP_FIFO_SINGLE(3, FIFO_RX
, 512),
611 MUSB_EP_FIFO_SINGLE(4, FIFO_TX
, 512),
612 MUSB_EP_FIFO_SINGLE(4, FIFO_RX
, 512),
613 MUSB_EP_FIFO_SINGLE(5, FIFO_TX
, 512),
614 MUSB_EP_FIFO_SINGLE(5, FIFO_RX
, 512),
617 static struct musb_hdrc_config sunxi_musb_hdrc_config
= {
618 .fifo_cfg
= sunxi_musb_mode_cfg
,
619 .fifo_cfg_size
= ARRAY_SIZE(sunxi_musb_mode_cfg
),
623 .num_eps
= SUNXI_MUSB_MAX_EP_NUM
,
624 .ram_bits
= SUNXI_MUSB_RAM_BITS
,
628 static int sunxi_musb_probe(struct platform_device
*pdev
)
630 struct musb_hdrc_platform_data pdata
;
631 struct platform_device_info pinfo
;
632 struct sunxi_glue
*glue
;
633 struct device_node
*np
= pdev
->dev
.of_node
;
637 dev_err(&pdev
->dev
, "Error no device tree node found\n");
641 glue
= devm_kzalloc(&pdev
->dev
, sizeof(*glue
), GFP_KERNEL
);
645 memset(&pdata
, 0, sizeof(pdata
));
646 switch (usb_get_dr_mode(&pdev
->dev
)) {
647 #if defined CONFIG_USB_MUSB_DUAL_ROLE || defined CONFIG_USB_MUSB_HOST
648 case USB_DR_MODE_HOST
:
649 pdata
.mode
= MUSB_PORT_MODE_HOST
;
652 #ifdef CONFIG_USB_MUSB_DUAL_ROLE
653 case USB_DR_MODE_OTG
:
654 glue
->extcon
= extcon_get_edev_by_phandle(&pdev
->dev
, 0);
655 if (IS_ERR(glue
->extcon
)) {
656 if (PTR_ERR(glue
->extcon
) == -EPROBE_DEFER
)
657 return -EPROBE_DEFER
;
658 dev_err(&pdev
->dev
, "Invalid or missing extcon\n");
659 return PTR_ERR(glue
->extcon
);
661 pdata
.mode
= MUSB_PORT_MODE_DUAL_ROLE
;
665 dev_err(&pdev
->dev
, "Invalid or missing 'dr_mode' property\n");
668 pdata
.platform_ops
= &sunxi_musb_ops
;
669 pdata
.config
= &sunxi_musb_hdrc_config
;
671 glue
->dev
= &pdev
->dev
;
672 INIT_WORK(&glue
->work
, sunxi_musb_work
);
673 glue
->host_nb
.notifier_call
= sunxi_musb_host_notifier
;
675 if (of_device_is_compatible(np
, "allwinner,sun4i-a10-musb"))
676 set_bit(SUNXI_MUSB_FL_HAS_SRAM
, &glue
->flags
);
678 if (of_device_is_compatible(np
, "allwinner,sun6i-a31-musb"))
679 set_bit(SUNXI_MUSB_FL_HAS_RESET
, &glue
->flags
);
681 if (of_device_is_compatible(np
, "allwinner,sun8i-a33-musb")) {
682 set_bit(SUNXI_MUSB_FL_HAS_RESET
, &glue
->flags
);
683 set_bit(SUNXI_MUSB_FL_NO_CONFIGDATA
, &glue
->flags
);
686 glue
->clk
= devm_clk_get(&pdev
->dev
, NULL
);
687 if (IS_ERR(glue
->clk
)) {
688 dev_err(&pdev
->dev
, "Error getting clock: %ld\n",
690 return PTR_ERR(glue
->clk
);
693 if (test_bit(SUNXI_MUSB_FL_HAS_RESET
, &glue
->flags
)) {
694 glue
->rst
= devm_reset_control_get(&pdev
->dev
, NULL
);
695 if (IS_ERR(glue
->rst
)) {
696 if (PTR_ERR(glue
->rst
) == -EPROBE_DEFER
)
697 return -EPROBE_DEFER
;
698 dev_err(&pdev
->dev
, "Error getting reset %ld\n",
700 return PTR_ERR(glue
->rst
);
704 glue
->phy
= devm_phy_get(&pdev
->dev
, "usb");
705 if (IS_ERR(glue
->phy
)) {
706 if (PTR_ERR(glue
->phy
) == -EPROBE_DEFER
)
707 return -EPROBE_DEFER
;
708 dev_err(&pdev
->dev
, "Error getting phy %ld\n",
710 return PTR_ERR(glue
->phy
);
713 glue
->usb_phy
= usb_phy_generic_register();
714 if (IS_ERR(glue
->usb_phy
)) {
715 dev_err(&pdev
->dev
, "Error registering usb-phy %ld\n",
716 PTR_ERR(glue
->usb_phy
));
717 return PTR_ERR(glue
->usb_phy
);
720 glue
->xceiv
= devm_usb_get_phy(&pdev
->dev
, USB_PHY_TYPE_USB2
);
721 if (IS_ERR(glue
->xceiv
)) {
722 ret
= PTR_ERR(glue
->xceiv
);
723 dev_err(&pdev
->dev
, "Error getting usb-phy %d\n", ret
);
724 goto err_unregister_usb_phy
;
727 platform_set_drvdata(pdev
, glue
);
729 memset(&pinfo
, 0, sizeof(pinfo
));
730 pinfo
.name
= "musb-hdrc";
731 pinfo
.id
= PLATFORM_DEVID_AUTO
;
732 pinfo
.parent
= &pdev
->dev
;
733 pinfo
.res
= pdev
->resource
;
734 pinfo
.num_res
= pdev
->num_resources
;
736 pinfo
.size_data
= sizeof(pdata
);
738 glue
->musb_pdev
= platform_device_register_full(&pinfo
);
739 if (IS_ERR(glue
->musb_pdev
)) {
740 ret
= PTR_ERR(glue
->musb_pdev
);
741 dev_err(&pdev
->dev
, "Error registering musb dev: %d\n", ret
);
742 goto err_unregister_usb_phy
;
747 err_unregister_usb_phy
:
748 usb_phy_generic_unregister(glue
->usb_phy
);
752 static int sunxi_musb_remove(struct platform_device
*pdev
)
754 struct sunxi_glue
*glue
= platform_get_drvdata(pdev
);
755 struct platform_device
*usb_phy
= glue
->usb_phy
;
757 platform_device_unregister(glue
->musb_pdev
);
758 usb_phy_generic_unregister(usb_phy
);
763 static const struct of_device_id sunxi_musb_match
[] = {
764 { .compatible
= "allwinner,sun4i-a10-musb", },
765 { .compatible
= "allwinner,sun6i-a31-musb", },
766 { .compatible
= "allwinner,sun8i-a33-musb", },
769 MODULE_DEVICE_TABLE(of
, sunxi_musb_match
);
771 static struct platform_driver sunxi_musb_driver
= {
772 .probe
= sunxi_musb_probe
,
773 .remove
= sunxi_musb_remove
,
775 .name
= "musb-sunxi",
776 .of_match_table
= sunxi_musb_match
,
779 module_platform_driver(sunxi_musb_driver
);
781 MODULE_DESCRIPTION("Allwinner sunxi MUSB Glue Layer");
782 MODULE_AUTHOR("Hans de Goede <hdegoede@redhat.com>");
783 MODULE_LICENSE("GPL v2");