2
0
mirror of https://github.com/lm-sensors/lm-sensors synced 2025-09-02 07:15:39 +00:00

sensors-detect: Add AMD Geode devices detection

git-svn-id: http://lm-sensors.org/svn/lm-sensors/trunk@4062 7894878c-1315-0410-8ee3-d5d059ff63e0
This commit is contained in:
Jean Delvare
2006-06-23 21:37:40 +00:00
parent 47bd9a6501
commit d3fa65e9f6
2 changed files with 30 additions and 1 deletions

View File

@@ -50,6 +50,7 @@ lm_sensors CHANGES file
Add Winbond W83793R/G detection Add Winbond W83793R/G detection
Handle the W83791D driver difference between kernels Handle the W83791D driver difference between kernels
Add nForce4 MCP04, MCP51 and MCP55 detection Add nForce4 MCP04, MCP51 and MCP55 detection
Add AMD Geode devices detection
2.10.0 (20060214) 2.10.0 (20060214)

View File

@@ -868,6 +868,34 @@ $revision =~ s/\$\w+: (.*?) \$/$1/g;
driver => "i2c-piix4", driver => "i2c-piix4",
match => qr/^SMBus PIIX4 adapter at /, match => qr/^SMBus PIIX4 adapter at /,
} , } ,
{
vendid => 0x100B,
devid => 0x0500,
procid => "SCx200 Bridge",
driver => "scx200_acb",
match => qr/^(NatSemi SCx200 ACCESS\.bus|SCx200 ACB\d+) /,
},
{
vendid => 0x100B,
devid => 0x0510,
procid => "SC1100 Bridge",
driver => "scx200_acb",
match => qr/^(NatSemi SCx200 ACCESS\.bus|SCx200 ACB\d+) /,
},
{
vendid => 0x100B,
devid => 0x002B,
procid => "CS5535 ISA bridge",
driver => "scx200_acb",
match => qr/^CS5535 ACB\d+ /,
},
{
vendid => 0x1022,
devid => 0x2090,
procid => "CS5536 [Geode companion] ISA",
driver => "scx200_acb",
match => qr/^CS553[56] ACB\d+ /,
},
); );
# The following entries used to appear directly in @pci_adapters. # The following entries used to appear directly in @pci_adapters.
@@ -2322,7 +2350,7 @@ sub adapter_pci_detection
foreach $try (@pci_adapters) { foreach $try (@pci_adapters) {
if ($try->{vendid} == $device->{vendid} && if ($try->{vendid} == $device->{vendid} &&
$try->{devid} == $device->{devid} && $try->{devid} == $device->{devid} &&
$try->{func} == $device->{func}) { (!defined($try->{func}) || $try->{func} == $device->{func})) {
printf "Use driver `%s' for device %02x:%02x.%x: %s\n", printf "Use driver `%s' for device %02x:%02x.%x: %s\n",
$try->{driver}, $try->{driver},
$device->{bus},$device->{slot},$device->{func},$try->{procid}; $device->{bus},$device->{slot},$device->{func},$try->{procid};