blob: e2f9c2772f5c782a1cba9fa47b75e8013c0ed1a6 [file] [log] [blame]
Uwe Hermann0120e1a2007-09-16 18:11:03 +00001/*
2 * This file is part of the LinuxBIOS project.
3 *
4 * Copyright (C) 2006 coresystems GmbH <info@coresystems.de>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19 */
20
21#include "superiotool.h"
22
Uwe Hermann07024692007-09-20 22:13:48 +000023#define DEVICE_ID_BYTE1_REG 0x20
24#define DEVICE_ID_BYTE2_REG 0x21
25#define VENDOR_ID_BYTE1_REG 0x23
26#define VENDOR_ID_BYTE2_REG 0x24
27
28const static struct superio_registers reg_table[] = {
29 {0x0604, "F71805", {
30 {EOT}}},
31 {0x4103, "F71872", {
32 {EOT}}},
33 {EOT}
34};
35
Uwe Hermannde24a0e2007-09-19 00:03:14 +000036void dump_fintek(uint16_t port, uint16_t did)
Uwe Hermann0120e1a2007-09-16 18:11:03 +000037{
38 switch (did) {
39 case 0x0604:
40 printf("Fintek F71805\n");
41 break;
42 case 0x4103:
43 printf("Fintek F71872\n");
44 break;
45 default:
46 printf("Unknown Fintek Super I/O: did=0x%04x\n", did);
47 return;
48 }
49
50 printf("Flash write is %s.\n",
51 regval(port, 0x28) & 0x80 ? "enabled" : "disabled");
52 printf("Flash control is 0x%04x.\n", regval(port, 0x28));
53 printf("27=%02x\n", regval(port, 0x27));
54 printf("29=%02x\n", regval(port, 0x29));
55 printf("2a=%02x\n", regval(port, 0x2a));
56 printf("2b=%02x\n", regval(port, 0x2b));
57
58 /* Select UART 1. */
59 regwrite(port, 0x07, 0x01);
60 printf("UART1 is %s\n",
61 regval(port, 0x30) & 1 ? "enabled" : "disabled");
62 printf("UART1 base=%02x%02x, irq=%02x, mode=%s\n", regval(port, 0x60),
63 regval(port, 0x61), regval(port, 0x70) & 0x0f,
64 regval(port, 0xf0) & 0x10 ? "RS485" : "RS232");
65
66 /* Select UART 2. */
67 regwrite(port, 0x07, 0x02);
68 printf("UART2 is %s\n",
69 regval(port, 0x30) & 1 ? "enabled" : "disabled");
70 printf("UART2 base=%02x%02x, irq=%02x, mode=%s\n", regval(port, 0x60),
71 regval(port, 0x61), regval(port, 0x70) & 0x0f,
72 regval(port, 0xf0) & 0x10 ? "RS485" : "RS232");
73
74 /* Select parallel port. */
75 regwrite(port, 0x07, 0x03);
76 printf("PARPORT is %s\n",
77 regval(port, 0x30) & 1 ? "enabled" : "disabled");
78 printf("PARPORT base=%02x%02x, irq=%02x\n", regval(port, 0x60),
79 regval(port, 0x61), regval(port, 0x70) & 0x0f);
80
81 /* Select HW monitor. */
82 regwrite(port, 0x07, 0x04);
83 printf("HW monitor is %s\n",
84 regval(port, 0x30) & 1 ? "enabled" : "disabled");
85 printf("HW monitor base=%02x%02x, irq=%02x\n", regval(port, 0x60),
86 regval(port, 0x61), regval(port, 0x70) & 0x0f);
87
88 /* Select GPIO. */
89 regwrite(port, 0x07, 0x05);
90 printf("GPIO is %s\n", regval(port, 0x30) & 1 ? "enabled" : "disabled");
91 printf
92 ("GPIO 70=%02x, e0=%02x, e1=%02x, e2=%02x, e3=%02x, e4=%02x, e5=%02x\n",
93 regval(port, 0x70), regval(port, 0xe0), regval(port, 0xe1),
94 regval(port, 0xe2), regval(port, 0xe3), regval(port, 0xe4),
95 regval(port, 0xe5));
96 printf
97 ("GPIO e6=%02x, e7=%02x, e8=%02x, e9=%02x, f0=%02x, f1=%02x, f3=%02x, f4=%02x\n",
98 regval(port, 0xe6), regval(port, 0xe7), regval(port, 0xe8),
99 regval(port, 0xe9), regval(port, 0xf0), regval(port, 0xf1),
100 regval(port, 0xf3), regval(port, 0xf4));
101 printf("GPIO f5=%02x, f6=%02x, f7=%02x, f8=%02x\n", regval(port, 0xf5),
102 regval(port, 0xf6), regval(port, 0xf7), regval(port, 0xf8));
103}
104
Uwe Hermann3acf31e2007-09-19 01:55:35 +0000105static void enter_conf_mode_fintek(uint16_t port)
Uwe Hermann0120e1a2007-09-16 18:11:03 +0000106{
Uwe Hermann0120e1a2007-09-16 18:11:03 +0000107 /* Enable configuration sequence (Fintek uses this for example)
108 * Older ITE chips have the same enable sequence.
109 */
110 outb(0x87, port);
111 outb(0x87, port);
Uwe Hermann25a6c0f2007-09-19 00:48:42 +0000112}
113
Uwe Hermann3acf31e2007-09-19 01:55:35 +0000114static void exit_conf_mode_fintek(uint16_t port)
Uwe Hermann25a6c0f2007-09-19 00:48:42 +0000115{
116 /* Exit MB PnP mode (for Fintek, doesn't hurt ITE). */
117 outb(0xaa, port);
118}
119
120void probe_idregs_fintek(uint16_t port)
121{
Uwe Hermann07024692007-09-20 22:13:48 +0000122 uint16_t vid, did, did_ite, success = 0;
Uwe Hermann25a6c0f2007-09-19 00:48:42 +0000123
124 enter_conf_mode_fintek(port);
Uwe Hermann0120e1a2007-09-16 18:11:03 +0000125
Uwe Hermann07024692007-09-20 22:13:48 +0000126 did = regval(port, DEVICE_ID_BYTE1_REG);
127 did |= (regval(port, DEVICE_ID_BYTE2_REG) << 8);
128 did_ite = ((did & 0xff) << 8) | ((did & 0xff00) >> 8);
129
130 vid = regval(port, VENDOR_ID_BYTE1_REG);
131 vid |= (regval(port, VENDOR_ID_BYTE2_REG) << 8);
132
133 /* FIXME */
134 if (vid != 0x3419 && did_ite != 0x8708 && did_ite != 0x8710) {
Uwe Hermann3acf31e2007-09-19 01:55:35 +0000135 no_superio_found(port);
Uwe Hermann07024692007-09-20 22:13:48 +0000136 exit_conf_mode_fintek(port);
Uwe Hermann0120e1a2007-09-16 18:11:03 +0000137 return;
138 }
Uwe Hermann0120e1a2007-09-16 18:11:03 +0000139
Uwe Hermann07024692007-09-20 22:13:48 +0000140 if (did_ite == 0x8708 || did_ite == 0x8701) {
141 printf("Found ITE IT%04xF (id=0x%04x, rev=0x%01x) at port=0x%x\n", did_ite, did_ite, 0, port); /* FIXME */
142 dump_ite(port, did_ite);
143 regwrite(port, 0x02, 0x02); /* FIXME */
Uwe Hermann0120e1a2007-09-16 18:11:03 +0000144 return;
Uwe Hermann0120e1a2007-09-16 18:11:03 +0000145 }
Uwe Hermann07024692007-09-20 22:13:48 +0000146
147 if (vid == 0xff || vid == 0xffff) {
148 exit_conf_mode_fintek(port);
149 return;
150 }
151
152 printf("Found Fintek %s (vid=0x%04x, id=0x%04x) at port=0x%x\n",
153 get_superio_name(reg_table, did), vid, did, port);
Uwe Hermann0120e1a2007-09-16 18:11:03 +0000154
155 switch (vid) {
156 case 0x3419:
157 success = 1;
158 dump_fintek(port, did);
159 break;
160 default:
161 break;
162 }
163
164 if (!success)
165 printf("No dump for vid 0x%04x, did 0x%04x\n", vid, did);
166
Uwe Hermann25a6c0f2007-09-19 00:48:42 +0000167 exit_conf_mode_fintek(port);
Uwe Hermann0120e1a2007-09-16 18:11:03 +0000168}
169