blob: 26e3e45e5521c890c03f19a1e8aa294f98955658 [file] [log] [blame]
Uwe Hermann6ff6af72007-09-18 22:24:34 +00001/*
Uwe Hermannafe83092007-09-28 15:45:43 +00002 * This file is part of the superiotool project.
Uwe Hermann6ff6af72007-09-18 22:24:34 +00003 *
4 * Copyright (C) 2007 Uwe Hermann <uwe@hermann-uwe.de>
Stefan Reinauera3f05792008-07-19 14:42:21 +00005 * Copyright (C) 2008 coresystems GmbH <info@coresystems.de>
Uwe Hermann6ff6af72007-09-18 22:24:34 +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 Hermann0f867322007-09-24 01:40:09 +000024#define DEVICE_ID_REG_OLD 0x0d
25#define DEVICE_REV_REG_OLD 0x0e
26
27#define DEVICE_ID_REG 0x20
28#define DEVICE_REV_REG 0x21
Uwe Hermann6ff6af72007-09-18 22:24:34 +000029
Uwe Hermann246be7d2007-10-31 22:22:11 +000030static const struct superio_registers reg_table[] = {
Uwe Hermann14f304a2007-10-08 01:11:11 +000031 /* The following Super I/Os use the 0x20/0x21 ID registers. */
Uwe Hermann74b29b92007-11-17 17:13:52 +000032 {0x03, "FDC37C93xFR", {
33 /* FIXME: There's another 0x03 but found on port 0x0d/0x0e! */
34 {EOT}}},
35 {0x0a, "FDC37N971", {
Stefan Reinauera12eb6a2008-07-19 14:07:35 +000036 {NOLDN, NULL,
Uwe Hermannb0ae9762008-10-14 16:34:38 +000037 {0x02,0x20,0x21,0x22,0x23,0x24,0x25,0x26,0x27,0x28,
38 0x29,0x2a,0x2b,0x2c,0x2d,0x2e,0x2f,EOT},
39 {0x00,0x0a,0x00,0x00,0x00,0x04,0x04,NANA,NANA,0x00,
40 0x00,0x00,0x00,0x00,0x00,0x00,0x00,EOT}},
Stefan Reinauera12eb6a2008-07-19 14:07:35 +000041 {0x0, "Floppy",
42 {0x30,0x60,0x61,0x70,0x74,0xf0,0xf1,0xf2,0xf3,0xf4,
43 0xf5,EOT},
44 {0x00,0x03,0xf0,0x06,0x02,0x0e,0x00,0xff,RSVD,0x00,
45 0x00,EOT}},
46 {0x1, "Power Management (PM1)",
47 {0x30,0x60,0x61,EOT},
48 {0x00,0x00,0x00,EOT}},
49 {0x3, "Parallel port",
50 {0x30,0x60,0x61,0x70,0x74,0xf0,0xf1,EOT},
51 {0x00,0x00,0x00,0x00,0x04,0x3c,0x00,EOT}},
52 {0x4, "COM1",
53 {0x30,0x60,0x61,0x70,0xf0,EOT},
54 {0x00,0x00,0x00,0x00,0x00,EOT}},
55 {0x5, "COM2",
56 {0x30,0x60,0x61,0x62,0x63,0x70,0x74,0xf0,0xf1,
57 0xf2,0xf7,0xf8,EOT},
58 {0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x00,0x02,
59 0x03,0x00,0x00,EOT}},
60 {0x6, "Real-time clock (RTC)",
61 {0x30,0x60,0x61,0x62,0x63,0x70,0xf0,0xf1,EOT},
62 {0x00,0x00,0x70,0x00,0x74,0x00,0x00,NANA,EOT}},
63 {0x7, "Keyboard",
64 {0x30,0x60,0x61,0x70,0x72,0xf0,EOT},
65 {0x00,0x00,0x00,0x00,0x00,0x00,EOT}},
66 {0x8, "Embedded Controller (EC)",
67 {0x30,0x60,0x61,EOT},
68 {0x00,0x00,0x62,EOT}},
69 {0x9, "Mailbox",
70 {0x30,0x60,0x61,EOT},
71 {0x00,0x00,0x00,EOT}},
Uwe Hermann74b29b92007-11-17 17:13:52 +000072 {EOT}}},
73 {0x0b, "FDC37N972", {
Stefan Reinauera12eb6a2008-07-19 14:07:35 +000074 {NOLDN, NULL,
Uwe Hermannb0ae9762008-10-14 16:34:38 +000075 {0x02,0x20,0x21,0x22,0x23,0x24,0x25,0x26,0x27,0x28,
76 0x29,0x2a,0x2b,0x2c,0x2d,0x2e,0x2f,EOT},
77 {0x00,0x0b,0x00,0x00,0x00,0x04,0x04,NANA,NANA,0x00,
78 0x00,0x00,0x00,0x00,0x00,0x00,0x00,EOT}},
Stefan Reinauera12eb6a2008-07-19 14:07:35 +000079 {0x0, "Floppy",
80 {0x30,0x60,0x61,0x70,0x74,0xf0,0xf1,0xf2,0xf3,0xf4,
81 0xf5,EOT},
82 {0x00,0x03,0xf0,0x06,0x02,0x0e,0x00,0xff,RSVD,0x00,
83 0x00,EOT}},
84 {0x1, "Power Management (PM1)",
85 {0x30,0x60,0x61,EOT},
86 {0x00,0x00,0x00,EOT}},
87 {0x3, "Parallel port",
88 {0x30,0x60,0x61,0x70,0x74,0xf0,0xf1,EOT},
89 {0x00,0x00,0x00,0x00,0x04,0x3c,0x00,EOT}},
90 {0x4, "COM1",
91 {0x30,0x60,0x61,0x70,0xf0,EOT},
92 {0x00,0x00,0x00,0x00,0x00,EOT}},
93 {0x5, "COM2",
94 {0x30,0x60,0x61,0x62,0x63,0x70,0x74,0xf0,0xf1,
95 0xf2,0xf7,0xf8,EOT},
96 {0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x00,0x02,
97 0x03,0x00,0x00,EOT}},
98 {0x6, "Real-time clock (RTC)",
99 {0x30,0x60,0x61,0x62,0x63,0x70,0xf0,0xf1,EOT},
100 {0x00,0x00,0x70,0x00,0x74,0x00,0x00,NANA,EOT}},
101 {0x7, "Keyboard",
102 {0x30,0x60,0x61,0x70,0x72,0xf0,EOT},
103 {0x00,0x00,0x00,0x00,0x00,0x00,EOT}},
104 {0x8, "Embedded Controller (EC)",
105 {0x30,0x60,0x61,EOT},
106 {0x00,0x00,0x62,EOT}},
107 {0x9, "Mailbox",
108 {0x30,0x60,0x61,EOT},
109 {0x00,0x00,0x00,EOT}},
Uwe Hermann74b29b92007-11-17 17:13:52 +0000110 {EOT}}},
Uwe Hermann14f304a2007-10-08 01:11:11 +0000111 {0x0e, "LPC47N252", { /* From sensors-detect */
Uwe Hermann6ff6af72007-09-18 22:24:34 +0000112 {EOT}}},
Uwe Hermann14f304a2007-10-08 01:11:11 +0000113 {0x14, "LPC47M172", {
114 {EOT}}},
Uwe Hermann74b29b92007-11-17 17:13:52 +0000115 {0x30, "FDC37C93xAPM", {
116 {EOT}}},
Uwe Hermann0446dbb2007-10-08 01:59:46 +0000117 {0x40, "FDC37C67x", { /* E.g. FDC37C672. Chiprev: 0x01 */
Robinson P. Tryon29cbb362007-11-25 21:43:29 +0000118 {NOLDN, NULL,
119 {0x03,0x20,0x21,0x22,0x23,0x24,0x26,0x27,0x2b,0x2c,
120 0x2d,0x2e,0x2f,EOT},
121 {0x03,0x40,NANA,0x00,0x00,0x04,MISC,MISC,NANA,NANA,
122 NANA,NANA,NANA,EOT}},
123 {0x0, "Floppy",
124 {0x30,0x60,0x61,0x70,0x74,0xf0,0xf1,0xf2,0xf4,0xf5,
125 EOT},
126 {0x00,0x03,0xf0,0x06,0x02,0x0e,0x00,0xff,0x00,0x00,
127 EOT}},
128 {0x3, "Parallel port",
129 {0x30,0x60,0x61,0x70,0x74,0xf0,0xf1,EOT},
130 {0x00,0x00,0x00,0x00,0x04,0x3c,0x00,EOT}},
131 {0x4, "COM1",
132 {0x30,0x60,0x61,0x70,0xf0,EOT},
133 {0x00,0x00,0x00,0x00,0x00,EOT}},
134 {0x5, "COM2",
135 {0x30,0x60,0x61,0x62,0x63,0x70,0x74,0xf0,0xf1,0xf2,
136 EOT},
137 {0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x00,0x02,0x03,
138 EOT}},
139 {0x7, "Keyboard",
140 {0x30,0x70,0x72,0xf0,EOT},
141 {0x00,0x00,0x00,0x00,EOT}},
142 {0x8, "Aux I/O",
143 {0x30,0xb4,0xb5,0xb6,0xb7,0xc0,0xc1,0xc2,0xc3,0xc4,
144 0xf1,0xf2,0xf3,0xf4,0xf6,0xf7,0xf8,0xf9,0xfa,0xfb,
145 EOT},
146 {0x00,NANA,NANA,NANA,NANA,0x06,0x03,NANA,NANA,NANA,
147 0x00,0x00,0x00,MISC,RSVD,RSVD,RSVD,RSVD,RSVD,RSVD,
148 EOT}},
Uwe Hermann14f304a2007-10-08 01:11:11 +0000149 {EOT}}},
150 {0x42, "FDC37B80x/FDC37M707", {
Uwe Hermann0f867322007-09-24 01:40:09 +0000151 {EOT}}},
Uwe Hermann4c280342007-11-14 00:30:36 +0000152 {0x09, "FDC37N958FR", { /* Found in e.g. Dell Latitude CPi A366XT. */
153 {NOLDN, NULL,
Uwe Hermannb0ae9762008-10-14 16:34:38 +0000154 {0x03,0x20,0x21,0x22,0x23,0x24,0x26,0x27,0x28,0x2b,
155 0x2c,0x2d,0x2e,0x2f,EOT},
156 {0x03,0x44,0x00,0x00,0x00,0x04,MISC,MISC,0x00,NANA,
157 NANA,NANA,NANA,NANA,EOT}},
Uwe Hermann4c280342007-11-14 00:30:36 +0000158 {0x0, "Floppy",
159 {0x30,0x60,0x61,0x70,0x74,0xf0,0xf1,0xf2,0xf4,0xf5,
160 EOT},
161 {0x00,0x03,0xf0,0x06,0x02,0x0e,0x00,0xff,0x00,0x00,
162 EOT}},
163 {0x3, "Parallel port",
164 {0x30,0x60,0x61,0x70,0x74,0xf0,0xf1,EOT},
165 {0x00,0x00,0x00,0x00,0x04,0x3c,0x00,EOT}},
166 {0x4, "COM1",
167 {0x30,0x60,0x61,0x70,0xf0,EOT},
168 {0x00,0x00,0x00,0x00,0x00,EOT}},
169 {0x5, "COM2",
170 {0x30,0x60,0x61,0x62,0x63,0x70,0x74,0xf0,0xf1,0xf2,
171 EOT},
172 {NANA,0x00,0x00,0x00,0x00,0x00,0x04,0x00,0x02,0x03,
173 EOT}},
174 {0x6, "Real-time clock (RTC)",
175 {0x30,0x62,0x63,0x70,0xf0,EOT},
176 {0x00,0x00,0x70,0x00,0x00,EOT}},
177 {0x7, "Keyboard",
178 {0x30,0x70,0x72,0xf0,EOT},
179 {0x00,0x00,0x00,0x00,EOT}},
180 {0x8, "Aux I/O",
181 {0x30,0xb0,0xb1,0xb2,0xb3,0xb8,0xc0,0xc1,0xc2,0xc3,
182 0xc4,0xc5,0xc6,0xc8,0xca,0xcb,0xcc,0xd0,0xd1,0xd2,
183 0xd3,0xd4,0xd5,0xd6,0xd7,0xe0,0xe1,0xe2,0xe3,0xe4,
184 0xe5,0xe6,0xe7,0xef,0xf0,0xf1,0xf2,0xf3,0xf4,0xf6,
185 0xf9,0xfa,EOT},
186 {0x00,NANA,NANA,NANA,NANA,NANA,NANA,0x01,NANA,NANA,
187 NANA,0x00,NANA,NANA,NANA,NANA,NANA,NANA,NANA,NANA,
188 NANA,NANA,NANA,NANA,NANA,NANA,NANA,NANA,NANA,NANA,
189 NANA,NANA,NANA,NANA,NANA,0x00,0x00,0x00,0x00,NANA,
190 NANA,NANA,EOT}},
191 {0xa, "ACPI",
192 {0x30,0x60,0x61,0x70,0xf0,EOT},
193 {0x00,0x00,0x00,NANA,NANA,EOT}},
194 {EOT}}},
Uwe Hermann74b29b92007-11-17 17:13:52 +0000195 {0x43, "FDC37B77x", {
196 {EOT}}},
Uwe Hermann0f867322007-09-24 01:40:09 +0000197 {0x44, "FDC37B78x", {
Robinson P. Tryone1073f12007-10-07 15:04:17 +0000198 {NOLDN, NULL,
Uwe Hermannb0ae9762008-10-14 16:34:38 +0000199 {0x03,0x20,0x21,0x22,0x23,0x24,0x26,0x27,0x28,0x2b,
200 0x2c,0x2d,0x2e,0x2f,EOT},
201 {0x03,0x44,0x00,0x00,0x00,0x04,MISC,MISC,0x00,NANA,
202 NANA,NANA,NANA,NANA,EOT}},
Robinson P. Tryone1073f12007-10-07 15:04:17 +0000203 {0x0, "Floppy",
204 {0x30,0x60,0x61,0x70,0x74,0xf0,0xf1,0xf2,0xf4,0xf5,
205 EOT},
206 {0x00,0x03,0xf0,0x06,0x02,0x0e,0x00,0xff,0x00,0x00,
207 EOT}},
208 {0x3, "Parallel port",
209 {0x30,0x60,0x61,0x70,0x74,0xf0,0xf1,EOT},
210 {0x00,0x00,0x00,0x00,0x04,0x3c,0x00,EOT}},
211 {0x4, "COM1",
212 {0x30,0x60,0x61,0x70,0xf0,EOT},
213 {0x00,0x00,0x00,0x00,0x00,EOT}},
214 {0x5, "COM2",
215 {0x30,0x60,0x61,0x62,0x63,0x70,0x74,0xf0,0xf1,0xf2,
216 EOT},
217 {NANA,0x00,0x00,0x00,0x00,0x00,0x04,0x00,0x02,0x03,
218 EOT}},
219 {0x6, "Real-time clock (RTC)",
220 {0x30,0x62,0x63,0x70,0xf0,EOT},
221 {0x00,0x00,0x70,0x00,0x00,EOT}},
222 {0x7, "Keyboard",
223 {0x30,0x70,0x72,0xf0,EOT},
224 {0x00,0x00,0x00,0x00,EOT}},
225 {0x8, "Aux I/O",
226 {0x30,0xb0,0xb1,0xb2,0xb3,0xb8,0xc0,0xc1,0xc2,0xc3,
227 0xc4,0xc5,0xc6,0xc8,0xca,0xcb,0xcc,0xd0,0xd1,0xd2,
228 0xd3,0xd4,0xd5,0xd6,0xd7,0xe0,0xe1,0xe2,0xe3,0xe4,
229 0xe5,0xe6,0xe7,0xef,0xf0,0xf1,0xf2,0xf3,0xf4,0xf6,
230 0xf9,0xfa,EOT},
231 {0x00,NANA,NANA,NANA,NANA,NANA,NANA,0x01,NANA,NANA,
232 NANA,0x00,NANA,NANA,NANA,NANA,NANA,NANA,NANA,NANA,
233 NANA,NANA,NANA,NANA,NANA,NANA,NANA,NANA,NANA,NANA,
234 NANA,NANA,NANA,NANA,NANA,0x00,0x00,0x00,0x00,NANA,
235 NANA,NANA,EOT}},
236 {0xa, "ACPI",
237 {0x30,0x60,0x61,0x70,0xf0,EOT},
238 {0x00,0x00,0x00,NANA,NANA,EOT}},
Uwe Hermann0f867322007-09-24 01:40:09 +0000239 {EOT}}},
Uwe Hermann14f304a2007-10-08 01:11:11 +0000240 {0x47, "FDC37M60x", { /* TODO: Not yet in sensors-detect */
241 {EOT}}},
Uwe Hermann0f867322007-09-24 01:40:09 +0000242 {0x4c, "FDC37B72x", {
Robinson P. Tryon8a9c03f2007-10-07 15:12:12 +0000243 {NOLDN, NULL,
Uwe Hermannb0ae9762008-10-14 16:34:38 +0000244 {0x03,0x20,0x21,0x22,0x23,0x24,0x26,0x27,0x28,0x2b,
245 0x2c,0x2d,0x2e,0x2f,EOT},
246 {0x03,0x4c,0x00,0x00,0x00,0x04,MISC,MISC,0x00,NANA,
247 NANA,NANA,NANA,NANA,EOT}},
Robinson P. Tryon8a9c03f2007-10-07 15:12:12 +0000248 {0x0, "Floppy",
249 {0x30,0x60,0x61,0x70,0x74,0xf0,0xf1,0xf2,0xf4,0xf5,
250 EOT},
251 {0x00,0x03,0xf0,0x06,0x02,0x0e,0x00,0xff,0x00,0x00,
252 EOT}},
253 {0x3, "Parallel port",
254 {0x30,0x60,0x61,0x70,0x74,0xf0,0xf1,EOT},
255 {0x00,0x00,0x00,0x00,0x04,0x3c,0x00,EOT}},
256 {0x4, "COM1",
257 {0x30,0x60,0x61,0x70,0xf0,EOT},
258 {0x00,0x00,0x00,0x00,0x00,EOT}},
259 {0x5, "COM2",
260 {0x30,0x60,0x61,0x70,0xf0,0xf1,0xf2,EOT},
261 {NANA,0x00,0x00,0x00,0x00,0x02,0x03,EOT}},
262 {0x7, "Keyboard",
263 {0x30,0x70,0x72,0xf0,EOT},
264 {0x00,0x00,0x00,0x00,EOT}},
265 {0x8, "Aux I/O",
266 {0x30,0xb0,0xb1,0xb2,0xb3,0xb8,0xc0,0xc1,0xc2,0xc3,
267 0xc4,0xc5,0xc6,0xc8,0xca,0xcb,0xcc,0xd0,0xd1,0xd2,
268 0xd3,0xd4,0xd5,0xd6,0xd7,0xe0,0xe1,0xe2,0xe3,0xe4,
269 0xe5,0xe6,0xe7,0xef,0xf0,0xf1,0xf2,0xf3,0xf4,0xf6,
270 0xf9,0xfa,EOT},
271 {0x00,NANA,NANA,NANA,NANA,NANA,0x00,0x01,NANA,NANA,
272 NANA,0x00,NANA,NANA,NANA,NANA,NANA,NANA,NANA,NANA,
273 NANA,NANA,NANA,NANA,NANA,NANA,NANA,NANA,NANA,NANA,
274 NANA,NANA,NANA,NANA,NANA,0x00,0x00,0x00,MISC,NANA,
275 NANA,NANA,EOT}},
276 {0xa, "ACPI",
277 {0x30,0x60,0x61,0x70,0xf0,EOT},
278 {0x00,0x00,0x00,NANA,NANA,EOT}},
Uwe Hermann0f867322007-09-24 01:40:09 +0000279 {EOT}}},
280 {0x4d, "FDC37M81x", {
Robinson P. Tryon87c49992007-10-07 14:33:13 +0000281 {NOLDN, NULL,
Uwe Hermannb0ae9762008-10-14 16:34:38 +0000282 {0x03,0x20,0x21,0x22,0x23,0x24,0x26,0x27,0x2b,0x2c,
283 0x2d,0x2e,0x2f,EOT},
284 {0x03,0x4d,NANA,0x00,0x00,0x04,MISC,MISC,NANA,NANA,
285 NANA,NANA,NANA,EOT}},
Robinson P. Tryon87c49992007-10-07 14:33:13 +0000286 {0x0, "Floppy",
287 {0x30,0x60,0x61,0x70,0x74,0xf0,0xf1,0xf2,0xf4,
288 0xf5,EOT},
289 {0x00,0x03,0xf0,0x06,0x02,0x0e,0x00,0xff,0x00,
290 0x00,EOT}},
291 {0x3, "Parallel port",
292 {0x30,0x60,0x61,0x70,0x74,0xf0,0xf1,EOT},
293 {0x00,0x00,0x00,0x00,0x04,0x3c,0x00,EOT}},
294 {0x4, "COM1",
295 {0x30,0x60,0x61,0x70,0xf0,EOT},
296 {0x00,0x00,0x00,0x00,0x00,EOT}},
297 {0x5, "COM2",
298 {0x30,0x60,0x61,0x62,0x63,0x70,0xf0,0xf1,0xf2,EOT},
299 {0x00,0x00,0x00,RSVD,RSVD,0x00,0x00,0x02,0x03,EOT}},
300 {0x7, "Keyboard",
301 {0x30,0x70,0x72,0xf0,EOT},
302 {0x00,0x00,0x00,0x00,EOT}},
303 {0x8, "Aux I/O",
304 /* Only 0xf6 existing (and reserved) or 0xf6..0xfb? */
305 {0x30,0xb4,0xb5,0xb6,0xb7,0xc0,0xc1,0xc2,0xc3,0xc4,
306 0xc5,0xc6,0xc7,0xc8,0xf1,0xf2,0xf3,0xf4,0xf6,0xf7,
307 0xf8,0xf9,0xfa,0xfb,EOT},
308 {0x00,NANA,NANA,NANA,NANA,0x02,0x01,NANA,NANA,NANA,
309 NANA,NANA,NANA,NANA,0x00,0x00,0x00,0x00,RSVD,RSVD,
310 RSVD,RSVD,RSVD,RSVD,EOT}},
Uwe Hermann0f867322007-09-24 01:40:09 +0000311 {EOT}}},
Uwe Hermann0f867322007-09-24 01:40:09 +0000312 {0x51, "LPC47B27x", {
Uwe Hermannf811ede2007-11-22 03:36:18 +0000313 {NOLDN, NULL,
314 {0x03,0x20,0x21,0x22,0x23,0x24,0x26,0x27,0x28,
315 0x2a,0x2b,0x2c,0x2d,0x2e,0x2f,EOT},
316 {RSVD,0x51,NANA,0x00,0x00,0x04,MISC,MISC,RSVD,
317 NANA,NANA,NANA,NANA,NANA,NANA,EOT}},
318 {0x0, "Floppy",
319 {0x30,0x60,0x61,0x70,0x74,0xf0,0xf1,0xf2,0xf4,0xf5,
320 EOT},
321 {0x00,0x03,0xf0,0x06,0x02,0x0e,0x00,0xff,0x00,0x00,
322 EOT}},
323 {0x3, "Parallel port",
324 {0x30,0x60,0x61,0x70,0x74,0xf0,0xf1,EOT},
325 {0x00,0x00,0x00,0x00,0x04,0x3c,0x00,EOT}},
326 {0x4, "COM1",
327 {0x30,0x60,0x61,0x70,0xf0,EOT},
328 {0x00,0x00,0x00,0x00,0x00,EOT}},
329 {0x5, "COM2",
330 {0x30,0x60,0x61,0x62,0x63,0x70,0x74,0xf0,0xf1,0xf2,
331 EOT},
332 {NANA,0x00,0x00,0x00,0x00,0x00,0x04,0x00,0x02,0x03,
333 EOT}},
334 {0x7, "Keyboard",
335 {0x30,0x70,0x72,0xf0,EOT},
336 {0x00,0x00,0x00,0x00,EOT}},
337 {0x9, "Game port",
338 {0x30,0x60,0x61,EOT},
339 {0x00,0x00,0x00,EOT}},
340 {0xa, "Power-management events (PME)",
341 {0x30,0x60,0x61,0xf0,0xf1,EOT},
342 {0x00,0x00,0x00,NANA,NANA,EOT}},
343 {0xb, "MIDI port (MPU-401)",
344 {0x30,0x60,0x61,0x70,EOT},
345 {0x00,0x03,0x30,0x05,EOT}},
Uwe Hermann0f867322007-09-24 01:40:09 +0000346 {EOT}}},
Uwe Hermann14f304a2007-10-08 01:11:11 +0000347 {0x52, "LPC47B37x", {
Uwe Hermann0446dbb2007-10-08 01:59:46 +0000348 {EOT}}},
349 {0x54, "LPC47U33x", {
350 {EOT}}},
351 {0x56, "LPC47B34x", {
352 {EOT}}},
353 {0x57, "LPC47S42x", {
354 {EOT}}},
355 {0x59, "LPC47M10x/112/13x", {
Uwe Hermann23740c82007-10-05 15:11:38 +0000356 {NOLDN, NULL,
Uwe Hermannb0ae9762008-10-14 16:34:38 +0000357 {0x03,0x20,0x21,0x22,0x23,0x24,0x26,0x27,0x28,0x2a,
358 0x2b,0x2c,0x2d,0x2e,0x2f,EOT},
359 {RSVD,0x59,NANA,0x00,0x00,0x44,MISC,MISC,RSVD,NANA,
360 NANA,NANA,NANA,NANA,NANA,EOT}},
Uwe Hermann23740c82007-10-05 15:11:38 +0000361 {0x0, "Floppy",
362 {0x30,0x60,0x61,0x70,0x74,0xf0,0xf1,0xf2,0xf4,
363 0xf5,EOT},
364 {0x00,0x03,0xf0,0x06,0x02,0x0e,0x00,0xff,0x00,
365 0x00,EOT}},
366 {0x3, "Parallel port",
367 {0x30,0x60,0x61,0x70,0x74,0xf0,0xf1,EOT},
368 {0x00,0x00,0x00,0x00,0x04,0x3c,0x00,EOT}},
369 {0x4, "COM1",
370 {0x30,0x60,0x61,0x70,0xf0,EOT},
371 {0x00,0x00,0x00,0x00,0x00,EOT}},
372 {0x5, "COM2",
373 {0x30,0x60,0x61,0x62,0x63,0x70,0x74,0xf0,0xf1,
374 0xf2,EOT},
375 {NANA,0x00,0x00,RSVD,RSVD,0x00,RSVD,0x00,0x02,
376 0x03,EOT}},
377 {0x7, "Keyboard",
378 {0x30,0x70,0x72,0xf0,EOT},
379 {0x00,0x00,0x00,0x00,EOT}},
380 {0x9, "Game port",
381 {0x30,0x60,0x61,EOT},
382 {0x00,0x00,0x00,EOT}},
383 {0xa, "Power Management Events (PME)",
384 {0x30,0x60,0x61,0xf0,0xf1,EOT},
385 {0x00,0x00,0x00,NANA,RSVD,EOT}},
386 {0xb, "MPU-401",
387 {0x30,0x60,0x61,0x70,EOT},
388 {0x00,0x03,0x30,0x05,EOT}},
Uwe Hermann0f867322007-09-24 01:40:09 +0000389 {EOT}}},
Uwe Hermann14f304a2007-10-08 01:11:11 +0000390 {0x5d, "LPC47B357", { /* From sensors-detect (no datasheet) */
391 {EOT}}},
392 {0x5f, "LPC47M14x", {
393 {EOT}}},
394 {0x60, "LPC47M15x/192/997", {
Ulf Jordanc9a677b2007-12-14 20:00:58 +0000395 {NOLDN, NULL,
Uwe Hermannb0ae9762008-10-14 16:34:38 +0000396 {0x03,0x20,0x21,0x22,0x23,0x24,0x26,0x27,0x28,0x2a,
397 0x2b,0x2c,0x2d,0x2e,0x2f,EOT},
398 {RSVD,0x60,NANA,0x00,0x00,0x44,MISC,MISC,RSVD,NANA,
399 NANA,NANA,NANA,NANA,NANA,EOT}},
Ulf Jordanc9a677b2007-12-14 20:00:58 +0000400 {0x0, "Floppy",
401 {0x30,0x60,0x61,0x70,0x74,0xf0,0xf1,0xf2,0xf4,0xf5,
402 EOT},
403 {0x00,0x03,0xf0,0x06,0x02,0x0e,0x00,0xff,0x00,0x00,
404 EOT}},
405 {0x3, "Parallel port",
406 {0x30,0x60,0x61,0x70,0x74,0xf0,0xf1,EOT},
407 {0x00,0x00,0x00,0x00,0x04,0x3c,0x00,EOT}},
408 {0x4, "COM1",
409 {0x30,0x60,0x61,0x70,0xf0,EOT},
410 {0x00,0x00,0x00,0x00,0x00,EOT}},
411 {0x5, "COM2 / IR",
412 {0x30,0x60,0x61,0x70,0xf0,0xf1,0xf2,EOT},
413 {NANA,0x00,0x00,0x00,0x00,0x02,0x03,EOT}},
414 {0x7, "Keyboard",
415 {0x30,0x70,0x72,0xf0,EOT},
416 {0x00,0x00,0x00,0x00,EOT}},
417 {0x9, "Game port",
418 {0x30,0x60,0x61,EOT},
419 {0x00,0x00,0x00,EOT}},
420 {0xa, "Power Management Events (PME)",
421 {0x30,0x60,0x61,0xf0,EOT},
422 {0x00,0x00,0x00,NANA,EOT}},
423 {0xb, "MPU-401",
424 {0x30,0x60,0x61,0x70,EOT},
425 {0x00,0x03,0x30,0x05,EOT}},
Uwe Hermann0f867322007-09-24 01:40:09 +0000426 {EOT}}},
427 {0x62, "LPC47S45x", {
428 {EOT}}},
Uwe Hermanncfb6ac72008-10-01 20:16:58 +0000429 {0x67, "EMC2700LPC", { /* From sensors-detect */
430 {EOT}}},
Uwe Hermann14f304a2007-10-08 01:11:11 +0000431 {0x6b, "LPC47M292", { /* From sensors-detect */
432 {EOT}}},
433 {0x6e, "LPC47B387", { /* TODO: Not yet in sensors-detect */
Uwe Hermanndb5f9532007-10-04 16:28:56 +0000434 /* Found in the HP Compaq Business Desktop d530 Series */
Uwe Hermann59b99d92007-11-29 02:43:50 +0000435 /* http://article.gmane.org/gmane.linux.bios/27192 */
Uwe Hermanndb5f9532007-10-04 16:28:56 +0000436 /* We cannot find a public datasheet for this Super I/O. */
437 {EOT}}},
Uwe Hermann0f867322007-09-24 01:40:09 +0000438 {0x6f, "LPC47B397", {
439 {EOT}}},
Stefan Reinauer6df0c622009-03-11 14:48:20 +0000440 {0x74, "LPC47M182", { /* Only for LD_NUM = 0 */
Uwe Hermann83da8dc2009-03-25 17:38:40 +0000441 {NOLDN, NULL,
Stefan Reinauer6df0c622009-03-11 14:48:20 +0000442 {0x02,0x03,0x07,0x20,0x21,0x22,0x23,0x24,0x26,0x27,
443 0x28,0x29,0x2a,0x2b,0x2c,0x2d,0x2e,0x2f,EOT},
444 {0x00,RSVD,0x00,0x74,RSVD,0x00,RSVD,0x44,MISC,0x00,
445 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,EOT}},
446 {0x0, "Floppy",
447 {0x30,0x60,0x61,0x70,0x74,0xf0,0xf1,0xf2,0xf4,
448 0xf8,EOT},
449 {0x00,0x03,0xf0,0x06,0x02,0x0e,0x00,0xff,0x00,
450 0x24,EOT}},
451 {0x1, "Parallel port",
452 {0x30,0x60,0x61,0x70,0x74,0xf0,0xf1,0xf8,EOT},
453 {0x00,0x00,0x00,0x00,0x04,0x3c,0x00,0x08,EOT}},
454 {0x2, "COM2",
455 {0x30,0x60,0x61,0x70,0xf0,0xf1,0xf2,EOT},
456 {0x00,0x00,0x00,0x00,0x00,0x02,0x03,EOT}},
457 {0x3, "COM1",
458 {0x30,0x60,0x61,0x70,0xf0,EOT},
459 {0x00,0x00,0x00,0x00,0x00,EOT}},
460 {0x4, "Power Control",
461 {0x30,0x60,0x61,0x70,0xf0,0xf1,EOT},
462 {0x00,0x00,0x00,0x00,NANA,0x00,EOT}},
463 {0x5, "Mouse",
464 {0x30,0x70,EOT},
465 {0x00,0x00,EOT}},
466 {0x6, "Keyboard",
467 {0x30,0x70,0xf0,EOT},
468 {0x00,0x00,0x00,EOT}},
469 {0x7, "GPIO",
470 {0x30,0x60,0x61,0x70,0x72,0xf0,EOT},
471 {0x00,0x00,0x00,0x00,0x00,0x00,EOT}},
472 {0xa, "Runtime registers",
473 {0x30,0x60,0x61,0x62,0x63,0xf0,0xf1,0xf2,EOT},
474 {0x00,0x00,0x00,0x00,0x00,NANA,RSVD,0x04,EOT}},
Uwe Hermann14f304a2007-10-08 01:11:11 +0000475 {EOT}}},
476 {0x76, "LPC47M584", { /* From sensors-detect (no datasheet) */
477 {EOT}}},
Uwe Hermann0f867322007-09-24 01:40:09 +0000478 {0x77, "A8000", { /* ASUS A8000, a rebranded DME1737(?) */
479 {NOLDN, NULL,
Uwe Hermannb0ae9762008-10-14 16:34:38 +0000480 {0x03,0x20,0x21,0x22,0x23,0x24,0x26,0x27,0x28,0x2a,
481 0x2b,0x2c,0x2d,0x2e,0x2f,EOT},
482 {RSVD,0x77,NANA,0x00,RSVD,0x44,MISC,MISC,RSVD,NANA,
483 NANA,NANA,NANA,NANA,NANA,EOT}},
Uwe Hermann0f867322007-09-24 01:40:09 +0000484 {0x0, "Floppy",
485 {0x30,0x60,0x61,0x70,0x74,0xf0,0xf1,0xf2,0xf4,
486 0xf5,EOT},
487 {0x00,0x03,0xf0,0x06,0x02,0x0e,0x00,0xff,0x00,
488 0x00,EOT}},
489 {0x3, "Parallel port",
490 {0x30,0x60,0x61,0x70,0x74,0xf0,0xf1,EOT},
491 {0x00,0x00,0x00,0x00,0x04,0x3c,0x00,EOT}},
492 {0x4, "COM1",
493 {0x30,0x60,0x61,0x70,0xf0,EOT},
494 {0x00,0x00,0x00,0x00,0x00,EOT}},
495 {0x5, "COM2",
496 {0x30,0x60,0x61,0x70,0xf0,0xf1,0xf2,EOT},
497 {0x00,0x00,0x00,0x00,0x00,0x02,0x03,EOT}},
498 {0x7, "Keyboard",
499 {0x30,0x70,0x72,0xf0,EOT},
500 {0x00,0x00,0x00,0x00,EOT}},
501 {0xa, "Runtime registers",
502 {0x30,0x60,0x61,0x62,0x63,0xf0,0xf1,0xf2,EOT},
503 {0x00,0x00,0x00,0x00,0x00,NANA,RSVD,0x04,EOT}},
504 {EOT}}},
505 {0x78, "DME1737", {
506 {NOLDN, NULL,
Uwe Hermannb0ae9762008-10-14 16:34:38 +0000507 {0x03,0x20,0x21,0x22,0x23,0x24,0x26,0x27,0x28,0x2a,
508 0x2b,0x2c,0x2d,0x2e,0x2f,EOT},
509 {RSVD,0x77,NANA,0x00,RSVD,0x44,MISC,MISC,RSVD,NANA,
510 NANA,NANA,NANA,NANA,NANA,EOT}},
Uwe Hermann0f867322007-09-24 01:40:09 +0000511 {0x0, "Floppy",
512 {0x30,0x60,0x61,0x70,0x74,0xf0,0xf1,0xf2,0xf4,
513 0xf5,EOT},
514 {0x00,0x03,0xf0,0x06,0x02,0x0e,0x00,0xff,0x00,
515 0x00,EOT}},
516 {0x3, "Parallel port",
517 {0x30,0x60,0x61,0x70,0x74,0xf0,0xf1,EOT},
518 {0x00,0x00,0x00,0x00,0x04,0x3c,0x00,EOT}},
519 {0x4, "COM1",
520 {0x30,0x60,0x61,0x70,0xf0,EOT},
521 {0x00,0x00,0x00,0x00,0x00,EOT}},
522 {0x5, "COM2",
523 {0x30,0x60,0x61,0x70,0xf0,0xf1,0xf2,EOT},
524 {0x00,0x00,0x00,0x00,0x00,0x02,0x03,EOT}},
525 {0x7, "Keyboard",
526 {0x30,0x70,0x72,0xf0,EOT},
527 {0x00,0x00,0x00,0x00,EOT}},
528 {0xa, "Runtime registers",
529 {0x30,0x60,0x61,0x62,0x63,0xf0,0xf1,0xf2,EOT},
530 {0x00,0x00,0x00,0x00,0x00,NANA,RSVD,0x04,EOT}},
531 {EOT}}},
Uwe Hermann14f304a2007-10-08 01:11:11 +0000532 {0x79, "SCH5504", { /* From sensors-detect (no datasheet) */
533 {EOT}}},
Uwe Hermann0dae44c2009-05-07 00:03:18 +0000534 {0x7a, "FDC37N869", { /* Found in Toshiba Satellite A80-117. */
Uwe Hermann14f304a2007-10-08 01:11:11 +0000535 {EOT}}},
Uwe Hermann14f304a2007-10-08 01:11:11 +0000536 {0x7c, "SCH3112", {
537 {EOT}}},
538 {0x7d, "SCH3114", {
539 {EOT}}},
540 {0x7f, "SCH3116", {
541 {EOT}}},
Uwe Hermann0f867322007-09-24 01:40:09 +0000542 {0x81, "SCH5307", {
543 {EOT}}},
Uwe Hermanncfb6ac72008-10-01 20:16:58 +0000544 {0x83, "SCH5514D", { /* From sensors-detect */
545 {EOT}}},
Uwe Hermann14f304a2007-10-08 01:11:11 +0000546 {0x85, "SCH5317", { /* From sensors-detect */
Uwe Hermanncfb6ac72008-10-01 20:16:58 +0000547 /* The SCH5317 can have either 0x85 or 0x8c as device ID. */
548 {EOT}}},
549 {0x86, "SCH5127", { /* From sensors-detect */
Uwe Hermann14f304a2007-10-08 01:11:11 +0000550 {EOT}}},
Uwe Hermannbb33e4a2008-04-23 09:27:18 +0000551 {0x89, "SCH5027", { /* From sensors-detect (no public datasheet) */
552 {EOT}}},
Uwe Hermanncfb6ac72008-10-01 20:16:58 +0000553 {0x8c, "SCH5317", { /* From sensors-detect */
554 /* The SCH5317 can have either 0x85 or 0x8c as device ID. */
555 {EOT}}},
Uwe Hermann14f304a2007-10-08 01:11:11 +0000556 {0x90, "SCH4307", { /* From sensors-detect */
557 {EOT}}},
558
559 /* The following Super I/Os use the 0x0d/0x0e ID registers. */
560 {0x03, "FDC37C669", {
561 /* Init: 0x55, 0x55. Exit: 0xaa. Ports: 0x3f0/0x370. */
562 /* Chiprev: 0x02. */
Uwe Hermann74b29b92007-11-17 17:13:52 +0000563 /* FIXME: There's another 0x03 but found on port 0x20/0x21! */
Uwe Hermann14f304a2007-10-08 01:11:11 +0000564 {EOT}}},
565 {0x04, "FDC37C669FR", { /* TODO: Not yet in sensors-detect. */
566 /* Init: 0x55, 0x55. Exit: 0xaa. Ports: 0x3f0/0x370. */
567 {EOT}}},
Uwe Hermann74b29b92007-11-17 17:13:52 +0000568 {0x13, "LPC47N237", {
569 /* Init: 0x55. Exit: 0xaa. Ports: 0x2e/0x4e. */
570 {EOT}}},
Uwe Hermann14f304a2007-10-08 01:11:11 +0000571 {0x28, "FDC37N769", {
572 /* Init: 0x55. Exit: 0xaa. Ports: 0x3f0/0x370. */
573 {NOLDN, NULL,
574 {0x00,0x01,0x02,0x03,0x04,0x05,0x06,0x07,0x08,0x09,
575 0x0a,0x0b,0x0c,0x0d,0x0e,0x0f,0x10,0x11,0x12,0x13,
576 0x14,0x15,0x16,0x17,0x18,0x19,0x1a,0x1b,0x1c,0x1d,
577 0x1e,0x1f,0x20,0x21,0x22,0x23,0x24,0x25,0x26,0x27,
578 0x28,0x29,0x2a,0x2b,0x2c,0x2d,0x2e,0x2f,EOT},
579 {0x28,0x9c,0x88,0x70,0x00,0x00,0xff,0x00,0x00,0x00,
580 0x00,0x00,0x02,0x28,NANA,0x00,0x00,0x80,RSVD,RSVD,
581 NANA,NANA,NANA,0x03,RSVD,RSVD,RSVD,RSVD,RSVD,RSVD,
582 0x80,0x00,0x3c,RSVD,RSVD,0x00,0x00,0x00,0x00,0x00,
583 0x00,0x00,RSVD,0x00,0x00,0x03,0x00,0x00,EOT}},
584 {EOT}}},
Uwe Hermann74b29b92007-11-17 17:13:52 +0000585 {0x29, "FDC37N3869/FDC37N869", {
586 /* Init: 0x55. Exit: 0xaa. Ports: 0x3f0/0x370. */
587 {EOT}}},
Uwe Hermann14f304a2007-10-08 01:11:11 +0000588 {0x5a, "LPC47N227", {
589 /* Init: 0x55. Exit: 0xaa. Ports: 0x2e/0x4e. */
Stefan Reinauer45c15562007-10-13 17:06:21 +0000590 {NOLDN, NULL,
591 {0x00,0x01,0x02,0x03,0x04,0x05,0x06,0x07,0x08,0x09,
592 0x0a,0x0b,0x0c,0x0d,0x0e,0x0f,0x10,0x11,0x12,0x13,
593 0x14,0x15,0x16,0x17,0x18,0x19,0x1a,0x1b,0x1c,0x1d,
594 0x1e,0x1f,0x20,0x21,0x22,0x23,0x24,0x25,0x26,0x27,
595 0x28,0x29,0x2a,0x2b,0x2c,0x2d,0x2e,0x2f,0x30,0x31,
596 0x32,0x33,0x34,0x35,0x36,0x37,0x38,0x39,EOT},
597 {0x28,0x9c,0x08,0x70,0x00,0x00,0xff,0x00,RSVD,0x00,
598 0x00,0x00,0x02,0x5a,NANA,0x00,0x00,0x80,MISC,0x00,
599 NANA,NANA,NANA,0x03,RSVD,RSVD,RSVD,RSVD,RSVD,RSVD,
600 RSVD,0x00,0x3c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
601 0x00,0x80,0x00,0x00,0x00,0x03,0x00,0x00,0x00,0x00,
602 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,EOT}},
Uwe Hermann14f304a2007-10-08 01:11:11 +0000603 {EOT}}},
Stefan Reinauera3f05792008-07-19 14:42:21 +0000604 {0x5b, "SIO10N268", {
605 /* Init: 0x55. Exit: 0xaa. Ports: 0x2e/0x4e. */
606 {NOLDN, NULL,
Stefan Reinauer67b35cb12008-08-15 09:46:55 +0000607 {0x00,0x01,0x02,0x03,0x04,0x05,0x06,0x07,0x08,0x09,
Stefan Reinauera3f05792008-07-19 14:42:21 +0000608 0x0a,0x0b,0x0c,0x0d,0x0e,0x0f,0x10,0x11,0x12,0x13,
609 0x14,0x15,0x16,0x17,0x18,0x19,0x1a,0x1b,0x1c,0x1d,
610 0x1e,0x1f,0x20,0x21,0x22,0x23,0x24,0x25,0x26,0x27,
611 0x28,0x29,0x2a,0x2b,0x2c,0x2d,0x2e,0x2f,0x30,0x31,
612 0x32,0x33,0x34,0x35,0x36,0x37,0x38,0x39,0x3a,0x3b,
613 0x3c,0x3d,0x3e,0x3f,0x40,0x41,0x42,0x43,0x44,0x45,
614 0x46,0x47,0x48,0x49,0x4a,0x4b,0x4c,0x4d,0x4e,0x4f,
615 0x50,0x51,0x52,0x53,0x54,EOT},
616 {0x20,0x98,0x00,0x70,0x00,0x00,0xff,0x00,0x00,0x00,
617 0x00,0x00,0x02,0x5b,NANA,0x00,0x00,0x00,MISC,0x00,
618 NANA,NANA,NANA,0x03,0x00,NANA,NANA,0x00,0x00,0x00,
619 NANA,0x00,0x3c,0x00,0x00,0x00,0x00,0x00,0xff,0x00,
620 0x00,0x80,0x00,0x00,0x0f,0x03,0x00,0x00,0x00,NANA,
621 NANA,NANA,NANA,NANA,NANA,NANA,NANA,NANA,0x00,0x00,
622 0x00,0x00,0x00,0x00,NANA,NANA,NANA,NANA,NANA,0x50,
623 NANA,0x00,NANA,NANA,NANA,NANA,NANA,NANA,0x00,0x01,
624 0x00,0x01,0x00,0x8c,MISC,EOT}},
625 {EOT}}},
Uwe Hermann14f304a2007-10-08 01:11:11 +0000626 {0x65, "FDC37C665GT/IR", {
627 /* Init: 0x55, 0x55. Exit: 0xaa. Port: 0x3f0. */
628 /* Chiprev: 0x02 = FDC37C665GT, 0x82 = FDC37C665IR */
629 {EOT}}},
630 {0x66, "FDC37C666GT", {
631 /* Init: 0x55, 0x55. Exit: 0xaa. Port: 0x3f0. Chiprev: 0x02. */
632 {EOT}}},
Uwe Hermann6ff6af72007-09-18 22:24:34 +0000633 {EOT}
634};
635
Uwe Hermann3acf31e2007-09-19 01:55:35 +0000636static void enter_conf_mode_smsc(uint16_t port)
Uwe Hermann25a6c0f2007-09-19 00:48:42 +0000637{
Uwe Hermann14f304a2007-10-08 01:11:11 +0000638 /* Some of the SMSC Super I/Os have an 0x55,0x55 init, some only
639 * require one 0x55. We do 0x55,0x55 for all of them at the moment,
640 * in the assumption that the extra 0x55 won't hurt the other
641 * Super I/Os. This is verified to be true on (at least) the FDC37N769.
642 */
Andriy Gaponb64aa602008-10-28 22:13:38 +0000643 OUTB(0x55, port);
644 OUTB(0x55, port);
Uwe Hermann25a6c0f2007-09-19 00:48:42 +0000645}
646
Uwe Hermann3acf31e2007-09-19 01:55:35 +0000647static void exit_conf_mode_smsc(uint16_t port)
Uwe Hermann25a6c0f2007-09-19 00:48:42 +0000648{
Andriy Gaponb64aa602008-10-28 22:13:38 +0000649 OUTB(0xaa, port);
Uwe Hermann25a6c0f2007-09-19 00:48:42 +0000650}
651
Uwe Hermann5f45fc22007-09-28 15:02:17 +0000652static void probe_idregs_smsc_helper(uint16_t port, uint8_t idreg,
653 uint8_t revreg)
Uwe Hermann6ff6af72007-09-18 22:24:34 +0000654{
Uwe Hermann7e7e9ac2007-09-19 15:52:23 +0000655 uint8_t id, rev;
Uwe Hermann83da8dc2009-03-25 17:38:40 +0000656 uint16_t runtime_base;
Uwe Hermann8b8d0392007-10-04 15:23:38 +0000657 const char *info = (idreg == 0x20) ? "(idregs=0x20/0x21) "
658 : "(idregs=0x0d/0x0e) ";
659
660 probing_for("SMSC", info, port);
Uwe Hermann6ff6af72007-09-18 22:24:34 +0000661
Uwe Hermann25a6c0f2007-09-19 00:48:42 +0000662 enter_conf_mode_smsc(port);
Uwe Hermann6ff6af72007-09-18 22:24:34 +0000663
Uwe Hermann5f45fc22007-09-28 15:02:17 +0000664 id = regval(port, idreg);
665 rev = regval(port, revreg);
Uwe Hermann7e7e9ac2007-09-19 15:52:23 +0000666
667 if (superio_unknown(reg_table, id)) {
Uwe Hermann8b8d0392007-10-04 15:23:38 +0000668 if (verbose)
669 printf(NOTFOUND "id=0x%02x, rev=0x%02x\n", id, rev);
Uwe Hermann07024692007-09-20 22:13:48 +0000670 exit_conf_mode_smsc(port);
Uwe Hermann6ff6af72007-09-18 22:24:34 +0000671 return;
672 }
673
Uwe Hermann8b8d0392007-10-04 15:23:38 +0000674 printf("Found %s %s (id=0x%02x, rev=0x%02x) at 0x%x\n",
Uwe Hermann0f867322007-09-24 01:40:09 +0000675 (id == 0x77 ? "ASUS" : "SMSC"), get_superio_name(reg_table, id),
676 id, rev, port);
Uwe Hermanne9d46162007-10-07 20:01:23 +0000677 chip_found = 1;
Uwe Hermann6ff6af72007-09-18 22:24:34 +0000678
Stefan Reinauer7a51e502008-12-01 14:18:57 +0000679 dump_superio((id == 0x77 ? "ASUS" : "SMSC"), reg_table, port, id,
680 LDN_SEL);
Uwe Hermann6ff6af72007-09-18 22:24:34 +0000681
Stefan Reinauer6df0c622009-03-11 14:48:20 +0000682 if (extra_dump) {
Stefan Reinauer6df0c622009-03-11 14:48:20 +0000683 switch (id) {
Uwe Hermann83da8dc2009-03-25 17:38:40 +0000684 case 0x5a: /* LPC47N227 */
Stefan Reinauer6df0c622009-03-11 14:48:20 +0000685 runtime_base = regval(port, 0x30) << 4;
686 if (runtime_base)
687 dump_io(runtime_base, 16);
688 else
Uwe Hermann83da8dc2009-03-25 17:38:40 +0000689 printf("Runtime Register Block not mapped on this Super I/O.\n");
Stefan Reinauer6df0c622009-03-11 14:48:20 +0000690 break;
691 default:
Uwe Hermann83da8dc2009-03-25 17:38:40 +0000692 printf("No extra registers known for this chip.\n");
Stefan Reinauer6df0c622009-03-11 14:48:20 +0000693 }
694 }
695
Uwe Hermann25a6c0f2007-09-19 00:48:42 +0000696 exit_conf_mode_smsc(port);
Uwe Hermann6ff6af72007-09-18 22:24:34 +0000697}
698
Uwe Hermann5f45fc22007-09-28 15:02:17 +0000699void probe_idregs_smsc(uint16_t port)
700{
701 probe_idregs_smsc_helper(port, DEVICE_ID_REG, DEVICE_REV_REG);
702 probe_idregs_smsc_helper(port, DEVICE_ID_REG_OLD, DEVICE_REV_REG_OLD);
703}
Robinson P. Tryon552cfb72008-01-15 22:30:55 +0000704
705void print_smsc_chips(void)
706{
707 print_vendor_chips("SMSC", reg_table);
Uwe Hermann83da8dc2009-03-25 17:38:40 +0000708 printf("SMSC LPC47N227 runtime register block\n\n");
Robinson P. Tryon552cfb72008-01-15 22:30:55 +0000709}