Lines Matching refs:ipend
268 uart_sched_softih(struct uart_softc *sc, uint32_t ipend) in uart_sched_softih() argument
274 new = old | ipend; in uart_sched_softih()
426 int cnt, ipend, testintr; in uart_intr() local
433 while ((!testintr || cnt < 20) && (ipend = UART_IPEND(sc)) != 0) { in uart_intr()
435 if (ipend & SER_INT_OVERRUN) in uart_intr()
437 if (ipend & SER_INT_BREAK) in uart_intr()
439 if (ipend & SER_INT_RXREADY) in uart_intr()
441 if (ipend & SER_INT_SIGCHG) in uart_intr()
443 if (ipend & SER_INT_TXIDLE) in uart_intr()
458 uart_bus_ihand(device_t dev, int ipend) in uart_bus_ihand() argument
461 switch (ipend) { in uart_bus_ihand()