Home | History | Annotate | Line # | Download | only in xilinx
zynq7000_usb.c revision 1.1.12.1
      1  1.1.12.1  thorpej /*	$NetBSD: zynq7000_usb.c,v 1.1.12.1 2021/04/03 22:28:19 thorpej Exp $	*/
      2       1.1    skrll /*-
      3       1.1    skrll  * Copyright (c) 2015  Genetec Corporation.  All rights reserved.
      4       1.1    skrll  * Written by Hashimoto Kenichi for Genetec Corporation.
      5       1.1    skrll  *
      6       1.1    skrll  * Redistribution and use in source and binary forms, with or without
      7       1.1    skrll  * modification, are permitted provided that the following conditions
      8       1.1    skrll  * are met:
      9       1.1    skrll  * 1. Redistributions of source code must retain the above copyright
     10       1.1    skrll  *    notice, this list of conditions and the following disclaimer.
     11       1.1    skrll  * 2. Redistributions in binary form must reproduce the above copyright
     12       1.1    skrll  *    notice, this list of conditions and the following disclaimer in the
     13       1.1    skrll  *    documentation and/or other materials provided with the distribution.
     14       1.1    skrll  *
     15       1.1    skrll  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     16       1.1    skrll  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     17       1.1    skrll  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     18       1.1    skrll  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     19       1.1    skrll  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     20       1.1    skrll  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     21       1.1    skrll  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     22       1.1    skrll  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     23       1.1    skrll  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     24       1.1    skrll  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     25       1.1    skrll  * POSSIBILITY OF SUCH DAMAGE.
     26       1.1    skrll  */
     27       1.1    skrll 
     28       1.1    skrll #include <sys/cdefs.h>
     29  1.1.12.1  thorpej __KERNEL_RCSID(0, "$NetBSD: zynq7000_usb.c,v 1.1.12.1 2021/04/03 22:28:19 thorpej Exp $");
     30       1.1    skrll 
     31       1.1    skrll #include "opt_soc.h"
     32       1.1    skrll 
     33       1.1    skrll #include <sys/param.h>
     34       1.1    skrll #include <sys/bus.h>
     35       1.1    skrll #include <sys/conf.h>
     36       1.1    skrll #include <sys/device.h>
     37       1.1    skrll #include <sys/intr.h>
     38       1.1    skrll #include <sys/kernel.h>
     39       1.1    skrll #include <sys/systm.h>
     40       1.1    skrll 
     41       1.1    skrll #include <dev/usb/usb.h>
     42       1.1    skrll #include <dev/usb/usbdi.h>
     43       1.1    skrll #include <dev/usb/usbdivar.h>
     44       1.1    skrll #include <dev/usb/usb_mem.h>
     45       1.1    skrll 
     46       1.1    skrll #include <dev/usb/ehcireg.h>
     47       1.1    skrll #include <dev/usb/ehcivar.h>
     48       1.1    skrll 
     49       1.1    skrll #include <arm/xilinx/zynq_usbvar.h>
     50       1.1    skrll #include <arm/xilinx/zynq_usbreg.h>
     51       1.1    skrll 
     52       1.1    skrll #include <dev/fdt/fdtvar.h>
     53       1.1    skrll 
     54  1.1.12.1  thorpej static const struct device_compatible_entry compat_data[] = {
     55  1.1.12.1  thorpej 	{ .compat = "xlnx,zynq-usb-2.20a" },
     56  1.1.12.1  thorpej 	DEVICE_COMPAT_EOL
     57       1.1    skrll };
     58       1.1    skrll 
     59       1.1    skrll static int zynqusb_match(device_t, struct cfdata *, void *);
     60       1.1    skrll static void zynqusb_attach(device_t, device_t, void *);
     61       1.1    skrll 
     62       1.1    skrll /* attach structures */
     63       1.1    skrll CFATTACH_DECL_NEW(zynqusb, sizeof(struct zynqehci_softc),
     64       1.1    skrll     zynqusb_match, zynqusb_attach, NULL, NULL);
     65       1.1    skrll 
     66       1.1    skrll static int
     67       1.1    skrll zynqusb_match(device_t parent, struct cfdata *cf, void *aux)
     68       1.1    skrll {
     69       1.1    skrll 	struct fdt_attach_args * const faa = aux;
     70       1.1    skrll 
     71  1.1.12.1  thorpej 	return of_compatible_match(faa->faa_phandle, compat_data);
     72       1.1    skrll }
     73       1.1    skrll 
     74       1.1    skrll static void
     75       1.1    skrll zynqusb_attach(device_t parent, device_t self, void *aux)
     76       1.1    skrll {
     77       1.1    skrll 	struct fdt_attach_args * faa = aux;
     78       1.1    skrll 	char intrstr[128];
     79       1.1    skrll 	const int phandle = faa->faa_phandle;
     80       1.1    skrll 	struct zynqehci_softc *sc = device_private(self);
     81       1.1    skrll 	ehci_softc_t *hsc = &sc->sc_hsc;
     82       1.1    skrll 	bus_addr_t addr;
     83       1.1    skrll 	bus_size_t size;
     84       1.1    skrll 
     85       1.1    skrll 	if (fdtbus_get_reg(phandle, 0, &addr, &size) != 0) {
     86       1.1    skrll 		aprint_error(": couldn't get registers\n");
     87       1.1    skrll 		return;
     88       1.1    skrll 	}
     89       1.1    skrll 
     90       1.1    skrll 	if (!fdtbus_intr_str(phandle, 0, intrstr, sizeof(intrstr))) {
     91       1.1    skrll 		aprint_error(": failed to decode interrupt\n");
     92       1.1    skrll 		return;
     93       1.1    skrll 	}
     94       1.1    skrll 
     95       1.1    skrll 	if (fdtbus_intr_establish(phandle, 0, IPL_USB, IST_LEVEL, ehci_intr,
     96       1.1    skrll 		hsc) == NULL) {
     97       1.1    skrll 		aprint_error_dev(self, "failed to establish interrupt on %s\n",
     98       1.1    skrll 		    intrstr);
     99       1.1    skrll 		return;
    100       1.1    skrll 	}
    101       1.1    skrll 	aprint_normal_dev(self, "interrupting on %s\n", intrstr);
    102       1.1    skrll 
    103       1.1    skrll 	zynqusb_attach_common(parent, self, faa->faa_bst, faa->faa_dmat,
    104       1.1    skrll 	    addr, size, 0, ZYNQUSBC_IF_ULPI, ZYNQUSB_HOST);
    105       1.1    skrll }
    106