1 /* 2 * Copyright 2015 Andrew Turner. 3 * All rights reserved. 4 * 5 * Redistribution and use in source and binary forms, with or without 6 * modification, are permitted provided that the following conditions are 7 * met: 8 * 9 * 1. Redistributions of source code must retain the above copyright 10 * notice, this list of conditions and the following disclaimer. 11 * 2. Redistributions in binary form must reproduce the above copyright 12 * notice, this list of conditions and the following disclaimer in the 13 * documentation and/or other materials provided with the distribution. 14 * 15 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 16 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 17 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 18 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE 19 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 20 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 21 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR 22 * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, 23 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR 24 * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF 25 * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 26 */ 27 28 #include <sys/cdefs.h> 29 #include <sys/param.h> 30 #include <sys/kernel.h> 31 #include <sys/bus.h> 32 #include <sys/callout.h> 33 #include <sys/condvar.h> 34 #include <sys/module.h> 35 36 #include <dev/ofw/ofw_bus_subr.h> 37 38 #include <dev/usb/usb.h> 39 #include <dev/usb/usbdi.h> 40 41 #include <dev/usb/usb_busdma.h> 42 #include <dev/usb/usb_process.h> 43 44 #include <dev/usb/usb_controller.h> 45 #include <dev/usb/usb_bus.h> 46 47 #include <dev/usb/controller/dwc_otg.h> 48 #include <dev/usb/controller/dwc_otg_fdt.h> 49 50 #include <arm/broadcom/bcm2835/bcm2835_mbox_prop.h> 51 52 static struct ofw_compat_data compat_data[] = { 53 {"broadcom,bcm2835-usb", 1}, 54 {"brcm,bcm2835-usb", 1}, 55 {"brcm,bcm2708-usb", 1}, 56 {NULL, 0} 57 }; 58 59 static device_probe_t bcm283x_dwc_otg_probe; 60 static device_attach_t bcm283x_dwc_otg_attach; 61 62 static int 63 bcm283x_dwc_otg_probe(device_t dev) 64 { 65 66 if (!ofw_bus_status_okay(dev)) 67 return (ENXIO); 68 69 if (ofw_bus_search_compatible(dev, compat_data)->ocd_data == 0) 70 return (ENXIO); 71 72 device_set_desc(dev, "DWC OTG 2.0 integrated USB controller (bcm283x)"); 73 74 return (BUS_PROBE_VENDOR); 75 } 76 77 static int 78 bcm283x_dwc_otg_attach(device_t dev) 79 { 80 int err; 81 82 err = bcm2835_mbox_set_power_state(BCM2835_MBOX_POWER_ID_USB_HCD, TRUE); 83 if (err) 84 device_printf(dev, "failed to set power state, err=%d\n", err); 85 86 return (dwc_otg_attach(dev)); 87 } 88 89 static device_method_t bcm283x_dwc_otg_methods[] = { 90 /* bus interface */ 91 DEVMETHOD(device_probe, bcm283x_dwc_otg_probe), 92 DEVMETHOD(device_attach, bcm283x_dwc_otg_attach), 93 94 DEVMETHOD_END 95 }; 96 97 DEFINE_CLASS_1(bcm283x_dwcotg, bcm283x_dwc_otg_driver, bcm283x_dwc_otg_methods, 98 sizeof(struct dwc_otg_fdt_softc), dwc_otg_driver); 99 DRIVER_MODULE(bcm283x_dwcotg, simplebus, bcm283x_dwc_otg_driver, 0, 0); 100 MODULE_DEPEND(bcm283x_dwcotg, usb, 1, 1, 1); 101