summaryrefslogtreecommitdiff
path: root/util/superiotool/superiotool.h
diff options
context:
space:
mode:
authorRuud Schramp <schramp@holmes.nl>2011-04-11 07:46:27 +0000
committerUwe Hermann <uwe@hermann-uwe.de>2011-04-11 07:46:27 +0000
commit18b02360b9dba6ca61538923e27b5ba68a2b3299 (patch)
treecc7e5b770b553429baefcd49c7615e189acd29bb /util/superiotool/superiotool.h
parent148a4f5681263a24408d5988261bb3fd6b3c647e (diff)
downloadcoreboot-18b02360b9dba6ca61538923e27b5ba68a2b3299.tar.xz
Add detection/dump support for ServerEngines SE-SM 4210-P01.
Note that the registers and their defaults are mostly based on educated guessing, due to the lack of datasheet. Signed-off-by: Ruud Schramp <schramp@holmes.nl> Acked-by: Uwe Hermann <uwe@hermann-uwe.de> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@6484 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'util/superiotool/superiotool.h')
-rw-r--r--util/superiotool/superiotool.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/util/superiotool/superiotool.h b/util/superiotool/superiotool.h
index 8a7d2aa479..e7c6c40398 100644
--- a/util/superiotool/superiotool.h
+++ b/util/superiotool/superiotool.h
@@ -182,6 +182,10 @@ void print_vendor_chips(const char *vendor,
void probe_idregs_ali(uint16_t port);
void print_ali_chips(void);
+/* serverengines.c */
+void probe_idregs_serverengines(uint16_t port);
+void print_serverengines_chips(void);
+
/* fintek.c */
void probe_idregs_fintek(uint16_t port);
void probe_idregs_fintek_alternative(uint16_t port);
@@ -232,6 +236,7 @@ static const struct {
#ifdef PCI_SUPPORT
{probe_idregs_via, {0x3f0, EOT}},
#endif
+ {probe_idregs_serverengines, {0x2e, EOT}},
};
/** Table of functions to print out supported Super I/O chips. */
@@ -248,6 +253,7 @@ static const struct {
#ifdef PCI_SUPPORT
{print_via_chips},
#endif
+ {print_serverengines_chips},
};
#endif