diff options
author | Uwe Hermann <uwe@hermann-uwe.de> | 2007-09-20 23:37:56 +0000 |
---|---|---|
committer | Uwe Hermann <uwe@hermann-uwe.de> | 2007-09-20 23:37:56 +0000 |
commit | b4db2209f9e01e1a013cc33356bceec57c3a3c80 (patch) | |
tree | efd43f13e63088323dcbbffc9f431c692f3cd819 /util/superiotool/fintek.c | |
parent | 0702469f163e69257a7cf079eb40ae99f53c815b (diff) |
Decouple the ITE code from fintek.c, it doesn't belong there.
Add common 'enter configuration mode' function for most Winbond/Fintek/ITE
chips which use the 0x87 0x87 sequence for that reason.
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@2794 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'util/superiotool/fintek.c')
-rw-r--r-- | util/superiotool/fintek.c | 52 |
1 files changed, 8 insertions, 44 deletions
diff --git a/util/superiotool/fintek.c b/util/superiotool/fintek.c index e2f9c2772f..a95a38354f 100644 --- a/util/superiotool/fintek.c +++ b/util/superiotool/fintek.c @@ -102,68 +102,32 @@ void dump_fintek(uint16_t port, uint16_t did) regval(port, 0xf6), regval(port, 0xf7), regval(port, 0xf8)); } -static void enter_conf_mode_fintek(uint16_t port) -{ - /* Enable configuration sequence (Fintek uses this for example) - * Older ITE chips have the same enable sequence. - */ - outb(0x87, port); - outb(0x87, port); -} - -static void exit_conf_mode_fintek(uint16_t port) -{ - /* Exit MB PnP mode (for Fintek, doesn't hurt ITE). */ - outb(0xaa, port); -} - void probe_idregs_fintek(uint16_t port) { - uint16_t vid, did, did_ite, success = 0; + uint16_t vid, did; - enter_conf_mode_fintek(port); + enter_conf_mode_winbond_fintek_ite_8787(port); did = regval(port, DEVICE_ID_BYTE1_REG); did |= (regval(port, DEVICE_ID_BYTE2_REG) << 8); - did_ite = ((did & 0xff) << 8) | ((did & 0xff00) >> 8); vid = regval(port, VENDOR_ID_BYTE1_REG); vid |= (regval(port, VENDOR_ID_BYTE2_REG) << 8); - /* FIXME */ - if (vid != 0x3419 && did_ite != 0x8708 && did_ite != 0x8710) { + if (vid != 0x3419) { no_superio_found(port); - exit_conf_mode_fintek(port); - return; - } - - if (did_ite == 0x8708 || did_ite == 0x8701) { - printf("Found ITE IT%04xF (id=0x%04x, rev=0x%01x) at port=0x%x\n", did_ite, did_ite, 0, port); /* FIXME */ - dump_ite(port, did_ite); - regwrite(port, 0x02, 0x02); /* FIXME */ - return; - } - - if (vid == 0xff || vid == 0xffff) { - exit_conf_mode_fintek(port); + exit_conf_mode_winbond_fintek_ite_8787(port); return; } printf("Found Fintek %s (vid=0x%04x, id=0x%04x) at port=0x%x\n", get_superio_name(reg_table, did), vid, did, port); - switch (vid) { - case 0x3419: - success = 1; - dump_fintek(port, did); - break; - default: - break; - } + dump_superio("Fintek", reg_table, port, did); - if (!success) - printf("No dump for vid 0x%04x, did 0x%04x\n", vid, did); + /* TODO: Revive this as --dump-human-readable output. */ + /* dump_fintek(port, did); */ - exit_conf_mode_fintek(port); + exit_conf_mode_winbond_fintek_ite_8787(port); } |