diff options
author | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-05-08 15:07:28 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-05-08 15:07:28 -0400 |
commit | 36f021b579d195cdc5fa6f3e2bab198b4bf70643 (patch) | |
tree | 96d3c97f5e5214d2aa7151c12a22a7eb345dbaa1 /Documentation/hwmon/coretemp | |
parent | 215d06780d13fd7de629b02b61b7b7bf88ce5039 (diff) | |
parent | 1d72acf91abb327e25137ad2e371c1a788b34e45 (diff) |
Merge branch 'hwmon-for-linus' of git://jdelvare.pck.nerim.net/jdelvare-2.6
* 'hwmon-for-linus' of git://jdelvare.pck.nerim.net/jdelvare-2.6: (32 commits)
Use menuconfig objects - hwmon
hwmon/smsc47b397: Use dynamic sysfs callbacks
hwmon/smsc47b397: Convert to a platform driver
hwmon/w83781d: Deprecate W83627HF support
hwmon/w83781d: Use dynamic sysfs callbacks
hwmon/w83781d: Be less i2c_client-centric
hwmon/w83781d: Clean up conversion macros
hwmon/w83781d: No longer use i2c-isa
hwmon/ams: Do not print error on systems without apple motion sensor
hwmon/ams: Fix I2C read retry logic
hwmon: New AD7416, AD7417 and AD7418 driver
hwmon/coretemp: Add documentation
hwmon: New coretemp driver
i386: Use functions from library in msr driver
i386: Add safe variants of rdmsr_on_cpu and wrmsr_on_cpu
hwmon/lm75: Use dynamic sysfs callbacks
hwmon/lm78: Use dynamic sysfs callbacks
hwmon/lm78: Be less i2c_client-centric
hwmon/lm78: No longer use i2c-isa
hwmon: New max6650 driver
...
Diffstat (limited to 'Documentation/hwmon/coretemp')
-rw-r--r-- | Documentation/hwmon/coretemp | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/Documentation/hwmon/coretemp b/Documentation/hwmon/coretemp new file mode 100644 index 000000000000..870cda9416e9 --- /dev/null +++ b/Documentation/hwmon/coretemp | |||
@@ -0,0 +1,36 @@ | |||
1 | Kernel driver coretemp | ||
2 | ====================== | ||
3 | |||
4 | Supported chips: | ||
5 | * All Intel Core family | ||
6 | Prefix: 'coretemp' | ||
7 | CPUID: family 0x6, models 0xe, 0xf | ||
8 | Datasheet: Intel 64 and IA-32 Architectures Software Developer's Manual | ||
9 | Volume 3A: System Programming Guide | ||
10 | |||
11 | Author: Rudolf Marek | ||
12 | |||
13 | Description | ||
14 | ----------- | ||
15 | |||
16 | This driver permits reading temperature sensor embedded inside Intel Core CPU. | ||
17 | Temperature is measured in degrees Celsius and measurement resolution is | ||
18 | 1 degree C. Valid temperatures are from 0 to TjMax degrees C, because | ||
19 | the actual value of temperature register is in fact a delta from TjMax. | ||
20 | |||
21 | Temperature known as TjMax is the maximum junction temperature of processor. | ||
22 | Intel defines this temperature as 85C or 100C. At this temperature, protection | ||
23 | mechanism will perform actions to forcibly cool down the processor. Alarm | ||
24 | may be raised, if the temperature grows enough (more than TjMax) to trigger | ||
25 | the Out-Of-Spec bit. Following table summarizes the exported sysfs files: | ||
26 | |||
27 | temp1_input - Core temperature (in millidegrees Celsius). | ||
28 | temp1_crit - Maximum junction temperature (in millidegrees Celsius). | ||
29 | temp1_crit_alarm - Set when Out-of-spec bit is set, never clears. | ||
30 | Correct CPU operation is no longer guaranteed. | ||
31 | temp1_label - Contains string "Core X", where X is processor | ||
32 | number. | ||
33 | |||
34 | The TjMax temperature is set to 85 degrees C if undocumented model specific | ||
35 | register (UMSR) 0xee has bit 30 set. If not the TjMax is 100 degrees C as | ||
36 | (sometimes) documented in processor datasheet. | ||