aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/usb/serial/usb_serial.c
Commit message (Expand)AuthorAgeFilesLines
* Use 115200 bps by default for serial communicationEd Maste2023-08-171-1/+1
* sys: Remove $FreeBSD$: one-line .c patternWarner Losh2023-08-161-2/+0
* spdx: Simplify BSD-2-Clause AND BSD-2-ClauseWarner Losh2023-05-121-1/+1
* spdx: The BSD-2-Clause-NetBSD identifier is obsolete, drop -NetBSDWarner Losh2023-05-121-1/+1
* spdx: The BSD-2-Clause-FreeBSD identifier is obsolete, drop -FreeBSDWarner Losh2023-05-121-1/+1
* usb(4): Substitute "unsigned int" using the equivalent and shorter "unsigned"...Hans Petter Selasky2022-10-071-7/+7
* ucom(4): Make sure the open routine is executed synchronously.Dave Baukus2022-08-301-2/+2
* ucom: s/sio/ucom/Mitchell Horne2021-12-061-1/+1
* usb: clean up empty lines in .c and .h filesMateusz Guzik2020-09-011-13/+0
* Mark more nodes as CTLFLAG_MPSAFE or CTLFLAG_NEEDGIANT (2 of many)Pawel Biernacki2020-02-151-1/+2
* Some devices take undesired actions when RTS and DTR areStephen Hurd2019-06-121-1/+2
* Make it possible (controlled via sysctl, enabled by default) to markEdward Tomasz Napierala2018-04-251-9/+63
* sys/dev: further adoption of SPDX licensing ID tags.Pedro F. Giffuni2017-11-271-0/+2
* Add tsw_busy support to usb_serial (ucom).Ian Lepore2017-02-051-0/+23
* Improve USB polling mode by not locking any mutexes, asserting anyHans Petter Selasky2016-09-141-3/+2
* Make PPS ASSERT/CLEAR events match the RS-232 signal levels as per RFC 2783.Ian Lepore2016-01-171-21/+24
* Implement a mechanism for making changes in the kernel<->driver PPSIan Lepore2015-05-041-2/+3
* Switch polarity of PPS events.Hans Petter Selasky2015-03-081-3/+8
* Use correct mode variable for PPS support.Hans Petter Selasky2015-03-071-2/+2
* Add PPS support to USB serial drivers.Hans Petter Selasky2015-03-071-4/+37
* Make a bunch of USB debug SYSCTLs tunable, so that their value(s) canHans Petter Selasky2015-01-051-1/+1
* Fix order of USB serial layer uninit. Currently module dependencyHans Petter Selasky2014-07-011-1/+1
* Pull in r267961 and r267973 again. Fix for issues reported will follow.Hans Petter Selasky2014-06-281-6/+3
* Revert r267961, r267973:Glen Barber2014-06-271-3/+6
* Extend the meaning of the CTLFLAG_TUN flag to automatically check ifHans Petter Selasky2014-06-271-6/+3
* Update NetBSD Foundation copyrights to 2-clause BSDEd Maste2014-03-181-7/+0
* Fix several typosEitan Adler2013-05-121-1/+1
* Make sure we block recursion on TTY's inwakeup callbackHans Petter Selasky2012-12-201-1/+7
* Add lock asserts instead of "auto-locking".Hans Petter Selasky2012-11-071-9/+2
* The tty_inwakeup callback appears to be called both locked and unlocked.Hans Petter Selasky2012-11-071-3/+9
* Patch to improve USB serial console.Hans Petter Selasky2012-11-071-10/+12
* Add a jitter buffer in the common USB serial driver code whichHans Petter Selasky2012-11-051-2/+77
* Add missing CTLFLAG_TUN flag to tunable sysctls in USB stack.Hans Petter Selasky2012-10-261-3/+3
* Revert r239178 and implement two new functions, namelyHans Petter Selasky2012-08-151-20/+38
* Switch unit management in UCOM to unrhdr.Hans Petter Selasky2012-08-101-67/+169
* Fix compiler warnings, mostly signed issues,Hans Petter Selasky2012-04-021-9/+4
* Export ttyname instead of ttyunit via the sysctl interface.Hans Petter Selasky2012-01-161-10/+16
* Export information about USB serial port unit and port numbersHans Petter Selasky2012-01-161-10/+37
* kern cons: introduce infrastructure for console grabbing by kernelAndriy Gapon2011-12-171-0/+12
* Mark all SYSCTL_NODEs static that have no corresponding SYSCTL_DECLs.Ed Schouten2011-11-071-1/+1
* Bugfix: The ucom detach function is sometimes called on zeroed structures.Hans Petter Selasky2011-10-101-0/+3
* Remove unneeded includes of <sys/linker_set.h>. Other headers that useJohn Baldwin2011-01-111-1/+0
* Bugfix: Set the bit that marks a device number in use.Nick Hibma2010-11-071-2/+5
* Implement ucom_set_pnpinfo_usb() providing ttyname and port numberNick Hibma2010-11-051-2/+23
* - Remove an unused entry from the softc (only used in a debugging printf).Nick Hibma2010-11-051-5/+5
* - Simplify the way unit/subunit allocation is done in ucom.Nick Hibma2010-11-031-113/+75
* Fix forwarding of Line Register Status changes to TTY layer.Hans Petter Selasky2010-10-141-0/+26
* Change USB_DEBUG to #ifdef and allow it to be turned off. Previously this hadAndrew Thompson2010-04-221-1/+1
* Check unit number and provide string name for consdev.Andrew Thompson2009-11-011-1/+6
* Add experimental support for usb serial console and polled mode during DDB.Andrew Thompson2009-09-281-4/+291