Searched refs:baud (Results 1 - 25 of 30) sorted by relevance

12

/netbsd-6-1-5-RELEASE/sys/arch/landisk/stand/boot/
H A Dcons.h45 void scif_init(unsigned int baud);
/netbsd-6-1-5-RELEASE/sys/arch/evbarm/stand/board/
H A Depcom.c55 unsigned long baud, pwrcnt; local
64 baud = EPCOMSPEED2BRD(CONSPEED);
65 EPCOM_WRITE(LinCtrlLow, baud & 0xff);
66 EPCOM_WRITE(LinCtrlMid, baud >> 8);
/netbsd-6-1-5-RELEASE/crypto/external/bsd/openssh/dist/
H A Dttymodes.c72 * Converts POSIX speed_t to a baud rate. The values of the
162 * Converts a numeric baud rate to a POSIX speed_t.
165 baud_to_speed(int baud) argument
167 switch (baud) {
284 int baud; local
312 /* Store input and output baud rates. */
313 baud = speed_to_baud(cfgetospeed(&tio));
315 buffer_put_int(&buf, baud);
316 baud = speed_to_baud(cfgetispeed(&tio));
318 buffer_put_int(&buf, baud);
352 int opcode, baud; local
[all...]
/netbsd-6-1-5-RELEASE/sys/dev/marvell/
H A Dgtmpscvar.h133 compute_cdv(unsigned int baud) argument
137 if (baud == 0)
139 cdv = (GT_MPSC_FREQUENCY / (baud * GTMPSC_CLOCK_DIVIDER) + 1) / 2 - 1;
H A Dcom_mv.c142 mvuart_cnattach(bus_space_tag_t iot, bus_addr_t addr, int baud, argument
149 return comcnattach1(&regs, baud, sysfreq, COM_TYPE_16550_NOERS, mode);
/netbsd-6-1-5-RELEASE/external/gpl3/gdb/dist/sim/bfin/
H A Ddv-bfin_spi.c46 bu16 BFIN_MMR_16(baud);
104 case mmr_offset(baud):
142 case mmr_offset(baud):
/netbsd-6-1-5-RELEASE/sys/dev/usb/
H A Ducycom.c632 uint32_t baud; local
670 baud = t->c_ispeed;
671 DPRINTF(("ucycomparam: baud=%d\n", baud));
709 err = ucycom_configure(sc, baud, cfg);
861 ucycom_configure(struct ucycom_softc *sc, uint32_t baud, uint8_t cfg) argument
866 switch (baud) {
877 * Stock chips only support standard baud rates in the 600 - 57600
889 DPRINTF(("ucycom_configure: setting %d baud, %d-%c-%d (%d)\n", baud,
1092 int err, cfg, baud; local
[all...]
/netbsd-6-1-5-RELEASE/usr.sbin/memswitch/
H A Dmethods.c456 int baud, bit, parity, stop, flow; local
465 baud = atoi_(&p);
471 if (baud == bauds[i])
474 warnx("%d: Invalid speed", baud);
477 baud = i;
539 baud);
729 const char *baud, *stop; local
746 baud = bauds[v & 0x000f];
751 sprintf(str, "%s,%c,%c,%s,%c", baud, bit, parity, stop, flow);
/netbsd-6-1-5-RELEASE/sys/arch/mips/alchemy/dev/
H A Dcom_aubus.c111 * processor frequency). The actual baud rate of the interface will
197 com_aubus_cnattach(bus_addr_t addr, int baud) argument
209 return comcnattach1(&regs, baud, sysfreq, COM_TYPE_AU1x00, CONMODE);
/netbsd-6-1-5-RELEASE/sys/arch/ews4800mips/dev/
H A Dewsms.c181 aprint_normal(": baud rate %d\n", EWSMS_BAUD);
193 u_int baud; local
201 baud = EWSMS_BAUD;
203 baud = EWSMS_BAUD1;
204 zs_set_speed(cs, baud);
/netbsd-6-1-5-RELEASE/usr.bin/tip/aculib/
H A Dcourier.c172 unsigned int baud; member in struct:baud_msg
229 (void)cfsetospeed(&cntrl, bm->baud);
230 (void)cfsetispeed(&cntrl, bm->baud);
H A Dt3000.c171 unsigned int baud; member in struct:tbaud_msg
237 (void)cfsetospeed(&cntrl, bm->baud);
238 (void)cfsetispeed(&cntrl, bm->baud);
/netbsd-6-1-5-RELEASE/distrib/utils/sysinst/arch/i386/
H A Dmsg.md.en62 message console_com {Serial port com%d at %d baud}
72 message serial_baud_rate {Set serial baud rate}
H A Dmsg.md.fr62 message console_com {Port s�rie com%d, baud rate %d}
H A Dmsg.md.de62 message console_com {Serielle Konsole an com%d mit %d baud}
H A Dmsg.md.es62 message console_com {Puerto serie en com%D en %d baud}
/netbsd-6-1-5-RELEASE/external/gpl3/gdb/dist/gdb/testsuite/config/
H A Dmonitor.exp89 if [target_info exists baud] {
90 gdb_test "set remotebaud [target_info baud]" "" ""
/netbsd-6-1-5-RELEASE/sys/arch/i386/stand/lib/
H A Dcomio.S27 # Initialize the serial port (dl) to 9600 baud, 8N1.
/netbsd-6-1-5-RELEASE/libexec/getty/
H A Dsubr.c626 * baud rate. This string indicates the user's actual speed.
649 char c, baud[20], *type = "default"; local
654 for (len = 0; len < sizeof (baud) - 1; len++) {
662 baud[len] = c;
664 baud[len] = '\0';
666 if (strcmp(ps->ps_baud, baud) == 0) {
675 * This auto-baud speed select mechanism is written for the Micom 600
686 char c, *type = "9600-baud";
701 case 0200: /* 300-baud */
702 type = "300-baud";
[all...]
/netbsd-6-1-5-RELEASE/sys/arch/evbppc/ev64260/
H A Dmachdep.c303 const int baud = 9600; local
323 BRG_BCR_EN | GT_MPSC_CLOCK_SOURCE | compute_cdv(baud));
326 MPSC_CONSOLE, brg, baud,
/netbsd-6-1-5-RELEASE/external/gpl3/gdb/dist/sim/m68hc11/
H A Ddv-m68hc11sio.c42 - baud rate emulation
409 { M6811_TCLR, "TCLR ", "Clear baud rate (test mode)" },
410 { M6811_SCP1, "SCP1 ", "SCI baud rate prescaler select (SCP1)" },
411 { M6811_SCP0, "SCP0 ", "SCI baud rate prescaler select (SCP0)" },
439 sim_io_printf (sd, " (%ld baud)\n",
560 long baud; local
585 baud = (cpu->cpu_frequency / 4) / divisor;
587 HW_TRACE ((me, "divide rate %ld, baud rate %ld",
588 divisor, baud));
/netbsd-6-1-5-RELEASE/sys/sys/
H A Ddisklabel_rdb.h113 u_long baud; /* 17: serial handler baud rate */ member in struct:ados_environ
/netbsd-6-1-5-RELEASE/sys/dev/pci/
H A Doboe.c732 oboe_setbaud(struct oboe_softc *sc, int baud) argument
736 DPRINTF(("oboe: setting baud to %d\n", baud));
740 switch (baud) {
750 DPRINTF(("oboe: cannot set speed to %d\n", baud));
759 sc->sc_speed = baud;
/netbsd-6-1-5-RELEASE/external/bsd/ntp/dist/ntpd/
H A Drefclock_chu.c209 #define SPEED232 B300 /* uart speed (300 baud) */
213 #define SPEED232 B300 /* UART speed (300 baud) */
392 double baud; /* baud interval */ member in struct:chuunit
719 * This routine implements a 300-baud Bell 103 modem with mark 2225 Hz
722 * decoder samples the baseband signal at eight times the baud rate and
840 up->baud += 1. / SECOND;
841 if (up->baud > 1. / (BAUD * 8.)) {
842 up->baud -= 1. / (BAUD * 8.);
/netbsd-6-1-5-RELEASE/sys/arch/atari/dev/
H A Dser.c1386 serinit(int baud) argument
1388 int ospeed = serspeed(baud);
1403 serinitcons(int baud) argument
1406 serinit(baud);

Completed in 286 milliseconds

12