/freebsd/libexec/getty/ |
H A D | gettytab | 45 # The "NNN-baud" names are known to the special case 51 a|std.110|110-baud:\ 53 b|std.134|134.5-baud:\ 55 1|std.150|150-baud:\ 57 c|std.300|300-baud:\ 59 d|std.600|600-baud:\ 61 f|std.1200|1200-baud:\ 63 6|std.2400|2400-baud:\ 65 7|std.4800|4800-baud:\ 67 2|std.9600|9600-baud:\ [all …]
|
H A D | subr.c | 602 char c, baud[20]; in portselector() local 608 for (len = 0; len < sizeof (baud) - 1; len++) { in portselector() 616 baud[len] = c; in portselector() 618 baud[len] = '\0'; in portselector() 620 if (strcmp(ps->ps_baud, baud) == 0) { in portselector()
|
/freebsd/sys/contrib/device-tree/Bindings/serial/ |
H A D | nvidia,tegra20-hsuart.txt | 27 - nvidia,adjust-baud-rates: List of entries providing percentage of baud rate 31 When baud rate set on controller falls within the range mentioned in this 32 field, baud rate will be adjusted by percentage mentioned here. 34 Increase baud rate by 2% when set baud rate falls within range 9600 to 115200 37 Standard UART devices are expected to have tolerance for baud rate error by 39 Tegra186 chip has a known hardware issue. UART Rx baud rate tolerance level 41 corruption/invalid framing errors. Parker errata suggests adjusting baud 45 its spec) for valid range and Tegra baud rate has to be set above actual 46 Tx baud rate observed. To do this we use nvidia,adjust-baud-rates 48 As an example, consider there is deviation observed in Tx for baud rates as [all …]
|
H A D | mtk-uart.txt | 41 - "baud": The clock the baudrate is derived from 45 baud clock if the baudclk does not exist. Do not use this for new designs. 55 clock-names = "baud", "bus";
|
H A D | fsl-lpuart.txt | 21 bus/baud clock. For imx8qxp lpuart, "ipg" clock is bus clock that is used 22 to access lpuart controller registers, it also requires "baud" clock for
|
/freebsd/crypto/openssh/ |
H A D | ttymodes.c | 162 baud_to_speed(int baud) in baud_to_speed() argument 164 switch (baud) { in baud_to_speed() 349 u_int baud, u; in ssh_tty_parse_modes() local 380 if ((r = sshbuf_get_u32(buf, &baud)) != 0) in ssh_tty_parse_modes() 383 cfsetispeed(&tio, baud_to_speed(baud)) == -1) in ssh_tty_parse_modes() 384 error("cfsetispeed failed for %d", baud); in ssh_tty_parse_modes() 388 if ((r = sshbuf_get_u32(buf, &baud)) != 0) in ssh_tty_parse_modes() 391 cfsetospeed(&tio, baud_to_speed(baud)) == -1) in ssh_tty_parse_modes() 392 error("cfsetospeed failed for %d", baud); in ssh_tty_parse_modes()
|
/freebsd/sys/contrib/device-tree/src/arm/amlogic/ |
H A D | meson6.dtsi | 57 clock-names = "xtal", "pclk", "baud"; 62 clock-names = "xtal", "pclk", "baud"; 67 clock-names = "xtal", "pclk", "baud"; 72 clock-names = "xtal", "pclk", "baud";
|
/freebsd/sys/contrib/device-tree/Bindings/spi/ |
H A D | spi_oc_tiny.txt | 8 - baud-width: width, in bits, of the programmable divider used to scale 11 The clock-frequency and baud-width properties are needed only if the divider
|
/freebsd/sys/contrib/device-tree/Bindings/power/reset/ |
H A D | qnap-poweroff.txt | 5 Orion5x SoCs. Sending the character 'A', at 19200 baud, tells the 8 Synology NAS devices use a similar scheme, but a different baud rate,
|
/freebsd/sys/contrib/device-tree/src/arc/ |
H A D | vdk_axs10x_mb.dtsi | 60 baud = <115200>; 70 baud = <115200>; 80 baud = <115200>;
|
/freebsd/sys/contrib/device-tree/src/arm/mediatek/ |
H A D | mt8135.dtsi | 227 clock-names = "baud", "bus"; 236 clock-names = "baud", "bus"; 245 clock-names = "baud", "bus"; 254 clock-names = "baud", "bus";
|
/freebsd/usr.bin/tip/libacu/ |
H A D | courier.c | 178 int baud; member 234 cfsetospeed(&cntrl, bm->baud); in cour_connect() 235 cfsetispeed(&cntrl, bm->baud); in cour_connect()
|
H A D | t3000.c | 184 int baud; member 249 cfsetospeed(&cntrl, bm->baud); in t3000_connect() 250 cfsetispeed(&cntrl, bm->baud); in t3000_connect()
|
/freebsd/sys/dev/uart/ |
H A D | uart_dev_imx.c | 116 u_int baud, blo, bhi, i; in imx_uart_getbaud() local 136 baud = ((rate / 16 ) * ubir) / ubmr; in imx_uart_getbaud() 138 blo = (baud * 100) / 103; in imx_uart_getbaud() 139 bhi = (baud * 100) / 97; in imx_uart_getbaud() 143 baud = rate; in imx_uart_getbaud() 148 return (baud); in imx_uart_getbaud()
|
H A D | uart_dev_pl011.c | 204 uint32_t baud; in uart_pl011_param() local 242 baud = bas->rclk * 4 / baudrate; in uart_pl011_param() 243 __uart_setreg(bas, UART_IBRD, ((uint32_t)(baud >> 6)) & IBRD_BDIVINT); in uart_pl011_param() 244 __uart_setreg(bas, UART_FBRD, (uint32_t)(baud & 0x3F) & FBRD_BDIVFRAC); in uart_pl011_param()
|
H A D | uart_dev_mu.c | 168 uint32_t baud; in uart_mu_param() local 193 baud = CPU_CLOCK / (8 * baudrate); in uart_mu_param() 197 __uart_setreg(bas, AUX_MU_BAUD_REG, ((uint32_t)(baud & 0xFFFF))); in uart_mu_param()
|
/freebsd/sys/dev/usb/serial/ |
H A D | ucycom.c | 438 ucycom_cfg_write(struct ucycom_softc *sc, uint32_t baud, uint8_t cfg) in ucycom_cfg_write() argument 457 sc->sc_temp_cfg[0] = (baud & 0xff); in ucycom_cfg_write() 458 sc->sc_temp_cfg[1] = (baud >> 8) & 0xff; in ucycom_cfg_write() 459 sc->sc_temp_cfg[2] = (baud >> 16) & 0xff; in ucycom_cfg_write() 460 sc->sc_temp_cfg[3] = (baud >> 24) & 0xff; in ucycom_cfg_write()
|
H A D | uplcom.c | 813 uplcom_encode_baud_rate_divisor(uint8_t *buf, unsigned baud) in uplcom_encode_baud_rate_divisor() argument 825 if (baud == 0) in uplcom_encode_baud_rate_divisor() 826 baud = 1; in uplcom_encode_baud_rate_divisor() 828 mantissa = baseline / baud; in uplcom_encode_baud_rate_divisor() 849 baud = (baseline / mantissa) >> (exponent << 1); in uplcom_encode_baud_rate_divisor() 850 DPRINTF("real baud rate will be %u\n", baud); in uplcom_encode_baud_rate_divisor() 852 return baud; in uplcom_encode_baud_rate_divisor()
|
/freebsd/sys/contrib/device-tree/src/mips/ingenic/ |
H A D | jz4780.dtsi | 287 clock-names = "baud", "module"; 300 clock-names = "baud", "module"; 313 clock-names = "baud", "module"; 326 clock-names = "baud", "module"; 339 clock-names = "baud", "module";
|
H A D | jz4770.dtsi | 326 clock-names = "baud", "module"; 339 clock-names = "baud", "module"; 352 clock-names = "baud", "module"; 365 clock-names = "baud", "module";
|
/freebsd/usr.bin/tip/ |
H A D | README | 48 default baud rate is 1200. To use it do: 54 for 300 baud.
|
/freebsd/sys/arm/freescale/vybrid/ |
H A D | vf_uart.c | 199 uart_reinit(struct uart_softc *sc, int clkspeed, int baud) in uart_reinit() argument 224 sbr = (uint16_t) (clkspeed / (baud * 16)); in uart_reinit() 225 brfa = (clkspeed / baud) - (sbr * 16); in uart_reinit()
|
/freebsd/sys/contrib/device-tree/src/arm64/mediatek/ |
H A D | mt7981b.dtsi | 104 clock-names = "baud", "bus"; 115 clock-names = "baud", "bus"; 126 clock-names = "baud", "bus";
|
H A D | mt6779.dtsi | 215 clock-names = "baud", "bus"; 225 clock-names = "baud", "bus"; 235 clock-names = "baud", "bus";
|
/freebsd/sys/contrib/device-tree/Bindings/ |
H A D | chosen.txt | 55 <baud>{<parity>{<bits>{<flow>}}} 59 baud - baud rate in decimal
|