Changeset 5837

Show
Ignore:
Timestamp:
06/01/10 14:27:28 (3 years ago)
Author:
khali
Message:

Fix detection of RB-C3 AMD Family 10h CPU. This core is only used in
packages not affected by erratum 319, so we don't have to use the
unreliable DDR2 vs. DDR3 approach for it.

Location:
lm-sensors/trunk
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • lm-sensors/trunk/CHANGES

    r5836 r5837  
    99                  Add support for Intel PCH (SMBus) 
    1010                  Add support for SMSC EMC1403 and EMC1404 
     11                  Fix detection of RB-C3 AMD Family 10h CPU 
    1112 
    12133.1.2 (2010-02-02) 
  • lm-sensors/trunk/prog/detect/sensors-detect

    r5833 r5837  
    54725472                next if $probecpu->{model} < 4;         # DR-B* 
    54735473                next if $probecpu->{model} == 8;        # HY-D0 
    5474                 if ($probecpu->{model} == 4) {          # RB-C* 
     5474                if ($probecpu->{model} == 4 && $probecpu->{stepping} <= 2) {    # RB-C2 
    54755475                        my @dram_cfg = split /\n/, `setpci -d 1022:1202 94.L 2>/dev/null`; 
    54765476                        next unless @dram_cfg >= 1;