1 // SPDX-License-Identifier: GPL-2.0
3 * Sonics Silicon Backplane
4 * Broadcom USB-core driver (SSB bus glue)
6 * Copyright 2011-2012 Hauke Mehrtens <hauke@hauke-m.de>
8 * Based on ssb-ohci driver
9 * Copyright 2007 Michael Buesch <m@bues.ch>
11 * Derived from the OHCI-PCI driver
12 * Copyright 1999 Roman Weissgaerber
13 * Copyright 2000-2002 David Brownell
14 * Copyright 1999 Linus Torvalds
15 * Copyright 1999 Gregory P. Smith
17 * Derived from the USBcore related parts of Broadcom-SB
18 * Copyright 2005-2011 Broadcom Corporation
20 #include <linux/ssb/ssb.h>
21 #include <linux/delay.h>
22 #include <linux/platform_device.h>
23 #include <linux/module.h>
24 #include <linux/slab.h>
25 #include <linux/usb/ehci_pdriver.h>
26 #include <linux/usb/ohci_pdriver.h>
28 MODULE_AUTHOR("Hauke Mehrtens");
29 MODULE_DESCRIPTION("Common USB driver for SSB Bus");
30 MODULE_LICENSE("GPL");
32 #define SSB_HCD_TMSLOW_HOSTMODE (1 << 29)
34 struct ssb_hcd_device
{
35 struct platform_device
*ehci_dev
;
36 struct platform_device
*ohci_dev
;
41 static void ssb_hcd_5354wa(struct ssb_device
*dev
)
43 #ifdef CONFIG_SSB_DRIVER_MIPS
44 /* Work around for 5354 failures */
45 if (dev
->id
.revision
== 2 && dev
->bus
->chip_id
== 0x5354) {
46 /* Change syn01 reg */
47 ssb_write32(dev
, 0x894, 0x00fe00fe);
49 /* Change syn03 reg */
50 ssb_write32(dev
, 0x89c, ssb_read32(dev
, 0x89c) | 0x1);
55 static void ssb_hcd_usb20wa(struct ssb_device
*dev
)
57 if (dev
->id
.coreid
== SSB_DEV_USB20_HOST
) {
59 * USB 2.0 special considerations:
61 * In addition to the standard SSB reset sequence, the Host
62 * Control Register must be programmed to bring the USB core
63 * and various phy components out of reset.
65 ssb_write32(dev
, 0x200, 0x7ff);
67 /* Change Flush control reg */
68 ssb_write32(dev
, 0x400, ssb_read32(dev
, 0x400) & ~8);
69 ssb_read32(dev
, 0x400);
71 /* Change Shim control reg */
72 ssb_write32(dev
, 0x304, ssb_read32(dev
, 0x304) & ~0x100);
73 ssb_read32(dev
, 0x304);
81 /* based on arch/mips/brcm-boards/bcm947xx/pcibios.c */
82 static u32
ssb_hcd_init_chip(struct ssb_device
*dev
)
86 if (dev
->id
.coreid
== SSB_DEV_USB11_HOSTDEV
)
87 /* Put the device into host-mode. */
88 flags
|= SSB_HCD_TMSLOW_HOSTMODE
;
90 ssb_device_enable(dev
, flags
);
97 static const struct usb_ehci_pdata ehci_pdata
= {
100 static const struct usb_ohci_pdata ohci_pdata
= {
103 static struct platform_device
*ssb_hcd_create_pdev(struct ssb_device
*dev
, bool ohci
, u32 addr
, u32 len
)
105 struct platform_device
*hci_dev
;
106 struct resource hci_res
[2];
109 memset(hci_res
, 0, sizeof(hci_res
));
111 hci_res
[0].start
= addr
;
112 hci_res
[0].end
= hci_res
[0].start
+ len
- 1;
113 hci_res
[0].flags
= IORESOURCE_MEM
;
115 hci_res
[1].start
= dev
->irq
;
116 hci_res
[1].flags
= IORESOURCE_IRQ
;
118 hci_dev
= platform_device_alloc(ohci
? "ohci-platform" :
119 "ehci-platform" , 0);
121 return ERR_PTR(-ENOMEM
);
123 hci_dev
->dev
.parent
= dev
->dev
;
124 hci_dev
->dev
.dma_mask
= &hci_dev
->dev
.coherent_dma_mask
;
126 ret
= platform_device_add_resources(hci_dev
, hci_res
,
127 ARRAY_SIZE(hci_res
));
131 ret
= platform_device_add_data(hci_dev
, &ohci_pdata
,
134 ret
= platform_device_add_data(hci_dev
, &ehci_pdata
,
138 ret
= platform_device_add(hci_dev
);
145 platform_device_put(hci_dev
);
149 static int ssb_hcd_probe(struct ssb_device
*dev
,
150 const struct ssb_device_id
*id
)
155 u16 coreid
= dev
->id
.coreid
;
156 struct ssb_hcd_device
*usb_dev
;
158 /* USBcores are only connected on embedded devices. */
159 chipid_top
= (dev
->bus
->chip_id
& 0xFF00);
160 if (chipid_top
!= 0x4700 && chipid_top
!= 0x5300)
163 /* TODO: Probably need checks here; is the core connected? */
165 if (dma_set_mask_and_coherent(dev
->dma_dev
, DMA_BIT_MASK(32)))
168 usb_dev
= devm_kzalloc(dev
->dev
, sizeof(struct ssb_hcd_device
),
173 /* We currently always attach SSB_DEV_USB11_HOSTDEV
174 * as HOST OHCI. If we want to attach it as Client device,
175 * we must branch here and call into the (yet to
176 * be written) Client mode driver. Same for remove(). */
177 usb_dev
->enable_flags
= ssb_hcd_init_chip(dev
);
179 tmp
= ssb_read32(dev
, SSB_ADMATCH0
);
181 start
= ssb_admatch_base(tmp
);
182 len
= (coreid
== SSB_DEV_USB20_HOST
) ? 0x800 : ssb_admatch_size(tmp
);
183 usb_dev
->ohci_dev
= ssb_hcd_create_pdev(dev
, true, start
, len
);
184 if (IS_ERR(usb_dev
->ohci_dev
))
185 return PTR_ERR(usb_dev
->ohci_dev
);
187 if (coreid
== SSB_DEV_USB20_HOST
) {
188 start
= ssb_admatch_base(tmp
) + 0x800; /* ehci core offset */
189 usb_dev
->ehci_dev
= ssb_hcd_create_pdev(dev
, false, start
, len
);
190 if (IS_ERR(usb_dev
->ehci_dev
)) {
191 err
= PTR_ERR(usb_dev
->ehci_dev
);
192 goto err_unregister_ohci_dev
;
196 ssb_set_drvdata(dev
, usb_dev
);
199 err_unregister_ohci_dev
:
200 platform_device_unregister(usb_dev
->ohci_dev
);
204 static void ssb_hcd_remove(struct ssb_device
*dev
)
206 struct ssb_hcd_device
*usb_dev
= ssb_get_drvdata(dev
);
207 struct platform_device
*ohci_dev
= usb_dev
->ohci_dev
;
208 struct platform_device
*ehci_dev
= usb_dev
->ehci_dev
;
211 platform_device_unregister(ohci_dev
);
213 platform_device_unregister(ehci_dev
);
215 ssb_device_disable(dev
, 0);
218 static void ssb_hcd_shutdown(struct ssb_device
*dev
)
220 ssb_device_disable(dev
, 0);
225 static int ssb_hcd_suspend(struct ssb_device
*dev
, pm_message_t state
)
227 ssb_device_disable(dev
, 0);
232 static int ssb_hcd_resume(struct ssb_device
*dev
)
234 struct ssb_hcd_device
*usb_dev
= ssb_get_drvdata(dev
);
236 ssb_device_enable(dev
, usb_dev
->enable_flags
);
241 #else /* !CONFIG_PM */
242 #define ssb_hcd_suspend NULL
243 #define ssb_hcd_resume NULL
244 #endif /* CONFIG_PM */
246 static const struct ssb_device_id ssb_hcd_table
[] = {
247 SSB_DEVICE(SSB_VENDOR_BROADCOM
, SSB_DEV_USB11_HOSTDEV
, SSB_ANY_REV
),
248 SSB_DEVICE(SSB_VENDOR_BROADCOM
, SSB_DEV_USB11_HOST
, SSB_ANY_REV
),
249 SSB_DEVICE(SSB_VENDOR_BROADCOM
, SSB_DEV_USB20_HOST
, SSB_ANY_REV
),
252 MODULE_DEVICE_TABLE(ssb
, ssb_hcd_table
);
254 static struct ssb_driver ssb_hcd_driver
= {
255 .name
= KBUILD_MODNAME
,
256 .id_table
= ssb_hcd_table
,
257 .probe
= ssb_hcd_probe
,
258 .remove
= ssb_hcd_remove
,
259 .shutdown
= ssb_hcd_shutdown
,
260 .suspend
= ssb_hcd_suspend
,
261 .resume
= ssb_hcd_resume
,
264 static int __init
ssb_hcd_init(void)
266 return ssb_driver_register(&ssb_hcd_driver
);
268 module_init(ssb_hcd_init
);
270 static void __exit
ssb_hcd_exit(void)
272 ssb_driver_unregister(&ssb_hcd_driver
);
274 module_exit(ssb_hcd_exit
);