Home | History | Annotate | Line # | Download | only in pci
xhci_pci.c revision 1.26
      1 /*	$NetBSD: xhci_pci.c,v 1.26 2020/12/09 14:21:09 jakllsch Exp $	*/
      2 /*	OpenBSD: xhci_pci.c,v 1.4 2014/07/12 17:38:51 yuo Exp	*/
      3 
      4 /*
      5  * Copyright (c) 1998 The NetBSD Foundation, Inc.
      6  * All rights reserved.
      7  *
      8  * This code is derived from software contributed to The NetBSD Foundation
      9  * by Lennart Augustsson (lennart (at) augustsson.net) at
     10  * Carlstedt Research & Technology.
     11  *
     12  * Redistribution and use in source and binary forms, with or without
     13  * modification, are permitted provided that the following conditions
     14  * are met:
     15  * 1. Redistributions of source code must retain the above copyright
     16  *    notice, this list of conditions and the following disclaimer.
     17  * 2. Redistributions in binary form must reproduce the above copyright
     18  *    notice, this list of conditions and the following disclaimer in the
     19  *    documentation and/or other materials provided with the distribution.
     20  *
     21  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     22  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     23  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     24  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     25  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     26  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     27  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     28  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     29  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     30  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     31  * POSSIBILITY OF SUCH DAMAGE.
     32  */
     33 
     34 #include <sys/cdefs.h>
     35 __KERNEL_RCSID(0, "$NetBSD: xhci_pci.c,v 1.26 2020/12/09 14:21:09 jakllsch Exp $");
     36 
     37 #ifdef _KERNEL_OPT
     38 #include "opt_xhci_pci.h"
     39 #endif
     40 
     41 #include <sys/param.h>
     42 #include <sys/systm.h>
     43 #include <sys/kernel.h>
     44 #include <sys/device.h>
     45 #include <sys/proc.h>
     46 #include <sys/queue.h>
     47 
     48 #include <sys/bus.h>
     49 
     50 #include <dev/pci/pcivar.h>
     51 #include <dev/pci/pcidevs.h>
     52 
     53 #include <dev/usb/usb.h>
     54 #include <dev/usb/usbdi.h>
     55 #include <dev/usb/usbdivar.h>
     56 #include <dev/usb/usb_mem.h>
     57 
     58 #include <dev/usb/xhcireg.h>
     59 #include <dev/usb/xhcivar.h>
     60 
     61 struct xhci_pci_softc {
     62 	struct xhci_softc	sc_xhci;
     63 	pci_chipset_tag_t	sc_pc;
     64 	pcitag_t		sc_tag;
     65 	void			*sc_ih;
     66 	pci_intr_handle_t	*sc_pihp;
     67 };
     68 
     69 static int
     70 xhci_pci_match(device_t parent, cfdata_t match, void *aux)
     71 {
     72 	struct pci_attach_args *pa = (struct pci_attach_args *) aux;
     73 
     74 	if (PCI_CLASS(pa->pa_class) == PCI_CLASS_SERIALBUS &&
     75 	    PCI_SUBCLASS(pa->pa_class) == PCI_SUBCLASS_SERIALBUS_USB &&
     76 	    PCI_INTERFACE(pa->pa_class) == PCI_INTERFACE_XHCI)
     77 		return 1;
     78 
     79 	return 0;
     80 }
     81 
     82 static int
     83 xhci_pci_port_route(struct xhci_pci_softc *psc)
     84 {
     85 	struct xhci_softc * const sc = &psc->sc_xhci;
     86 
     87 	pcireg_t val;
     88 
     89 	/*
     90 	 * Check USB3 Port Routing Mask register that indicates the ports
     91 	 * can be changed from OS, and turn on by USB3 Port SS Enable register.
     92 	 */
     93 	val = pci_conf_read(psc->sc_pc, psc->sc_tag, PCI_XHCI_INTEL_USB3PRM);
     94 	aprint_debug_dev(sc->sc_dev,
     95 	    "USB3PRM / USB3.0 configurable ports: 0x%08x\n", val);
     96 
     97 	pci_conf_write(psc->sc_pc, psc->sc_tag, PCI_XHCI_INTEL_USB3_PSSEN, val);
     98 	val = pci_conf_read(psc->sc_pc, psc->sc_tag,PCI_XHCI_INTEL_USB3_PSSEN);
     99 	aprint_debug_dev(sc->sc_dev,
    100 	    "USB3_PSSEN / Enabled USB3.0 ports under xHCI: 0x%08x\n", val);
    101 
    102 	/*
    103 	 * Check USB2 Port Routing Mask register that indicates the USB2.0
    104 	 * ports to be controlled by xHCI HC, and switch them to xHCI HC.
    105 	 */
    106 	val = pci_conf_read(psc->sc_pc, psc->sc_tag, PCI_XHCI_INTEL_USB2PRM);
    107 	aprint_debug_dev(sc->sc_dev,
    108 	    "XUSB2PRM / USB2.0 ports can switch from EHCI to xHCI:"
    109 	    "0x%08x\n", val);
    110 	pci_conf_write(psc->sc_pc, psc->sc_tag, PCI_XHCI_INTEL_XUSB2PR, val);
    111 	val = pci_conf_read(psc->sc_pc, psc->sc_tag, PCI_XHCI_INTEL_XUSB2PR);
    112 	aprint_debug_dev(sc->sc_dev,
    113 	    "XUSB2PR / USB2.0 ports under xHCI: 0x%08x\n", val);
    114 
    115 	return 0;
    116 }
    117 
    118 static void
    119 xhci_pci_attach(device_t parent, device_t self, void *aux)
    120 {
    121 	struct xhci_pci_softc * const psc = device_private(self);
    122 	struct xhci_softc * const sc = &psc->sc_xhci;
    123 	struct pci_attach_args *const pa = (struct pci_attach_args *)aux;
    124 	const pci_chipset_tag_t pc = pa->pa_pc;
    125 	const pcitag_t tag = pa->pa_tag;
    126 	char const *intrstr;
    127 	pcireg_t csr, memtype, usbrev;
    128 	uint32_t hccparams;
    129 	char intrbuf[PCI_INTRSTR_LEN];
    130 	bus_addr_t memaddr;
    131 	int flags, msixoff;
    132 	int err;
    133 
    134 	sc->sc_dev = self;
    135 
    136 	pci_aprint_devinfo(pa, "USB Controller");
    137 
    138 	/* Check for quirks */
    139 	sc->sc_quirks = 0;
    140 
    141 	csr = pci_conf_read(pc, tag, PCI_COMMAND_STATUS_REG);
    142 	if ((csr & PCI_COMMAND_MEM_ENABLE) == 0) {
    143 		/*
    144 		 * Enable address decoding for memory range in case BIOS or
    145 		 * UEFI didn't set it.
    146 		 */
    147 		csr = pci_conf_read(pa->pa_pc, pa->pa_tag,
    148 		    PCI_COMMAND_STATUS_REG);
    149 		csr |= PCI_COMMAND_MEM_ENABLE;
    150 		pci_conf_write(pa->pa_pc, pa->pa_tag, PCI_COMMAND_STATUS_REG,
    151 		    csr);
    152 	}
    153 
    154 	/* map MMIO registers */
    155 	memtype = pci_mapreg_type(pa->pa_pc, pa->pa_tag, PCI_CBMEM);
    156 	if (PCI_MAPREG_TYPE(memtype) != PCI_MAPREG_TYPE_MEM) {
    157 		sc->sc_ios = 0;
    158 		aprint_error_dev(self, "BAR not 64 or 32-bit MMIO\n");
    159 		return;
    160 	}
    161 
    162 	sc->sc_iot = pa->pa_memt;
    163 	if (pci_mapreg_info(pa->pa_pc, pa->pa_tag, PCI_CBMEM, memtype,
    164 	    &memaddr, &sc->sc_ios, &flags) != 0) {
    165 		sc->sc_ios = 0;
    166 		aprint_error_dev(self, "can't get map info\n");
    167 		return;
    168 	}
    169 
    170 	if (pci_get_capability(pa->pa_pc, pa->pa_tag, PCI_CAP_MSIX, &msixoff,
    171 	    NULL)) {
    172 		pcireg_t msixtbl;
    173 		uint32_t table_offset;
    174 		int bir;
    175 
    176 		msixtbl = pci_conf_read(pa->pa_pc, pa->pa_tag,
    177 		    msixoff + PCI_MSIX_TBLOFFSET);
    178 		table_offset = msixtbl & PCI_MSIX_TBLOFFSET_MASK;
    179 		bir = msixtbl & PCI_MSIX_TBLBIR_MASK;
    180 		/* Shrink map area for MSI-X table */
    181 		if (bir == PCI_MAPREG_NUM(PCI_CBMEM))
    182 			sc->sc_ios = table_offset;
    183 	}
    184 	if (bus_space_map(sc->sc_iot, memaddr, sc->sc_ios, flags,
    185 	    &sc->sc_ioh)) {
    186 		sc->sc_ios = 0;
    187 		aprint_error_dev(self, "can't map mem space\n");
    188 		return;
    189 	}
    190 
    191 	psc->sc_pc = pc;
    192 	psc->sc_tag = tag;
    193 
    194 	hccparams = bus_space_read_4(sc->sc_iot, sc->sc_ioh, XHCI_HCCPARAMS);
    195 
    196 	if (XHCI_HCC_AC64(hccparams) != 0) {
    197 		aprint_verbose_dev(self, "64-bit DMA");
    198 		if (pci_dma64_available(pa)) {
    199 			sc->sc_bus.ub_dmatag = pa->pa_dmat64;
    200 			aprint_verbose("\n");
    201 		} else {
    202 			aprint_verbose(" - limited\n");
    203 			sc->sc_bus.ub_dmatag = pa->pa_dmat;
    204 		}
    205 	} else {
    206 		aprint_verbose_dev(self, "32-bit DMA\n");
    207 		sc->sc_bus.ub_dmatag = pa->pa_dmat;
    208 	}
    209 
    210 	/* Enable the device. */
    211 	pci_conf_write(pc, tag, PCI_COMMAND_STATUS_REG,
    212 		       csr | PCI_COMMAND_MASTER_ENABLE);
    213 
    214 	/* Allocate and establish the interrupt. */
    215 	if (pci_intr_alloc(pa, &psc->sc_pihp, NULL, 0)) {
    216 		aprint_error_dev(self, "can't allocate handler\n");
    217 		goto fail;
    218 	}
    219 	intrstr = pci_intr_string(pc, psc->sc_pihp[0], intrbuf,
    220 	    sizeof(intrbuf));
    221 	psc->sc_ih = pci_intr_establish_xname(pc, psc->sc_pihp[0], IPL_USB,
    222 	    xhci_intr, sc, device_xname(sc->sc_dev));
    223 	if (psc->sc_ih == NULL) {
    224 		pci_intr_release(pc, psc->sc_pihp, 1);
    225 		psc->sc_pihp = NULL;
    226 		aprint_error_dev(self, "couldn't establish interrupt");
    227 		if (intrstr != NULL)
    228 			aprint_error(" at %s", intrstr);
    229 		aprint_error("\n");
    230 		goto fail;
    231 	}
    232 	aprint_normal_dev(self, "interrupting at %s\n", intrstr);
    233 
    234 	usbrev = pci_conf_read(pc, tag, PCI_USBREV) & PCI_USBREV_MASK;
    235 	switch (usbrev) {
    236 	case PCI_USBREV_3_0:
    237 		sc->sc_bus.ub_revision = USBREV_3_0;
    238 		break;
    239 	case PCI_USBREV_3_1:
    240 		sc->sc_bus.ub_revision = USBREV_3_1;
    241 		break;
    242 	default:
    243 		if (usbrev < PCI_USBREV_3_0) {
    244 			aprint_error_dev(self, "Unknown revision (%02x). Set to 3.0.\n",
    245 			    usbrev);
    246 			sc->sc_bus.ub_revision = USBREV_3_0;
    247 		} else {
    248 			/* Default to the latest revision */
    249 			aprint_normal_dev(self,
    250 			    "Unknown revision (%02x). Set to 3.1.\n", usbrev);
    251 			sc->sc_bus.ub_revision = USBREV_3_1;
    252 		}
    253 		break;
    254 	}
    255 
    256 	/* Intel chipset requires SuperSpeed enable and USB2 port routing */
    257 	switch (PCI_VENDOR(pa->pa_id)) {
    258 	case PCI_VENDOR_INTEL:
    259 		sc->sc_quirks |= XHCI_QUIRK_INTEL;
    260 		break;
    261 	default:
    262 		break;
    263 	}
    264 
    265 	err = xhci_init(sc);
    266 	if (err) {
    267 		aprint_error_dev(self, "init failed, error=%d\n", err);
    268 		goto fail;
    269 	}
    270 
    271 	if ((sc->sc_quirks & XHCI_QUIRK_INTEL) != 0)
    272 		xhci_pci_port_route(psc);
    273 
    274 	if (!pmf_device_register1(self, xhci_suspend, xhci_resume,
    275 	                          xhci_shutdown))
    276 		aprint_error_dev(self, "couldn't establish power handler\n");
    277 
    278 	/* Attach usb buses. */
    279 	sc->sc_child = config_found(self, &sc->sc_bus, usbctlprint);
    280 
    281  	sc->sc_child2 = config_found(self, &sc->sc_bus2, usbctlprint);
    282 
    283 	return;
    284 
    285 fail:
    286 	if (psc->sc_ih != NULL) {
    287 		pci_intr_disestablish(psc->sc_pc, psc->sc_ih);
    288 		psc->sc_ih = NULL;
    289 	}
    290 	if (psc->sc_pihp != NULL) {
    291 		pci_intr_release(psc->sc_pc, psc->sc_pihp, 1);
    292 		psc->sc_pihp = NULL;
    293 	}
    294 	if (sc->sc_ios) {
    295 		bus_space_unmap(sc->sc_iot, sc->sc_ioh, sc->sc_ios);
    296 		sc->sc_ios = 0;
    297 	}
    298 	return;
    299 }
    300 
    301 static int
    302 xhci_pci_detach(device_t self, int flags)
    303 {
    304 	struct xhci_pci_softc * const psc = device_private(self);
    305 	struct xhci_softc * const sc = &psc->sc_xhci;
    306 	int rv;
    307 
    308 	if (sc->sc_ios != 0) {
    309 		rv = xhci_detach(sc, flags);
    310 		if (rv)
    311 			return rv;
    312 
    313 		pmf_device_deregister(self);
    314 
    315 		xhci_shutdown(self, flags);
    316 
    317 #if 0
    318 		/* Disable interrupts, so we don't get any spurious ones. */
    319 		bus_space_write_4(sc->sc_iot, sc->sc_ioh,
    320 				  OHCI_INTERRUPT_DISABLE, OHCI_ALL_INTRS);
    321 #endif
    322 	}
    323 
    324 	if (psc->sc_ih != NULL) {
    325 		pci_intr_disestablish(psc->sc_pc, psc->sc_ih);
    326 		psc->sc_ih = NULL;
    327 	}
    328 	if (psc->sc_pihp != NULL) {
    329 		pci_intr_release(psc->sc_pc, psc->sc_pihp, 1);
    330 		psc->sc_pihp = NULL;
    331 	}
    332 	if (sc->sc_ios) {
    333 		bus_space_unmap(sc->sc_iot, sc->sc_ioh, sc->sc_ios);
    334 		sc->sc_ios = 0;
    335 	}
    336 
    337 	return 0;
    338 }
    339 
    340 CFATTACH_DECL3_NEW(xhci_pci, sizeof(struct xhci_pci_softc),
    341     xhci_pci_match, xhci_pci_attach, xhci_pci_detach, xhci_activate, NULL,
    342     xhci_childdet, DVF_DETACH_SHUTDOWN);
    343