diff options
author | Mike Larkin <mlarkin@cvs.openbsd.org> | 2010-07-03 01:02:26 +0000 |
---|---|---|
committer | Mike Larkin <mlarkin@cvs.openbsd.org> | 2010-07-03 01:02:26 +0000 |
commit | 068b9a96a35ba933a788d371e9a3c8e282c10f5a (patch) | |
tree | be5733d15eec9444d218e5a8e65a91f3ad946497 /share | |
parent | c7fb6fb68e43859610679081e1851b4cb1a25e2a (diff) |
Intel 3400 Thermal Sensor driver, found on some new Intel machines.
This is also the same as the Intel Series 5 Thermal Sensor.
ok deraadt@, kettenis@
Diffstat (limited to 'share')
-rw-r--r-- | share/man/man4/Makefile | 4 | ||||
-rw-r--r-- | share/man/man4/itherm.4 | 68 |
2 files changed, 70 insertions, 2 deletions
diff --git a/share/man/man4/Makefile b/share/man/man4/Makefile index 9888f9a4d37..1344f4c5894 100644 --- a/share/man/man4/Makefile +++ b/share/man/man4/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.508 2010/06/03 16:15:00 naddy Exp $ +# $OpenBSD: Makefile,v 1.509 2010/07/03 01:02:25 mlarkin Exp $ MAN= aac.4 ac97.4 acphy.4 \ acpi.4 acpiac.4 acpiasus.4 acpibat.4 acpibtn.4 acpicpu.4 acpidock.4 \ @@ -27,7 +27,7 @@ MAN= aac.4 ac97.4 acphy.4 \ ichiic.4 ichwdt.4 icmp.4 icmp6.4 icsphy.4 ifmedia.4 \ iha.4 iic.4 inet.4 inet6.4 inphy.4 iop.4 iophy.4 ioprbs.4 \ iopsp.4 ip.4 ip6.4 ipcomp.4 ipgphy.4 ipmi.4 ips.4 ipsec.4 ipw.4 \ - isa.4 isagpio.4 isapnp.4 isp.4 it.4 iwi.4 iwn.4 ix.4 ixgb.4 \ + isa.4 isagpio.4 isapnp.4 isp.4 it.4 itherm.4 iwi.4 iwn.4 ix.4 ixgb.4 \ jmb.4 jme.4 jmphy.4 \ kate.4 km.4 ksyms.4 kue.4 lc.4 lge.4 lii.4 lisa.4 lkm.4 lm.4 \ lmc.4 lmenv.4 lmn.4 lmtemp.4 lo.4 lofn.4 lpt.4 lxtphy.4 luphy.4 \ diff --git a/share/man/man4/itherm.4 b/share/man/man4/itherm.4 new file mode 100644 index 00000000000..c7f7b65545f --- /dev/null +++ b/share/man/man4/itherm.4 @@ -0,0 +1,68 @@ +.\" +.\" Copyright (c) 2010 Mike Larkin <mlarkin@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: July 3 2010 $ +.Dt ITHERM 4 +.Os +.Sh NAME +.Nm itherm +.Nd Intel 3400 Thermal Sensor +.Sh SYNOPSIS +.Cd "itherm* at pci?" +.Sh DESCRIPTION +The +.Nm +driver provides support for several sensors found in Intel 3400 and 5 series +chipsets. +.Pp +The sensors currently exposed via the +.Xr sysctl 8 +interface are: +.Bl -column "Sensor " "Units" "Typical" -offset indent +.It Sy "Sensor" Ta Sy "Units" Ta Sy "Typical Use" +.It Li "Thermometer" Ta "degC" Ta "Temperature" +.It Li "Core 1" Ta "degC" Ta "Temperature" +.It Li "Core 2" Ta "degC" Ta "Temperature" +.It Li "CPU power cons." Ta "Watts" Ta "Power usage" +.It Li "CPU/GPU Max" Ta "degC" Ta "Temperature" +.It Li "DIMM 1" Ta "degC" Ta "Temperature" +.It Li "DIMM 2" Ta "degC" Ta "Temperature" +.It Li "DIMM 3" Ta "degC" Ta "Temperature" +.It Li "DIMM 4" Ta "degC" Ta "Temperature" +.It Li "GPU abs." Ta "degC" Ta "Temperature" +.It Li "PCH abs." Ta "degC" Ta "Temperature" +.El +.Sh SEE ALSO +.Xr pci 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 Mike Larkin Aq mlarkin@openbsd.org . +.Sh CAVEATS +Not all sensors are wired on every machine, so the list of +sensors shown in +.Xr sysctl 8 +may not show all the sensors listed above. +Further, the +.Nm +driver will flag sensors as invalid if they report bogus data. |