summaryrefslogtreecommitdiffstats
path: root/sys/dev/usb/serial
Commit message (Collapse)AuthorAgeFilesLines
* MFC r313287:ian2017-03-023-6/+44
| | | | | | | | | | | | | | | | | | | | | Add tsw_busy support to usb_serial (ucom). The tty layer uses tsw_busy to poll for busy/idle status of the transmitter hardware during close() and tcdrain(). The ucom layer defines ULSR_TXRDY and ULSR_TSRE bits for the line status register; when both are set, the transmitter is idle. Not all chip drivers maintain those bits in the sc_lsr field, and if the bits never get set the transmitter will always appear busy, causing hangs in tcdrain(). These changes add a new sc_flag bit, UCOM_FLAG_LSRTXIDLE. When this flag is set, ucom_busy() uses the lsr bits to return busy vs. idle state, otherwise it always returns idle (which is effectively what happened before this change because tsw_busy wasn't implemented). For the uftdi chip driver, these changes stop masking out the tx idle bits when processing the status register (because now they're useful), and it calls ucom_use_lsr_txbits() to indicate the bits are maintained by the driver and can be used by ucom_busy().
* MFC r303347, r303350, r303351, r303353:ian2017-03-0110-11/+58
| | | | | | | | | | Translate modem status reg bits from ns16550 to SER_* values used by the tty layer. Annotate the usb-serial drivers which always return 0 for line status, so that it'll be easier to find and fix them in the future. Also annotate a switch case fall-through per style(9).
* MFC r303346:ian2017-03-011-3/+5
| | | | | | | | Actually return line status register values from umoscom_cfg_get_status(). The hardware delivers ns16550-compatible status bits, which is what the usb_serial code expects, so no need for translation, no need for a local variable to hold a temporary lsr result.
* MFC r306478:hselasky2016-10-101-5/+6
| | | | | | | | | Add new USB ID. While at it remove some whitespaces. Submitted by: Jose Luis Duran <jlduran@gmail.com> PR: 213110
* MFC r306205:loos2016-09-271-0/+1
| | | | | | | Add the ID for the Huawei ME909S LTE modem. Submitted by: svenauhagen at github Sponsored by: Rubicon Communications, LLC (Netgate)
* MFC r305388:dim2016-09-071-2/+2
| | | | | | | | | | | | | | | | | With clang 3.9.0, compiling uplcom results in the following warnings: sys/dev/usb/serial/uplcom.c:543:29: error: implicit conversion from 'int' to 'int8_t' (aka 'signed char') changes value from 192 to -64 [-Werror,-Wconstant-conversion] if (uplcom_pl2303_do(udev, UT_READ_VENDOR_DEVICE, UPLCOM_SET_REQUEST, 0x8484, 0, 1) ~~~~~~~~~~~~~~~~ ^~~~~~~~~~~~~~~~~~~~~ sys/dev/usb/usb.h:179:53: note: expanded from macro 'UT_READ_VENDOR_DEVICE' #define UT_READ_VENDOR_DEVICE (UT_READ | UT_VENDOR | UT_DEVICE) ~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~ This is because UT_READ is 0x80, so the int8_t argument is wrapped to a negative value. Fix this by using uint8_t instead. Reviewed by: imp, hselasky Differential Revision: https://reviews.freebsd.org/D7776
* dev/usb: minor spelling fixes in comments.pfg2016-05-023-18/+18
| | | | | | No functional change. Reviewed by: hselasky
* dev/usb: use our nitems() macro when param.h is available.pfg2016-04-194-4/+4
| | | | Reviewed by: hselasky
* Add more DPRINTF() to the ftdi driver. Now everything that can change theian2016-04-051-8/+35
| | | | | chip's state has a DPRINTF, with things that happen repeatedly at debug=2 level and things that happen frequently (like per-transfer IO) at debug=3.
* Make PPS ASSERT/CLEAR events match the RS-232 signal levels as per RFC 2783.ian2016-01-171-21/+24
| | | | | | | | | | | Previously the polarity was for TTL levels, which are the reverse of RS-232. Also add handling of the UART_PPS_INVERT_PULSE option bit in the sysctl value, the same as was recently added to uart(4), so that people using TTL level connections can request a logical inverting of the signal. Use the named constants from the new dev/uart/uart_ppstypes.h for the pps capture modes and option bits.
* Flag the first port on a Sheevaplug ftdi serial device as jtag.ian2015-12-161-1/+1
|
* Create a USB_PNP_INFO and use it to export the existing PNPimp2015-12-1118-38/+57
| | | | | | | | | | | tables. Some drivers needed some slight re-arrangement of declarations to accommodate this. Change the USB pnp tables slightly to allow better compatibility with the system by moving linux driver info from start of each entry to the end. All other PNP tables in the system have the per-device flags and such at the end of the elements rather that at the beginning. Differential Review: https://reviews.freebsd.org/D3458
* Add support for Sierra MC7355 cardgarga2015-09-151-0/+1
| | | | | | | | Submitted by: Jeremy Porter <jporter@netgate.com> Approved by: loos Obtained from: pfSense MFC after: 1 week Sponsored by: Rubicon Communications (Netgate)
* Update USB quirk.hselasky2015-09-101-1/+1
| | | | | MFC after: 1 month PR: 202968
* Add new USB ID.hselasky2015-09-091-0/+1
| | | | | MFC after: 1 month PR: 202968
* Remove duplicate entry for Sierra Wireless Aircard 875garga2015-09-081-1/+1
| | | | | | Approved by: loos MFC after: 3 days Sponsored by: Rubicon Communications (Netgate)
* Support the ZTE MF112 HSUPA 3G USB stick.gavin2015-08-291-0/+1
| | | | MFC after: 1 week
* Return the current ftdi bitbang mode with the UFTDIIOC_GET_BITMODE ioctl.ian2015-08-061-4/+12
| | | | | | | | | | | The ftdi chip itself has a "get bitmode" command that doesn't actually return the current bitmode, just a snapshot of the gpio lines. The chip apparently has no way to provide the current bitmode. This implements the functionality at the driver level. The driver starts out assuming the chip is in UART mode (which it will be, coming out of reset) and keeps track of every successful set-bitmode operation so that it can always return the current mode with UFTDIIOC_GET_BITMODE.
* Add support to the uftdi driver for reading and writing the serial eepromian2015-08-062-1/+89
| | | | that can be attached to the chips, via ioctl() calls.
* Add new USB ID.hselasky2015-05-051-0/+1
| | | | | PR: 199843 MFC after: 1 week
* Add support for Sierra MC7354 cardgarga2015-05-051-0/+1
| | | | | | | | Author: Jeremy Porter <jporter@netgate.com> Differential Revision: https://reviews.freebsd.org/D2444 Reviewed by: gnn, hselasky MFC after: 1 week Sponsored by: Netgate
* Implement a mechanism for making changes in the kernel<->driver PPSian2015-05-041-2/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | interface without breaking ABI or API compatibility with existing drivers. The existing data structures used to communicate between the kernel and driver portions of PPS processing contain no spare/padding fields and no flags field or other straightforward mechanism for communicating changes in the structures or behaviors of the code. This makes it difficult to MFC new features added to the PPS facility. ABI compatibility is important; out-of-tree drivers in module form are known to exist. (Note that the existing api_version field in the pps_params structure must contain the value mandated by RFC 2783 and any RFCs that come along after.) These changes introduce a pair of abi-version fields which are filled in by the driver and the kernel respectively to indicate the interface version. The driver sets its version field before calling the new pps_init_abi() function. That lets the kernel know how much of the pps_state structure is understood by the driver and it can avoid using newer fields at the end of the structure that it knows about if the driver is a lower version. The kernel fills in its version field during the init call, letting the driver know what features and data the kernel supports. To implement the new version information in a way that is backwards compatible with code from before these changes, the high bit of the lightly-used 'kcmode' field is repurposed as a flag bit that indicates the driver is aware of the abi versioning scheme. Basically if this bit is clear that indicates a "version 0" driver and if it is set the driver_abi field indicates the version. These changes also move the recently-added 'mtx' field of pps_state from the middle to the end of the structure, and make the kernel code that uses this field conditional on the driver being abi version 1 or higher. It changes the only driver currently supplying the mtx field, usb_serial, to use pps_init_abi(). Reviewed by: hselasky@
* The "get latency" and "get bitmode" device commands are read operations,ian2015-04-101-2/+2
| | | | not writes.
* Switch polarity of PPS events.hselasky2015-03-081-3/+8
| | | | | | PR: 196897 Submitted by: ian @ MFC after: 1 week
* Use correct mode variable for PPS support.hselasky2015-03-071-2/+2
| | | | | | PR: 196897 Submitted by: ian @ MFC after: 1 week
* Add PPS support to USB serial drivers.hselasky2015-03-072-4/+40
| | | | | | | Bump kernel version to reflect structure change. PR: 196897 MFC after: 1 week
* Add more USB IDs.hselasky2015-03-071-0/+2
| | | | | PR: 197753 MFC after: 1 week
* Add Neoway WM620 module ID.dchagin2015-02-081-0/+1
| | | | MFC after: 1 Week
* Add more USB device IDs.hselasky2015-01-161-0/+2
| | | | | | Submitted by: max.n.boyarov@gmail.com PR: 196362 MFC after: 1 week
* Add support for USB device side mode to the USB modem driver.hselasky2015-01-091-19/+134
| | | | | MFC after: 1 week Submitted by: br@
* Make a bunch of USB debug SYSCTLs tunable, so that their value(s) canhselasky2015-01-0514-14/+14
| | | | be set before the USB device(s) are probed.
* Resolve USB driver identification conflict.hselasky2014-12-151-1/+1
| | | | | Reported by: Anish Mistry <amistry@am-productions.biz> MFC after: 1 week
* Add more U3G USB IDs.hselasky2014-12-081-0/+4
| | | | | Submitted by: Benediktus Anindito <bennybroz105@gmail.com> MFC after: 1 week
* Add new USB IDs.hselasky2014-11-071-0/+2
| | | | | Submitted by: G'abor Zahemszky <gabor@zahemszky.hu> MFC after: 1 week
* Add support for new USB 3G device.hselasky2014-10-181-1/+2
| | | | | Submitted by: gabor@zahemszky.hu MFC after: 1 week
* Add support for new USB 3G device.hselasky2014-10-171-0/+2
| | | | | Submitted by: gabor@zahemszky.hu MFC after: 1 week
* Add the Dresden Elektronik deRFnode device to uftdi(4).joerg2014-10-161-0/+1
| | | | MFC after: 1 week
* Add new USB IDs.hselasky2014-09-191-0/+2
| | | | | PR: 193775 MFC after: 1 week
* Workaround for receiving Voice Calls using the E1750 dongle fromhselasky2014-09-121-3/+14
| | | | | | | | | | | Huawei. It might appear as if the firmware is allocating memory blocks according to the USB transfer size and if there is initially a lot of data, like at the answering machine prompt, it simply dies without any apparent reason. The simple workaround for this is to force a zero length packet at hardware level after every 512 bytes of data. This will force the other side to use smaller memory blocks aswell. MFC after: 1 week
* don't OR integer error values together as this does not make sense.n_hibma2014-08-051-1/+2
| | | | Instead bail on the first failed command.
* Add a second Huawei SCSI eject command as USB mode switch config filesn_hibma2014-08-051-1/+7
| | | | | | | | | sometimes use one or the other. Maybe newer Huawei modems switched. Add a quirk for it as well. PR: 145319 Submitted by: rozhuk.im gmail.com
* Add ID for Novatel MC990D to u3g.n_hibma2014-08-051-0/+1
| | | | | | PR: 145319 Submitted by: rozhuk.im gmail.com MFC after: 3 days
* Remove unused defines.n_hibma2014-08-052-11/+2
| | | | | | | | Fix some device_printf's that were missing '\n' at the end or had speling errors. PR: 145319 Submitted by: rozhuk.im gmail.com
* Avoid a divide-by-zero panic when setting the baudrate to 0.joerg2014-08-031-1/+4
| | | | MFC after: 2 weeks
* Add new device ID.hselasky2014-07-201-0/+1
| | | | | MFC after: 1 week PR: 191959
* Fix order of USB serial layer uninit. Currently module dependencyhselasky2014-07-012-2/+2
| | | | | | | | rules prevent the USB serial module to be unloaded before any client modules. This patch ensures that the "ucom_mtx" mutex is destroyed last when doing a system uninit in a monotolith build aswell. MFC after: 3 days
* Pull in r267961 and r267973 again. Fix for issues reported will follow.hselasky2014-06-282-7/+3
|
* Revert r267961, r267973:gjb2014-06-272-3/+7
| | | | | | | | | | These changes prevent sysctl(8) from returning proper output, such as: 1) no output from sysctl(8) 2) erroneously returning ENOMEM with tools like truss(1) or uname(1) truss: can not get etype: Cannot allocate memory
* Extend the meaning of the CTLFLAG_TUN flag to automatically check ifhselasky2014-06-272-7/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | there is an environment variable which shall initialize the SYSCTL during early boot. This works for all SYSCTL types both statically and dynamically created ones, except for the SYSCTL NODE type and SYSCTLs which belong to VNETs. A new flag, CTLFLAG_NOFETCH, has been added to be used in the case a tunable sysctl has a custom initialisation function allowing the sysctl to still be marked as a tunable. The kernel SYSCTL API is mostly the same, with a few exceptions for some special operations like iterating childrens of a static/extern SYSCTL node. This operation should probably be made into a factored out common macro, hence some device drivers use this. The reason for changing the SYSCTL API was the need for a SYSCTL parent OID pointer and not only the SYSCTL parent OID list pointer in order to quickly generate the sysctl path. The motivation behind this patch is to avoid parameter loading cludges inside the OFED driver subsystem. Instead of adding special code to the OFED driver subsystem to post-load tunables into dynamically created sysctls, we generalize this in the kernel. Other changes: - Corrected a possibly incorrect sysctl name from "hw.cbb.intr_mask" to "hw.pcic.intr_mask". - Removed redundant TUNABLE statements throughout the kernel. - Some minor code rewrites in connection to removing not needed TUNABLE statements. - Added a missing SYSCTL_DECL(). - Wrapped two very long lines. - Avoid malloc()/free() inside sysctl string handling, in case it is called to initialize a sysctl from a tunable, hence malloc()/free() is not ready when sysctls from the sysctl dataset are registered. - Bumped FreeBSD version to indicate SYSCTL API change. MFC after: 2 weeks Sponsored by: Mellanox Technologies
* The FTDI product ID we've been calling BEAGLEBONE is actually TI XDS100V2,ian2014-04-251-1/+2
| | | | | | | a jtag debugging product, which was used on early Beaglebone boards (later boards used a standard FTDI 2232C product ID). Change the name accordingly, and also add an entry for XDS100V3, the latest version of that product which has its own new product ID number.
OpenPOWER on IntegriCloud