2
0
mirror of https://github.com/lm-sensors/lm-sensors synced 2025-08-31 06:15:15 +00:00

Refine the detection of AMD family 10h processors with working

sensors.


git-svn-id: http://lm-sensors.org/svn/lm-sensors/trunk@5814 7894878c-1315-0410-8ee3-d5d059ff63e0
This commit is contained in:
Jean Delvare
2009-12-20 17:11:48 +00:00
parent 4745d9cac6
commit fab3afc75d
2 changed files with 7 additions and 4 deletions

View File

@@ -5396,10 +5396,13 @@ sub fam10h_pci_detect
next unless $probecpu->{vendor_id} eq 'AuthenticAMD' &&
$probecpu->{'cpu family'} == 0x10;
next if $probecpu->{model} == 2; # DR-B*
next if $probecpu->{model} == 4 &&
$probecpu->{stepping} <= 2; # RB-C2
next if $probecpu->{model} < 4; # DR-B*
next if $probecpu->{model} == 8; # HY-D0
if ($probecpu->{model} == 4) { # RB-C*
my @dram_cfg = split /\n/, `setpci -d 1022:1202 94.L 2>/dev/null`;
next unless @dram_cfg >= 1;
next unless hex($dram_cfg[0]) & 0x00000100; # DDR3
}
return 9;
}