summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2005-12-23 04:13:53 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2005-12-23 04:13:53 +0000
commitbb4ddf6320a69b37ea8c5e65478652b965c273cc (patch)
treeed1541166ab83f244dadd90858c684d879d858cf
parentdaf5d403904f0ac85448720cf1037acaf701d68f (diff)
new i2c drivers...
-rw-r--r--share/man/man4/Makefile5
-rw-r--r--share/man/man4/admtemp.444
-rw-r--r--share/man/man4/admtm.445
-rw-r--r--share/man/man4/iic.46
4 files changed, 97 insertions, 3 deletions
diff --git a/share/man/man4/Makefile b/share/man/man4/Makefile
index c366dfdb27c..17b23431bef 100644
--- a/share/man/man4/Makefile
+++ b/share/man/man4/Makefile
@@ -1,6 +1,7 @@
-# $OpenBSD: Makefile,v 1.324 2005/12/19 20:56:48 grange Exp $
+# $OpenBSD: Makefile,v 1.325 2005/12/23 04:13:52 deraadt Exp $
-MAN= aac.4 ac97.4 acphy.4 adc.4 addcom.4 admtmp.4 adt.4 adv.4 aha.4 ahb.4 \
+MAN= aac.4 ac97.4 acphy.4 adc.4 addcom.4 admtemp.4 admtm.4 admtmp.4 adt.4 \
+ adv.4 aha.4 ahb.4 \
ahc.4 ahd.4 aic.4 amdpm.4 ami.4 amphy.4 an.4 aps.4 aria.4 art.4 ast.4 \
atalk.4 atapiscsi.4 ath.4 atu.4 atw.4 audio.4 aue.4 auich.4 autri.4 \
auixp.4 auvia.4 awi.4 axe.4 az.4 bce.4 bge.4 bha.4 bio.4 bktr.4 \
diff --git a/share/man/man4/admtemp.4 b/share/man/man4/admtemp.4
new file mode 100644
index 00000000000..bdf8acba9dd
--- /dev/null
+++ b/share/man/man4/admtemp.4
@@ -0,0 +1,44 @@
+.\" $OpenBSD: admtemp.4,v 1.1 2005/12/23 04:13:52 deraadt Exp $
+.\"
+.\" Copyright (c) 2005 Theo de Raadt <deraadt@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 May 16, 2004
+.Dt ADMTEMP 4
+.Os
+.Sh NAME
+.Nm admtemp
+.Nd Analog Devices ADM1021 temperature sensor
+.Sh SYNOPSIS
+.Cd "admtemp* at maciic?"
+.Sh DESCRIPTION
+The
+.Nm
+driver provides support for the Analog Devices ADM1021
+temperature sensor.
+The device possesses internal and external temperature sensors.
+These values are made available through the
+.Xr sysctl 8
+interface.
+.Sh SEE ALSO
+.Xr iic 4 ,
+.Xr intro 4 ,
+.Xr sensorsd 8 ,
+.Xr sysctl 8
+.Sh AUTHORS
+.An -nosplit
+The
+.Nm
+driver was written by
+.An Theo de Raadt Aq deraadt@openbsd.org .
diff --git a/share/man/man4/admtm.4 b/share/man/man4/admtm.4
new file mode 100644
index 00000000000..2164f93c231
--- /dev/null
+++ b/share/man/man4/admtm.4
@@ -0,0 +1,45 @@
+.\" $OpenBSD: admtm.4,v 1.1 2005/12/23 04:13:52 deraadt Exp $
+.\"
+.\" Copyright (c) 2005 Theo de Raadt <deraadt@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 May 16, 2004
+.Dt ADMTM 4
+.Os
+.Sh NAME
+.Nm admtm
+.Nd Analog Devices ADM1025 temperature and voltage sensor
+.Sh SYNOPSIS
+.Cd "admtm* at iic?"
+.Sh DESCRIPTION
+The
+.Nm
+driver provides support for the Analog Devices ADM1025
+and the Philips NE1619 temperature sensor.
+The device possesses internal and external temperature sensors,
+plus a variety of voltage ensors.
+These values are made available through the
+.Xr sysctl 8
+interface.
+.Sh SEE ALSO
+.Xr iic 4 ,
+.Xr intro 4 ,
+.Xr sensorsd 8 ,
+.Xr sysctl 8
+.Sh AUTHORS
+.An -nosplit
+The
+.Nm
+driver was written by
+.An Theo de Raadt Aq deraadt@openbsd.org .
diff --git a/share/man/man4/iic.4 b/share/man/man4/iic.4
index 2b68a17cae7..1e56755baab 100644
--- a/share/man/man4/iic.4
+++ b/share/man/man4/iic.4
@@ -1,4 +1,4 @@
-.\" $OpenBSD: iic.4,v 1.13 2005/12/22 23:34:57 grange Exp $
+.\" $OpenBSD: iic.4,v 1.14 2005/12/23 04:13:52 deraadt Exp $
.\"
.\" Copyright (c) 2004 Alexander Yurchenko <grange@openbsd.org>
.\"
@@ -71,6 +71,10 @@ Apple Inter IC (I2C) bus
.Bl -tag -width 10n -offset ind -compact
.It Xr adc 4
Analog Devices AD7416/AD7417/7418 temperature sensor
+.It Xr admtemp 4
+Analog Devices ADM1021 temperature sensor
+.It Xr admtm 4
+Analog Devices ADM1025 temperature and voltage sensor
.It Xr admtmp 4
Analog Devices ADM1030 temperature sensor
.It Xr adt 4