Home | History | Annotate | Line # | Download | only in pci
ehci_pci.c revision 1.37.4.2
      1  1.37.4.2      yamt /*	$NetBSD: ehci_pci.c,v 1.37.4.2 2009/05/04 08:12:55 yamt Exp $	*/
      2       1.1  augustss 
      3       1.1  augustss /*
      4       1.8  augustss  * Copyright (c) 2001, 2002 The NetBSD Foundation, Inc.
      5       1.1  augustss  * All rights reserved.
      6       1.1  augustss  *
      7       1.1  augustss  * This code is derived from software contributed to The NetBSD Foundation
      8       1.1  augustss  * by Lennart Augustsson (lennart (at) augustsson.net).
      9       1.1  augustss  *
     10       1.1  augustss  * Redistribution and use in source and binary forms, with or without
     11       1.1  augustss  * modification, are permitted provided that the following conditions
     12       1.1  augustss  * are met:
     13       1.1  augustss  * 1. Redistributions of source code must retain the above copyright
     14       1.1  augustss  *    notice, this list of conditions and the following disclaimer.
     15       1.1  augustss  * 2. Redistributions in binary form must reproduce the above copyright
     16       1.1  augustss  *    notice, this list of conditions and the following disclaimer in the
     17       1.1  augustss  *    documentation and/or other materials provided with the distribution.
     18       1.1  augustss  *
     19       1.1  augustss  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     20       1.1  augustss  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     21       1.1  augustss  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     22       1.1  augustss  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     23       1.1  augustss  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     24       1.1  augustss  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     25       1.1  augustss  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     26       1.1  augustss  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     27       1.1  augustss  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     28       1.1  augustss  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     29       1.1  augustss  * POSSIBILITY OF SUCH DAMAGE.
     30       1.1  augustss  */
     31       1.6     lukem 
     32       1.6     lukem #include <sys/cdefs.h>
     33  1.37.4.2      yamt __KERNEL_RCSID(0, "$NetBSD: ehci_pci.c,v 1.37.4.2 2009/05/04 08:12:55 yamt Exp $");
     34       1.1  augustss 
     35       1.1  augustss #include <sys/param.h>
     36       1.1  augustss #include <sys/systm.h>
     37       1.1  augustss #include <sys/kernel.h>
     38       1.1  augustss #include <sys/device.h>
     39       1.1  augustss #include <sys/proc.h>
     40       1.1  augustss #include <sys/queue.h>
     41       1.1  augustss 
     42      1.31        ad #include <sys/bus.h>
     43       1.1  augustss 
     44      1.22   xtraeme #include <dev/pci/pcidevs.h>
     45       1.1  augustss #include <dev/pci/pcivar.h>
     46       1.4  augustss #include <dev/pci/usb_pci.h>
     47       1.1  augustss 
     48       1.1  augustss #include <dev/usb/usb.h>
     49       1.1  augustss #include <dev/usb/usbdi.h>
     50       1.1  augustss #include <dev/usb/usbdivar.h>
     51       1.1  augustss #include <dev/usb/usb_mem.h>
     52       1.1  augustss 
     53       1.1  augustss #include <dev/usb/ehcireg.h>
     54       1.1  augustss #include <dev/usb/ehcivar.h>
     55       1.1  augustss 
     56       1.5  augustss #ifdef EHCI_DEBUG
     57       1.5  augustss #define DPRINTF(x)	if (ehcidebug) printf x
     58       1.5  augustss extern int ehcidebug;
     59       1.5  augustss #else
     60       1.5  augustss #define DPRINTF(x)
     61       1.5  augustss #endif
     62       1.5  augustss 
     63      1.34  jmcneill static void ehci_release_ownership(ehci_softc_t *sc, pci_chipset_tag_t pc,
     64      1.34  jmcneill 				   pcitag_t tag);
     65      1.19  augustss static void ehci_get_ownership(ehci_softc_t *sc, pci_chipset_tag_t pc,
     66      1.19  augustss 			       pcitag_t tag);
     67      1.35    dyoung static bool ehci_pci_suspend(device_t PMF_FN_PROTO);
     68      1.35    dyoung static bool ehci_pci_resume(device_t PMF_FN_PROTO);
     69      1.19  augustss 
     70       1.1  augustss struct ehci_pci_softc {
     71       1.1  augustss 	ehci_softc_t		sc;
     72       1.1  augustss 	pci_chipset_tag_t	sc_pc;
     73       1.1  augustss 	pcitag_t		sc_tag;
     74       1.1  augustss 	void 			*sc_ih;		/* interrupt vectoring */
     75       1.1  augustss };
     76       1.1  augustss 
     77      1.19  augustss #define EHCI_MAX_BIOS_WAIT		1000 /* ms */
     78      1.19  augustss 
     79      1.18   thorpej static int
     80  1.37.4.2      yamt ehci_pci_match(device_t parent, cfdata_t match, void *aux)
     81       1.1  augustss {
     82       1.1  augustss 	struct pci_attach_args *pa = (struct pci_attach_args *) aux;
     83       1.1  augustss 
     84       1.1  augustss 	if (PCI_CLASS(pa->pa_class) == PCI_CLASS_SERIALBUS &&
     85       1.1  augustss 	    PCI_SUBCLASS(pa->pa_class) == PCI_SUBCLASS_SERIALBUS_USB &&
     86       1.1  augustss 	    PCI_INTERFACE(pa->pa_class) == PCI_INTERFACE_EHCI)
     87  1.37.4.2      yamt 		return 1;
     88      1.17     perry 
     89  1.37.4.2      yamt 	return 0;
     90       1.1  augustss }
     91       1.1  augustss 
     92      1.18   thorpej static void
     93  1.37.4.2      yamt ehci_pci_attach(device_t parent, device_t self, void *aux)
     94       1.1  augustss {
     95      1.37  drochner 	struct ehci_pci_softc *sc = device_private(self);
     96       1.1  augustss 	struct pci_attach_args *pa = (struct pci_attach_args *)aux;
     97       1.1  augustss 	pci_chipset_tag_t pc = pa->pa_pc;
     98       1.1  augustss 	pcitag_t tag = pa->pa_tag;
     99       1.1  augustss 	char const *intrstr;
    100       1.1  augustss 	pci_intr_handle_t ih;
    101       1.1  augustss 	pcireg_t csr;
    102      1.16   mycroft 	const char *vendor;
    103       1.1  augustss 	char devinfo[256];
    104       1.1  augustss 	usbd_status r;
    105       1.5  augustss 	int ncomp;
    106       1.5  augustss 	struct usb_pci *up;
    107       1.1  augustss 
    108      1.37  drochner 	sc->sc.sc_dev = self;
    109      1.37  drochner 	sc->sc.sc_bus.hci_private = sc;
    110      1.37  drochner 
    111      1.13   thorpej 	aprint_naive(": USB controller\n");
    112      1.13   thorpej 
    113      1.15    itojun 	pci_devinfo(pa->pa_id, pa->pa_class, 0, devinfo, sizeof(devinfo));
    114      1.13   thorpej 	aprint_normal(": %s (rev. 0x%02x)\n", devinfo,
    115      1.13   thorpej 	    PCI_REVISION(pa->pa_class));
    116       1.1  augustss 
    117       1.1  augustss 	/* Map I/O registers */
    118       1.1  augustss 	if (pci_mapreg_map(pa, PCI_CBMEM, PCI_MAPREG_TYPE_MEM, 0,
    119       1.1  augustss 			   &sc->sc.iot, &sc->sc.ioh, NULL, &sc->sc.sc_size)) {
    120  1.37.4.2      yamt 		sc->sc.sc_size = 0;
    121  1.37.4.2      yamt 		aprint_error_dev(self, "can't map memory space\n");
    122       1.1  augustss 		return;
    123       1.1  augustss 	}
    124       1.1  augustss 
    125  1.37.4.2      yamt 	/* Disable interrupts, so we don't get any spurious ones. */
    126  1.37.4.2      yamt 	sc->sc.sc_offs = EREAD1(&sc->sc, EHCI_CAPLENGTH);
    127  1.37.4.2      yamt 	DPRINTF(("%s: offs=%d\n", device_xname(self), sc->sc.sc_offs));
    128  1.37.4.2      yamt 	EOWRITE2(&sc->sc, EHCI_USBINTR, 0);
    129  1.37.4.2      yamt 
    130       1.1  augustss 	sc->sc_pc = pc;
    131       1.1  augustss 	sc->sc_tag = tag;
    132       1.1  augustss 	sc->sc.sc_bus.dmatag = pa->pa_dmat;
    133       1.1  augustss 
    134       1.1  augustss 	/* Enable the device. */
    135       1.1  augustss 	csr = pci_conf_read(pc, tag, PCI_COMMAND_STATUS_REG);
    136       1.1  augustss 	pci_conf_write(pc, tag, PCI_COMMAND_STATUS_REG,
    137       1.1  augustss 		       csr | PCI_COMMAND_MASTER_ENABLE);
    138       1.1  augustss 
    139       1.1  augustss 	/* Map and establish the interrupt. */
    140       1.3  sommerfe 	if (pci_intr_map(pa, &ih)) {
    141  1.37.4.2      yamt 		aprint_error_dev(self, "couldn't map interrupt\n");
    142  1.37.4.2      yamt 		goto fail;
    143       1.1  augustss 	}
    144  1.37.4.2      yamt 
    145  1.37.4.2      yamt 	/*
    146  1.37.4.2      yamt 	 * Allocate IRQ
    147  1.37.4.2      yamt 	 */
    148       1.1  augustss 	intrstr = pci_intr_string(pc, ih);
    149       1.1  augustss 	sc->sc_ih = pci_intr_establish(pc, ih, IPL_USB, ehci_intr, sc);
    150       1.1  augustss 	if (sc->sc_ih == NULL) {
    151  1.37.4.2      yamt 		aprint_error_dev(self, "couldn't establish interrupt");
    152       1.1  augustss 		if (intrstr != NULL)
    153  1.37.4.2      yamt 			aprint_error(" at %s", intrstr);
    154  1.37.4.2      yamt 		aprint_error("\n");
    155       1.1  augustss 		return;
    156       1.1  augustss 	}
    157  1.37.4.2      yamt 	aprint_normal_dev(self, "interrupting at %s\n", intrstr);
    158       1.1  augustss 
    159       1.1  augustss 	switch(pci_conf_read(pc, tag, PCI_USBREV) & PCI_USBREV_MASK) {
    160       1.1  augustss 	case PCI_USBREV_PRE_1_0:
    161       1.1  augustss 	case PCI_USBREV_1_0:
    162       1.1  augustss 	case PCI_USBREV_1_1:
    163       1.4  augustss 		sc->sc.sc_bus.usbrev = USBREV_UNKNOWN;
    164  1.37.4.2      yamt 		aprint_verbose_dev(self, "pre-2.0 USB rev\n");
    165       1.4  augustss 		return;
    166       1.1  augustss 	case PCI_USBREV_2_0:
    167       1.1  augustss 		sc->sc.sc_bus.usbrev = USBREV_2_0;
    168       1.1  augustss 		break;
    169       1.1  augustss 	default:
    170       1.1  augustss 		sc->sc.sc_bus.usbrev = USBREV_UNKNOWN;
    171       1.1  augustss 		break;
    172       1.1  augustss 	}
    173       1.1  augustss 
    174       1.1  augustss 	/* Figure out vendor for root hub descriptor. */
    175       1.1  augustss 	vendor = pci_findvendor(pa->pa_id);
    176       1.1  augustss 	sc->sc.sc_id_vendor = PCI_VENDOR(pa->pa_id);
    177       1.1  augustss 	if (vendor)
    178      1.14    itojun 		strlcpy(sc->sc.sc_vendor, vendor, sizeof(sc->sc.sc_vendor));
    179       1.1  augustss 	else
    180      1.14    itojun 		snprintf(sc->sc.sc_vendor, sizeof(sc->sc.sc_vendor),
    181      1.14    itojun 		    "vendor 0x%04x", PCI_VENDOR(pa->pa_id));
    182      1.17     perry 
    183      1.22   xtraeme 	/* Enable workaround for dropped interrupts as required */
    184      1.30   tsutsui 	switch (sc->sc.sc_id_vendor) {
    185      1.30   tsutsui 	case PCI_VENDOR_ATI:
    186      1.30   tsutsui 	case PCI_VENDOR_VIATECH:
    187      1.22   xtraeme 		sc->sc.sc_flags |= EHCIF_DROPPED_INTR_WORKAROUND;
    188  1.37.4.2      yamt 		aprint_normal_dev(self, "dropped intr workaround enabled\n");
    189      1.30   tsutsui 		break;
    190      1.30   tsutsui 	default:
    191      1.30   tsutsui 		break;
    192      1.30   tsutsui 	}
    193      1.22   xtraeme 
    194       1.5  augustss 	/*
    195       1.5  augustss 	 * Find companion controllers.  According to the spec they always
    196       1.5  augustss 	 * have lower function numbers so they should be enumerated already.
    197       1.5  augustss 	 */
    198       1.5  augustss 	ncomp = 0;
    199       1.5  augustss 	TAILQ_FOREACH(up, &ehci_pci_alldevs, next) {
    200       1.5  augustss 		if (up->bus == pa->pa_bus && up->device == pa->pa_device) {
    201       1.5  augustss 			DPRINTF(("ehci_pci_attach: companion %s\n",
    202      1.37  drochner 				 device_xname(up->usb)));
    203       1.5  augustss 			sc->sc.sc_comps[ncomp++] = up->usb;
    204       1.5  augustss 			if (ncomp >= EHCI_COMPANION_MAX)
    205       1.5  augustss 				break;
    206       1.5  augustss 		}
    207       1.5  augustss 	}
    208       1.5  augustss 	sc->sc.sc_ncomp = ncomp;
    209       1.5  augustss 
    210      1.19  augustss 	ehci_get_ownership(&sc->sc, pc, tag);
    211      1.19  augustss 
    212       1.1  augustss 	r = ehci_init(&sc->sc);
    213       1.1  augustss 	if (r != USBD_NORMAL_COMPLETION) {
    214  1.37.4.2      yamt 		aprint_error_dev(self, "init failed, error=%d\n", r);
    215  1.37.4.2      yamt 		goto fail;
    216       1.1  augustss 	}
    217       1.1  augustss 
    218      1.36    dyoung 	if (!pmf_device_register1(self, ehci_pci_suspend, ehci_pci_resume,
    219      1.36    dyoung 	                          ehci_shutdown))
    220      1.32  jmcneill 		aprint_error_dev(self, "couldn't establish power handler\n");
    221      1.32  jmcneill 
    222       1.1  augustss 	/* Attach usb device. */
    223      1.37  drochner 	sc->sc.sc_child = config_found(self, &sc->sc.sc_bus, usbctlprint);
    224  1.37.4.2      yamt 	return;
    225  1.37.4.2      yamt 
    226  1.37.4.2      yamt fail:
    227  1.37.4.2      yamt 	if (sc->sc_ih) {
    228  1.37.4.2      yamt 		pci_intr_disestablish(sc->sc_pc, sc->sc_ih);
    229  1.37.4.2      yamt 		sc->sc_ih = NULL;
    230  1.37.4.2      yamt 	}
    231  1.37.4.2      yamt 	if (sc->sc.sc_size) {
    232  1.37.4.2      yamt 		ehci_release_ownership(&sc->sc, sc->sc_pc, sc->sc_tag);
    233  1.37.4.2      yamt 		bus_space_unmap(sc->sc.iot, sc->sc.ioh, sc->sc.sc_size);
    234  1.37.4.2      yamt 		sc->sc.sc_size = 0;
    235  1.37.4.2      yamt 	}
    236  1.37.4.2      yamt 	return;
    237       1.1  augustss }
    238       1.1  augustss 
    239      1.18   thorpej static int
    240  1.37.4.2      yamt ehci_pci_detach(device_t self, int flags)
    241       1.1  augustss {
    242      1.37  drochner 	struct ehci_pci_softc *sc = device_private(self);
    243       1.1  augustss 	int rv;
    244       1.1  augustss 
    245      1.32  jmcneill 	pmf_device_deregister(self);
    246       1.1  augustss 	rv = ehci_detach(&sc->sc, flags);
    247       1.1  augustss 	if (rv)
    248  1.37.4.2      yamt 		return rv;
    249  1.37.4.2      yamt 
    250  1.37.4.2      yamt 	/* disable interrupts */
    251  1.37.4.2      yamt 	EOWRITE2(&sc->sc, EHCI_USBINTR, 0);
    252  1.37.4.2      yamt 	/* XXX grotty hack to flush the write */
    253  1.37.4.2      yamt 	(void)EOREAD2(&sc->sc, EHCI_USBINTR);
    254  1.37.4.2      yamt 
    255       1.1  augustss 	if (sc->sc_ih != NULL) {
    256       1.1  augustss 		pci_intr_disestablish(sc->sc_pc, sc->sc_ih);
    257       1.1  augustss 		sc->sc_ih = NULL;
    258       1.1  augustss 	}
    259       1.1  augustss 	if (sc->sc.sc_size) {
    260      1.34  jmcneill 		ehci_release_ownership(&sc->sc, sc->sc_pc, sc->sc_tag);
    261       1.1  augustss 		bus_space_unmap(sc->sc.iot, sc->sc.ioh, sc->sc.sc_size);
    262       1.1  augustss 		sc->sc.sc_size = 0;
    263       1.1  augustss 	}
    264      1.34  jmcneill 
    265  1.37.4.2      yamt 	return 0;
    266       1.1  augustss }
    267      1.18   thorpej 
    268  1.37.4.2      yamt CFATTACH_DECL3_NEW(ehci_pci, sizeof(struct ehci_pci_softc),
    269      1.35    dyoung     ehci_pci_match, ehci_pci_attach, ehci_pci_detach, ehci_activate, NULL,
    270  1.37.4.2      yamt     ehci_childdet, DVF_DETACH_SHUTDOWN);
    271      1.19  augustss 
    272      1.19  augustss #ifdef EHCI_DEBUG
    273      1.19  augustss static void
    274      1.19  augustss ehci_dump_caps(ehci_softc_t *sc, pci_chipset_tag_t pc, pcitag_t tag)
    275      1.19  augustss {
    276  1.37.4.2      yamt 	uint32_t cparams, legctlsts, addr, cap, id;
    277      1.19  augustss 	int maxdump = 10;
    278      1.19  augustss 
    279      1.19  augustss 	cparams = EREAD4(sc, EHCI_HCCPARAMS);
    280      1.19  augustss 	addr = EHCI_HCC_EECP(cparams);
    281      1.19  augustss 	while (addr != 0) {
    282      1.19  augustss 		cap = pci_conf_read(pc, tag, addr);
    283      1.19  augustss 		id = EHCI_CAP_GET_ID(cap);
    284      1.19  augustss 		switch (id) {
    285      1.19  augustss 		case EHCI_CAP_ID_LEGACY:
    286      1.19  augustss 			legctlsts = pci_conf_read(pc, tag,
    287      1.19  augustss 						  addr + PCI_EHCI_USBLEGCTLSTS);
    288      1.20  augustss 			printf("ehci_dump_caps: legsup=0x%08x "
    289      1.20  augustss 			       "legctlsts=0x%08x\n", cap, legctlsts);
    290      1.19  augustss 			break;
    291      1.19  augustss 		default:
    292      1.20  augustss 			printf("ehci_dump_caps: cap=0x%08x\n", cap);
    293      1.19  augustss 			break;
    294      1.19  augustss 		}
    295      1.19  augustss 		if (--maxdump < 0)
    296      1.19  augustss 			break;
    297      1.19  augustss 		addr = EHCI_CAP_GET_NEXT(cap);
    298      1.19  augustss 	}
    299      1.19  augustss }
    300      1.19  augustss #endif
    301      1.19  augustss 
    302      1.19  augustss static void
    303      1.34  jmcneill ehci_release_ownership(ehci_softc_t *sc, pci_chipset_tag_t pc, pcitag_t tag)
    304      1.34  jmcneill {
    305      1.37  drochner 	const char *devname = device_xname(sc->sc_dev);
    306  1.37.4.2      yamt 	uint32_t cparams, addr, cap;
    307      1.34  jmcneill 	pcireg_t legsup;
    308      1.34  jmcneill 	int maxcap = 10;
    309      1.34  jmcneill 
    310      1.34  jmcneill 	cparams = EREAD4(sc, EHCI_HCCPARAMS);
    311      1.34  jmcneill 	addr = EHCI_HCC_EECP(cparams);
    312      1.34  jmcneill 	while (addr != 0) {
    313      1.34  jmcneill 		cap = pci_conf_read(pc, tag, addr);
    314      1.34  jmcneill 		if (EHCI_CAP_GET_ID(cap) != EHCI_CAP_ID_LEGACY)
    315      1.34  jmcneill 			goto next;
    316      1.34  jmcneill 		legsup = pci_conf_read(pc, tag, addr + PCI_EHCI_USBLEGSUP);
    317      1.34  jmcneill 		pci_conf_write(pc, tag, addr + PCI_EHCI_USBLEGSUP,
    318      1.34  jmcneill 		    legsup & ~EHCI_LEG_HC_OS_OWNED);
    319      1.34  jmcneill 
    320      1.34  jmcneill next:
    321      1.34  jmcneill 		if (--maxcap < 0) {
    322      1.34  jmcneill 			aprint_normal("%s: broken extended capabilities "
    323      1.34  jmcneill 				      "ignored\n", devname);
    324      1.34  jmcneill 			return;
    325      1.34  jmcneill 		}
    326      1.34  jmcneill 		addr = EHCI_CAP_GET_NEXT(cap);
    327      1.34  jmcneill 	}
    328      1.34  jmcneill }
    329      1.34  jmcneill 
    330      1.34  jmcneill static void
    331      1.19  augustss ehci_get_ownership(ehci_softc_t *sc, pci_chipset_tag_t pc, pcitag_t tag)
    332      1.19  augustss {
    333      1.37  drochner 	const char *devname = device_xname(sc->sc_dev);
    334  1.37.4.2      yamt 	uint32_t cparams, addr, cap;
    335      1.33  jmcneill 	pcireg_t legsup;
    336      1.19  augustss 	int maxcap = 10;
    337      1.19  augustss 	int ms;
    338      1.19  augustss 
    339      1.19  augustss #ifdef EHCI_DEBUG
    340      1.20  augustss 	if (ehcidebug)
    341      1.20  augustss 		ehci_dump_caps(sc, pc, tag);
    342      1.19  augustss #endif
    343      1.19  augustss 	cparams = EREAD4(sc, EHCI_HCCPARAMS);
    344      1.19  augustss 	addr = EHCI_HCC_EECP(cparams);
    345      1.19  augustss 	while (addr != 0) {
    346      1.19  augustss 		cap = pci_conf_read(pc, tag, addr);
    347      1.34  jmcneill 		if (EHCI_CAP_GET_ID(cap) != EHCI_CAP_ID_LEGACY)
    348      1.34  jmcneill 			goto next;
    349      1.34  jmcneill 		legsup = pci_conf_read(pc, tag, addr + PCI_EHCI_USBLEGSUP);
    350      1.34  jmcneill 		/* Ask BIOS to give up ownership */
    351      1.34  jmcneill 		pci_conf_write(pc, tag, addr + PCI_EHCI_USBLEGSUP,
    352      1.34  jmcneill 		    legsup | EHCI_LEG_HC_OS_OWNED);
    353      1.34  jmcneill 		if (legsup & EHCI_LEG_HC_BIOS_OWNED) {
    354      1.34  jmcneill 			for (ms = 0; ms < EHCI_MAX_BIOS_WAIT; ms++) {
    355      1.34  jmcneill 				legsup = pci_conf_read(pc, tag,
    356      1.34  jmcneill 				    addr + PCI_EHCI_USBLEGSUP);
    357      1.34  jmcneill 				if (!(legsup & EHCI_LEG_HC_BIOS_OWNED))
    358      1.34  jmcneill 					break;
    359      1.34  jmcneill 				delay(1000);
    360      1.34  jmcneill 			}
    361      1.34  jmcneill 			if (ms == EHCI_MAX_BIOS_WAIT) {
    362      1.34  jmcneill 				aprint_normal("%s: BIOS refuses to give up "
    363      1.34  jmcneill 				    "ownership, using force\n", devname);
    364      1.34  jmcneill 				pci_conf_write(pc, tag,
    365      1.34  jmcneill 				    addr + PCI_EHCI_USBLEGSUP, 0);
    366      1.34  jmcneill 			} else
    367      1.34  jmcneill 				aprint_verbose("%s: BIOS has given up "
    368      1.34  jmcneill 				    "ownership\n", devname);
    369      1.34  jmcneill 		}
    370      1.34  jmcneill 
    371      1.34  jmcneill 		/* Disable SMIs */
    372      1.34  jmcneill 		pci_conf_write(pc, tag, addr + PCI_EHCI_USBLEGCTLSTS,
    373      1.34  jmcneill 		    EHCI_LEG_EXT_SMI_BAR | EHCI_LEG_EXT_SMI_PCICMD |
    374      1.34  jmcneill 		    EHCI_LEG_EXT_SMI_OS_CHANGE);
    375      1.34  jmcneill 
    376      1.34  jmcneill next:
    377      1.21  augustss 		if (--maxcap < 0) {
    378      1.21  augustss 			aprint_normal("%s: broken extended capabilities "
    379      1.21  augustss 				      "ignored\n", devname);
    380      1.19  augustss 			return;
    381      1.21  augustss 		}
    382      1.19  augustss 		addr = EHCI_CAP_GET_NEXT(cap);
    383      1.19  augustss 	}
    384      1.19  augustss 
    385      1.34  jmcneill }
    386      1.34  jmcneill 
    387      1.34  jmcneill static bool
    388      1.35    dyoung ehci_pci_suspend(device_t dv PMF_FN_ARGS)
    389      1.34  jmcneill {
    390      1.34  jmcneill 	struct ehci_pci_softc *sc = device_private(dv);
    391      1.28  jmcneill 
    392      1.35    dyoung 	ehci_suspend(dv PMF_FN_CALL);
    393      1.34  jmcneill 	ehci_release_ownership(&sc->sc, sc->sc_pc, sc->sc_tag);
    394      1.33  jmcneill 
    395      1.34  jmcneill 	return true;
    396      1.19  augustss }
    397      1.23  jmcneill 
    398      1.32  jmcneill static bool
    399      1.35    dyoung ehci_pci_resume(device_t dv PMF_FN_ARGS)
    400      1.23  jmcneill {
    401      1.32  jmcneill 	struct ehci_pci_softc *sc = device_private(dv);
    402      1.23  jmcneill 
    403      1.32  jmcneill 	ehci_get_ownership(&sc->sc, sc->sc_pc, sc->sc_tag);
    404      1.35    dyoung 	return ehci_resume(dv PMF_FN_CALL);
    405      1.23  jmcneill }
    406