HomeSort by: relevance | last modified time | path
    Searched defs:hccparams (Results 1 - 5 of 5) sorted by relevancy

  /src/sys/dev/acpi/
xhci_acpi.c 101 uint32_t hccparams; local in function:xhci_acpi_attach
171 hccparams = bus_space_read_4(sc->sc_iot, sc->sc_ioh, XHCI_HCCPARAMS);
172 if (XHCI_HCC_AC64(hccparams)) {
ehci_acpi.c 141 const uint32_t hccparams = EREAD4(sc, EHCI_HCCPARAMS); local in function:ehci_acpi_attach
142 if (EHCI_HCC_64BIT(hccparams)) {
  /src/sys/dev/pci/
xhci_pci.c 128 uint32_t hccparams; local in function:xhci_pci_attach
195 hccparams = bus_space_read_4(sc->sc_iot, sc->sc_ioh, XHCI_HCCPARAMS);
197 if (XHCI_HCC_AC64(hccparams) != 0) {
ehci_pci.c 150 const uint32_t hccparams = EREAD4(&sc->sc, EHCI_HCCPARAMS); local in function:ehci_pci_attach
152 if (EHCI_HCC_64BIT(hccparams)) {
  /src/sys/dev/usb/
ehci.c 480 const uint32_t hccparams = EREAD4(sc, EHCI_HCCPARAMS); local in function:ehci_init
481 DPRINTF("hccparams=%#jx", hccparams, 0, 0, 0);
483 if (EHCI_HCC_64BIT(hccparams)) {
488 if (hccparams & EHCI_HCC_IST_FULLFRAME) {
491 sc->sc_istthreshold = EHCI_HCC_GET_IST_THRESHOLD(hccparams);

Completed in 49 milliseconds