HomeSort by: relevance | last modified time | path
    Searched refs:baud (Results 1 - 25 of 26) sorted by relevancy

1 2

  /src/sys/arch/evbarm/stand/board/
epcom.c 53 unsigned long baud, pwrcnt; local
62 baud = EPCOMSPEED2BRD(CONSPEED);
63 EPCOM_WRITE(LinCtrlLow, baud & 0xff);
64 EPCOM_WRITE(LinCtrlMid, baud >> 8);
  /src/sys/arch/landisk/stand/boot/
cons.h 45 void scif_init(unsigned int baud);
  /src/sys/dev/marvell/
gtmpscvar.h 98 int sc_brg; /* using Baud Rate Generator */
133 compute_cdv(unsigned int baud)
137 if (baud == 0)
139 cdv = (GT_MPSC_FREQUENCY / (baud * GTMPSC_CLOCK_DIVIDER) + 1) / 2 - 1;
com_mv.c 130 mvuart_cnattach(bus_space_tag_t iot, bus_addr_t addr, int baud,
137 return comcnattach1(&regs, baud, sysfreq, COM_TYPE_16550_NOERS, mode);
  /src/sys/arch/arm/sunxi/
sunxi_twi.c 93 uint32_t baud; local
96 baud = gttwsi_read_4(sc, TWSI_BAUDRATE);
104 baud = __SHIFTIN(n, TWI_CCR_CLK_N) |
110 gttwsi_write_4(sc, TWSI_BAUDRATE, baud);
  /src/usr.sbin/memswitch/
methods.c 432 int baud, bit, parity, stop, flow; local
441 baud = atoi_(&p);
447 if (baud == bauds[i])
450 warnx("%d: Invalid speed", baud);
453 baud = i;
515 baud);
685 const char *baud, *stop; local
702 baud = bauds[v & 0x000f];
707 sprintf(str, "%s,%c,%c,%s,%c", baud, bit, parity, stop, flow);
  /src/sys/dev/usb/
ucycom.c 676 uint32_t baud; local
714 baud = t->c_ispeed;
715 DPRINTF(("ucycomparam: baud=%d\n", baud));
753 err = ucycom_configure(sc, baud, cfg);
905 ucycom_configure(struct ucycom_softc *sc, uint32_t baud, uint8_t cfg)
910 switch (baud) {
921 * Stock chips only support standard baud rates in the 600 - 57600
933 DPRINTF(("ucycom_configure: setting %d baud, %d-%c-%d (%d)\n", baud,
1136 int err, cfg, baud; local
    [all...]
uslsa.c 376 uint32_t baud; local
392 baud = htole32(t->c_ospeed);
393 status = usbd_do_request(sc->sc_udev, &req, &baud);
399 __func__, baud, usbd_errstr(status));
  /src/sys/arch/mips/alchemy/dev/
com_aubus.c 108 * processor frequency). The actual baud rate of the interface will
202 com_aubus_cnattach(bus_addr_t addr, int baud)
212 return comcnattach1(&regs, baud, sysfreq, COM_TYPE_AU1x00, CONMODE);
  /src/sys/arch/ews4800mips/dev/
ewsms.c 181 aprint_normal(": baud rate %d\n", EWSMS_BAUD);
194 u_int baud; local
202 baud = EWSMS_BAUD;
204 baud = EWSMS_BAUD1;
205 zs_set_speed(cs, baud);
  /src/usr.bin/tip/aculib/
courier.c 172 unsigned int baud; member in struct:baud_msg
229 (void)cfsetospeed(&cntrl, bm->baud);
230 (void)cfsetispeed(&cntrl, bm->baud);
t3000.c 171 unsigned int baud; member in struct:tbaud_msg
237 (void)cfsetospeed(&cntrl, bm->baud);
238 (void)cfsetispeed(&cntrl, bm->baud);
  /src/usr.sbin/sysinst/arch/i386/
msg.md.en 62 message console_com {Serial port com%d at %d baud}
72 message serial_baud_rate {Set serial baud rate}
msg.md.fr 62 message console_com {Port s�rie com%d, baud rate %d}
msg.md.de 62 message console_com {Serielle Konsole an com%d mit %d baud}
msg.md.es 62 message console_com {Puerto serie en com%D en %d baud}
  /src/libexec/getty/
subr.c 627 * baud rate. This string indicates the user's actual speed.
650 char c, baud[20]; local
656 for (len = 0; len < sizeof (baud) - 1; len++) {
664 baud[len] = c;
666 baud[len] = '\0';
668 if (strcmp(ps->ps_baud, baud) == 0) {
677 * This auto-baud speed select mechanism is written for the Micom 600
689 const char *type = "9600-baud";
704 case 0200: /* 300-baud */
705 type = "300-baud";
    [all...]
  /src/sys/dev/pci/
oboe.c 704 oboe_setbaud(struct oboe_softc *sc, int baud)
708 DPRINTF(("oboe: setting baud to %d\n", baud));
712 switch (baud) {
722 DPRINTF(("oboe: cannot set speed to %d\n", baud));
731 sc->sc_speed = baud;
  /src/sys/arch/evbppc/ev64260/
machdep.c 290 const int baud = 9600; local
308 /* Setup Baud Rate Configuration Register of Baud Rate Generator */
310 BRG_BCR_EN | GT_MPSC_CLOCK_SOURCE | compute_cdv(baud));
313 MPSC_CONSOLE, brg, baud,
  /src/sys/arch/i386/stand/lib/
comio.S 27 # Initialize the serial port (dl) to 9600 baud, 8N1.
  /src/sys/sys/
disklabel_rdb.h 116 uint32_t baud; /* 17: serial handler baud rate */ member in struct:ados_environ
  /src/sys/arch/atari/dev/
ser.c 1397 serinit(int baud)
1399 int ospeed = serspeed(baud);
1414 serinitcons(int baud)
1417 serinit(baud);
  /src/usr.sbin/lpr/lpd/
printjob.c 1504 int baud; member in struct:bauds
1550 for (bp = bauds; bp->baud; bp++)
1551 if (BR == bp->baud)
1553 if (!bp->baud) {
1554 syslog(LOG_ERR, "%s: illegal baud rate %d", printer, BR);
  /src/sys/arch/arm/sa11x0/
sa11x0_com.c 1426 sacominit(bus_space_tag_t iot, bus_addr_t iobase, int baud, tcflag_t cflag,
1442 brd = SACOMSPEED(baud);
1443 sacomconsrate = baud;
  /src/sys/dev/pcmcia/
btbc.c 69 /* Default baud rate: 57600, 115200, 230400 or 460800 */
337 * send Ericsson baud rate command
340 btbc_set_baudrate(struct btbc_softc *sc, int baud)
349 switch (baud) {
644 case 0x00: /* baud rate 460800 */
647 case 0x01: /* baud rate 230400 */
650 case 0x02: /* baud rate 115200 */
653 case 0x03: /* baud rate 57600 */
662 /* Set baud on baseband */
857 /* Set baud rate *
    [all...]

Completed in 31 milliseconds

1 2