/* $NetBSD: imx51_usb.c,v 1.7 2021/08/07 16:18:44 thorpej Exp $ */ /* * Copyright (c) 2010 Genetec Corporation. All rights reserved. * Written by Hiroyuki Bessho for Genetec Corporation. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY GENETEC CORPORATION ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL GENETEC CORPORATION * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. */ #include __KERNEL_RCSID(0, "$NetBSD: imx51_usb.c,v 1.7 2021/08/07 16:18:44 thorpej Exp $"); #include "locators.h" #include "opt_imx.h" #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include static int imxusbc_search(device_t, cfdata_t, const int *, void *); static int imxusbc_print(void *, const char *); int imxusbc_attach_common(device_t parent, device_t self, bus_space_tag_t iot, bus_addr_t addr, bus_size_t size) { struct imxusbc_softc *sc = device_private(self); sc->sc_dev = self; sc->sc_iot = iot; sc->sc_ehci_size = IMXUSB_EHCI_SIZE; sc->sc_ehci_offset = IMXUSB_EHCI_SIZE; /* Map entire USBOH3 registers. Host controller drivers * re-use subregions of this. */ if (bus_space_map(iot, addr, size, 0, &sc->sc_ioh)) return -1; /* attach OTG/EHCI host controllers */ config_search(self, NULL, CFARGS(.search = imxusbc_search)); return 0; } static int imxusbc_search(device_t parent, cfdata_t cf, const int *ldesc, void *aux) { struct imxusbc_softc *sc = device_private(parent); struct imxusbc_attach_args aa; aa.aa_iot = sc->sc_iot; aa.aa_ioh = sc->sc_ioh; aa.aa_dmat = &arm_generic_dma_tag; aa.aa_unit = cf->cf_loc[IMXUSBCCF_UNIT]; aa.aa_irq = cf->cf_loc[IMXUSBCCF_IRQ]; if (config_probe(parent, cf, &aa)) config_attach(parent, cf, &aa, imxusbc_print, CFARGS_NONE); return 0; } /* ARGSUSED */ static int imxusbc_print(void *aux, const char *name __unused) { struct imxusbc_attach_args *aa = aux; aprint_normal(" unit %d irq %d", aa->aa_unit, aa->aa_irq); return (UNCONF); }