diff options
author | 2018-05-20 19:48:18 +0000 | |
---|---|---|
committer | 2018-05-20 19:48:18 +0000 | |
commit | 039dbd8eb5cb940197362474fb9725aba5b0d3a8 (patch) | |
tree | 5ee052586302e60f522590aad2ea9e34de08d9b6 | |
parent | Add tipmic(4), a driver for the "Intel" Dollar Cove TI PMIC. This is actually (diff) | |
download | wireguard-openbsd-039dbd8eb5cb940197362474fb9725aba5b0d3a8.tar.xz wireguard-openbsd-039dbd8eb5cb940197362474fb9725aba5b0d3a8.zip |
tipmic(4)
-rw-r--r-- | share/man/man4/Makefile | 4 | ||||
-rw-r--r-- | share/man/man4/tipmic.4 | 51 |
2 files changed, 53 insertions, 2 deletions
diff --git a/share/man/man4/Makefile b/share/man/man4/Makefile index 8004d8b575d..6986f7e4066 100644 --- a/share/man/man4/Makefile +++ b/share/man/man4/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.679 2018/04/22 12:47:53 jsg Exp $ +# $OpenBSD: Makefile,v 1.680 2018/05/20 19:48:18 kettenis Exp $ MAN= aac.4 ac97.4 acphy.4 acrtc.4 \ acpi.4 acpiac.4 acpials.4 acpiasus.4 acpibat.4 \ @@ -66,7 +66,7 @@ MAN= aac.4 ac97.4 acphy.4 acrtc.4 \ sm.4 smsc.4 softraid.4 spdmem.4 sdtemp.4 speaker.4 sppp.4 sqphy.4 \ st.4 ste.4 stge.4 sti.4 stp.4 sv.4 switch.4 sxiccmu.4 sximmc.4 \ sxipio.4 sxirsb.4 sxirtc.4 sxitemp.4 sxitwi.4 sym.4 sypwr.4 syscon.4 \ - tcic.4 tcp.4 termios.4 tht.4 ti.4 tl.4 \ + tcic.4 tcp.4 termios.4 tht.4 ti.4 tipmic.4 tl.4 \ tlphy.4 thmc.4 tpm.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/tipmic.4 b/share/man/man4/tipmic.4 new file mode 100644 index 00000000000..8881141da7d --- /dev/null +++ b/share/man/man4/tipmic.4 @@ -0,0 +1,51 @@ +.\" $OpenBSD: tipmic.4,v 1.1 2018/05/20 19:48:18 kettenis Exp $ +.\" +.\" Copyright (c) 2018 Mark Kettenis <kettenis@openbsd.org> +.\" +.\" 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: May 20 2018 $ +.Dt TIPMIC 4 +.Os +.Sh NAME +.Nm tipmic +.Nd Intel Dollar Cove TI Power Management IC +.Sh SYNOPSIS +.Cd "tipmic* at iic?" +.Sh DESCRIPTION +The +.Nm +driver provides support for the +.Dq Intel +Dollar Cove TI Power Management ICs. +These devices have temperature and voltage sensors and provide power +management functionality. +Sensor values are made available to +.Xr acpi 4 +to support Thermal Zones. +.Sh SEE ALSO +.Xr acpi 4 , +.Xr acpitz 4 , +.Xr iic 4 , +.Xr intro 4 +.Sh HISTORY +The +.Nm +device driver first appeared in +.Ox 6.4 . +.Sh AUTHORS +.An -nosplit +The +.Nm +driver was written by +.An Mark Kettenis Mt kettenis@openbsd.org . |