| /src/sys/dev/hil/ |
| hilvar.h | 94 int sc_pending; /* reconfiguration events in progress */ member in struct:hil_softc
|
| hil.c | 102 #define hil_process_pending(sc) wakeup(&(sc)->sc_pending) 240 sc->sc_pending = 0; 311 sc->sc_pending = HIL_PENDING_RECONFIG; 314 sc->sc_pending = HIL_PENDING_UNPLUGGED; 382 sc->sc_pending = HIL_PENDING_RECONFIG; 399 sc->sc_pending = HIL_PENDING_UNPLUGGED; 449 if (sc->sc_pending == 0) { 451 (void)tsleep(&sc->sc_pending, PWAIT, "hil_event", 0); 455 switch (sc->sc_pending) { 457 sc->sc_pending = 0 [all...] |
| /src/sys/arch/arm/s3c2xx0/ |
| s3c2410_extint.c | 73 uint32_t sc_pending; member in struct:ssextio_softc 104 GPIO_EINTMASK, ssextio_softc->sc_mask | ssextio_softc->sc_pending); 151 sc->sc_pending = 0; 259 ssextio_softc->sc_pending |= pending; 288 ssextio_softc->sc_pending &= ~(1<<extint);
|
| s3c2440_extint.c | 104 uint32_t sc_pending; member in struct:ssextio_softc 135 GPIO_EINTMASK, ssextio_softc->sc_mask | ssextio_softc->sc_pending); 182 sc->sc_pending = 0; 291 ssextio_softc->sc_pending |= pending; 320 ssextio_softc->sc_pending &= ~(1<<extint);
|
| /src/sys/arch/macppc/dev/ |
| pmu.c | 77 /* bits for sc_pending, as signals to the event thread */ 108 int sc_pending; member in struct:pmu_softc 290 sc->sc_pending = 0; 662 atomic_or_32(&sc->sc_pending, (resp[3] & 3)); 688 atomic_or_32(&sc->sc_pending, PMU_EV_LID); 693 atomic_or_32(&sc->sc_pending, PMU_EV_BUTTON); 989 atomic_and_32(&sc->sc_pending, ~socket); 1051 if ((sc->sc_pending & 3) != 0) { 1052 DPRINTF("eject %d\n", sc->sc_pending & 3); 1054 if (i & sc->sc_pending) [all...] |
| /src/sys/dev/ |
| vndvar.h | 120 int sc_pending; /* number of pending transfers */ member in struct:vnd_softc
|
| vnd.c | 566 while (vnd->sc_pending >= VND_MAXPENDING(vnd)) 567 tsleep(&vnd->sc_pending, PRIBIO, "vndpc", 0); 569 vnd->sc_pending++; 570 KASSERT(vnd->sc_pending > 0); 687 KASSERT(vnd->sc_pending > 0); 688 if (vnd->sc_pending-- == VND_MAXPENDING(vnd)) 689 wakeup(&vnd->sc_pending);
|
| /src/sys/arch/arm/imx/ |
| imxuartvar.h | 116 u_char sc_pending; member in struct:imxuart_softc
|
| imxuart.c | 1272 else if (!sc->sc_pending && !sc->sc_tx_busy) { 1281 if (!sc->sc_pending) { 1285 sc->sc_pending |= 1913 if (sc->sc_pending) { 2000 mask = sc->sc_pending ? IMX_UCR1_TXMPTYEN : IMX_UCR1_TRDYEN; 2081 if (sc->sc_pending & IMXUART_PEND_PARAM) 2083 if (sc->sc_pending & IMXUART_PEND_SPEED) 2085 sc->sc_pending = 0;
|
| /src/sys/arch/arm/xilinx/ |
| zynq_uart.c | 219 u_char sc_pending; member in struct:zynquart_softc 1235 } else if (!sc->sc_pending && !sc->sc_tx_busy) { 1243 if (!sc->sc_pending) { 1247 sc->sc_pending |= 1762 if (sc->sc_pending) { 1857 if (sc->sc_pending & ZYNQUART_PEND_PARAM) 1859 if (sc->sc_pending & ZYNQUART_PEND_SPEED) 1861 sc->sc_pending = 0;
|