summaryrefslogtreecommitdiff
path: root/src/superio/fintek/f71859
diff options
context:
space:
mode:
authorZheng Bao <zheng.bao@amd.com>2010-11-05 07:59:06 +0000
committerZheng Bao <Zheng.Bao@amd.com>2010-11-05 07:59:06 +0000
commit27770c93d49cfd5f5cdec7094259ae600ca4bcca (patch)
tree008f642a7bded1dd1460b7fabc9edd4a8f662e10 /src/superio/fintek/f71859
parent0e40e6ba4d087ec89dc6029475523ef033896822 (diff)
downloadcoreboot-27770c93d49cfd5f5cdec7094259ae600ca4bcca.tar.xz
According to the description in datasheet of f71889,
"To enable configuration, the entry key 0x87 must be written to the index port" " -o 4e 87 -o 4e 87 (enable configuration) -o 4e aa (disable configuration) " This piece of text appears in most of the datasheet of fintek superio. It doesnt say it quite clear, but it seems that the 0x87 should be written twice. I tried on f81865, which is not in the coreboot tree yet. If the 0x87 is only written once, you can only R/W the index/data port once. All the subsequent RW will fail. Writing twice will be ok. Plus, in the superiotool, the function enter_conf_mode_winbond_fintek_ite_8787 also write 8787. The fintek superio chips seem to enable the UART automatically when the power is on. So I didnt find it failed to access. Signed-off-by: Zheng Bao <zheng.bao@amd.com> Acked-by: Stefan Reinauer <stepan@coresystems.de> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@6025 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/superio/fintek/f71859')
-rwxr-xr-xsrc/superio/fintek/f71859/f71859_early_serial.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/superio/fintek/f71859/f71859_early_serial.c b/src/superio/fintek/f71859/f71859_early_serial.c
index c27b17937e..14d22a6310 100755
--- a/src/superio/fintek/f71859/f71859_early_serial.c
+++ b/src/superio/fintek/f71859/f71859_early_serial.c
@@ -27,6 +27,7 @@ static void pnp_enter_conf_state(device_t dev)
{
u16 port = dev >> 8;
outb(0x87, port);
+ outb(0x87, port);
}
static void pnp_exit_conf_state(device_t dev)