From a137738f2012a4028d948c5134fcdbb43e0f6391 Mon Sep 17 00:00:00 2001 From: khali Date: Mon, 26 Jan 2015 09:27:46 +0000 Subject: Add detection of Intel 5500/5520/X58 git-svn-id: http://lm-sensors.org/svn/lm-sensors/trunk@6266 7894878c-1315-0410-8ee3-d5d059ff63e0 --- CHANGES | 1 + prog/detect/sensors-detect | 10 ++++++++++ 2 files changed, 11 insertions(+) diff --git a/CHANGES b/CHANGES index 128699b6..ed95b66f 100644 --- a/CHANGES +++ b/CHANGES @@ -29,6 +29,7 @@ SVN HEAD Add detection of IT8786E Add detection of IT8780F Add detection of IT8731F and IT8732F + Add detection of Intel 5500/5520/X58 3.3.5 "Happy Birthday Beddy" (2014-01-22) libsensors: Improve documentation of two functions diff --git a/prog/detect/sensors-detect b/prog/detect/sensors-detect index 6fb92187..bf0822d4 100755 --- a/prog/detect/sensors-detect +++ b/prog/detect/sensors-detect @@ -2527,6 +2527,10 @@ use vars qw(@cpu_ids); name => "Intel AMB FB-DIMM thermal sensor", driver => "i5k_amb", detect => \&intel_amb_detect, + }, { + name => "Intel 5500/5520/X58 thermal sensor", + driver => "i5500_temp", + detect => \&intel_5500_detect, }, { name => "VIA C7 thermal sensor", driver => "via-cputemp", @@ -6738,6 +6742,12 @@ sub intel_amb_detect return; } +sub intel_5500_detect +{ + return unless exists $pci_list{'8086:3438'}; + return 5; +} + sub cpuid { my ($cpu_nr, $eax) = @_; -- cgit v1.2.1