mirror of
https://github.com/lm-sensors/lm-sensors
synced 2025-08-30 22:05:11 +00:00
Add detection of AMD K10 CPU sensor.
git-svn-id: http://lm-sensors.org/svn/lm-sensors/branches/lm-sensors-3.0.0@4925 7894878c-1315-0410-8ee3-d5d059ff63e0
This commit is contained in:
1
CHANGES
1
CHANGES
@@ -15,6 +15,7 @@ SVN
|
|||||||
Better handling of the fault flags
|
Better handling of the fault flags
|
||||||
sensors-conf-convert: Add a short help text
|
sensors-conf-convert: Add a short help text
|
||||||
sensors-detect: Fix SMSC SCH311x detection
|
sensors-detect: Fix SMSC SCH311x detection
|
||||||
|
Add AMD K10 CPU sensor detection
|
||||||
|
|
||||||
3.0.0-rc1 (2007-09-25)
|
3.0.0-rc1 (2007-09-25)
|
||||||
Initial release
|
Initial release
|
||||||
|
@@ -2082,6 +2082,11 @@ use vars qw(@chip_kern24_ids @chip_kern26_ids);
|
|||||||
driver => "k8temp",
|
driver => "k8temp",
|
||||||
detect => sub { k8temp_pci_detect(); },
|
detect => sub { k8temp_pci_detect(); },
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
name => "AMD K10 thermal sensors",
|
||||||
|
driver => "to-be-written",
|
||||||
|
detect => sub { k10temp_pci_detect(); },
|
||||||
|
},
|
||||||
{
|
{
|
||||||
name => "Intel Core family thermal sensor",
|
name => "Intel Core family thermal sensor",
|
||||||
driver => "coretemp",
|
driver => "coretemp",
|
||||||
@@ -5357,6 +5362,12 @@ sub k8temp_pci_detect
|
|||||||
return 9;
|
return 9;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
sub k10temp_pci_detect
|
||||||
|
{
|
||||||
|
return unless exists $pci_list{'1022:1203'};
|
||||||
|
return 9;
|
||||||
|
}
|
||||||
|
|
||||||
# Returns: undef if not detected, (9) if detected.
|
# Returns: undef if not detected, (9) if detected.
|
||||||
# the device 0xa620 should not be visible on host PCI bus, gateway
|
# the device 0xa620 should not be visible on host PCI bus, gateway
|
||||||
# must be used
|
# must be used
|
||||||
|
Reference in New Issue
Block a user