Home
last modified time | relevance | path

Searched refs:XOWRITE4 (Results 1 – 2 of 2) sorted by relevance

/openbsd/src/sys/dev/usb/
Dxhci.c425 XOWRITE4(sc, XHCI_CONFIG, hcr | sc->sc_noslot); in xhci_config()
429 XOWRITE4(sc, XHCI_DCBAAP_LO, (uint32_t)paddr); in xhci_config()
430 XOWRITE4(sc, XHCI_DCBAAP_HI, (uint32_t)(paddr >> 32)); in xhci_config()
437 XOWRITE4(sc, XHCI_CRCR_LO, ((uint32_t)paddr) | XHCI_CRCR_LO_RCS); in xhci_config()
438 XOWRITE4(sc, XHCI_CRCR_HI, (uint32_t)(paddr >> 32)); in xhci_config()
468 XOWRITE4(sc, XHCI_USBCMD, XHCI_CMD_CRS); /* Restore state */ in xhci_config()
491 XOWRITE4(sc, XHCI_USBCMD, XHCI_CMD_INTE|XHCI_CMD_RS); in xhci_config()
528 XOWRITE4(sc, XHCI_CRCR_LO, 0); in xhci_detach()
529 XOWRITE4(sc, XHCI_CRCR_HI, 0); in xhci_detach()
531 XOWRITE4(sc, XHCI_DCBAAP_LO, 0); in xhci_detach()
[all …]
Dxhcivar.h161 #define XOWRITE4(sc, a, x) \ macro