diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2010-03-28 17:04:30 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2010-03-28 17:04:30 +0000 |
commit | a90bf08cd5f48a86c4a400323bb0a2050b77cc84 (patch) | |
tree | b3b0c4d5af827c3eeb7dd53488692656d924e0f0 /share | |
parent | d57db2c5600004f5e28a025da6cf324c304510fc (diff) |
Driver for microguru sensor microcontroller found on ABIT motherboards.
Driver written by Mikko Tolmunen <oskari@sefirosu.org>
Diffstat (limited to 'share')
-rw-r--r-- | share/man/man4/Makefile | 4 | ||||
-rw-r--r-- | share/man/man4/isa.4 | 6 | ||||
-rw-r--r-- | share/man/man4/uguru.4 | 51 |
3 files changed, 57 insertions, 4 deletions
diff --git a/share/man/man4/Makefile b/share/man/man4/Makefile index 5c571d73510..265b028232d 100644 --- a/share/man/man4/Makefile +++ b/share/man/man4/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.505 2010/03/27 16:50:15 jakemsr Exp $ +# $OpenBSD: Makefile,v 1.506 2010/03/28 17:04:28 deraadt Exp $ MAN= aac.4 ac97.4 acphy.4 \ acpi.4 acpiac.4 acpiasus.4 acpibat.4 acpibtn.4 acpicpu.4 acpidock.4 \ @@ -54,7 +54,7 @@ MAN= aac.4 ac97.4 acphy.4 \ tlphy.4 thmc.4 tqphy.4 trm.4 trunk.4 tsl.4 tty.4 tun.4 twe.4 txp.4 \ txphy.4 uaudio.4 uark.4 uath.4 uberry.4 ubsa.4 ubsec.4 ubt.4 \ ucom.4 uchcom.4 ucycom.4 udav.4 udcf.4 udfu.4 udl.4 udp.4 udsbr.4 \ - ueagle.4 uftdi.4 ugen.4 uhci.4 uhid.4 uhidev.4 uhts.4 \ + ueagle.4 uftdi.4 ugen.4 uguru.4 uhci.4 uhid.4 uhidev.4 uhts.4 \ uipaq.4 uk.4 ukbd.4 \ ukphy.4 ulpt.4 umass.4 umbg.4 umct.4 umidi.4 umodem.4 ums.4 umsm.4 \ unix.4 uow.4 upgt.4 upl.4 uplcom.4 ural.4 urio.4 url.4 urlphy.4 \ diff --git a/share/man/man4/isa.4 b/share/man/man4/isa.4 index c9da6478295..059f4f97434 100644 --- a/share/man/man4/isa.4 +++ b/share/man/man4/isa.4 @@ -1,4 +1,4 @@ -.\" $OpenBSD: isa.4,v 1.66 2010/03/27 16:55:07 jakemsr Exp $ +.\" $OpenBSD: isa.4,v 1.67 2010/03/28 17:04:28 deraadt Exp $ .\" $NetBSD: isa.4,v 1.19 2000/03/18 16:54:37 augustss Exp $ .\" .\" Copyright (c) 2000 Theo de Raadt. All rights reserved. @@ -31,7 +31,7 @@ .\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF .\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. .\" -.Dd $Mdocdate: March 27 2010 $ +.Dd $Mdocdate: March 28 2010 $ .Dt ISA 4 .Os .Sh NAME @@ -202,6 +202,8 @@ National Semiconductor LM78/79/81 temperature, voltage, and fan sensor National Semiconductor PC87366 LPC Super I/O with GPIO .It Xr schsio 4 SMSC SCH311x LPC Super I/O +.It Xr uguru 4 +ABIT temperature, voltage and fan sensors .It Xr viasio 4 VIA VT1211 LPC Super I/O .It Xr wbsio 4 diff --git a/share/man/man4/uguru.4 b/share/man/man4/uguru.4 new file mode 100644 index 00000000000..f5884f607d2 --- /dev/null +++ b/share/man/man4/uguru.4 @@ -0,0 +1,51 @@ +.\" $OpenBSD: uguru.4,v 1.1 2010/03/28 17:04:28 deraadt Exp $ +.\" +.\" Copyright (c) 2010 Mikko Tolmunen <oskari@sefirosu.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: March 28 2010 $ +.Dt UGURU 4 +.Os +.Sh NAME +.Nm uguru +.Nd ABIT temperature, voltage and fan sensors +.Sh SYNOPSIS +.Cd "uguru0 at isa? port 0xe0" +.Sh DESCRIPTION +The +.Nm +driver provides support for the microcontroller +found in various +.Tn ABIT +motherboards which serves as +the gateway chip between system management software +and hardware. Sensor values are made available through the +.Xr sysctl 8 +interface. +.Sh SEE ALSO +.Xr intro 4 , +.Xr isa 4 , +.Xr sensorsd 8 , +.Xr sysctl 8 +.Sh HISTORY +The +.Nm +driver first appeared in +.Ox 4.8 +.Sh AUTHORS +The +.Nm +driver was written by +.An Mikko Tolmunen Aq oskari@sefirosu.org . +.Sh BUGS +Interrupt support is unimplemented. |