From 7e7e9ac6078efb61ce7b531b084a410cb73e1b92 Mon Sep 17 00:00:00 2001 From: Uwe Hermann Date: Wed, 19 Sep 2007 15:52:23 +0000 Subject: Add support for the Winbond W83697HF/F and W83627EHF/EF/EHG/EG. Various minor fixes and improvements (trivial). Signed-off-by: Uwe Hermann Acked-by: Uwe Hermann git-svn-id: svn://svn.coreboot.org/coreboot/trunk@2789 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1 --- util/superiotool/superiotool.h | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'util/superiotool/superiotool.h') diff --git a/util/superiotool/superiotool.h b/util/superiotool/superiotool.h index bcd8d5c2ff..03592bbca2 100644 --- a/util/superiotool/superiotool.h +++ b/util/superiotool/superiotool.h @@ -25,6 +25,7 @@ #include #include #include +#include #include #include @@ -36,6 +37,7 @@ #define NOLDN -2 /* NO LDN needed */ #define NANA -3 /* Not Available */ #define RSVD -4 /* Reserved */ +#define MISC -5 /* Needs special comment in output */ #define MAXNAMELEN 20 /* Maximum Name Length */ #define MAXLDN 0xa /* Biggest LDN */ #define LDNSIZE (MAXLDN + 3) /* Biggest LDN + 0 + NOLDN + EOT */ @@ -59,6 +61,7 @@ struct superio_registers { /* superiotool.c */ uint8_t regval(uint16_t port, uint8_t reg); void regwrite(uint16_t port, uint8_t reg, uint8_t val); +int superio_unknown(const struct superio_registers reg_table[], uint16_t id); const char *get_superio_name(const struct superio_registers reg_table[], uint16_t id); void dump_superio(const char *name, const struct superio_registers reg_table[], @@ -80,6 +83,9 @@ void probe_idregs_simple(uint16_t port); /* smsc.c */ void probe_idregs_smsc(uint16_t port); +/* winbond.c */ +void probe_idregs_winbond(uint16_t port); + /** Table of which config ports to probe on each Super I/O. */ const static struct { void (*probe_idregs) (uint16_t port); @@ -89,6 +95,7 @@ const static struct { {probe_idregs_fintek, {0x2e, 0x4e, EOT}}, {probe_idregs_ite, {0x2e, 0x4e, EOT}}, {probe_idregs_smsc, {0x3f0, 0x370, EOT}}, + {probe_idregs_winbond, {0x2e, 0x4e, EOT}}, }; #endif -- cgit v1.2.3