-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Linus Torvalds
committed
Aug 6, 2010
1 parent
e887376
commit c702825
Showing
1,333 changed files
with
121,158 additions
and
44,895 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: 9261ec1a8d7b17e2540bef7cad3470870d13b61e | ||
refs/heads/master: ce06ea8339de1dca3455e9c89c56ea161988ab71 |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
Kernel driver pkgtemp | ||
====================== | ||
|
||
Supported chips: | ||
* Intel family | ||
Prefix: 'pkgtemp' | ||
CPUID: | ||
Datasheet: Intel 64 and IA-32 Architectures Software Developer's Manual | ||
Volume 3A: System Programming Guide | ||
|
||
Author: Fenghua Yu | ||
|
||
Description | ||
----------- | ||
|
||
This driver permits reading package level temperature sensor embedded inside | ||
Intel CPU package. The sensors can be in core, uncore, memory controller, or | ||
other components in a package. The feature is first implemented in Intel Sandy | ||
Bridge platform. | ||
|
||
Temperature is measured in degrees Celsius and measurement resolution is | ||
1 degree C. Valid temperatures are from 0 to TjMax degrees C, because the actual | ||
value of temperature register is in fact a delta from TjMax. | ||
|
||
Temperature known as TjMax is the maximum junction temperature of package. | ||
We get this from MSR_IA32_TEMPERATURE_TARGET. If the MSR is not accessible, | ||
we define TjMax as 100 degrees Celsius. At this temperature, protection | ||
mechanism will perform actions to forcibly cool down the package. Alarm | ||
may be raised, if the temperature grows enough (more than TjMax) to trigger | ||
the Out-Of-Spec bit. Following table summarizes the exported sysfs files: | ||
|
||
temp1_input - Package temperature (in millidegrees Celsius). | ||
temp1_max - All cooling devices should be turned on. | ||
temp1_crit - Maximum junction temperature (in millidegrees Celsius). | ||
temp1_crit_alarm - Set when Out-of-spec bit is set, never clears. | ||
Correct CPU operation is no longer guaranteed. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.