aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/uart/uart_tty.c
Commit message (Expand)AuthorAgeFilesLines
* Some devices take undesired actions when RTS and DTR areStephen Hurd2019-06-121-3/+6
* add support for console resuming, implement it for uart, use on x86Andriy Gapon2018-05-291-1/+12
* sys/dev: further adoption of SPDX licensing ID tags.Pedro F. Giffuni2017-11-271-0/+2
* - Make the code consistent with itself style-wise and bring it closerMarius Strobl2016-01-251-8/+18
* Fix tty_drain() and, thus, TIOCDRAIN of the current tty(4) incarnationMarius Strobl2016-01-191-0/+13
* Provide the tty-layer mutex when initializing the pps api. This allowsIan Lepore2015-08-081-0/+10
* Do not prevent processes from making changes to the baudrate or theMarcel Moolenaar2014-04-051-6/+0
* Pass the actual baudrate to tty_init_console(). This defines the initialMarcel Moolenaar2014-03-111-1/+1
* Plumb the cn_grab and cn_ungrab routines down into the uartWarner Losh2013-12-211-0/+4
* kern cons: introduce infrastructure for console grabbing by kernelAndriy Gapon2011-12-171-0/+12
* In uart_tty_outwakeup(), check CTS/RTS flow control settings andMarcel Moolenaar2011-01-241-5/+10
* Remove unneeded includes of <sys/termios.h>.Ed Schouten2009-11-281-1/+0
* Fix RTS/CTS flow control, broken by the TTY overhaul. The new TTYMarcel Moolenaar2009-10-021-26/+29
* Last minute TTY API change: remove mutex argument from tty_alloc().Ed Schouten2009-05-291-1/+1
* Minor style(9) compliance change.Alexander Kabaev2008-12-271-1/+2
* Fix detaching of uart(4) devices.Ed Schouten2008-10-231-0/+13
* Integrate the new MPSAFE TTY layer to the FreeBSD operating system.Ed Schouten2008-08-201-93/+72
* Properly propagate overrun conditions to the TTY layer.Marcel Moolenaar2006-07-271-0/+2
* Convert to new console apiPoul-Henning Kamp2006-05-261-11/+2
* Don't open if we're going away.Marcel Moolenaar2006-03-301-0/+4
* MFp4:Marcel Moolenaar2006-02-241-6/+6
* - Use swi_remove() to teardown swi handlers rather thanJohn Baldwin2005-10-261-1/+1
* Reorganize the interrupt handling code a bit to make a few things cleanerJohn Baldwin2005-10-251-2/+2
* Eliminate two unused arguments to ttycreate().Poul-Henning Kamp2005-10-161-1/+1
* In uart_cnprobe(), fill in the cn_name field of the consdev structure.Marcel Moolenaar2005-05-081-0/+1
* Start each of the license/copyright comments with /*-, minor shuffle of linesWarner Losh2005-01-061-1/+1
* Remove asserts which are not correct if the port is a tty.Poul-Henning Kamp2004-10-121-7/+1
* Use generic tty code instead of (comparatively little) local copies.Poul-Henning Kamp2004-10-121-170/+52
* Use tty->t_sc to find out softc.Poul-Henning Kamp2004-09-181-8/+6
* Use ttyalloc() instead of ttymalloc(NULL)Poul-Henning Kamp2004-09-171-1/+1
* Preparation commit for the tty cleanups that will follow in the nearPoul-Henning Kamp2004-07-151-2/+2
* Define the tty methods as typedefs.Poul-Henning Kamp2004-06-301-2/+1
* Use generic support for BREAK and modem control ioctls.Poul-Henning Kamp2004-06-251-65/+27
* Use the new serial port definitions for modemsignals.Poul-Henning Kamp2004-06-241-29/+29
* save a few redundant lines by moving the retry loop further backwards.Poul-Henning Kamp2004-06-231-7/+1
* Do the dreaded s/dev_t/struct cdev */Poul-Henning Kamp2004-06-161-3/+3
* Machine generated patch which changes linedisc calls from accessingPoul-Henning Kamp2004-06-041-8/+8
* Make the remaining serial drivers call ttyioctl() rather than callingPoul-Henning Kamp2004-06-041-5/+2
* Device megapatch 4/6:Poul-Henning Kamp2004-02-211-1/+2
* Device megapatch 3/6:Poul-Henning Kamp2004-02-211-4/+0
* Use standard style for cdevsw initializtionPoul-Henning Kamp2004-02-141-9/+9
* Test the return value of UART_PARAM(). Invalid line parameters did notMarcel Moolenaar2004-02-141-1/+2
* Don't explicitly initialize d_maj in the cdevsw with MAJOR_AUTO, asMarcel Moolenaar2003-09-281-1/+0
* Catch up with the console interface change: the use of makedev() hasMarcel Moolenaar2003-09-261-3/+2
* Add support for using uart(4) for pulse capturing for the Pulse PerMarcel Moolenaar2003-09-111-2/+9
* The uart(4) driver is an universal driver for various UART hardware.Marcel Moolenaar2003-09-061-0/+569