/src/sys/arch/arm/ep93xx/ |
epcom.c | 1035 uint32_t c, csts; local in function:epcomintr 1054 csts = bus_space_read_4(iot, ioh, EPCOM_RXSts); 1055 if (ISSET(csts, RXSts_BE)) { 1079 put[1] = csts & 0xf;
|
/src/sys/dev/ic/ |
nvme.c | 220 printf("%s: csts 0x%08x\n", DEVNAME(sc), r4); 255 uint32_t cc, csts; local in function:nvme_enable 259 csts = nvme_read4(sc, NVME_CSTS); 265 if (ISSET(csts, NVME_CSTS_RDY)) 311 uint32_t cc, csts; local in function:nvme_disable 315 csts = nvme_read4(sc, NVME_CSTS); 319 * when CSTS.RDY is 1 or transitioning CC.EN from 1 to 0 when 320 * CSTS.RDY is 0 "has undefined results" So make sure that CSTS.RDY 324 if (!ISSET(csts, NVME_CSTS_RDY)) 641 uint32_t cc, csts; local in function:nvme_shutdown [all...] |
/src/sys/external/bsd/drm2/dist/drm/i915/display/ |
intel_opregion.c | 87 u32 csts; /* notification status */ member in struct:opregion_acpi 636 DRM_DEBUG_DRIVER("notify=0x%08x csts=0x%02x cevt=0x%02x\n", notify, 637 acpi->csts, acpi->cevt); 640 * The firmware sets CSTS to 0x03 `Dispatched (ASL)' before 642 * additional notifications until the graphics driver sets CSTS 645 if (acpi->csts != 0x03) 647 acpi->csts = 0; 672 acpi->csts = 0; 1179 opregion->acpi->csts = 0;
|
/src/sys/dev/pci/ |
auich.c | 1205 int csts; local in function:auich_intr 1217 csts = pci_conf_read(sc->sc_pc, sc->sc_pt, PCI_COMMAND_STATUS_REG); 1218 if (csts & PCI_STATUS_MASTER_ABORT) {
|