summaryrefslogtreecommitdiffstats
path: root/util/superiotool/superiotool.h
diff options
context:
space:
mode:
authorUwe Hermann <uwe@hermann-uwe.de>2007-09-28 15:39:10 +0000
committerUwe Hermann <uwe@hermann-uwe.de>2007-09-28 15:39:10 +0000
commit945045b1ea380f8224bee426cb91b897562df1c8 (patch)
tree1f7ac2226979755a205ecf157cea6f8d2462e0b8 /util/superiotool/superiotool.h
parent5f45fc234fd37d88d387a192ba748e116f5b9d16 (diff)
downloadcoreboot-945045b1ea380f8224bee426cb91b897562df1c8.tar.gz
coreboot-945045b1ea380f8224bee426cb91b897562df1c8.tar.bz2
coreboot-945045b1ea380f8224bee426cb91b897562df1c8.zip
Add support for some more Fintek chips and an ALi chip.
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@2813 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'util/superiotool/superiotool.h')
-rw-r--r--util/superiotool/superiotool.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/util/superiotool/superiotool.h b/util/superiotool/superiotool.h
index bc17238a027d..5f2de5dc381c 100644
--- a/util/superiotool/superiotool.h
+++ b/util/superiotool/superiotool.h
@@ -81,6 +81,9 @@ void dump_superio(const char *name, const struct superio_registers reg_table[],
void dump_superio_readable(uint16_t port);
void no_superio_found(uint16_t port);
+/* ali.c */
+void probe_idregs_ali(uint16_t port);
+
/* fintek.c */
void probe_idregs_fintek(uint16_t port);
@@ -101,6 +104,7 @@ const static struct {
void (*probe_idregs) (uint16_t port);
int ports[MAXNUMPORTS]; /* Signed, as we need EOT. */
} superio_ports_table[] = {
+ {probe_idregs_ali, {0x3f0, 0x370, EOT}},
{probe_idregs_simple, {0x2e, 0x4e, EOT}},
{probe_idregs_fintek, {0x2e, 0x4e, EOT}},
{probe_idregs_ite, {0x2e, 0x4e, EOT}},