summaryrefslogtreecommitdiffstats
path: root/sys/dev/usb/uftdiio.h
Commit message (Collapse)AuthorAgeFilesLines
* Return the current ftdi bitbang mode with the UFTDIIOC_GET_BITMODE ioctl.ian2015-08-061-3/+4
| | | | | | | | | | | 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-061-0/+23
| | | | that can be attached to the chips, via ioctl() calls.
* Add ioctl(2) calls to uftdi(4) to access bitbang, MPSSE, CPU_FIFO, andian2014-04-051-0/+75
other modes supported by the FTDI serial adapter chips. In addition to adding the new ioctls, this change removes all the code that reset the chip at attach and open/close time, and also the code that turned on RTS/CTS flow control on open without any permission to do so (that was just always a bug in the driver). When FTDI chips are configured as GPIO or MPSSE or other special-purpose uses by an attached serial eeprom, the chip will power on with certain pins driven or floating, and it's important that the driver not do anything to the chip to perturb that unless it receives a specific command to do so. When used for "plain old serial comms" the chip powers on into the right mode and never needs to be reset while it's running to operate properly, so this change is transparent to most users.
OpenPOWER on IntegriCloud