peci-cputemp.rst 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. .. SPDX-License-Identifier: GPL-2.0-only
  2. Kernel driver peci-cputemp
  3. ==========================
  4. Supported chips:
  5. One of Intel server CPUs listed below which is connected to a PECI bus.
  6. * Intel Xeon E5/E7 v3 server processors
  7. Intel Xeon E5-14xx v3 family
  8. Intel Xeon E5-24xx v3 family
  9. Intel Xeon E5-16xx v3 family
  10. Intel Xeon E5-26xx v3 family
  11. Intel Xeon E5-46xx v3 family
  12. Intel Xeon E7-48xx v3 family
  13. Intel Xeon E7-88xx v3 family
  14. * Intel Xeon E5/E7 v4 server processors
  15. Intel Xeon E5-16xx v4 family
  16. Intel Xeon E5-26xx v4 family
  17. Intel Xeon E5-46xx v4 family
  18. Intel Xeon E7-48xx v4 family
  19. Intel Xeon E7-88xx v4 family
  20. * Intel Xeon Scalable server processors
  21. Intel Xeon D family
  22. Intel Xeon Bronze family
  23. Intel Xeon Silver family
  24. Intel Xeon Gold family
  25. Intel Xeon Platinum family
  26. Datasheet: Available from http://www.intel.com/design/literature.htm
  27. Author: Jae Hyun Yoo <[email protected]>
  28. Description
  29. -----------
  30. This driver implements a generic PECI hwmon feature which provides Digital
  31. Thermal Sensor (DTS) thermal readings of the CPU package and CPU cores that are
  32. accessible via the processor PECI interface.
  33. All temperature values are given in millidegree Celsius and will be measurable
  34. only when the target CPU is powered on.
  35. Sysfs interface
  36. -------------------
  37. ======================= =======================================================
  38. temp1_label "Die"
  39. temp1_input Provides current die temperature of the CPU package.
  40. temp1_max Provides thermal control temperature of the CPU package
  41. which is also known as Tcontrol.
  42. temp1_crit Provides shutdown temperature of the CPU package which
  43. is also known as the maximum processor junction
  44. temperature, Tjmax or Tprochot.
  45. temp1_crit_hyst Provides the hysteresis value from Tcontrol to Tjmax of
  46. the CPU package.
  47. temp2_label "DTS"
  48. temp2_input Provides current temperature of the CPU package scaled
  49. to match DTS thermal profile.
  50. temp2_max Provides thermal control temperature of the CPU package
  51. which is also known as Tcontrol.
  52. temp2_crit Provides shutdown temperature of the CPU package which
  53. is also known as the maximum processor junction
  54. temperature, Tjmax or Tprochot.
  55. temp2_crit_hyst Provides the hysteresis value from Tcontrol to Tjmax of
  56. the CPU package.
  57. temp3_label "Tcontrol"
  58. temp3_input Provides current Tcontrol temperature of the CPU
  59. package which is also known as Fan Temperature target.
  60. Indicates the relative value from thermal monitor trip
  61. temperature at which fans should be engaged.
  62. temp3_crit Provides Tcontrol critical value of the CPU package
  63. which is same to Tjmax.
  64. temp4_label "Tthrottle"
  65. temp4_input Provides current Tthrottle temperature of the CPU
  66. package. Used for throttling temperature. If this value
  67. is allowed and lower than Tjmax - the throttle will
  68. occur and reported at lower than Tjmax.
  69. temp5_label "Tjmax"
  70. temp5_input Provides the maximum junction temperature, Tjmax of the
  71. CPU package.
  72. temp[6-N]_label Provides string "Core X", where X is resolved core
  73. number.
  74. temp[6-N]_input Provides current temperature of each core.
  75. ======================= =======================================================