blob: ea3bdb157aa424bac0e541a8928360ff5b59b292 [file] [log] [blame]
Uwe Hermann0120e1a2007-09-16 18:11:03 +00001/*
Uwe Hermannafe83092007-09-28 15:45:43 +00002 * This file is part of the superiotool project.
Uwe Hermann0120e1a2007-09-16 18:11:03 +00003 *
4 * Copyright (C) 2006 coresystems GmbH <info@coresystems.de>
Uwe Hermann945045b2007-09-28 15:39:10 +00005 * Copyright (C) 2007 Uwe Hermann <uwe@hermann-uwe.de>
Uwe Hermann0120e1a2007-09-16 18:11:03 +00006 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
20 */
21
22#include "superiotool.h"
23
Uwe Hermann07024692007-09-20 22:13:48 +000024#define DEVICE_ID_BYTE1_REG 0x20
25#define DEVICE_ID_BYTE2_REG 0x21
Uwe Hermann945045b2007-09-28 15:39:10 +000026
Uwe Hermann07024692007-09-20 22:13:48 +000027#define VENDOR_ID_BYTE1_REG 0x23
28#define VENDOR_ID_BYTE2_REG 0x24
29
Uwe Hermann6b4ad432007-09-23 13:17:29 +000030#define FINTEK_VENDOR_ID 0x3419
31
Uwe Hermann246be7d2007-10-31 22:22:11 +000032static const struct superio_registers reg_table[] = {
Uwe Hermann945045b2007-09-28 15:39:10 +000033 {0x0106, "F71862FG", {
34 {EOT}}},
35 {0x4103, "F71872F/FG / F71806F/FG", { /* Same ID? Datasheet typo? */
36 {EOT}}},
37 {0x4105, "F71882FG/F71883FG", { /* Same ID? Datasheet typo? */
38 {EOT}}},
39 {0x0604, "F71805F/FG", {
Uwe Hermanne0ffaa12007-09-26 15:48:09 +000040 /* We assume reserved bits are read as 0. */
41 {NOLDN, NULL,
42 {0x07,0x20,0x21,0x23,0x24,0x25,0x26,0x27,0x28,
43 0x29,EOT},
44 {NANA,0x04,0x06,0x19,0x34,0x00,0x00,0x3f,0x08,
45 0x00,EOT}},
46 {0x0, "Floppy",
47 {0x30,0x60,0x61,0x70,0x74,0xf0,0xf2,0xf4,EOT},
48 {0x01,0x03,0xf0,0x06,0x02,0x0e,0x03,0x00,EOT}},
49 {0x1, "COM1",
50 {0x30,0x60,0x61,0x70,0xf0,EOT},
51 {0x01,0x03,0xf8,0x04,0x00,EOT}},
52 {0x2, "COM2",
53 {0x30,0x60,0x61,0x70,0xf0,0xf1,EOT},
54 {0x01,0x02,0xf8,0x03,0x00,0x04,EOT}},
55 {0x3, "Parallel port",
56 {0x30,0x60,0x61,0x70,0x74,0xf0,EOT},
57 {0x01,0x03,0x78,0x07,0x03,0x42,EOT}},
58 {0x4, "Hardware monitor",
59 {0x30,0x60,0x61,0x70,EOT},
60 {0x00,0x02,0x95,0x00,EOT}},
61 {0x6, "GPIO",
62 {0x70,0xe0,0xe1,0xe2,0xe3,0xe4,0xe5,0xe6,0xe7,0xe8,
63 0xe9,0xf0,0xf1,0xf3,0xf4,EOT},
64 {0x00,0x00,0x00,NANA,0x00,0x00,0x00,0x00,0x00,0x00,
65 0x00,0x00,NANA,0x00,NANA,EOT}},
66 {0xa, "PME",
67 {0x30,0xf0,0xf1,EOT},
68 {0x00,0x00,0x00,EOT}},
Uwe Hermann07024692007-09-20 22:13:48 +000069 {EOT}}},
Uwe Hermanncfb6ac72008-10-01 20:16:58 +000070 {0x0581, "F8000", { /* Fintek/ASUS F8000 */
71 {EOT}}},
Uwe Hermann07024692007-09-20 22:13:48 +000072 {EOT}
73};
74
Uwe Hermann25a6c0f2007-09-19 00:48:42 +000075void probe_idregs_fintek(uint16_t port)
76{
Uwe Hermannb4db2202007-09-20 23:37:56 +000077 uint16_t vid, did;
Uwe Hermann25a6c0f2007-09-19 00:48:42 +000078
Uwe Hermann8b8d0392007-10-04 15:23:38 +000079 probing_for("Fintek", "", port);
80
Uwe Hermannb4db2202007-09-20 23:37:56 +000081 enter_conf_mode_winbond_fintek_ite_8787(port);
Uwe Hermann0120e1a2007-09-16 18:11:03 +000082
Uwe Hermann07024692007-09-20 22:13:48 +000083 did = regval(port, DEVICE_ID_BYTE1_REG);
84 did |= (regval(port, DEVICE_ID_BYTE2_REG) << 8);
Uwe Hermann07024692007-09-20 22:13:48 +000085
86 vid = regval(port, VENDOR_ID_BYTE1_REG);
87 vid |= (regval(port, VENDOR_ID_BYTE2_REG) << 8);
88
Uwe Hermann6b4ad432007-09-23 13:17:29 +000089 if (vid != FINTEK_VENDOR_ID || superio_unknown(reg_table, did)) {
Uwe Hermann8b8d0392007-10-04 15:23:38 +000090 if (verbose)
91 printf(NOTFOUND "vid=0x%04x, id=0x%04x\n", vid, did);
Uwe Hermannb4db2202007-09-20 23:37:56 +000092 exit_conf_mode_winbond_fintek_ite_8787(port);
Uwe Hermann07024692007-09-20 22:13:48 +000093 return;
94 }
95
Uwe Hermann8b8d0392007-10-04 15:23:38 +000096 printf("Found Fintek %s (vid=0x%04x, id=0x%04x) at 0x%x\n",
Uwe Hermann945045b2007-09-28 15:39:10 +000097 get_superio_name(reg_table, did), vid, did, port);
Uwe Hermanne9d46162007-10-07 20:01:23 +000098 chip_found = 1;
Uwe Hermann0120e1a2007-09-16 18:11:03 +000099
Uwe Hermannb4db2202007-09-20 23:37:56 +0000100 dump_superio("Fintek", reg_table, port, did);
Uwe Hermann0120e1a2007-09-16 18:11:03 +0000101
Uwe Hermannb4db2202007-09-20 23:37:56 +0000102 exit_conf_mode_winbond_fintek_ite_8787(port);
Uwe Hermann0120e1a2007-09-16 18:11:03 +0000103}
Robinson P. Tryon552cfb72008-01-15 22:30:55 +0000104
105void print_fintek_chips(void)
106{
107 print_vendor_chips("Fintek", reg_table);
108}