1 // SPDX-License-Identifier: GPL-2.0
3 * Broadcom specific Advanced Microcontroller Bus
4 * Broadcom USB-core driver (BCMA bus glue)
6 * Copyright 2011-2015 Hauke Mehrtens <hauke@hauke-m.de>
7 * Copyright 2015 Felix Fietkau <nbd@openwrt.org>
9 * Based on ssb-ohci driver
10 * Copyright 2007 Michael Buesch <m@bues.ch>
12 * Derived from the OHCI-PCI driver
13 * Copyright 1999 Roman Weissgaerber
14 * Copyright 2000-2002 David Brownell
15 * Copyright 1999 Linus Torvalds
16 * Copyright 1999 Gregory P. Smith
18 * Derived from the USBcore related parts of Broadcom-SB
19 * Copyright 2005-2011 Broadcom Corporation
21 #include <linux/bcma/bcma.h>
22 #include <linux/delay.h>
23 #include <linux/gpio/consumer.h>
24 #include <linux/platform_device.h>
25 #include <linux/module.h>
26 #include <linux/slab.h>
28 #include <linux/of_gpio.h>
29 #include <linux/of_platform.h>
30 #include <linux/usb/ehci_pdriver.h>
31 #include <linux/usb/ohci_pdriver.h>
33 MODULE_AUTHOR("Hauke Mehrtens");
34 MODULE_DESCRIPTION("Common USB driver for BCMA Bus");
35 MODULE_LICENSE("GPL");
37 /* See BCMA_CLKCTLST_EXTRESREQ and BCMA_CLKCTLST_EXTRESST */
38 #define USB_BCMA_CLKCTLST_USB_CLK_REQ 0x00000100
40 struct bcma_hcd_device
{
41 struct bcma_device
*core
;
42 struct platform_device
*ehci_dev
;
43 struct platform_device
*ohci_dev
;
44 struct gpio_desc
*gpio_desc
;
47 /* Wait for bitmask in a register to get set or cleared.
48 * timeout is in units of ten-microseconds.
50 static int bcma_wait_bits(struct bcma_device
*dev
, u16 reg
, u32 bitmask
,
56 for (i
= 0; i
< timeout
; i
++) {
57 val
= bcma_read32(dev
, reg
);
58 if ((val
& bitmask
) == bitmask
)
66 static void bcma_hcd_4716wa(struct bcma_device
*dev
)
68 #ifdef CONFIG_BCMA_DRIVER_MIPS
69 /* Work around for 4716 failures. */
70 if (dev
->bus
->chipinfo
.id
== 0x4716) {
73 tmp
= bcma_cpu_clock(&dev
->bus
->drv_mips
);
75 tmp
= 0x1846b; /* set CDR to 0x11(fast) */
76 else if (tmp
== 453000000)
77 tmp
= 0x1046b; /* set CDR to 0x10(slow) */
81 /* Change Shim mdio control reg to fix host not acking at
85 bcma_write32(dev
, 0x524, 0x1); /* write sel to enable */
88 bcma_write32(dev
, 0x524, tmp
);
90 bcma_write32(dev
, 0x524, 0x4ab);
92 bcma_read32(dev
, 0x528);
93 bcma_write32(dev
, 0x528, 0x80000000);
96 #endif /* CONFIG_BCMA_DRIVER_MIPS */
99 /* based on arch/mips/brcm-boards/bcm947xx/pcibios.c */
100 static void bcma_hcd_init_chip_mips(struct bcma_device
*dev
)
105 * USB 2.0 special considerations:
107 * 1. Since the core supports both OHCI and EHCI functions, it must
108 * only be reset once.
110 * 2. In addition to the standard SI reset sequence, the Host Control
111 * Register must be programmed to bring the USB core and various
112 * phy components out of reset.
114 if (!bcma_core_is_enabled(dev
)) {
115 bcma_core_enable(dev
, 0);
117 if (dev
->id
.rev
>= 5) {
118 /* Enable Misc PLL */
119 tmp
= bcma_read32(dev
, 0x1e0);
121 bcma_write32(dev
, 0x1e0, tmp
);
122 if (bcma_wait_bits(dev
, 0x1e0, 1 << 24, 100))
123 printk(KERN_EMERG
"Failed to enable misc PPL!\n");
125 /* Take out of resets */
126 bcma_write32(dev
, 0x200, 0x4ff);
128 bcma_write32(dev
, 0x200, 0x6ff);
131 /* Make sure digital and AFE are locked in USB PHY */
132 bcma_write32(dev
, 0x524, 0x6b);
134 tmp
= bcma_read32(dev
, 0x524);
136 bcma_write32(dev
, 0x524, 0xab);
138 tmp
= bcma_read32(dev
, 0x524);
140 bcma_write32(dev
, 0x524, 0x2b);
142 tmp
= bcma_read32(dev
, 0x524);
144 bcma_write32(dev
, 0x524, 0x10ab);
146 tmp
= bcma_read32(dev
, 0x524);
148 if (bcma_wait_bits(dev
, 0x528, 0xc000, 10000)) {
149 tmp
= bcma_read32(dev
, 0x528);
151 "USB20H mdio_rddata 0x%08x\n", tmp
);
153 bcma_write32(dev
, 0x528, 0x80000000);
154 tmp
= bcma_read32(dev
, 0x314);
156 bcma_write32(dev
, 0x200, 0x7ff);
159 /* Take USB and HSIC out of non-driving modes */
160 bcma_write32(dev
, 0x510, 0);
162 bcma_write32(dev
, 0x200, 0x7ff);
167 bcma_hcd_4716wa(dev
);
172 * bcma_hcd_usb20_old_arm_init - Initialize old USB 2.0 controller on ARM
174 * Old USB 2.0 core is identified as BCMA_CORE_USB20_HOST and was introduced
175 * long before Northstar devices. It seems some cheaper chipsets like BCM53573
177 * Initialization of this old core differs between MIPS and ARM.
179 static int bcma_hcd_usb20_old_arm_init(struct bcma_hcd_device
*usb_dev
)
181 struct bcma_device
*core
= usb_dev
->core
;
182 struct device
*dev
= &core
->dev
;
183 struct bcma_device
*pmu_core
;
185 usleep_range(10000, 20000);
186 if (core
->id
.rev
< 5)
189 pmu_core
= bcma_find_core(core
->bus
, BCMA_CORE_PMU
);
191 dev_err(dev
, "Could not find PMU core\n");
195 /* Take USB core out of reset */
196 bcma_awrite32(core
, BCMA_IOCTL
, BCMA_IOCTL_CLK
| BCMA_IOCTL_FGC
);
197 usleep_range(100, 200);
198 bcma_awrite32(core
, BCMA_RESET_CTL
, BCMA_RESET_CTL_RESET
);
199 usleep_range(100, 200);
200 bcma_awrite32(core
, BCMA_RESET_CTL
, 0);
201 usleep_range(100, 200);
202 bcma_awrite32(core
, BCMA_IOCTL
, BCMA_IOCTL_CLK
);
203 usleep_range(100, 200);
205 /* Enable Misc PLL */
206 bcma_write32(core
, BCMA_CLKCTLST
, BCMA_CLKCTLST_FORCEHT
|
207 BCMA_CLKCTLST_HQCLKREQ
|
208 USB_BCMA_CLKCTLST_USB_CLK_REQ
);
209 usleep_range(100, 200);
211 bcma_write32(core
, 0x510, 0xc7f85000);
212 bcma_write32(core
, 0x510, 0xc7f85003);
213 usleep_range(300, 600);
215 /* Program USB PHY PLL parameters */
216 bcma_write32(pmu_core
, BCMA_CC_PMU_PLLCTL_ADDR
, 0x6);
217 bcma_write32(pmu_core
, BCMA_CC_PMU_PLLCTL_DATA
, 0x005360c1);
218 usleep_range(100, 200);
219 bcma_write32(pmu_core
, BCMA_CC_PMU_PLLCTL_ADDR
, 0x7);
220 bcma_write32(pmu_core
, BCMA_CC_PMU_PLLCTL_DATA
, 0x0);
221 usleep_range(100, 200);
222 bcma_set32(pmu_core
, BCMA_CC_PMU_CTL
, BCMA_CC_PMU_CTL_PLL_UPD
);
223 usleep_range(100, 200);
225 bcma_write32(core
, 0x510, 0x7f8d007);
228 /* Take controller out of reset */
229 bcma_write32(core
, 0x200, 0x4ff);
230 usleep_range(25, 50);
231 bcma_write32(core
, 0x200, 0x6ff);
232 usleep_range(25, 50);
233 bcma_write32(core
, 0x200, 0x7ff);
234 usleep_range(25, 50);
236 of_platform_default_populate(dev
->of_node
, NULL
, dev
);
241 static void bcma_hcd_usb20_ns_init_hc(struct bcma_device
*dev
)
245 /* Set packet buffer OUT threshold */
246 val
= bcma_read32(dev
, 0x94);
249 bcma_write32(dev
, 0x94, val
);
251 /* Enable break memory transfer */
252 val
= bcma_read32(dev
, 0x9c);
254 bcma_write32(dev
, 0x9c, val
);
257 * Broadcom initializes PHY and then waits to ensure HC is ready to be
258 * configured. In our case the order is reversed. We just initialized
259 * controller and we let HCD initialize PHY, so let's wait (sleep) now.
261 usleep_range(1000, 2000);
265 * bcma_hcd_usb20_ns_init - Initialize Northstar USB 2.0 controller
267 static int bcma_hcd_usb20_ns_init(struct bcma_hcd_device
*bcma_hcd
)
269 struct bcma_device
*core
= bcma_hcd
->core
;
270 struct bcma_chipinfo
*ci
= &core
->bus
->chipinfo
;
271 struct device
*dev
= &core
->dev
;
273 bcma_core_enable(core
, 0);
275 if (ci
->id
== BCMA_CHIP_ID_BCM4707
||
276 ci
->id
== BCMA_CHIP_ID_BCM53018
)
277 bcma_hcd_usb20_ns_init_hc(core
);
279 of_platform_default_populate(dev
->of_node
, NULL
, dev
);
284 static void bcma_hci_platform_power_gpio(struct bcma_device
*dev
, bool val
)
286 struct bcma_hcd_device
*usb_dev
= bcma_get_drvdata(dev
);
288 if (IS_ERR_OR_NULL(usb_dev
->gpio_desc
))
291 gpiod_set_value(usb_dev
->gpio_desc
, val
);
294 static const struct usb_ehci_pdata ehci_pdata
= {
297 static const struct usb_ohci_pdata ohci_pdata
= {
300 static struct platform_device
*bcma_hcd_create_pdev(struct bcma_device
*dev
,
301 const char *name
, u32 addr
,
305 struct platform_device
*hci_dev
;
306 struct resource hci_res
[2];
309 memset(hci_res
, 0, sizeof(hci_res
));
311 hci_res
[0].start
= addr
;
312 hci_res
[0].end
= hci_res
[0].start
+ 0x1000 - 1;
313 hci_res
[0].flags
= IORESOURCE_MEM
;
315 hci_res
[1].start
= dev
->irq
;
316 hci_res
[1].flags
= IORESOURCE_IRQ
;
318 hci_dev
= platform_device_alloc(name
, 0);
320 return ERR_PTR(-ENOMEM
);
322 hci_dev
->dev
.parent
= &dev
->dev
;
323 hci_dev
->dev
.dma_mask
= &hci_dev
->dev
.coherent_dma_mask
;
325 ret
= platform_device_add_resources(hci_dev
, hci_res
,
326 ARRAY_SIZE(hci_res
));
330 ret
= platform_device_add_data(hci_dev
, data
, size
);
333 ret
= platform_device_add(hci_dev
);
340 platform_device_put(hci_dev
);
344 static int bcma_hcd_usb20_init(struct bcma_hcd_device
*usb_dev
)
346 struct bcma_device
*dev
= usb_dev
->core
;
347 struct bcma_chipinfo
*chipinfo
= &dev
->bus
->chipinfo
;
351 if (dma_set_mask_and_coherent(dev
->dma_dev
, DMA_BIT_MASK(32)))
354 bcma_hcd_init_chip_mips(dev
);
356 /* In AI chips EHCI is addrspace 0, OHCI is 1 */
357 ohci_addr
= dev
->addr_s
[0];
358 if ((chipinfo
->id
== BCMA_CHIP_ID_BCM5357
||
359 chipinfo
->id
== BCMA_CHIP_ID_BCM4749
)
360 && chipinfo
->rev
== 0)
361 ohci_addr
= 0x18009000;
363 usb_dev
->ohci_dev
= bcma_hcd_create_pdev(dev
, "ohci-platform",
364 ohci_addr
, &ohci_pdata
,
366 if (IS_ERR(usb_dev
->ohci_dev
))
367 return PTR_ERR(usb_dev
->ohci_dev
);
369 usb_dev
->ehci_dev
= bcma_hcd_create_pdev(dev
, "ehci-platform",
370 dev
->addr
, &ehci_pdata
,
372 if (IS_ERR(usb_dev
->ehci_dev
)) {
373 err
= PTR_ERR(usb_dev
->ehci_dev
);
374 goto err_unregister_ohci_dev
;
379 err_unregister_ohci_dev
:
380 platform_device_unregister(usb_dev
->ohci_dev
);
384 static int bcma_hcd_usb30_init(struct bcma_hcd_device
*bcma_hcd
)
386 struct bcma_device
*core
= bcma_hcd
->core
;
387 struct device
*dev
= &core
->dev
;
389 bcma_core_enable(core
, 0);
391 of_platform_default_populate(dev
->of_node
, NULL
, dev
);
396 static int bcma_hcd_probe(struct bcma_device
*core
)
399 struct bcma_hcd_device
*usb_dev
;
401 /* TODO: Probably need checks here; is the core connected? */
403 usb_dev
= devm_kzalloc(&core
->dev
, sizeof(struct bcma_hcd_device
),
407 usb_dev
->core
= core
;
409 if (core
->dev
.of_node
)
410 usb_dev
->gpio_desc
= devm_gpiod_get(&core
->dev
, "vcc",
413 switch (core
->id
.id
) {
414 case BCMA_CORE_USB20_HOST
:
415 if (IS_ENABLED(CONFIG_ARM
))
416 err
= bcma_hcd_usb20_old_arm_init(usb_dev
);
417 else if (IS_ENABLED(CONFIG_MIPS
))
418 err
= bcma_hcd_usb20_init(usb_dev
);
422 case BCMA_CORE_NS_USB20
:
423 err
= bcma_hcd_usb20_ns_init(usb_dev
);
425 case BCMA_CORE_NS_USB30
:
426 err
= bcma_hcd_usb30_init(usb_dev
);
434 bcma_set_drvdata(core
, usb_dev
);
438 static void bcma_hcd_remove(struct bcma_device
*dev
)
440 struct bcma_hcd_device
*usb_dev
= bcma_get_drvdata(dev
);
441 struct platform_device
*ohci_dev
= usb_dev
->ohci_dev
;
442 struct platform_device
*ehci_dev
= usb_dev
->ehci_dev
;
445 platform_device_unregister(ohci_dev
);
447 platform_device_unregister(ehci_dev
);
449 bcma_core_disable(dev
, 0);
452 static void bcma_hcd_shutdown(struct bcma_device
*dev
)
454 bcma_hci_platform_power_gpio(dev
, false);
455 bcma_core_disable(dev
, 0);
460 static int bcma_hcd_suspend(struct bcma_device
*dev
)
462 bcma_hci_platform_power_gpio(dev
, false);
463 bcma_core_disable(dev
, 0);
468 static int bcma_hcd_resume(struct bcma_device
*dev
)
470 bcma_hci_platform_power_gpio(dev
, true);
471 bcma_core_enable(dev
, 0);
476 #else /* !CONFIG_PM */
477 #define bcma_hcd_suspend NULL
478 #define bcma_hcd_resume NULL
479 #endif /* CONFIG_PM */
481 static const struct bcma_device_id bcma_hcd_table
[] = {
482 BCMA_CORE(BCMA_MANUF_BCM
, BCMA_CORE_USB20_HOST
, BCMA_ANY_REV
, BCMA_ANY_CLASS
),
483 BCMA_CORE(BCMA_MANUF_BCM
, BCMA_CORE_NS_USB20
, BCMA_ANY_REV
, BCMA_ANY_CLASS
),
484 BCMA_CORE(BCMA_MANUF_BCM
, BCMA_CORE_NS_USB30
, BCMA_ANY_REV
, BCMA_ANY_CLASS
),
487 MODULE_DEVICE_TABLE(bcma
, bcma_hcd_table
);
489 static struct bcma_driver bcma_hcd_driver
= {
490 .name
= KBUILD_MODNAME
,
491 .id_table
= bcma_hcd_table
,
492 .probe
= bcma_hcd_probe
,
493 .remove
= bcma_hcd_remove
,
494 .shutdown
= bcma_hcd_shutdown
,
495 .suspend
= bcma_hcd_suspend
,
496 .resume
= bcma_hcd_resume
,
499 static int __init
bcma_hcd_init(void)
501 return bcma_driver_register(&bcma_hcd_driver
);
503 module_init(bcma_hcd_init
);
505 static void __exit
bcma_hcd_exit(void)
507 bcma_driver_unregister(&bcma_hcd_driver
);
509 module_exit(bcma_hcd_exit
);