From 5deee7d0c301df7790e028e4a5d891a70c406998 Mon Sep 17 00:00:00 2001 From: Wei Huang Date: Thu, 27 Aug 2020 01:11:43 -0500 Subject: sensors-detect: Add support for AMD CPU Family 19h Enable sensors-detect support for AMD Zen3 (Family 19h) CPUs. This PCI ID is derived from Linux kernel PCI_DEVICE_ID_AMD_19H_DF_F3. Signed-off-by: Wei Huang --- prog/detect/sensors-detect | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/prog/detect/sensors-detect b/prog/detect/sensors-detect index fd43db56..27ce3a41 100755 --- a/prog/detect/sensors-detect +++ b/prog/detect/sensors-detect @@ -2810,6 +2810,10 @@ use vars qw(@cpu_ids); name => "Hygon Family 18h thermal sensors", driver => "k10temp", detect => sub { hygon_pci_detect('1463') }, + }, { + name => "AMD Family 19h thermal sensors", + driver => "k10temp", + detect => sub { amd_pci_detect('1653') }, }, { name => "Intel digital thermal sensor", driver => "coretemp", -- cgit v1.2.1