Lines Matching refs:termios
615 struct ktermios *termios, in s3c24xx_serial_set_termios() argument
630 termios->c_cflag &= ~(HUPCL | CMSPAR); in s3c24xx_serial_set_termios()
631 termios->c_cflag |= CLOCAL; in s3c24xx_serial_set_termios()
637 baud = uart_get_baud_rate(port, termios, old, 0, 115200*8); in s3c24xx_serial_set_termios()
661 switch (termios->c_cflag & CSIZE) { in s3c24xx_serial_set_termios()
684 if (termios->c_cflag & CSTOPB) in s3c24xx_serial_set_termios()
687 umcon = (termios->c_cflag & CRTSCTS) ? S3C2410_UMCOM_AFC : 0; in s3c24xx_serial_set_termios()
689 if (termios->c_cflag & PARENB) { in s3c24xx_serial_set_termios()
690 if (termios->c_cflag & PARODD) in s3c24xx_serial_set_termios()
714 uart_update_timeout(port, termios->c_cflag, baud); in s3c24xx_serial_set_termios()
720 if (termios->c_iflag & INPCK) in s3c24xx_serial_set_termios()
727 if (termios->c_iflag & IGNPAR) in s3c24xx_serial_set_termios()
729 if (termios->c_iflag & IGNBRK && termios->c_iflag & IGNPAR) in s3c24xx_serial_set_termios()
735 if ((termios->c_cflag & CREAD) == 0) in s3c24xx_serial_set_termios()
937 struct ktermios *termios; in s3c24xx_serial_cpufreq_transition() local
948 termios = tty->termios; in s3c24xx_serial_cpufreq_transition()
950 if (termios == NULL) { in s3c24xx_serial_cpufreq_transition()
955 s3c24xx_serial_set_termios(uport, termios, NULL); in s3c24xx_serial_cpufreq_transition()