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>
This commit is contained in:
Jonathan A. Kollasch
2011-11-07 10:56:42 -06:00
committed by Stefan Reinauer
parent 2d7ab4c559
commit 3d1d6bb4ec
3 changed files with 94 additions and 1 deletions

View File

@@ -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