1 From ad224c0d5fa0fc05f8aaef3c19fc9b4eb275a5d2 Mon Sep 17 00:00:00 2001
2 From: Hauke Mehrtens <hauke@hauke-m.de>
3 Date: Sun, 18 Jul 2010 21:29:40 +0200
4 Subject: [PATCH 2/2] USB: Add ehci ssb driver
6 Support for the Sonics Silicon Backplane (SSB) attached Broadcom USB EHCI core.
8 Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
10 drivers/usb/host/Kconfig | 13 ++
11 drivers/usb/host/ehci-hcd.c | 22 ++++-
12 drivers/usb/host/ehci-ssb.c | 255 +++++++++++++++++++++++++++++++++++++++++++
13 3 files changed, 288 insertions(+), 2 deletions(-)
14 create mode 100644 drivers/usb/host/ehci-ssb.c
16 --- a/drivers/usb/host/Kconfig
17 +++ b/drivers/usb/host/Kconfig
18 @@ -153,6 +153,19 @@ config USB_OXU210HP_HCD
19 To compile this driver as a module, choose M here: the
20 module will be called oxu210hp-hcd.
22 +config USB_EHCI_HCD_SSB
23 + bool "EHCI support for Broadcom SSB EHCI core"
24 + depends on USB_EHCI_HCD && (SSB = y || SSB = USB_EHCI_HCD) && EXPERIMENTAL
27 + Support for the Sonics Silicon Backplane (SSB) attached
28 + Broadcom USB EHCI core.
30 + This device is present in some embedded devices with
31 + Broadcom based SSB bus.
35 config USB_ISP116X_HCD
36 tristate "ISP116X HCD support"
38 --- a/drivers/usb/host/ehci-hcd.c
39 +++ b/drivers/usb/host/ehci-hcd.c
40 @@ -1197,9 +1197,14 @@ MODULE_LICENSE ("GPL");
41 #define PLATFORM_DRIVER ehci_atmel_driver
44 +#ifdef CONFIG_USB_EHCI_HCD_SSB
45 +#include "ehci-ssb.c"
46 +#define SSB_EHCI_DRIVER ssb_ehci_driver
49 #if !defined(PCI_DRIVER) && !defined(PLATFORM_DRIVER) && \
50 !defined(PS3_SYSTEM_BUS_DRIVER) && !defined(OF_PLATFORM_DRIVER) && \
51 - !defined(XILINX_OF_PLATFORM_DRIVER)
52 + !defined(XILINX_OF_PLATFORM_DRIVER) && !defined(SSB_EHCI_DRIVER)
53 #error "missing bus glue for ehci-hcd"
56 @@ -1259,10 +1264,20 @@ static int __init ehci_hcd_init(void)
61 +#ifdef SSB_EHCI_DRIVER
62 + retval = ssb_driver_register(&SSB_EHCI_DRIVER);
68 +#ifdef SSB_EHCI_DRIVER
69 + /* ssb_driver_unregister(&SSB_EHCI_DRIVER); */
72 #ifdef XILINX_OF_PLATFORM_DRIVER
73 - /* of_unregister_platform_driver(&XILINX_OF_PLATFORM_DRIVER); */
74 + of_unregister_platform_driver(&XILINX_OF_PLATFORM_DRIVER);
77 #ifdef OF_PLATFORM_DRIVER
78 @@ -1293,6 +1308,9 @@ module_init(ehci_hcd_init);
80 static void __exit ehci_hcd_cleanup(void)
82 +#ifdef SSB_EHCI_DRIVER
83 + ssb_driver_unregister(&SSB_EHCI_DRIVER);
85 #ifdef XILINX_OF_PLATFORM_DRIVER
86 of_unregister_platform_driver(&XILINX_OF_PLATFORM_DRIVER);
89 +++ b/drivers/usb/host/ehci-ssb.c
92 + * Sonics Silicon Backplane
93 + * Broadcom USB-core EHCI driver (SSB bus glue)
95 + * Copyright 2007 Steven Brown <sbrown@cortland.com>
96 + * Copyright 2010 Hauke Mehrtens <hauke@hauke-m.de>
98 + * Derived from the OHCI-SSB driver
99 + * Copyright 2007 Michael Buesch <mb@bu3sch.de>
101 + * Derived from the EHCI-PCI driver
102 + * Copyright (c) 2000-2004 by David Brownell
104 + * Derived from the OHCI-PCI driver
105 + * Copyright 1999 Roman Weissgaerber
106 + * Copyright 2000-2002 David Brownell
107 + * Copyright 1999 Linus Torvalds
108 + * Copyright 1999 Gregory P. Smith
110 + * Derived from the USBcore related parts of Broadcom-SB
111 + * Copyright 2005 Broadcom Corporation
113 + * Licensed under the GNU/GPL. See COPYING for details.
115 +#include <linux/ssb/ssb.h>
118 +struct ssb_ehci_device {
119 + struct ehci_hcd ehci; /* _must_ be at the beginning. */
123 +struct ssb_ehci_device *hcd_to_ssb_ehci(struct usb_hcd *hcd)
125 + return (struct ssb_ehci_device *)(hcd->hcd_priv);
128 +static int ssb_ehci_reset(struct usb_hcd *hcd)
130 + struct ehci_hcd *ehci = hcd_to_ehci(hcd);
133 + ehci->caps = hcd->regs;
134 + ehci->regs = hcd->regs +
135 + HC_LENGTH(ehci_readl(ehci, &ehci->caps->hc_capbase));
137 + dbg_hcs_params(ehci, "reset");
138 + dbg_hcc_params(ehci, "reset");
140 + ehci->hcs_params = ehci_readl(ehci, &ehci->caps->hcs_params);
142 + err = ehci_halt(ehci);
147 + err = ehci_init(hcd);
157 +static const struct hc_driver ssb_ehci_hc_driver = {
158 + .description = "ssb-usb-ehci",
159 + .product_desc = "SSB EHCI Controller",
160 + .hcd_priv_size = sizeof(struct ssb_ehci_device),
163 + .flags = HCD_MEMORY | HCD_USB2,
165 + .reset = ssb_ehci_reset,
168 + .shutdown = ehci_shutdown,
170 + .urb_enqueue = ehci_urb_enqueue,
171 + .urb_dequeue = ehci_urb_dequeue,
172 + .endpoint_disable = ehci_endpoint_disable,
173 + .endpoint_reset = ehci_endpoint_reset,
175 + .get_frame_number = ehci_get_frame,
177 + .hub_status_data = ehci_hub_status_data,
178 + .hub_control = ehci_hub_control,
179 +#if defined(CONFIG_PM)
180 + .bus_suspend = ehci_bus_suspend,
181 + .bus_resume = ehci_bus_resume,
183 + .relinquish_port = ehci_relinquish_port,
184 + .port_handed_over = ehci_port_handed_over,
186 + .clear_tt_buffer_complete = ehci_clear_tt_buffer_complete,
189 +static void ssb_ehci_detach(struct ssb_device *dev)
191 + struct usb_hcd *hcd = ssb_get_drvdata(dev);
193 + if (hcd->driver->shutdown)
194 + hcd->driver->shutdown(hcd);
195 + usb_remove_hcd(hcd);
196 + iounmap(hcd->regs);
197 + release_mem_region(hcd->rsrc_start, hcd->rsrc_len);
199 + ssb_device_disable(dev, 0);
202 +static int ssb_ehci_attach(struct ssb_device *dev)
204 + struct ssb_ehci_device *ehcidev;
205 + struct usb_hcd *hcd;
209 + if (dma_set_mask(dev->dma_dev, DMA_BIT_MASK(32)) ||
210 + dma_set_coherent_mask(dev->dma_dev, DMA_BIT_MASK(32)))
211 + return -EOPNOTSUPP;
214 + * USB 2.0 special considerations:
216 + * In addition to the standard SSB reset sequence, the Host Control
217 + * Register must be programmed to bring the USB core and various phy
218 + * components out of reset.
220 + ssb_device_enable(dev, 0);
221 + ssb_write32(dev, 0x200, 0x7ff);
223 + /* Change Flush control reg */
224 + tmp = ssb_read32(dev, 0x400);
226 + ssb_write32(dev, 0x400, tmp);
227 + tmp = ssb_read32(dev, 0x400);
229 + /* Change Shim control reg */
230 + tmp = ssb_read32(dev, 0x304);
232 + ssb_write32(dev, 0x304, tmp);
233 + tmp = ssb_read32(dev, 0x304);
237 + /* Work around for 5354 failures */
238 + if (dev->id.revision == 2 && dev->bus->chip_id == 0x5354) {
239 + /* Change syn01 reg */
241 + ssb_write32(dev, 0x894, tmp);
243 + /* Change syn03 reg */
244 + tmp = ssb_read32(dev, 0x89c);
246 + ssb_write32(dev, 0x89c, tmp);
249 + hcd = usb_create_hcd(&ssb_ehci_hc_driver, dev->dev,
250 + dev_name(dev->dev));
252 + goto err_dev_disable;
254 + ehcidev = hcd_to_ssb_ehci(hcd);
255 + tmp = ssb_read32(dev, SSB_ADMATCH0);
256 + hcd->rsrc_start = ssb_admatch_base(tmp) + 0x800; /* ehci core offset */
257 + hcd->rsrc_len = 0x100; /* ehci reg block size */
259 + * start & size modified per sbutils.c
261 + hcd->regs = ioremap_nocache(hcd->rsrc_start, hcd->rsrc_len);
264 + err = usb_add_hcd(hcd, dev->irq, IRQF_DISABLED | IRQF_SHARED);
268 + ssb_set_drvdata(dev, hcd);
273 + iounmap(hcd->regs);
277 + ssb_device_disable(dev, 0);
281 +static int ssb_ehci_probe(struct ssb_device *dev,
282 + const struct ssb_device_id *id)
287 + /* USBcores are only connected on embedded devices. */
288 + chipid_top = (dev->bus->chip_id & 0xFF00);
289 + if (chipid_top != 0x4700 && chipid_top != 0x5300)
292 + /* TODO: Probably need checks here; is the core connected? */
294 + if (usb_disabled())
297 + err = ssb_ehci_attach(dev);
302 +static void ssb_ehci_remove(struct ssb_device *dev)
304 + ssb_ehci_detach(dev);
309 +static int ssb_ehci_suspend(struct ssb_device *dev, pm_message_t state)
311 + ssb_device_disable(dev, 0);
316 +static int ssb_ehci_resume(struct ssb_device *dev)
318 + struct usb_hcd *hcd = ssb_get_drvdata(dev);
319 + struct ssb_ehci_device *ehcidev = hcd_to_ssb_ehci(hcd);
321 + ssb_device_enable(dev, 0);
323 + ehci_finish_controller_resume(hcd);
327 +#else /* !CONFIG_PM */
328 +#define ssb_ehci_suspend NULL
329 +#define ssb_ehci_resume NULL
330 +#endif /* CONFIG_PM */
332 +static const struct ssb_device_id ssb_ehci_table[] = {
333 + SSB_DEVICE(SSB_VENDOR_BROADCOM, SSB_DEV_USB20_HOST, SSB_ANY_REV),
336 +MODULE_DEVICE_TABLE(ssb, ssb_ehci_table);
338 +static struct ssb_driver ssb_ehci_driver = {
339 + .name = KBUILD_MODNAME,
340 + .id_table = ssb_ehci_table,
341 + .probe = ssb_ehci_probe,
342 + .remove = ssb_ehci_remove,
343 + .suspend = ssb_ehci_suspend,
344 + .resume = ssb_ehci_resume,