1 From cb269cf1f97c316a5184080814a751687c72b718 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 | 23 ++++-
12 drivers/usb/host/ehci-ssb.c | 258 +++++++++++++++++++++++++++++++++++++++++++
13 3 files changed, 292 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 @@ -150,6 +150,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 @@ -1159,8 +1159,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(PS3_SYSTEM_BUS_DRIVER) && !defined(OF_PLATFORM_DRIVER) && \
52 + !defined(SSB_EHCI_DRIVER)
53 #error "missing bus glue for ehci-hcd"
56 @@ -1214,10 +1220,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 OF_PLATFORM_DRIVER
73 - /* of_unregister_platform_driver(&OF_PLATFORM_DRIVER); */
74 + of_unregister_platform_driver(&OF_PLATFORM_DRIVER);
77 #ifdef PS3_SYSTEM_BUS_DRIVER
78 @@ -1256,6 +1272,9 @@ static void __exit ehci_hcd_cleanup(void
79 #ifdef PS3_SYSTEM_BUS_DRIVER
80 ps3_ehci_driver_unregister(&PS3_SYSTEM_BUS_DRIVER);
82 +#ifdef SSB_EHCI_DRIVER
83 + ssb_driver_unregister(&SSB_EHCI_DRIVER);
86 debugfs_remove(ehci_debug_root);
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);
192 + if (hcd->driver->shutdown)
193 + 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 + * 1. Since the core supports both ehci and EHCI functions, it must
217 + * only be reset once.
219 + * 2. In addition to the standard SSB reset sequence, the Host Control
220 + * Register must be programmed to bring the USB core and various
221 + * phy components out of reset.
223 + ssb_device_enable(dev, 0);
224 + ssb_write32(dev, 0x200, 0x7ff);
226 + /* Change Flush control reg */
227 + tmp = ssb_read32(dev, 0x400);
229 + ssb_write32(dev, 0x400, tmp);
230 + tmp = ssb_read32(dev, 0x400);
232 + /* Change Shim control reg */
233 + tmp = ssb_read32(dev, 0x304);
235 + ssb_write32(dev, 0x304, tmp);
236 + tmp = ssb_read32(dev, 0x304);
240 + /* Work around for 5354 failures */
241 + if ((dev->id.revision == 2) && (dev->bus->chip_id == 0x5354)) {
242 + /* Change syn01 reg */
244 + ssb_write32(dev, 0x894, tmp);
246 + /* Change syn03 reg */
247 + tmp = ssb_read32(dev, 0x89c);
249 + ssb_write32(dev, 0x89c, tmp);
252 + hcd = usb_create_hcd(&ssb_ehci_hc_driver, dev->dev,
253 + dev_name(dev->dev));
255 + goto err_dev_disable;
257 + ehcidev = hcd_to_ssb_ehci(hcd);
258 + tmp = ssb_read32(dev, SSB_ADMATCH0);
259 + hcd->rsrc_start = ssb_admatch_base(tmp) + 0x800; /* ehci core offset */
260 + hcd->rsrc_len = 0x100; /* ehci reg block size */
262 + * start & size modified per sbutils.c
264 + hcd->regs = ioremap_nocache(hcd->rsrc_start, hcd->rsrc_len);
267 + err = usb_add_hcd(hcd, dev->irq, IRQF_DISABLED | IRQF_SHARED);
271 + ssb_set_drvdata(dev, hcd);
276 + iounmap(hcd->regs);
280 + ssb_device_disable(dev, 0);
284 +static int ssb_ehci_probe(struct ssb_device *dev,
285 + const struct ssb_device_id *id)
290 + /* USBcores are only connected on embedded devices. */
291 + chipid_top = (dev->bus->chip_id & 0xFF00);
292 + if (chipid_top != 0x4700 && chipid_top != 0x5300)
295 + /* TODO: Probably need checks here; is the core connected? */
297 + if (usb_disabled())
300 + err = ssb_ehci_attach(dev);
305 +static void ssb_ehci_remove(struct ssb_device *dev)
307 + ssb_ehci_detach(dev);
312 +static int ssb_ehci_suspend(struct ssb_device *dev, pm_message_t state)
314 + ssb_device_disable(dev, 0);
319 +static int ssb_ehci_resume(struct ssb_device *dev)
321 + struct usb_hcd *hcd = ssb_get_drvdata(dev);
322 + struct ssb_ehci_device *ehcidev = hcd_to_ssb_ehci(hcd);
324 + ssb_device_enable(dev, 0);
326 + ehci_finish_controller_resume(hcd);
330 +#else /* !CONFIG_PM */
331 +#define ssb_ehci_suspend NULL
332 +#define ssb_ehci_resume NULL
333 +#endif /* CONFIG_PM */
335 +static const struct ssb_device_id ssb_ehci_table[] = {
336 + SSB_DEVICE(SSB_VENDOR_BROADCOM, SSB_DEV_USB20_HOST, SSB_ANY_REV),
339 +MODULE_DEVICE_TABLE(ssb, ssb_ehci_table);
341 +static struct ssb_driver ssb_ehci_driver = {
342 + .name = KBUILD_MODNAME,
343 + .id_table = ssb_ehci_table,
344 + .probe = ssb_ehci_probe,
345 + .remove = ssb_ehci_remove,
346 + .suspend = ssb_ehci_suspend,
347 + .resume = ssb_ehci_resume,