diff options
author | Patrick Wildt <patrick@cvs.openbsd.org> | 2020-04-27 21:36:08 +0000 |
---|---|---|
committer | Patrick Wildt <patrick@cvs.openbsd.org> | 2020-04-27 21:36:08 +0000 |
commit | b1be0285ac170f59a6230af4d577d7b87ba447b0 (patch) | |
tree | 453baf2e4b2c75036a911336f89bc9c2ba82907a | |
parent | a7711f404fb8c3e97d742b1862c7f998e28c4119 (diff) |
tcpci(4)
-rw-r--r-- | share/man/man4/Makefile | 4 | ||||
-rw-r--r-- | share/man/man4/iic.4 | 6 | ||||
-rw-r--r-- | share/man/man4/tcpci.4 | 46 |
3 files changed, 52 insertions, 4 deletions
diff --git a/share/man/man4/Makefile b/share/man/man4/Makefile index 5d3f4cf0430..2d9a57d3814 100644 --- a/share/man/man4/Makefile +++ b/share/man/man4/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.771 2020/04/26 15:11:15 patrick Exp $ +# $OpenBSD: Makefile,v 1.772 2020/04/27 21:36:07 patrick Exp $ MAN= aac.4 abcrtc.4 ac97.4 acphy.4 acrtc.4 \ acpi.4 acpiac.4 acpials.4 acpiasus.4 acpibat.4 \ @@ -74,7 +74,7 @@ MAN= aac.4 abcrtc.4 ac97.4 acphy.4 acrtc.4 \ ssdfb.4 st.4 ste.4 stge.4 sti.4 stp.4 sv.4 switch.4 sxiccmu.4 \ sxidog.4 sximmc.4 sxipio.4 sxipwm.4 sxirsb.4 sxirtc.4 sxisid.4 \ sxisyscon.4 sxitemp.4 sxitwi.4 sym.4 sypwr.4 syscon.4 \ - tcic.4 tcp.4 termios.4 tht.4 ti.4 tipmic.4 tl.4 \ + tcic.4 tcp.4 tcpci.4 termios.4 tht.4 ti.4 tipmic.4 tl.4 \ tlphy.4 thmc.4 tpm.4 tpmr.4 tqphy.4 trm.4 trunk.4 tsl.4 tty.4 \ tun.4 tap.4 twe.4 \ txp.4 txphy.4 uaudio.4 uark.4 uath.4 ubcmtp.4 uberry.4 ubsa.4 \ diff --git a/share/man/man4/iic.4 b/share/man/man4/iic.4 index 94690f3d23d..01dc7f87826 100644 --- a/share/man/man4/iic.4 +++ b/share/man/man4/iic.4 @@ -1,4 +1,4 @@ -.\" $OpenBSD: iic.4,v 1.106 2020/04/26 06:23:32 jmc Exp $ +.\" $OpenBSD: iic.4,v 1.107 2020/04/27 21:36:07 patrick Exp $ .\" .\" Copyright (c) 2004, 2006 Alexander Yurchenko <grange@openbsd.org> .\" @@ -14,7 +14,7 @@ .\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF .\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. .\" -.Dd $Mdocdate: April 26 2020 $ +.Dd $Mdocdate: April 27 2020 $ .Dt IIC 4 .Os .Sh NAME @@ -232,6 +232,8 @@ Serial Presence Detect memory Solomon Systech SSD1306/SSD1309 OLED display module .It Xr stsec 4 ST7 embedded controller +.It Xr tcpci 4 +USB Type-C Port Controller Interface .It Xr tda 4 Philips TDA8444 fan controller .It Xr thmc 4 diff --git a/share/man/man4/tcpci.4 b/share/man/man4/tcpci.4 new file mode 100644 index 00000000000..b92cdda5540 --- /dev/null +++ b/share/man/man4/tcpci.4 @@ -0,0 +1,46 @@ +.\" $OpenBSD: tcpci.4,v 1.1 2020/04/27 21:36:07 patrick Exp $ +.\" +.\" Copyright (c) 2020 Patrick Wildt <patrick@blueri.se> +.\" +.\" Permission to use, copy, modify, and distribute this software for any +.\" purpose with or without fee is hereby granted, provided that the above +.\" copyright notice and this permission notice appear in all copies. +.\" +.\" THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +.\" WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +.\" MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR +.\" ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +.\" WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +.\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF +.\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. +.\" +.Dd $Mdocdate: April 27 2020 $ +.Dt TCPCI 4 +.Os +.Sh NAME +.Nm tcpci +.Nd USB Type-C Port Controller Interface +.Sh SYNOPSIS +.Cd "tcpci* at iic?" +.Sh DESCRIPTION +The +.Nm +driver provides support for the USB Type-C Port Controller Interface. +It takes care of plug and unplug events on the USB Type-C port and discovers +the orientation of the plug so that the USB SuperSpeed pins can be routed +correctly. +Additionally it enables power on the USB Type-C port when a sink +is connected to power attached devices. +.Sh SEE ALSO +.Xr iic 4 +.Sh HISTORY +The +.Nm +driver first appeared in +.Ox 6.7 . +.Sh AUTHORS +.An -nosplit +The +.Nm +driver was written by +.An Patrick Wildt Aq Mt patrick@blueri.se . |