2  * Sonics Silicon Backplane
 
   3  * Broadcom USB-core OHCI driver
 
   5  * Copyright 2007 Michael Buesch <mb@bu3sch.de>
 
   7  * Derived from the OHCI-PCI driver
 
   8  * Copyright 1999 Roman Weissgaerber
 
   9  * Copyright 2000-2002 David Brownell
 
  10  * Copyright 1999 Linus Torvalds
 
  11  * Copyright 1999 Gregory P. Smith
 
  13  * Derived from the USBcore related parts of Broadcom-SB
 
  14  * Copyright 2005 Broadcom Corporation
 
  16  * Licensed under the GNU/GPL. See COPYING for details.
 
  18 #include <linux/ssb/ssb.h>
 
  21 #define SSB_OHCI_TMSLOW_HOSTMODE        (1 << 29)
 
  23 struct ssb_ohci_device {
 
  24         struct ohci_hcd ohci; /* _must_ be at the beginning. */
 
  30 struct ssb_ohci_device *hcd_to_ssb_ohci(struct usb_hcd *hcd)
 
  32         return (struct ssb_ohci_device *)(hcd->hcd_priv);
 
  36 static int ssb_ohci_reset(struct usb_hcd *hcd)
 
  38         struct ssb_ohci_device *ohcidev = hcd_to_ssb_ohci(hcd);
 
  39         struct ohci_hcd *ohci = &ohcidev->ohci;
 
  43         err = ohci_init(ohci);
 
  48 static int ssb_ohci_start(struct usb_hcd *hcd)
 
  50         struct ssb_ohci_device *ohcidev = hcd_to_ssb_ohci(hcd);
 
  51         struct ohci_hcd *ohci = &ohcidev->ohci;
 
  56                 ohci_err(ohci, "can't start\n");
 
  63 static const struct hc_driver ssb_ohci_hc_driver = {
 
  64         .description            = "ssb-usb-ohci",
 
  65         .product_desc           = "SSB OHCI Controller",
 
  66         .hcd_priv_size          = sizeof(struct ssb_ohci_device),
 
  69         .flags                  = HCD_MEMORY | HCD_USB11,
 
  71         .reset                  = ssb_ohci_reset,
 
  72         .start                  = ssb_ohci_start,
 
  74         .shutdown               = ohci_shutdown,
 
  76         .urb_enqueue            = ohci_urb_enqueue,
 
  77         .urb_dequeue            = ohci_urb_dequeue,
 
  78         .endpoint_disable       = ohci_endpoint_disable,
 
  80         .get_frame_number       = ohci_get_frame,
 
  82         .hub_status_data        = ohci_hub_status_data,
 
  83         .hub_control            = ohci_hub_control,
 
  85         .bus_suspend            = ohci_bus_suspend,
 
  86         .bus_resume             = ohci_bus_resume,
 
  89         .start_port_reset       = ohci_start_port_reset,
 
  92 static void ssb_ohci_detach(struct ssb_device *dev)
 
  94         struct usb_hcd *hcd = ssb_get_drvdata(dev);
 
  99         ssb_device_disable(dev, 0);
 
 102 static int ssb_ohci_attach(struct ssb_device *dev)
 
 104         struct ssb_ohci_device *ohcidev;
 
 109         if (dev->id.coreid == SSB_DEV_USB11_HOSTDEV)
 
 110                 flags |= SSB_OHCI_TMSLOW_HOSTMODE;
 
 112         ssb_device_enable(dev, flags);
 
 114         hcd = usb_create_hcd(&ssb_ohci_hc_driver, dev->dev,
 
 117                 goto err_dev_disable;
 
 118         ohcidev = hcd_to_ssb_ohci(hcd);
 
 119         ohcidev->enable_flags = flags;
 
 121         tmp = ssb_read32(dev, SSB_ADMATCH0);
 
 122         hcd->rsrc_start = ssb_admatch_base(tmp);
 
 123         hcd->rsrc_len = ssb_admatch_size(tmp);
 
 124         hcd->regs = ioremap_nocache(hcd->rsrc_start, hcd->rsrc_len);
 
 127         err = usb_add_hcd(hcd, dev->irq, IRQF_DISABLED | IRQF_SHARED);
 
 131         ssb_set_drvdata(dev, hcd);
 
 140         ssb_device_disable(dev, flags);
 
 144 static int ssb_ohci_probe(struct ssb_device *dev,
 
 145                 const struct ssb_device_id *id)
 
 150         /* USBcores are only connected on embedded devices. */
 
 151         chipid_top = (dev->bus->chip_id & 0xFF00);
 
 152         if (chipid_top != 0x4700 && chipid_top != 0x5300)
 
 155         /* TODO: Probably need checks here; is the core connected? */
 
 160         /* We currently always attach SSB_DEV_USB11_HOSTDEV
 
 161          * as HOST OHCI. If we want to attach it as Client device,
 
 162          * we must branch here and call into the (yet to
 
 163          * be written) Client mode driver. Same for remove(). */
 
 165         err = ssb_ohci_attach(dev);
 
 170 static void ssb_ohci_remove(struct ssb_device *dev)
 
 172         ssb_ohci_detach(dev);
 
 177 static int ssb_ohci_suspend(struct ssb_device *dev, pm_message_t state)
 
 179         ssb_device_disable(dev, 0);
 
 184 static int ssb_ohci_resume(struct ssb_device *dev)
 
 186         struct usb_hcd *hcd = ssb_get_drvdata(dev);
 
 187         struct ssb_ohci_device *ohcidev = hcd_to_ssb_ohci(hcd);
 
 189         ssb_device_enable(dev, ohcidev->enable_flags);
 
 191         ohci_finish_controller_resume(hcd);
 
 195 #else /* !CONFIG_PM */
 
 196 #define ssb_ohci_suspend        NULL
 
 197 #define ssb_ohci_resume NULL
 
 198 #endif /* CONFIG_PM */
 
 200 static const struct ssb_device_id ssb_ohci_table[] = {
 
 201         SSB_DEVICE(SSB_VENDOR_BROADCOM, SSB_DEV_USB11_HOSTDEV, SSB_ANY_REV),
 
 202         SSB_DEVICE(SSB_VENDOR_BROADCOM, SSB_DEV_USB11_HOST, SSB_ANY_REV),
 
 205 MODULE_DEVICE_TABLE(ssb, ssb_ohci_table);
 
 207 static struct ssb_driver ssb_ohci_driver = {
 
 208         .name           = KBUILD_MODNAME,
 
 209         .id_table       = ssb_ohci_table,
 
 210         .probe          = ssb_ohci_probe,
 
 211         .remove         = ssb_ohci_remove,
 
 212         .suspend        = ssb_ohci_suspend,
 
 213         .resume         = ssb_ohci_resume,