xref: /freebsd/share/man/man4/ucycom.4 (revision e738085b94631f90e21a49852538ac95974baf44)
162c36019SDag-Erling Smørgrav.\"-
2*e738085bSDag-Erling Smørgrav.\" Copyright (c) 2004 Dag-Erling Smørgrav
362c36019SDag-Erling Smørgrav.\" All rights reserved.
462c36019SDag-Erling Smørgrav.\"
562c36019SDag-Erling Smørgrav.\" Redistribution and use in source and binary forms, with or without
662c36019SDag-Erling Smørgrav.\" modification, are permitted provided that the following conditions
762c36019SDag-Erling Smørgrav.\" are met:
862c36019SDag-Erling Smørgrav.\" 1. Redistributions of source code must retain the above copyright
962c36019SDag-Erling Smørgrav.\"    notice, this list of conditions and the following disclaimer.
1062c36019SDag-Erling Smørgrav.\" 2. Redistributions in binary form must reproduce the above copyright
1162c36019SDag-Erling Smørgrav.\"    notice, this list of conditions and the following disclaimer in the
1262c36019SDag-Erling Smørgrav.\"    documentation and/or other materials provided with the distribution.
1362c36019SDag-Erling Smørgrav.\" 3. The name of the author may not be used to endorse or promote products
1462c36019SDag-Erling Smørgrav.\"    derived from this software without specific prior written permission.
1562c36019SDag-Erling Smørgrav.\"
1662c36019SDag-Erling Smørgrav.\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
1762c36019SDag-Erling Smørgrav.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
1862c36019SDag-Erling Smørgrav.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
1962c36019SDag-Erling Smørgrav.\" ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
2062c36019SDag-Erling Smørgrav.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
2162c36019SDag-Erling Smørgrav.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
2262c36019SDag-Erling Smørgrav.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
2362c36019SDag-Erling Smørgrav.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
2462c36019SDag-Erling Smørgrav.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
2562c36019SDag-Erling Smørgrav.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
2662c36019SDag-Erling Smørgrav.\" SUCH DAMAGE.
2762c36019SDag-Erling Smørgrav.\"
284f4acb65SEdward Tomasz Napierala.Dd April 26, 2017
2962c36019SDag-Erling Smørgrav.Dt UCYCOM 4
3062c36019SDag-Erling Smørgrav.Os
3162c36019SDag-Erling Smørgrav.Sh NAME
3262c36019SDag-Erling Smørgrav.Nm ucycom
3362c36019SDag-Erling Smørgrav.Nd device driver for Cypress CY7C63743 and CY7C64013 USB to RS232 bridges
3462c36019SDag-Erling Smørgrav.Sh SYNOPSIS
350a771a3bSChristian BruefferTo compile this driver into the kernel,
360a771a3bSChristian Bruefferplace the following line in your
370a771a3bSChristian Bruefferkernel configuration file:
380a771a3bSChristian Brueffer.Bd -ragged -offset indent
3999fc5899SMartin Wilke.Cd "device usb"
4067de2db2SVladimir Kondratyev.Cd "device hid"
4199fc5899SMartin Wilke.Cd "device ucom"
4262c36019SDag-Erling Smørgrav.Cd "device ucycom"
430a771a3bSChristian Brueffer.Ed
440a771a3bSChristian Brueffer.Pp
450a771a3bSChristian BruefferAlternatively, to load the driver as a
460a771a3bSChristian Brueffermodule at boot time, place the following line in
470a771a3bSChristian Brueffer.Xr loader.conf 5 :
480a771a3bSChristian Brueffer.Bd -literal -offset indent
490a771a3bSChristian Bruefferucycom_load="YES"
500a771a3bSChristian Brueffer.Ed
5162c36019SDag-Erling Smørgrav.Sh DESCRIPTION
5262c36019SDag-Erling SmørgravThe
5362c36019SDag-Erling Smørgrav.Nm
5462c36019SDag-Erling Smørgravdriver provides support for the Cypress CY7C63743 and CY7C64013 bridge
5562c36019SDag-Erling Smørgravchips.
5662c36019SDag-Erling SmørgravThese chips were designed to provide a low-cost transition path to USB
5762c36019SDag-Erling Smørgravfor existing RS232 devices, and have fairly limited capabilities.
5862c36019SDag-Erling Smørgrav.Pp
5962c36019SDag-Erling SmørgravThe
6062c36019SDag-Erling Smørgrav.Nm
6162c36019SDag-Erling Smørgravdriver behaves like a
6262c36019SDag-Erling Smørgrav.Xr tty 4 .
639453fd71SChristian Brueffer.Sh HARDWARE
649453fd71SChristian BruefferThe
659453fd71SChristian Brueffer.Nm
669453fd71SChristian Bruefferdriver currently supports the following devices which incorporate
679453fd71SChristian BruefferCypress USB to RS232 bridge chips:
689453fd71SChristian Brueffer.Pp
699453fd71SChristian Brueffer.Bl -bullet -compact
709453fd71SChristian Brueffer.It
719453fd71SChristian BruefferDeLorme Earthmate USB GPS receiver
729453fd71SChristian Brueffer.El
734f4acb65SEdward Tomasz Napierala.Sh FILES
74fa196deaSEdward Tomasz Napierala.Bl -tag -width "/dev/ttyU*.init" -compact
75fa196deaSEdward Tomasz Napierala.It Pa /dev/ttyU*
764f4acb65SEdward Tomasz Napieralafor callin ports
77fa196deaSEdward Tomasz Napierala.It Pa /dev/ttyU*.init
78fa196deaSEdward Tomasz Napierala.It Pa /dev/ttyU*.lock
794f4acb65SEdward Tomasz Napieralacorresponding callin initial-state and lock-state devices
804f4acb65SEdward Tomasz Napierala.Pp
81fa196deaSEdward Tomasz Napierala.It Pa /dev/cuaU*
824f4acb65SEdward Tomasz Napieralafor callout ports
83fa196deaSEdward Tomasz Napierala.It Pa /dev/cuaU*.init
84fa196deaSEdward Tomasz Napierala.It Pa /dev/cuaU*.lock
854f4acb65SEdward Tomasz Napieralacorresponding callout initial-state and lock-state devices
864f4acb65SEdward Tomasz Napierala.El
8762c36019SDag-Erling Smørgrav.Sh SEE ALSO
8862c36019SDag-Erling Smørgrav.Xr tty 4 ,
89b96fc197SEdward Tomasz Napierala.Xr ucom 4 ,
9062c36019SDag-Erling Smørgrav.Xr usb 4
919cbda590SRuslan Ermilov.Sh HISTORY
929cbda590SRuslan ErmilovThe
939cbda590SRuslan Ermilov.Nm
949cbda590SRuslan Ermilovdriver first appeared in
959cbda590SRuslan Ermilov.Fx 5.3 .
9662c36019SDag-Erling Smørgrav.Sh AUTHORS
9762c36019SDag-Erling Smørgrav.An -nosplit
9862c36019SDag-Erling SmørgravThe
9962c36019SDag-Erling Smørgrav.Nm
10062c36019SDag-Erling Smørgravdriver and this manual page were written by
1016c899950SBaptiste Daroussin.An Dag-Erling Sm\(/orgrav Aq Mt des@FreeBSD.org .
102