Lines Matching defs:exuart_softc
49 struct exuart_softc { struct
50 struct device sc_dev;
51 bus_space_tag_t sc_iot;
52 bus_space_handle_t sc_ioh;
53 struct soft_intrhand *sc_si;
54 void *sc_irq;
55 struct tty *sc_tty;
56 struct timeout sc_diag_tmo;
57 struct timeout sc_dtr_tmo;
59 uint32_t sc_rx_fifo_cnt_mask;
60 uint32_t sc_rx_fifo_full;
61 uint32_t sc_tx_fifo_full;
62 int sc_type;
66 int sc_fifo;
67 int sc_overflows;
68 int sc_floods;
69 int sc_errors;
70 int sc_halt;
71 u_int32_t sc_ulcon;
72 u_int32_t sc_ucon;
73 u_int32_t sc_ufcon;
74 u_int32_t sc_umcon;
75 u_int32_t sc_uintm;
76 u_int8_t sc_hwflags;
81 u_int8_t sc_swflags;
88 u_int8_t sc_initialize;
112 struct exuart_softc *exuart_sc(dev_t dev); argument