1 /* SPDX-License-Identifier: GPL-2.0-or-later */
11 #include <commonlib/bsd/helpers.h>
12 #if defined(__linux__)
15 #if (defined(__MACH__) && defined(__APPLE__))
16 /* DirectHW is available here: https://www.coreboot.org/DirectHW */
17 #include <DirectHW/DirectHW.h>
22 #include <pciutils/pci.h>
28 #include <sys/types.h>
31 #if defined(__FreeBSD__)
32 #include <sys/types.h>
33 #include <machine/cpufunc.h>
34 #define OUTB(x, y) do { u_int tmp = (y); outb(tmp, (x)); } while (0)
35 #define OUTW(x, y) do { u_int tmp = (y); outw(tmp, (x)); } while (0)
36 #define OUTL(x, y) do { u_int tmp = (y); outl(tmp, (x)); } while (0)
37 #define INB(x) __extension__ ({ u_int tmp = (x); inb(tmp); })
38 #define INW(x) __extension__ ({ u_int tmp = (x); inw(tmp); })
39 #define INL(x) __extension__ ({ u_int tmp = (x); inl(tmp); })
49 #if defined(__NetBSD__) && (defined(__i386__) || defined(__x86_64__))
50 #include <sys/types.h>
51 #include <machine/sysarch.h>
53 #define iopl i386_iopl
54 #elif defined(__x86_64__)
55 #define iopl x86_64_iopl
58 static __inline__
void
59 outb(uint8_t value
, uint16_t port
)
61 __asm__
__volatile__ ("outb %b0,%w1": :"a" (value
), "Nd" (port
));
64 static __inline__
void
65 outw(uint16_t value
, uint16_t port
)
67 __asm__
__volatile__ ("outw %w0,%w1": :"a" (value
), "Nd" (port
));
70 static __inline__
void
71 outl(uint32_t value
, uint16_t port
)
73 __asm__
__volatile__ ("outl %0,%w1": :"a" (value
), "Nd" (port
));
76 static __inline__
uint8_t inb(uint16_t port
)
79 __asm__
__volatile__ ("inb %w1,%0":"=a" (value
):"Nd" (port
));
83 static __inline__
uint16_t inw(uint16_t port
)
86 __asm__
__volatile__ ("inw %w1,%0":"=a" (value
):"Nd" (port
));
90 static __inline__
uint32_t inl(uint16_t port
)
93 __asm__
__volatile__ ("inl %1,%0":"=a" (value
):"Nd" (port
));
98 #define USAGE "Usage: superiotool [-d] [-e] [-a] [-l] [-V] [-v] [-h]\n\n\
99 -d | --dump Dump Super I/O register contents\n\
100 -e | --extra-dump Dump secondary registers too (e.g. EC registers)\n\
101 -a | --alternate-dump Use alternative dump format, more suitable for diff\n\
102 -l | --list-supported Show the list of supported Super I/O chips\n\
103 -V | --verbose Verbose mode\n\
104 -v | --version Show the superiotool version\n\
105 -h | --help Show a short help text\n\n"
107 #define USAGE_INFO "\
108 Per default (no options) superiotool will just probe for a Super I/O\n\
109 and print its vendor, name, ID, revision, and config port.\n"
111 #define NOTFOUND " Failed. Returned data: "
113 #define EOT -1 /* End Of Table */
114 #define NOLDN -2 /* NO LDN needed */
115 #define NANA -3 /* Not Available:
116 Used for registers having externally controlled
117 values that can change during runtime like
118 GPIO input value registers. */
119 #define RSVD -4 /* Reserved */
120 #define MISC -5 /* Needs special comment in output:
121 Used for registers depending on external pin straps
122 configuring static, but board-specific settings like
123 SIO base address or AMD/Intel power seqencing type. */
124 #define MAXLDN 0x14 /* Biggest LDN */
125 #define LDNSIZE (MAXLDN + 3) /* Biggest LDN + 0 + NOLDN + EOT */
126 #define MAXNUMIDX 170 /* Maximum number of indices */
127 #define IDXSIZE (MAXNUMIDX + 1)
128 #define MAXNUMPORTS (6 + 1) /* Maximum number of Super I/O ports */
130 /* Select registers for various components. */
131 #define LDN_SEL 0x07 /* LDN select register */
132 #define WINBOND_HWM_SEL 0x4e /* Hardware monitor bank select */
134 /* Command line parameters. */
135 extern int dump
, verbose
, extra_dump
;
137 extern int chip_found
;
139 /* Extra selector structure (see fintek.c) */
140 struct extra_selector
{
147 struct superio_registers
{
148 int32_t superio_id
; /* Signed, as we need EOT. */
149 const char *name
; /* Super I/O name */
152 const char *name
; /* LDN name */
153 int16_t idx
[IDXSIZE
];
154 int16_t def
[IDXSIZE
];
155 struct extra_selector esel
;
161 extern struct pci_access
*pacc
;
162 struct pci_dev
*pci_dev_find(uint16_t vendor
, uint16_t device
);
166 uint8_t regval(uint16_t port
, uint8_t reg
);
167 void regwrite(uint16_t port
, uint8_t reg
, uint8_t val
);
168 void enter_conf_mode_winbond_fintek_ite_8787(uint16_t port
);
169 void exit_conf_mode_winbond_fintek_ite_8787(uint16_t port
);
170 void enter_conf_mode_fintek_7777(uint16_t port
);
171 void exit_conf_mode_fintek_7777(uint16_t port
);
172 int superio_unknown(const struct superio_registers reg_table
[], uint16_t id
);
173 const char *get_superio_name(const struct superio_registers reg_table
[],
175 void dump_superio(const char *name
, const struct superio_registers reg_table
[],
176 uint16_t port
, uint16_t id
, uint8_t ldn_sel
);
177 void dump_io(uint16_t iobase
, uint16_t length
);
178 void dump_data(uint16_t iobase
, int bank
);
179 void probing_for(const char *vendor
, const char *info
, uint16_t port
);
180 void print_vendor_chips(const char *vendor
,
181 const struct superio_registers reg_table
[]);
184 void probe_idregs_ali(uint16_t port
);
185 void print_ali_chips(void);
188 void probe_idregs_aspeed(uint16_t port
);
189 void print_aspeed_chips(void);
192 void probe_idregs_amd(uint16_t port
);
193 void print_amd_chips(void);
195 /* serverengines.c */
196 void probe_idregs_serverengines(uint16_t port
);
197 void print_serverengines_chips(void);
200 void probe_idregs_exar(uint16_t port
);
201 void print_exar_chips(void);
204 void probe_idregs_fintek(uint16_t port
);
205 void probe_idregs_fintek_alternative(uint16_t port
);
206 void print_fintek_chips(void);
209 void probe_idregs_infineon(uint16_t port
);
210 void print_infineon_chips(void);
213 void probe_idregs_ite(uint16_t port
);
214 void print_ite_chips(void);
217 void probe_idregs_nsc(uint16_t port
);
218 void print_nsc_chips(void);
221 void probe_idregs_nuvoton(uint16_t port
);
222 void print_nuvoton_chips(void);
225 void probe_idregs_smsc(uint16_t port
);
226 void print_smsc_chips(void);
229 void probe_idregs_winbond(uint16_t port
);
230 void print_winbond_chips(void);
234 void probe_idregs_via(uint16_t port
);
235 void print_via_chips(void);
238 /** Table of which config ports to probe for each Super I/O family. */
239 static const struct {
240 void (*probe_idregs
) (uint16_t port
);
241 int ports
[MAXNUMPORTS
]; /* Signed, as we need EOT. */
242 } superio_ports_table
[] = {
243 {probe_idregs_ali
, {0x3f0, 0x370, EOT
}},
244 {probe_idregs_aspeed
, {0x2e, 0x4e, EOT
}},
245 {probe_idregs_exar
, {0x2e, 0x4e, EOT
}},
246 {probe_idregs_fintek
, {0x2e, 0x4e, EOT
}},
247 {probe_idregs_fintek_alternative
, {0x2e, 0x4e, EOT
}},
248 /* Only use 0x370 for ITE, but 0x3f0 or 0x3bd would also be valid. */
249 {probe_idregs_ite
, {0x20e, 0x25e, 0x2e, 0x4e, 0x370, 0x6e, EOT
}},
250 {probe_idregs_nsc
, {0x2e, 0x4e, 0x15c, 0x164e, EOT
}},
251 /* I/O pairs on Nuvoton EC chips can be configured by firmware in
252 * addition to the following hardware strapping options. */
253 {probe_idregs_nuvoton
, {0x164e, 0x2e, 0x4e, EOT
}},
254 {probe_idregs_smsc
, {0x2e, 0x4e, 0x162e, 0x164e, 0x3f0, 0x370, EOT
}},
255 {probe_idregs_winbond
, {0x2e, 0x4e, 0x3f0, 0x370, 0x250, EOT
}},
257 {probe_idregs_via
, {0x2e, 0x4e, 0x3f0, EOT
}},
258 /* in fact read the BASE from HW */
259 {probe_idregs_amd
, {0xaa, EOT
}},
261 {probe_idregs_serverengines
, {0x2e, EOT
}},
262 {probe_idregs_infineon
, {0x2e, 0x4e, EOT
}},
265 /** Table of functions to print out supported Super I/O chips. */
266 static const struct {
267 void (*print_list
) (void);
268 } vendor_print_functions
[] = {
271 {print_fintek_chips
},
274 {print_nuvoton_chips
},
276 {print_winbond_chips
},
280 {print_aspeed_chips
},
282 {print_serverengines_chips
},
283 {print_infineon_chips
},