Home | History | Annotate | Line # | Download | only in fdt
dwc3_fdt.c revision 1.15
      1  1.15  jmcneill /* $NetBSD: dwc3_fdt.c,v 1.15 2021/05/18 11:13:31 jmcneill Exp $ */
      2   1.1  jmcneill 
      3   1.1  jmcneill /*-
      4   1.1  jmcneill  * Copyright (c) 2018 Jared McNeill <jmcneill (at) invisible.ca>
      5   1.1  jmcneill  * All rights reserved.
      6   1.1  jmcneill  *
      7   1.1  jmcneill  * Redistribution and use in source and binary forms, with or without
      8   1.1  jmcneill  * modification, are permitted provided that the following conditions
      9   1.1  jmcneill  * are met:
     10   1.1  jmcneill  * 1. Redistributions of source code must retain the above copyright
     11   1.1  jmcneill  *    notice, this list of conditions and the following disclaimer.
     12   1.1  jmcneill  * 2. Redistributions in binary form must reproduce the above copyright
     13   1.1  jmcneill  *    notice, this list of conditions and the following disclaimer in the
     14   1.1  jmcneill  *    documentation and/or other materials provided with the distribution.
     15   1.1  jmcneill  *
     16   1.1  jmcneill  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     17   1.1  jmcneill  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     18   1.1  jmcneill  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     19   1.1  jmcneill  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     20   1.1  jmcneill  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
     21   1.1  jmcneill  * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
     22   1.1  jmcneill  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
     23   1.1  jmcneill  * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
     24   1.1  jmcneill  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     25   1.1  jmcneill  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     26   1.1  jmcneill  * SUCH DAMAGE.
     27   1.1  jmcneill  */
     28   1.1  jmcneill 
     29   1.1  jmcneill #include <sys/cdefs.h>
     30  1.15  jmcneill __KERNEL_RCSID(0, "$NetBSD: dwc3_fdt.c,v 1.15 2021/05/18 11:13:31 jmcneill Exp $");
     31   1.1  jmcneill 
     32   1.1  jmcneill #include <sys/param.h>
     33   1.1  jmcneill #include <sys/bus.h>
     34   1.1  jmcneill #include <sys/device.h>
     35   1.1  jmcneill #include <sys/intr.h>
     36   1.1  jmcneill #include <sys/systm.h>
     37   1.1  jmcneill #include <sys/kernel.h>
     38   1.1  jmcneill 
     39   1.1  jmcneill #include <dev/usb/usb.h>
     40   1.1  jmcneill #include <dev/usb/usbdi.h>
     41   1.1  jmcneill #include <dev/usb/usbdivar.h>
     42   1.1  jmcneill #include <dev/usb/usb_mem.h>
     43   1.1  jmcneill #include <dev/usb/xhcireg.h>
     44   1.1  jmcneill #include <dev/usb/xhcivar.h>
     45   1.1  jmcneill 
     46   1.1  jmcneill #include <dev/fdt/fdtvar.h>
     47   1.1  jmcneill 
     48   1.1  jmcneill #define	DWC3_GCTL			0xc110
     49   1.1  jmcneill #define	 GCTL_PRTCAP			__BITS(13,12)
     50   1.1  jmcneill #define	  GCTL_PRTCAP_HOST		1
     51   1.1  jmcneill #define	  GCTL_PRTCAP_DEVICE		2
     52   1.1  jmcneill #define	  GCTL_PRTCAP_OTG		3
     53   1.1  jmcneill #define	 GCTL_CORESOFTRESET		__BIT(11)
     54   1.1  jmcneill 
     55   1.8  jmcneill #define	DWC3_GUCTL1			0xc11c
     56   1.8  jmcneill #define	 GUCTL1_TX_IPGAP_LINECHECK_DIS	__BIT(28)
     57   1.8  jmcneill 
     58   1.5  jmcneill #define	DWC3_SNPSID			0xc120
     59   1.5  jmcneill #define	 DWC3_SNPSID_REV		__BITS(15,0)
     60   1.5  jmcneill 
     61   1.1  jmcneill #define	DWC3_GUSB2PHYCFG(n)		(0xc200 + ((n) * 4))
     62   1.1  jmcneill #define	 GUSB2PHYCFG_PHYSOFTRST		__BIT(31)
     63   1.2  jmcneill #define	 GUSB2PHYCFG_U2_FREECLK_EXISTS	__BIT(30)
     64   1.2  jmcneill #define	 GUSB2PHYCFG_USBTRDTIM		__BITS(13,10)
     65   1.2  jmcneill #define	 GUSB2PHYCFG_SUSPHY		__BIT(6)
     66   1.2  jmcneill #define	 GUSB2PHYCFG_PHYIF		__BIT(3)
     67   1.2  jmcneill #define	 GUSB2PHYCFG_ENBLSLPM		__BIT(0)
     68   1.1  jmcneill 
     69   1.1  jmcneill #define	DWC3_GUSB3PIPECTL(n)		(0xc2c0 + ((n) * 4))
     70   1.1  jmcneill #define	 GUSB3PIPECTL_PHYSOFTRST	__BIT(31)
     71   1.5  jmcneill #define	 GUSB3PIPECTL_UX_EXIT_PX	__BIT(27)
     72   1.6  jmcneill #define	 GUSB3PIPECTL_DEPOCHANGE	__BIT(18)
     73   1.5  jmcneill #define	 GUSB3PIPECTL_SUSPHY		__BIT(17)
     74   1.1  jmcneill 
     75   1.2  jmcneill #define	DWC3_DCFG			0xc700
     76   1.2  jmcneill #define	 DCFG_SPEED			__BITS(2,0)
     77   1.2  jmcneill #define	  DCFG_SPEED_HS			0
     78   1.2  jmcneill #define	  DCFG_SPEED_FS			1
     79   1.2  jmcneill #define	  DCFG_SPEED_LS			2
     80   1.2  jmcneill #define	  DCFG_SPEED_SS			4
     81   1.2  jmcneill #define	  DCFG_SPEED_SS_PLUS		5
     82   1.2  jmcneill 
     83   1.1  jmcneill static int	dwc3_fdt_match(device_t, cfdata_t, void *);
     84   1.1  jmcneill static void	dwc3_fdt_attach(device_t, device_t, void *);
     85   1.1  jmcneill 
     86   1.1  jmcneill CFATTACH_DECL2_NEW(dwc3_fdt, sizeof(struct xhci_softc),
     87   1.1  jmcneill 	dwc3_fdt_match, dwc3_fdt_attach, NULL,
     88   1.1  jmcneill 	xhci_activate, NULL, xhci_childdet);
     89   1.1  jmcneill 
     90   1.1  jmcneill #define	RD4(sc, reg)				\
     91   1.1  jmcneill 	bus_space_read_4((sc)->sc_iot, (sc)->sc_ioh, (reg))
     92   1.1  jmcneill #define	WR4(sc, reg, val)			\
     93   1.1  jmcneill 	bus_space_write_4((sc)->sc_iot, (sc)->sc_ioh, (reg), (val))
     94   1.1  jmcneill #define	SET4(sc, reg, mask)			\
     95   1.1  jmcneill 	WR4((sc), (reg), RD4((sc), (reg)) | (mask))
     96   1.1  jmcneill #define	CLR4(sc, reg, mask)			\
     97   1.1  jmcneill 	WR4((sc), (reg), RD4((sc), (reg)) & ~(mask))
     98   1.1  jmcneill 
     99   1.1  jmcneill static void
    100   1.1  jmcneill dwc3_fdt_soft_reset(struct xhci_softc *sc)
    101   1.1  jmcneill {
    102   1.1  jmcneill 	/* Put core in reset */
    103   1.1  jmcneill 	SET4(sc, DWC3_GCTL, GCTL_CORESOFTRESET);
    104   1.1  jmcneill 
    105   1.1  jmcneill 	/* Assert USB3 PHY reset */
    106   1.1  jmcneill 	SET4(sc, DWC3_GUSB3PIPECTL(0), GUSB3PIPECTL_PHYSOFTRST);
    107   1.1  jmcneill 
    108   1.1  jmcneill 	/* Assert USB2 PHY reset */
    109   1.1  jmcneill 	SET4(sc, DWC3_GUSB2PHYCFG(0), GUSB2PHYCFG_PHYSOFTRST);
    110   1.1  jmcneill 
    111   1.1  jmcneill 	delay(100000);
    112   1.1  jmcneill 
    113   1.1  jmcneill 	/* Clear USB3 PHY reset */
    114   1.1  jmcneill 	CLR4(sc, DWC3_GUSB3PIPECTL(0), GUSB3PIPECTL_PHYSOFTRST);
    115   1.1  jmcneill 
    116   1.1  jmcneill 	/* Clear USB2 PHY reset */
    117   1.1  jmcneill 	CLR4(sc, DWC3_GUSB2PHYCFG(0), GUSB2PHYCFG_PHYSOFTRST);
    118   1.1  jmcneill 
    119   1.1  jmcneill 	delay(100000);
    120   1.1  jmcneill 
    121   1.1  jmcneill 	/* Take core out of reset */
    122   1.1  jmcneill 	CLR4(sc, DWC3_GCTL, GCTL_CORESOFTRESET);
    123   1.1  jmcneill }
    124   1.1  jmcneill 
    125   1.1  jmcneill static void
    126   1.8  jmcneill dwc3_fdt_enable_phy(struct xhci_softc *sc, const int phandle, u_int rev)
    127   1.2  jmcneill {
    128   1.6  jmcneill 	const char *max_speed, *phy_type;
    129   1.2  jmcneill 	u_int phyif_utmi_bits;
    130   1.2  jmcneill 	uint32_t val;
    131   1.2  jmcneill 
    132   1.2  jmcneill 	val = RD4(sc, DWC3_GUSB2PHYCFG(0));
    133   1.6  jmcneill 	if (of_getprop_uint32(phandle, "snps,phyif-utmi-bits", &phyif_utmi_bits) != 0) {
    134   1.6  jmcneill 		phy_type = fdtbus_get_string(phandle, "phy_type");
    135   1.6  jmcneill 		if (phy_type && strcmp(phy_type, "utmi_wide") == 0)
    136   1.6  jmcneill 			phyif_utmi_bits = 16;
    137   1.6  jmcneill 		else if (phy_type && strcmp(phy_type, "utmi") == 0)
    138   1.6  jmcneill 			phyif_utmi_bits = 8;
    139   1.6  jmcneill 		else
    140   1.6  jmcneill 			phyif_utmi_bits = 0;
    141   1.6  jmcneill 	}
    142   1.6  jmcneill 	if (phyif_utmi_bits == 16) {
    143   1.6  jmcneill 		val |= GUSB2PHYCFG_PHYIF;
    144   1.6  jmcneill 		val &= ~GUSB2PHYCFG_USBTRDTIM;
    145   1.6  jmcneill 		val |= __SHIFTIN(5, GUSB2PHYCFG_USBTRDTIM);
    146   1.6  jmcneill 	} else if (phyif_utmi_bits == 8) {
    147   1.6  jmcneill 		val &= ~GUSB2PHYCFG_PHYIF;
    148   1.6  jmcneill 		val &= ~GUSB2PHYCFG_USBTRDTIM;
    149   1.6  jmcneill 		val |= __SHIFTIN(9, GUSB2PHYCFG_USBTRDTIM);
    150   1.2  jmcneill 	}
    151   1.6  jmcneill 	if (of_hasprop(phandle, "snps,dis-enblslpm-quirk") ||
    152   1.6  jmcneill 	    of_hasprop(phandle, "snps,dis_enblslpm_quirk"))
    153   1.2  jmcneill 		val &= ~GUSB2PHYCFG_ENBLSLPM;
    154   1.2  jmcneill 	if (of_hasprop(phandle, "snps,dis-u2-freeclk-exists-quirk"))
    155   1.2  jmcneill 		val &= ~GUSB2PHYCFG_U2_FREECLK_EXISTS;
    156   1.4  jmcneill 	if (of_hasprop(phandle, "snps,dis_u2_susphy_quirk"))
    157   1.2  jmcneill 		val &= ~GUSB2PHYCFG_SUSPHY;
    158   1.2  jmcneill 	WR4(sc, DWC3_GUSB2PHYCFG(0), val);
    159   1.2  jmcneill 
    160   1.5  jmcneill 	val = RD4(sc, DWC3_GUSB3PIPECTL(0));
    161   1.5  jmcneill 	val &= ~GUSB3PIPECTL_UX_EXIT_PX;
    162   1.5  jmcneill 	if (of_hasprop(phandle, "snps,dis_u3_susphy_quirk"))
    163   1.5  jmcneill 		val &= ~GUSB3PIPECTL_SUSPHY;
    164   1.6  jmcneill 	if (of_hasprop(phandle, "snps,dis-del-phy-power-chg-quirk"))
    165   1.6  jmcneill 		val &= ~GUSB3PIPECTL_DEPOCHANGE;
    166   1.5  jmcneill 	WR4(sc, DWC3_GUSB3PIPECTL(0), val);
    167   1.5  jmcneill 
    168   1.8  jmcneill 	if (rev >= 0x250a) {
    169   1.8  jmcneill 		val = RD4(sc, DWC3_GUCTL1);
    170   1.8  jmcneill 		if (of_hasprop(phandle, "snps,dis-tx-ipgap-linecheck-quirk"))
    171   1.8  jmcneill 			val |= GUCTL1_TX_IPGAP_LINECHECK_DIS;
    172   1.8  jmcneill 		WR4(sc, DWC3_GUCTL1, val);
    173   1.8  jmcneill 	}
    174   1.8  jmcneill 
    175   1.2  jmcneill 	max_speed = fdtbus_get_string(phandle, "maximum-speed");
    176   1.2  jmcneill 	if (max_speed == NULL)
    177   1.2  jmcneill 		max_speed = "super-speed";
    178   1.2  jmcneill 
    179   1.2  jmcneill 	val = RD4(sc, DWC3_DCFG);
    180   1.2  jmcneill 	val &= ~DCFG_SPEED;
    181   1.2  jmcneill 	if (strcmp(max_speed, "low-speed") == 0)
    182   1.2  jmcneill 		val |= __SHIFTIN(DCFG_SPEED_LS, DCFG_SPEED);
    183   1.2  jmcneill 	else if (strcmp(max_speed, "full-speed") == 0)
    184   1.2  jmcneill 		val |= __SHIFTIN(DCFG_SPEED_FS, DCFG_SPEED);
    185   1.2  jmcneill 	else if (strcmp(max_speed, "high-speed") == 0)
    186   1.2  jmcneill 		val |= __SHIFTIN(DCFG_SPEED_HS, DCFG_SPEED);
    187   1.2  jmcneill 	else if (strcmp(max_speed, "super-speed") == 0)
    188   1.2  jmcneill 		val |= __SHIFTIN(DCFG_SPEED_SS, DCFG_SPEED);
    189   1.2  jmcneill 	else
    190   1.2  jmcneill 		val |= __SHIFTIN(DCFG_SPEED_SS, DCFG_SPEED);	/* default to super speed */
    191   1.2  jmcneill 	WR4(sc, DWC3_DCFG, val);
    192   1.2  jmcneill }
    193   1.2  jmcneill 
    194   1.2  jmcneill static void
    195   1.1  jmcneill dwc3_fdt_set_mode(struct xhci_softc *sc, u_int mode)
    196   1.1  jmcneill {
    197   1.1  jmcneill 	uint32_t val;
    198   1.1  jmcneill 
    199   1.1  jmcneill 	val = RD4(sc, DWC3_GCTL);
    200   1.1  jmcneill 	val &= ~GCTL_PRTCAP;
    201   1.1  jmcneill 	val |= __SHIFTIN(mode, GCTL_PRTCAP);
    202   1.1  jmcneill 	WR4(sc, DWC3_GCTL, val);
    203   1.1  jmcneill }
    204   1.1  jmcneill 
    205  1.13   thorpej static const struct device_compatible_entry compat_data[] = {
    206  1.15  jmcneill 	{ .compat = "allwinner,sun50i-h6-dwc3" },
    207  1.15  jmcneill 	{ .compat = "amlogic,meson-gxl-dwc3" },
    208  1.15  jmcneill 	{ .compat = "fsl,imx8mq-dwc3" },
    209  1.15  jmcneill 	{ .compat = "rockchip,rk3328-dwc3" },
    210  1.15  jmcneill 	{ .compat = "rockchip,rk3399-dwc3" },
    211  1.15  jmcneill 	{ .compat = "samsung,exynos5250-dwusb3" },
    212  1.15  jmcneill 	{ .compat = "snps,dwc3" },
    213  1.15  jmcneill 	DEVICE_COMPAT_EOL
    214  1.15  jmcneill };
    215  1.15  jmcneill 
    216  1.15  jmcneill static const struct device_compatible_entry compat_data_dwc3[] = {
    217  1.15  jmcneill 	{ .compat = "snps,dwc3" },
    218  1.13   thorpej 	DEVICE_COMPAT_EOL
    219  1.13   thorpej };
    220  1.13   thorpej 
    221   1.1  jmcneill static int
    222   1.1  jmcneill dwc3_fdt_match(device_t parent, cfdata_t cf, void *aux)
    223   1.1  jmcneill {
    224   1.1  jmcneill 	struct fdt_attach_args * const faa = aux;
    225   1.1  jmcneill 
    226  1.13   thorpej 	return of_compatible_match(faa->faa_phandle, compat_data);
    227   1.1  jmcneill }
    228   1.1  jmcneill 
    229   1.1  jmcneill static void
    230   1.1  jmcneill dwc3_fdt_attach(device_t parent, device_t self, void *aux)
    231   1.1  jmcneill {
    232   1.1  jmcneill 	struct xhci_softc * const sc = device_private(self);
    233   1.1  jmcneill 	struct fdt_attach_args * const faa = aux;
    234   1.1  jmcneill 	const int phandle = faa->faa_phandle;
    235   1.1  jmcneill 	struct fdtbus_reset *rst;
    236   1.1  jmcneill 	struct fdtbus_phy *phy;
    237   1.1  jmcneill 	struct clk *clk;
    238   1.1  jmcneill 	char intrstr[128];
    239   1.1  jmcneill 	bus_addr_t addr;
    240   1.1  jmcneill 	bus_size_t size;
    241   1.9  jmcneill 	int error, dwc3_phandle;
    242   1.1  jmcneill 	void *ih;
    243   1.1  jmcneill 	u_int n;
    244   1.1  jmcneill 
    245   1.1  jmcneill 	/* Find dwc3 sub-node */
    246  1.15  jmcneill 	if (of_compatible_lookup(phandle, compat_data_dwc3) == NULL) {
    247  1.13   thorpej 		dwc3_phandle = of_find_firstchild_byname(phandle, "dwc3");
    248  1.13   thorpej 	} else {
    249   1.9  jmcneill 		dwc3_phandle = phandle;
    250   1.9  jmcneill 	}
    251   1.1  jmcneill 	if (dwc3_phandle <= 0) {
    252   1.1  jmcneill 		aprint_error(": couldn't find dwc3 child node\n");
    253   1.1  jmcneill 		return;
    254   1.1  jmcneill 	}
    255   1.1  jmcneill 
    256   1.1  jmcneill 	/* Only host mode is supported */
    257   1.1  jmcneill 	const char *dr_mode = fdtbus_get_string(dwc3_phandle, "dr_mode");
    258   1.1  jmcneill 	if (dr_mode == NULL || strcmp(dr_mode, "host") != 0) {
    259   1.1  jmcneill 		aprint_error(": '%s' not supported\n", dr_mode);
    260   1.1  jmcneill 		return;
    261   1.1  jmcneill 	}
    262   1.1  jmcneill 
    263   1.1  jmcneill 	/* Enable clocks */
    264   1.9  jmcneill 	fdtbus_clock_assign(phandle);
    265   1.1  jmcneill 	for (n = 0; (clk = fdtbus_clock_get_index(phandle, n)) != NULL; n++)
    266   1.1  jmcneill 		if (clk_enable(clk) != 0) {
    267   1.1  jmcneill 			aprint_error(": couldn't enable clock #%d\n", n);
    268   1.1  jmcneill 			return;
    269   1.1  jmcneill 		}
    270   1.1  jmcneill 	/* De-assert resets */
    271   1.1  jmcneill 	for (n = 0; (rst = fdtbus_reset_get_index(phandle, n)) != NULL; n++)
    272   1.1  jmcneill 		if (fdtbus_reset_deassert(rst) != 0) {
    273   1.1  jmcneill 			aprint_error(": couldn't de-assert reset #%d\n", n);
    274   1.1  jmcneill 			return;
    275   1.1  jmcneill 		}
    276   1.1  jmcneill 
    277   1.1  jmcneill 	/* Get resources */
    278   1.1  jmcneill 	if (fdtbus_get_reg(dwc3_phandle, 0, &addr, &size) != 0) {
    279   1.1  jmcneill 		aprint_error(": couldn't get registers\n");
    280   1.1  jmcneill 		return;
    281   1.1  jmcneill 	}
    282   1.1  jmcneill 
    283   1.1  jmcneill 	sc->sc_dev = self;
    284   1.1  jmcneill 	sc->sc_bus.ub_hcpriv = sc;
    285   1.1  jmcneill 	sc->sc_bus.ub_dmatag = faa->faa_dmat;
    286  1.11  jmcneill 	sc->sc_ios = size;
    287   1.1  jmcneill 	sc->sc_iot = faa->faa_bst;
    288   1.1  jmcneill 	if (bus_space_map(sc->sc_iot, addr, size, 0, &sc->sc_ioh) != 0) {
    289   1.1  jmcneill 		aprint_error(": couldn't map registers\n");
    290   1.1  jmcneill 		return;
    291   1.1  jmcneill 	}
    292   1.1  jmcneill 
    293   1.1  jmcneill 	aprint_naive("\n");
    294   1.5  jmcneill 	aprint_normal(": DesignWare USB3 XHCI");
    295   1.5  jmcneill 	const uint32_t snpsid = RD4(sc, DWC3_SNPSID);
    296   1.5  jmcneill 	const u_int rev = __SHIFTOUT(snpsid, DWC3_SNPSID_REV);
    297   1.5  jmcneill 	aprint_normal(" (rev. %d.%03x)\n", rev >> 12, rev & 0xfff);
    298   1.5  jmcneill 
    299   1.5  jmcneill 	/* Enable PHY devices */
    300   1.7  jmcneill 	for (n = 0; (phy = fdtbus_phy_get_index(dwc3_phandle, n)) != NULL; n++) {
    301   1.7  jmcneill 		if (fdtbus_phy_enable(phy, true) != 0)
    302   1.7  jmcneill 			aprint_error_dev(self, "couldn't enable phy #%d\n", n);
    303   1.7  jmcneill 	}
    304   1.2  jmcneill 
    305   1.1  jmcneill 	dwc3_fdt_soft_reset(sc);
    306   1.8  jmcneill 	dwc3_fdt_enable_phy(sc, dwc3_phandle, rev);
    307   1.1  jmcneill 	dwc3_fdt_set_mode(sc, GCTL_PRTCAP_HOST);
    308   1.1  jmcneill 
    309   1.1  jmcneill 	if (!fdtbus_intr_str(dwc3_phandle, 0, intrstr, sizeof(intrstr))) {
    310   1.1  jmcneill 		aprint_error_dev(self, "failed to decode interrupt\n");
    311   1.1  jmcneill 		return;
    312   1.1  jmcneill 	}
    313   1.1  jmcneill 
    314  1.12       ryo 	ih = fdtbus_intr_establish_xname(dwc3_phandle, 0, IPL_USB,
    315  1.12       ryo 	    FDT_INTR_MPSAFE, xhci_intr, sc, device_xname(self));
    316   1.1  jmcneill 	if (ih == NULL) {
    317   1.1  jmcneill 		aprint_error_dev(self, "couldn't establish interrupt on %s\n",
    318   1.1  jmcneill 		    intrstr);
    319   1.1  jmcneill 		return;
    320   1.1  jmcneill 	}
    321   1.1  jmcneill 	aprint_normal_dev(self, "interrupting on %s\n", intrstr);
    322   1.1  jmcneill 
    323   1.3   msaitoh 	sc->sc_bus.ub_revision = USBREV_3_0;
    324   1.1  jmcneill 	error = xhci_init(sc);
    325   1.1  jmcneill 	if (error) {
    326   1.1  jmcneill 		aprint_error_dev(self, "init failed, error = %d\n", error);
    327   1.1  jmcneill 		return;
    328   1.1  jmcneill 	}
    329   1.1  jmcneill 
    330  1.14   thorpej 	sc->sc_child = config_found(self, &sc->sc_bus, usbctlprint, CFARG_EOL);
    331  1.14   thorpej 	sc->sc_child2 = config_found(self, &sc->sc_bus2, usbctlprint,
    332  1.14   thorpej 	    CFARG_EOL);
    333   1.1  jmcneill }
    334