Add support for the Winbond W83697HF/F and W83627EHF/EF/EHG/EG.

Various minor fixes and improvements (trivial).

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@2789 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
Uwe Hermann
2007-09-19 15:52:23 +00:00
parent 3acf31e4ea
commit 7e7e9ac607
6 changed files with 153 additions and 12 deletions

View File

@@ -37,6 +37,11 @@ void regwrite(uint16_t port, uint8_t reg, uint8_t val)
outb(val, port + 1);
}
int superio_unknown(const struct superio_registers reg_table[], uint16_t id)
{
return !strncmp(get_superio_name(reg_table, id), "<unknown>", 9);
}
const char *get_superio_name(const struct superio_registers reg_table[],
uint16_t id)
{
@@ -61,6 +66,9 @@ void dump_superio(const char *vendor, const struct superio_registers reg_table[]
int i, j, k, nodump;
int *idx;
if (!dump)
return;
for (i = 0; /* Nothing */; i++) {
if (reg_table[i].superio_id == EOT)
break;
@@ -107,6 +115,8 @@ void dump_superio(const char *vendor, const struct superio_registers reg_table[]
printf("NA ");
else if (idx[k] == RSVD)
printf("RR ");
else if (idx[k] == MISC) /* TODO */
printf("MM ");
else
printf("%02x ", idx[k]);
}
@@ -166,6 +176,7 @@ int main(int argc, char *argv[])
if (iopl(3) < 0) {
perror("iopl");
printf("Superiotool must be run as root.\n");
exit(1);
}