AMD Ryzen 2600 温度

AMD Ryzen 2600 温度

我已经安装了 it87 模块,这是我的sensors输出

asus-isa-0000
Adapter: ISA adapter
cpu_fan:        0 RPM

it8665-isa-0290
Adapter: ISA adapter
in0:          +0.65 V  (min =  +1.12 V, max =  +1.11 V)  ALARM
in1:          +2.52 V  (min =  +2.14 V, max =  +0.42 V)  ALARM
in2:          +2.04 V  (min =  +1.64 V, max =  +0.13 V)  ALARM
in3:          +1.98 V  (min =  +2.77 V, max =  +1.47 V)  ALARM
in4:          +0.03 V  (min =  +0.60 V, max =  +1.61 V)  ALARM
in5:          +0.03 V  (min =  +1.26 V, max =  +1.70 V)  ALARM
in6:          +0.03 V  (min =  +1.59 V, max =  +1.54 V)  ALARM
3VSB:         +3.38 V  (min =  +1.24 V, max =  +2.90 V)  ALARM
Vbat:         +3.29 V  
+3.3V:        +3.38 V  
fan1:         972 RPM  (min =  463 RPM)
fan2:        1005 RPM  (min =   13 RPM)
fan3:         981 RPM  (min =   11 RPM)
fan4:           0 RPM  (min =   -1 RPM)
fan6:           0 RPM  (min =   -1 RPM)
temp1:        +26.0°C  (low  = +117.0°C, high = +87.0°C)
temp2:        +26.0°C  (low  = -31.0°C, high = +99.0°C)  sensor = thermistor
temp3:        +29.0°C  (low  = +55.0°C, high = -67.0°C)  ALARM  sensor = thermistor
temp4:        +29.0°C  (low  = +44.0°C, high =  +1.0°C)  ALARM  sensor = thermistor
temp5:        +29.0°C  (low  = -119.0°C, high = +67.0°C)  sensor = thermistor
temp6:        +29.0°C  (low  = -118.0°C, high = -11.0°C)  ALARM  sensor = thermistor
intrusion0:  ALARM

nouveau-pci-0600
Adapter: PCI adapter
GPU core:     +0.91 V  (min =  +0.80 V, max =  +1.19 V)
temp1:        +37.0°C  (high = +95.0°C, hyst =  +3.0°C)
                       (crit = +105.0°C, hyst =  +5.0°C)
                       (emerg = +135.0°C, hyst =  +5.0°C)

k10temp-pci-00c3
Adapter: PCI adapter
temp1:        +75.8°C  (high = +70.0°C)

我想知道这个值负责什么

k10temp-pci-00c3
Adapter: PCI adapter
temp1:        +75.8°C  (high = +70.0°C)

答案1

这是 AMD 系列芯片处理器上热传感器的驱动程序。如果你运行sensors-detect你应该看到类似的东西

Driver `k10temp' (built-in):
  * Chip `AMD Family 15h thermal sensors' (confidence: 9)

lspci -v返回哪个设备使用此驱动程序:

00:18.3 Host bridge: Advanced Micro Devices, Inc. [AMD] Device 15b3
        Flags: fast devsel
        Capabilities: [f0] Secure device <?>
        Kernel driver in use: k10temp

您可以在 中阅读该驱动程序的完整文档"/usr/src/linux-$(uname -r)/Documentation/hwmon/k10temp",特别是支持的芯片列表:

  • AMD 系列 10h 处理器: 插槽 F:四核/六核/嵌入式 Opteron(但见下文) 插槽 AM2+:四核 Opteron、Phenom (II) X3/X4、Athlon X2(但见下文) 插槽 AM3:四核-Core Opteron、Athlon/Phenom II X2/X3/X4、Sempron II 插槽 S1G3:Athlon II、Sempron、Turion II
  • AMD 系列 11h 处理器:Socket S1G2:Athlon (X2)、Sempron (X2)、Turion X2 (Ultra)
  • AMD 系列 12h 处理器:“Llano”(E2/A4/A6/A8 系列)
  • AMD 系列 14h 处理器:“Brazos”(C/E/G/Z 系列)
  • AMD 系列 15h 处理器:“Bulldozer”(FX 系列)、“Trinity”、“Kaveri”、“Carrizo”
  • AMD 系列 16h 处理器:“Kabini”、“Mullins”

相关内容