Home
last modified time | relevance | path

Searched refs:baud (Results 1 – 25 of 125) sorted by relevance

12345

/freebsd-14.2/libexec/getty/
H A Dgettytab53 a|std.110|110-baud:\
55 b|std.134|134.5-baud:\
57 1|std.150|150-baud:\
59 c|std.300|300-baud:\
61 d|std.600|600-baud:\
63 f|std.1200|1200-baud:\
65 6|std.2400|2400-baud:\
67 7|std.4800|4800-baud:\
148 :tc=110-baud:
180 :pf#1:tc=9600-baud:
[all …]
H A Dsubr.c608 char c, baud[20]; in portselector() local
614 for (len = 0; len < sizeof (baud) - 1; len++) { in portselector()
622 baud[len] = c; in portselector()
624 baud[len] = '\0'; in portselector()
626 if (strcmp(ps->ps_baud, baud) == 0) { in portselector()
/freebsd-14.2/sys/contrib/device-tree/Bindings/serial/
H A Dnvidia,tegra20-hsuart.txt27 - 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
56 nvidia,adjust-baud-rates = <0 9600 100>,
[all …]
H A Dserial.yaml117 The maximum baud rate the device operates at.
121 baud rates.
126 The current baud rate the device operates at.
128 the baud rate of the slave device.
130 * device supports auto-baud
133 * device baud rate is configured by its firmware but there is no
H A Dmediatek,uart.yaml17 with 16550A, with enhancements for high speed baud rates and
65 - const: baud
118 clock-names = "baud", "bus";
H A Dmtk-uart.txt41 - "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 Dfsl-lpuart.yaml49 - description: baud clock
55 - const: baud
H A Dingenic,uart.yaml52 - const: baud
89 clock-names = "baud", "module";
H A Dfsl-lpuart.txt21 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-14.2/crypto/openssh/
H A Dttymodes.c162 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-14.2/sys/contrib/device-tree/src/arm/
H A Dmeson6.dtsi57 clock-names = "xtal", "pclk", "baud";
62 clock-names = "xtal", "pclk", "baud";
67 clock-names = "xtal", "pclk", "baud";
72 clock-names = "xtal", "pclk", "baud";
H A Dmt8135.dtsi227 clock-names = "baud", "bus";
236 clock-names = "baud", "bus";
245 clock-names = "baud", "bus";
254 clock-names = "baud", "bus";
/freebsd-14.2/sys/contrib/device-tree/Bindings/sound/
H A Dserial-midi.yaml19 Can only be set to use standard baud rates corresponding to supported rates of the
20 parent serial device. If the standard MIDI baud of 31.25 kBaud is needed
22 configure the clocks of the parent serial device so that a requested baud of 38.4 kBaud
23 resuts in the standard MIDI baud rate, and set the 'current-speed' property to 38400 (default)
/freebsd-14.2/sys/contrib/device-tree/Bindings/spi/
H A Dspi_oc_tiny.txt8 - 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-14.2/sys/contrib/device-tree/Bindings/power/reset/
H A Dqnap-poweroff.txt5 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-14.2/sys/contrib/device-tree/src/arc/
H A Dvdk_axs10x_mb.dtsi60 baud = <115200>;
70 baud = <115200>;
80 baud = <115200>;
/freebsd-14.2/sys/dev/uart/
H A Duart_dev_imx.c116 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 Duart_dev_pl011.c184 uint32_t baud; in uart_pl011_param() local
222 baud = bas->rclk * 4 / baudrate; in uart_pl011_param()
223 __uart_setreg(bas, UART_IBRD, ((uint32_t)(baud >> 6)) & IBRD_BDIVINT); in uart_pl011_param()
224 __uart_setreg(bas, UART_FBRD, (uint32_t)(baud & 0x3F) & FBRD_BDIVFRAC); in uart_pl011_param()
H A Duart_dev_mu.c169 uint32_t baud; in uart_mu_param() local
194 baud = CPU_CLOCK / (8 * baudrate); in uart_mu_param()
198 __uart_setreg(bas, AUX_MU_BAUD_REG, ((uint32_t)(baud & 0xFFFF))); in uart_mu_param()
/freebsd-14.2/usr.bin/tip/libacu/
H A Dt3000.c192 int baud; member
257 cfsetospeed(&cntrl, bm->baud); in t3000_connect()
258 cfsetispeed(&cntrl, bm->baud); in t3000_connect()
H A Dcourier.c186 int baud; member
242 cfsetospeed(&cntrl, bm->baud); in cour_connect()
243 cfsetispeed(&cntrl, bm->baud); in cour_connect()
/freebsd-14.2/sys/dev/usb/serial/
H A Ducycom.c439 ucycom_cfg_write(struct ucycom_softc *sc, uint32_t baud, uint8_t cfg) in ucycom_cfg_write() argument
458 sc->sc_temp_cfg[0] = (baud & 0xff); in ucycom_cfg_write()
459 sc->sc_temp_cfg[1] = (baud >> 8) & 0xff; in ucycom_cfg_write()
460 sc->sc_temp_cfg[2] = (baud >> 16) & 0xff; in ucycom_cfg_write()
461 sc->sc_temp_cfg[3] = (baud >> 24) & 0xff; in ucycom_cfg_write()
H A Duplcom.c814 uplcom_encode_baud_rate_divisor(uint8_t *buf, unsigned baud) in uplcom_encode_baud_rate_divisor() argument
826 if (baud == 0) in uplcom_encode_baud_rate_divisor()
827 baud = 1; in uplcom_encode_baud_rate_divisor()
829 mantissa = baseline / baud; in uplcom_encode_baud_rate_divisor()
850 baud = (baseline / mantissa) >> (exponent << 1); in uplcom_encode_baud_rate_divisor()
851 DPRINTF("real baud rate will be %u\n", baud); in uplcom_encode_baud_rate_divisor()
853 return baud; in uplcom_encode_baud_rate_divisor()
/freebsd-14.2/usr.bin/tip/
H A DREADME48 default baud rate is 1200. To use it do:
54 for 300 baud.
/freebsd-14.2/sys/contrib/device-tree/src/mips/ingenic/
H A Djz4780.dtsi287 clock-names = "baud", "module";
300 clock-names = "baud", "module";
313 clock-names = "baud", "module";
326 clock-names = "baud", "module";
339 clock-names = "baud", "module";

12345