summaryrefslogtreecommitdiff
path: root/util/superiotool/superiotool.h
diff options
context:
space:
mode:
authorJonathan A. Kollasch <jakllsch@kollasch.net>2011-11-07 10:56:42 -0600
committerStefan Reinauer <stefan.reinauer@coreboot.org>2011-11-07 22:05:21 +0100
commit3d1d6bb4ecb15a12f48f871c623882bee9c0c576 (patch)
tree71acff01da06eaf9a2f84cad9864a0f74470cf21 /util/superiotool/superiotool.h
parent2d7ab4c559ae1da8ebf1107b179e3a136b869beb (diff)
downloadcoreboot-3d1d6bb4ecb15a12f48f871c623882bee9c0c576.tar.xz
superiotool: add detection and dump of Infineon SLB9635 TPM
Change-Id: If94ea5f45135a4b65bdd37532851fa0ba864bb73 Signed-off-by: Jonathan A. Kollasch <jakllsch@kollasch.net> Reviewed-on: http://review.coreboot.org/421 Tested-by: build bot (Jenkins) Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
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 f705a58d82..5583ec5669 100644
--- a/util/superiotool/superiotool.h
+++ b/util/superiotool/superiotool.h
@@ -195,6 +195,10 @@ void probe_idregs_fintek(uint16_t port);
void probe_idregs_fintek_alternative(uint16_t port);
void print_fintek_chips(void);
+/* infineon.c */
+void probe_idregs_infineon(uint16_t port);
+void print_infineon_chips(void);
+
/* ite.c */
void probe_idregs_ite(uint16_t port);
void print_ite_chips(void);
@@ -243,6 +247,7 @@ static const struct {
{probe_idregs_amd, {0xaa, EOT}},
#endif
{probe_idregs_serverengines, {0x2e, EOT}},
+ {probe_idregs_infineon, {0x2e, 0x4e}},
};
/** Table of functions to print out supported Super I/O chips. */
@@ -261,6 +266,7 @@ static const struct {
{print_amd_chips},
#endif
{print_serverengines_chips},
+ {print_infineon_chips},
};
#endif