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 struct superio_registers
{
140 int32_t superio_id
; /* Signed, as we need EOT. */
141 const char *name
; /* Super I/O name */
144 const char *name
; /* LDN name */
145 int16_t idx
[IDXSIZE
];
146 int16_t def
[IDXSIZE
];
152 extern struct pci_access
*pacc
;
153 struct pci_dev
*pci_dev_find(uint16_t vendor
, uint16_t device
);
157 uint8_t regval(uint16_t port
, uint8_t reg
);
158 void regwrite(uint16_t port
, uint8_t reg
, uint8_t val
);
159 void enter_conf_mode_winbond_fintek_ite_8787(uint16_t port
);
160 void exit_conf_mode_winbond_fintek_ite_8787(uint16_t port
);
161 void enter_conf_mode_fintek_7777(uint16_t port
);
162 void exit_conf_mode_fintek_7777(uint16_t port
);
163 int superio_unknown(const struct superio_registers reg_table
[], uint16_t id
);
164 const char *get_superio_name(const struct superio_registers reg_table
[],
166 void dump_superio(const char *name
, const struct superio_registers reg_table
[],
167 uint16_t port
, uint16_t id
, uint8_t ldn_sel
);
168 void dump_io(uint16_t iobase
, uint16_t length
);
169 void dump_data(uint16_t iobase
, int bank
);
170 void probing_for(const char *vendor
, const char *info
, uint16_t port
);
171 void print_vendor_chips(const char *vendor
,
172 const struct superio_registers reg_table
[]);
175 void probe_idregs_ali(uint16_t port
);
176 void print_ali_chips(void);
179 void probe_idregs_aspeed(uint16_t port
);
180 void print_aspeed_chips(void);
183 void probe_idregs_amd(uint16_t port
);
184 void print_amd_chips(void);
186 /* serverengines.c */
187 void probe_idregs_serverengines(uint16_t port
);
188 void print_serverengines_chips(void);
191 void probe_idregs_exar(uint16_t port
);
192 void print_exar_chips(void);
195 void probe_idregs_fintek(uint16_t port
);
196 void probe_idregs_fintek_alternative(uint16_t port
);
197 void print_fintek_chips(void);
200 void probe_idregs_infineon(uint16_t port
);
201 void print_infineon_chips(void);
204 void probe_idregs_ite(uint16_t port
);
205 void print_ite_chips(void);
208 void probe_idregs_nsc(uint16_t port
);
209 void print_nsc_chips(void);
212 void probe_idregs_nuvoton(uint16_t port
);
213 void print_nuvoton_chips(void);
216 void probe_idregs_smsc(uint16_t port
);
217 void print_smsc_chips(void);
220 void probe_idregs_winbond(uint16_t port
);
221 void print_winbond_chips(void);
225 void probe_idregs_via(uint16_t port
);
226 void print_via_chips(void);
229 /** Table of which config ports to probe for each Super I/O family. */
230 static const struct {
231 void (*probe_idregs
) (uint16_t port
);
232 int ports
[MAXNUMPORTS
]; /* Signed, as we need EOT. */
233 } superio_ports_table
[] = {
234 {probe_idregs_ali
, {0x3f0, 0x370, EOT
}},
235 {probe_idregs_aspeed
, {0x2e, 0x4e, EOT
}},
236 {probe_idregs_exar
, {0x2e, 0x4e, EOT
}},
237 {probe_idregs_fintek
, {0x2e, 0x4e, EOT
}},
238 {probe_idregs_fintek_alternative
, {0x2e, 0x4e, EOT
}},
239 /* Only use 0x370 for ITE, but 0x3f0 or 0x3bd would also be valid. */
240 {probe_idregs_ite
, {0x20e, 0x25e, 0x2e, 0x4e, 0x370, 0x6e, EOT
}},
241 {probe_idregs_nsc
, {0x2e, 0x4e, 0x15c, 0x164e, EOT
}},
242 /* I/O pairs on Nuvoton EC chips can be configured by firmware in
243 * addition to the following hardware strapping options. */
244 {probe_idregs_nuvoton
, {0x164e, 0x2e, 0x4e, EOT
}},
245 {probe_idregs_smsc
, {0x2e, 0x4e, 0x162e, 0x164e, 0x3f0, 0x370, EOT
}},
246 {probe_idregs_winbond
, {0x2e, 0x4e, 0x3f0, 0x370, 0x250, EOT
}},
248 {probe_idregs_via
, {0x2e, 0x4e, 0x3f0, EOT
}},
249 /* in fact read the BASE from HW */
250 {probe_idregs_amd
, {0xaa, EOT
}},
252 {probe_idregs_serverengines
, {0x2e, EOT
}},
253 {probe_idregs_infineon
, {0x2e, 0x4e, EOT
}},
256 /** Table of functions to print out supported Super I/O chips. */
257 static const struct {
258 void (*print_list
) (void);
259 } vendor_print_functions
[] = {
262 {print_fintek_chips
},
265 {print_nuvoton_chips
},
267 {print_winbond_chips
},
271 {print_aspeed_chips
},
273 {print_serverengines_chips
},
274 {print_infineon_chips
},