Lines Matching refs:baud
168 int baud = cflag & CBAUD;
173 baud += B38400;
174 if (baud < B1200 || baud > B38400+2)
175 baud = B9600; /* use default 9600bps for non-implemented rates */
176 baud -= B1200; /* baud_table[] starts at 1200bps */
181 st_mfp.tim_dt_d = baud_table[baud];
218 int baud = cflag & CBAUD;
222 baud += B38400;
223 if (baud < B1200 || baud > B38400+2)
224 baud = B9600; /* use default 9600bps for non-implemented rates */
225 baud -= B1200; /* tables starts at 1200bps */
227 clksrc = clksrc_table[baud];
228 clkmode = clkmode_table[baud];
229 div = div_table[baud];
230 if (ATARIHW_PRESENT(TT_MFP) && baud >= 6) {
233 clkmode = baud == 6 ? 0xc0 :
234 baud == 7 ? 0x80 : /* really 76800bps */
255 SCC_WRITE(14, brgsrc_table[baud]);
256 SCC_WRITE(14, brgsrc_table[baud] | (div ? 1 : 0));
265 int baud = cflag & CBAUD;
274 baud += B38400;
275 if (baud == B4800)
277 else if (baud == B38400+2 /* 115200 */)