From d754d2c6c4970e686d004ea4d39c5e6599abf46f Mon Sep 17 00:00:00 2001 From: Uwe Hermann Date: Tue, 18 Sep 2007 23:30:24 +0000 Subject: Make the code a bit more generic (trivial). Different Super I/Os use different config ports. Signed-off-by: Uwe Hermann Acked-by: Uwe Hermann git-svn-id: svn://svn.coreboot.org/coreboot/trunk@2782 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1 --- util/superiotool/superiotool.c | 18 +++++++----------- 1 file changed, 7 insertions(+), 11 deletions(-) (limited to 'util/superiotool/superiotool.c') diff --git a/util/superiotool/superiotool.c b/util/superiotool/superiotool.c index a5dcb2e753..3514b24415 100644 --- a/util/superiotool/superiotool.c +++ b/util/superiotool/superiotool.c @@ -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; } -- cgit v1.2.3