summaryrefslogtreecommitdiffstats
path: root/sys/dev/usb/serial/umct.c
Commit message (Collapse)AuthorAgeFilesLines
* Revert r239178 and implement two new functions, namelyhselasky2012-08-151-9/+9
| | | | | | | | | | | "device_free_softc()" and "device_claim_softc()", to allow USB serial drivers refcounting the softc. These functions are used to grab the softc from auto-free and to free the softc back to the correct malloc type, respectivly. Discussed with: jhb MFC after: 2 weeks
* Remove unused structure field.hselasky2012-08-101-4/+0
| | | | MFC after: 2 weeks
* Take advantage of new UCOM and bus functionality so thathselasky2012-08-101-2/+26
| | | | | | | | | | | the device_detach() function doesn't block on UCOM device drivers until the TTY handle is closed by the userspace application. This is implemented by a postpone of the softc free where the UCOM structures reside until the TTY references are gone. Discussed with: kib, ed MFC after: 2 weeks
* - Move all USB device ID arrays into so-called sections,hselasky2011-06-241-1/+1
| | | | | | | | | | | | sorted according to the mode which they support: host, device or dual mode - Add generic tool to extract these data: tools/bus_autoconf Discussed with: imp Suggested by: Robert Millan <rmh@debian.org> PR: misc/157903 MFC after: 14 days
* Remove unneeded includes of <sys/linker_set.h>. Other headers that usejhb2011-01-111-1/+0
| | | | | | it internally contain nested includes. Reviewed by: bde
* Implement ucom_set_pnpinfo_usb() providing ttyname and port numbern_hibma2010-11-051-0/+2
| | | | | | | | | | | | | | information through devd. My E220 now produces the notification (1 line): +u3g0 at bus=1 hubaddr=1 port=0 devaddr=2 interface=0 \ vendor=0x12d1 product=0x1003 devclass=0x00 devsubclass=0x00 \ sernum="" release=0x0000 intclass=0xff intsubclass=0xff \ ttyname=U0 ttyports=2 on uhub0 Note: serial/ufoma and net/uhso still provide port number and tty name (uhso only) information through sysctls, which should now be removed. Reviewed by: hpselasky
* - Simplify the way unit/subunit allocation is done in ucom.n_hibma2010-11-031-1/+1
| | | | | | | | | | | | | | | | | | - hw.usb.ucom.cons_unit is now split into hw.usb.ucom.cons_unit/...cons_subunit. Note: The tunable/sysctl hw.usb.ucom.cons_unit needs to be reviewed if a) a console was defined a USB serial devices, and a USB device with more than 1 subunit is present, and this device is attached before the device functioning as a console or b) a console was defined on a USB device with more than 1 subunit Reviewed by: hps MFC after: 2 weeks
* Add missing MODULE_VERSION() definitions, this resolves problems aroundthompsa2010-09-011-0/+1
| | | | | | | | duplicate module loads. PR: usb/125736 Submitted by: danger, mm Reviewed by: hselasky
* Remove overuse of exclamation marks in kernel printfs, there mere fact athompsa2009-11-261-1/+1
| | | | | | message has been printed is enough to get someones attention. Also remove the line number for DPRINTF/DPRINTFN, it already prints the funtion name and a unique message.
* Add back endpoint swap detection that was disabled in an earlier driverthompsa2009-09-281-10/+33
| | | | | | conversion. Submitted by: Hans Petter Selasky
* Add experimental support for usb serial console and polled mode during DDB.thompsa2009-09-281-0/+9
| | | | Submitted by: Hans Petter Selasky
* - Make struct usb_xfer opaque so that drivers can not access the internalsthompsa2009-06-231-33/+58
| | | | - Reduce the number of headers needed for a usb driver, the common case is just usb.h and usbdi.h
* s/usb2_/usb_|usbd_/ on all function names for the USB stack.thompsa2009-06-151-32/+32
|
* Rename usb pipes to endpoints as it better represents what they are, and structthompsa2009-06-071-1/+1
| | | | usb_pipe may be used for a different purpose later on.
* s/usb2_/usb_/ on all typedefs for the USB stack.thompsa2009-05-291-4/+4
|
* s/usb2_/usb_/ on all C structs for the USB stack.thompsa2009-05-281-34/+34
|
* Use the correct usb config number on attach.thompsa2009-05-211-1/+1
| | | | | Reported by: Greg Rivers Submitted by: Hans Petter Selasky
* - rename usb2_mode to usb_mode [1]thompsa2009-05-211-1/+1
| | | | | | - change variable types to use the enum Submitted by: Hans Petter Selasky [1]
* MFp4 //depot/projects/usb@159909thompsa2009-04-051-9/+9
| | | | | | | | | | | | | - make usb2_power_mask_t 16-bit - remove "usb2_config_sub" structure from "usb2_config". To compensate for this "usb2_config" has a new field called "usb_mode" which select for which mode the current xfer entry is active. Options are: a) Device mode only b) Host mode only (default-by-zero) c) Both modes. This change was scripted using the following sed script: "s/\.mh\././g". - the standard packet size table in "usb_transfer.c" is now a function, hence the code for the function uses less memory than the table itself. Submitted by: Hans Petter Selasky
* MFp4 //depot/projects/usb @159430thompsa2009-03-201-1/+0
| | | | | | | | | | - Move tunable defines into usb_core.h and dependancy towards usb_defs.h - Leave hardcoded defines in "usb_defs.h". - Allow overriding all tunable defines. - Add more customisable typedefs. - Correct maximum device number. Submitted by: Hans Petter Selasky
* Rename the ushub device class back to uhub as it was in the old usb stack,thompsa2009-03-021-1/+1
| | | | | | moused(8) looks for "uhub/ums" to decide if needs to load the module. Reported by: Garrett Cooper
* Move the serial drivers from Giant to using their own mutexs.thompsa2009-03-021-3/+5
| | | | Tested with: u3g, ubser, uplcom
* Also use proper capitalisation of FreeBSD in other source files.ed2009-02-241-1/+1
| | | | Approved by: thompsa
* Move the new USB stack into its new home.thompsa2009-02-231-0/+579
OpenPOWER on IntegriCloud