Lines Matching defs:sci_softc
139 struct sci_softc { struct
140 device_t sc_dev; /* boilerplate */
141 struct tty *sc_tty;
142 void *sc_si;
143 callout_t sc_diag_ch;
154 u_int sc_overflows,
155 sc_floods,
156 sc_errors; /* number of retries so far */
157 u_char sc_status[7]; /* copy of registers */
159 int sc_hwflags;
160 int sc_swflags;
161 u_int sc_fifolen; /* XXX always 0? */
163 u_int sc_r_hiwat,
164 sc_r_lowat;
165 u_char *volatile sc_rbget,
166 *volatile sc_rbput;
167 volatile u_int sc_rbavail;
168 u_char *sc_rbuf,
169 *sc_ebuf;
194 void sci_break(struct sci_softc *, int); argument