HomeSort by: relevance | last modified time | path
    Searched refs:lcr (Results 1 - 18 of 18) sorted by relevancy

  /src/sys/arch/bebox/stand/boot/
ns16550.c 49 com_port->lcr = 0x80; /* Access baud rate */
54 com_port->lcr = 0x03; /* 8 data, 1 stop, no parity */
ns16550.h 42 unsigned char lcr; /* 3 */ member in struct:NS16550
  /src/sys/arch/prep/stand/boot/
ns16550.c 49 com_port->lcr = 0x80; /* Access baud rate */
54 com_port->lcr = 0x03; /* 8 data, 1 stop, no parity */
ns16550.h 41 volatile unsigned char lcr; /* 3 */ member in struct:NS16550
  /src/sys/arch/rs6000/stand/boot/
ns16550.c 49 com_port->lcr = 0x80; /* Access baud rate */
54 com_port->lcr = 0x03; /* 8 data, 1 stop, no parity */
ns16550.h 41 volatile unsigned char lcr; /* 3 */ member in struct:NS16550
  /src/sys/dev/usb/
umcs.c 615 uint8_t lcr = sc->sc_ports[portno].sc_port_lcr; local in function:umcs7840_param
622 lcr |= MCS7840_UART_LCR_STOPB2;
624 lcr |= MCS7840_UART_LCR_STOPB1;
627 lcr &= ~MCS7840_UART_LCR_PARITYMASK;
629 lcr |= MCS7840_UART_LCR_PARITYON;
631 lcr = MCS7840_UART_LCR_PARITYODD;
633 lcr = MCS7840_UART_LCR_PARITYEVEN;
636 lcr &= ~MCS7840_UART_LCR_PARITYON;
639 lcr &= ~MCS7840_UART_LCR_DATALENMASK;
642 lcr |= MCS7840_UART_LCR_DATALEN5
715 uint8_t lcr = sc->sc_ports[portno].sc_port_lcr; local in function:umcs7840_break
    [all...]
uchcom.c 594 uint8_t brk, lcr; local in function:set_break
596 err = read_reg(sc, UCHCOM_REG_BREAK, &brk, UCHCOM_REG_LCR, &lcr);
602 lcr &= ~UCHCOM_LCR_TXE;
606 lcr |= UCHCOM_LCR_TXE;
608 err = write_reg(sc, UCHCOM_REG_BREAK, brk, UCHCOM_REG_LCR, lcr);
700 uint8_t lcr = 0, lcr2 = 0; local in function:set_line_control
702 err = read_reg(sc, UCHCOM_REG_LCR, &lcr, UCHCOM_REG_LCR2, &lcr2);
704 device_printf(sc->sc_dev, "cannot get LCR: %s\n",
709 lcr = UCHCOM_LCR_RXE | UCHCOM_LCR_TXE;
713 lcr |= UCHCOM_LCR_CS5
    [all...]
  /src/sys/dev/ic/
com.c 538 uint8_t lcr; local in function:com_attach_subr
691 * IIR changes into the EFR if LCR is set to LCR_EERS
702 lcr = CSR_READ_1(regsp, COM_REG_LCR);
707 lcr | LCR_DLAB);
718 CSR_WRITE_1(regsp, COM_REG_LCR, lcr);
740 lcr = CSR_READ_1(regsp, COM_REG_LCR);
742 lcr & ~LCR_DLAB);
747 CSR_WRITE_1(regsp, COM_REG_LCR, lcr | LCR_DLAB);
752 CSR_WRITE_1(regsp, COM_REG_LCR, lcr);
1520 u_char lcr = 0 local in function:cflag2lcr
1553 u_char lcr; local in function:comparam
    [all...]
  /src/sys/arch/arm/s3c2xx0/
sscom.c 999 u_char lcr = ULCON_PARITY_NONE; local in function:cflag2lcr
1002 case PARENB|PARODD: lcr = ULCON_PARITY_ODD; break;
1003 case PARENB: lcr = ULCON_PARITY_EVEN;
1008 SET(lcr, ULCON_LENGTH_5);
1011 SET(lcr, ULCON_LENGTH_6);
1014 SET(lcr, ULCON_LENGTH_7);
1017 SET(lcr, ULCON_LENGTH_8);
1021 SET(lcr, ULCON_STOP);
1023 return lcr;
1031 u_char lcr; local in function:sscomparam
    [all...]
  /src/sys/arch/evbarm/dev/
plcom.c 1374 uint32_t lcr = 0; local in function:cflag2lcr
1378 SET(lcr, PL01X_LCR_5BITS);
1381 SET(lcr, PL01X_LCR_6BITS);
1384 SET(lcr, PL01X_LCR_7BITS);
1387 SET(lcr, PL01X_LCR_8BITS);
1391 SET(lcr, PL01X_LCR_PEN);
1393 SET(lcr, PL01X_LCR_EPS);
1396 SET(lcr, PL01X_LCR_STP2);
1398 return lcr;
1408 uint32_t lcr; local in function:plcomparam
2476 uint32_t lcr; local in function:plcominit
    [all...]
  /src/sys/arch/x86/include/
cpufunc.h 215 static inline void lcr##crnum(register_t val) \
236 void lcr##crnum(register_t); \
  /src/sys/dev/pci/
if_xge.c 945 uint64_t par, lcr; local in function:xge_start
951 par = lcr = 0;
1005 lcr = TXDL_NUMTXD(ntxd) | TXDL_LGC_FIRST | TXDL_LGC_LAST;
1007 lcr |= TXDL_SFF;
1009 TXP_WCSR(TXDL_LCR, lcr);
  /src/sys/external/bsd/drm2/dist/include/drm/
drm_dp_mst_helper.h 249 u8 lcr; member in struct:drm_dp_sideband_msg_hdr
  /src/sys/arch/sandpoint/stand/altboot/
brdsetup.c 80 #define LCR 3
1149 init_uart(unsigned base, unsigned speed, uint8_t lcr)
1154 UART_WRITE(base, LCR, 0x80); /* turn on DLAB bit */
1158 UART_WRITE(base, LCR, lcr);
  /src/sys/arch/sh3/dev/
scif.c 621 lcr = ISSET(sc->sc_lcr, LCR_SBREAK) | cflag2lcr(t->c_cflag);
sci.c 524 lcr = ISSET(sc->sc_lcr, LCR_SBREAK) | cflag2lcr(t->c_cflag);
  /src/sys/external/bsd/drm2/dist/drm/
drm_dp_mst_topology.c 280 buf[idx++] = ((hdr->lct & 0xf) << 4) | (hdr->lcr & 0xf);
314 hdr->lcr = (buf[0] & 0xf);
2731 hdr->lcr = mstb->lct - 1;

Completed in 24 milliseconds