Make the code a bit more generic (trivial). Different Super I/Os

use different config ports.

Signed-off-by: Uwe Hermann <uwe@hermann-uwe.de>
Acked-by: Uwe Hermann <uwe@hermann-uwe.de>



git-svn-id: svn://svn.coreboot.org/coreboot/trunk@2782 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
Uwe Hermann
2007-09-18 23:30:24 +00:00
parent 6ff6af7621
commit d754d2c6c4
4 changed files with 24 additions and 14 deletions

View File

@@ -97,22 +97,18 @@ void dump_superio(const char *name, const struct superio_registers reg_table[],
int main(int argc, char *argv[])
{
int i, j;
if (iopl(3) < 0) {
perror("iopl");
exit(1);
}
probe_idregs_simple(0x2e);
probe_idregs_simple(0x4e);
probe_idregs_fintek(0x2e);
probe_idregs_fintek(0x4e);
probe_idregs_ite(0x2e);
probe_idregs_ite(0x4e);
probe_idregs_smsc(0x3f0);
probe_idregs_smsc(0x370);
for (i = 0; i < ARRAY_SIZE(superio_ports_table); i++) {
for (j = 0; superio_ports_table[i].ports[j] != EOT; j++)
superio_ports_table[i].probe_idregs(
superio_ports_table[i].ports[j]);
}
return 0;
}