diff options
author | Clemens Ladisch <clemens@ladisch.de> | 2009-12-16 15:38:25 -0500 |
---|---|---|
committer | Jean Delvare <khali@linux-fr.org> | 2009-12-16 15:38:25 -0500 |
commit | 3c57e89b467d1db6fda74d5c97112c8b9466dd97 (patch) | |
tree | d826e1bff6ac786adf2ee68c403b011a16448b77 /Documentation | |
parent | 8bea8672edfca7ec5f661cafb218f1205863b343 (diff) |
hwmon: New driver for AMD Family 10h/11h CPUs
This adds a driver for the internal temperature sensor of AMD Family 10h
and 11h CPUs.
Signed-off-by: Clemens Ladisch <clemens@ladisch.de>
Signed-off-by: Jean Delvare <khali@linux-fr.org>
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/hwmon/k10temp | 60 |
1 files changed, 60 insertions, 0 deletions
diff --git a/Documentation/hwmon/k10temp b/Documentation/hwmon/k10temp new file mode 100644 index 000000000000..a7a18d453a51 --- /dev/null +++ b/Documentation/hwmon/k10temp | |||
@@ -0,0 +1,60 @@ | |||
1 | Kernel driver k10temp | ||
2 | ===================== | ||
3 | |||
4 | Supported chips: | ||
5 | * AMD Family 10h processors: | ||
6 | Socket F: Quad-Core/Six-Core/Embedded Opteron | ||
7 | Socket AM2+: Opteron, Phenom (II) X3/X4 | ||
8 | Socket AM3: Quad-Core Opteron, Athlon/Phenom II X2/X3/X4, Sempron II | ||
9 | Socket S1G3: Athlon II, Sempron, Turion II | ||
10 | * AMD Family 11h processors: | ||
11 | Socket S1G2: Athlon (X2), Sempron (X2), Turion X2 (Ultra) | ||
12 | |||
13 | Prefix: 'k10temp' | ||
14 | Addresses scanned: PCI space | ||
15 | Datasheets: | ||
16 | BIOS and Kernel Developer's Guide (BKDG) For AMD Family 10h Processors: | ||
17 | http://support.amd.com/us/Processor_TechDocs/31116.pdf | ||
18 | BIOS and Kernel Developer's Guide (BKDG) for AMD Family 11h Processors: | ||
19 | http://support.amd.com/us/Processor_TechDocs/41256.pdf | ||
20 | Revision Guide for AMD Family 10h Processors: | ||
21 | http://support.amd.com/us/Processor_TechDocs/41322.pdf | ||
22 | Revision Guide for AMD Family 11h Processors: | ||
23 | http://support.amd.com/us/Processor_TechDocs/41788.pdf | ||
24 | AMD Family 11h Processor Power and Thermal Data Sheet for Notebooks: | ||
25 | http://support.amd.com/us/Processor_TechDocs/43373.pdf | ||
26 | AMD Family 10h Server and Workstation Processor Power and Thermal Data Sheet: | ||
27 | http://support.amd.com/us/Processor_TechDocs/43374.pdf | ||
28 | AMD Family 10h Desktop Processor Power and Thermal Data Sheet: | ||
29 | http://support.amd.com/us/Processor_TechDocs/43375.pdf | ||
30 | |||
31 | Author: Clemens Ladisch <clemens@ladisch.de> | ||
32 | |||
33 | Description | ||
34 | ----------- | ||
35 | |||
36 | This driver permits reading of the internal temperature sensor of AMD | ||
37 | Family 10h and 11h processors. | ||
38 | |||
39 | All these processors have a sensor, but on older revisions of Family 10h | ||
40 | processors, the sensor may return inconsistent values (erratum 319). The | ||
41 | driver will refuse to load on these revisions unless you specify the | ||
42 | "force=1" module parameter. | ||
43 | |||
44 | There is one temperature measurement value, available as temp1_input in | ||
45 | sysfs. It is measured in degrees Celsius with a resolution of 1/8th degree. | ||
46 | Please note that it is defined as a relative value; to quote the AMD manual: | ||
47 | |||
48 | Tctl is the processor temperature control value, used by the platform to | ||
49 | control cooling systems. Tctl is a non-physical temperature on an | ||
50 | arbitrary scale measured in degrees. It does _not_ represent an actual | ||
51 | physical temperature like die or case temperature. Instead, it specifies | ||
52 | the processor temperature relative to the point at which the system must | ||
53 | supply the maximum cooling for the processor's specified maximum case | ||
54 | temperature and maximum thermal power dissipation. | ||
55 | |||
56 | The maximum value for Tctl is available in the file temp1_max. | ||
57 | |||
58 | If the BIOS has enabled hardware temperature control, the threshold at | ||
59 | which the processor will throttle itself to avoid damage is available in | ||
60 | temp1_crit and temp1_crit_hyst. | ||