arch/arm64: Support FEAT_CCIDX
[coreboot2.git] / util / superiotool / superiotool.h
blob14090309ee0690f994525f41d11b0a19cbfec112
1 /* SPDX-License-Identifier: GPL-2.0-or-later */
3 #ifndef SUPERIOTOOL_H
4 #define SUPERIOTOOL_H
6 #include <stdio.h>
7 #include <stdlib.h>
8 #include <stdint.h>
9 #include <string.h>
10 #include <getopt.h>
11 #include <commonlib/bsd/helpers.h>
12 #if defined(__linux__)
13 #include <sys/io.h>
14 #endif
15 #if (defined(__MACH__) && defined(__APPLE__))
16 /* DirectHW is available here: https://www.coreboot.org/DirectHW */
17 #include <DirectHW/DirectHW.h>
18 #endif
20 #ifdef PCI_SUPPORT
21 # ifdef __NetBSD__
22 #include <pciutils/pci.h>
23 # else
24 #include <pci/pci.h>
25 # endif
26 #endif
28 #include <sys/types.h>
29 #include <stdint.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); })
40 #else
41 #define OUTB outb
42 #define OUTW outw
43 #define OUTL outl
44 #define INB inb
45 #define INW inw
46 #define INL inl
47 #endif
49 #if defined(__NetBSD__) && (defined(__i386__) || defined(__x86_64__))
50 #include <sys/types.h>
51 #include <machine/sysarch.h>
52 #if defined(__i386__)
53 #define iopl i386_iopl
54 #elif defined(__x86_64__)
55 #define iopl x86_64_iopl
56 #endif
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)
78 uint8_t value;
79 __asm__ __volatile__ ("inb %w1,%0":"=a" (value):"Nd" (port));
80 return value;
83 static __inline__ uint16_t inw(uint16_t port)
85 uint16_t value;
86 __asm__ __volatile__ ("inw %w1,%0":"=a" (value):"Nd" (port));
87 return value;
90 static __inline__ uint32_t inl(uint16_t port)
92 uint32_t value;
93 __asm__ __volatile__ ("inl %1,%0":"=a" (value):"Nd" (port));
94 return value;
96 #endif
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 */
142 struct {
143 int8_t ldn;
144 const char *name; /* LDN name */
145 int16_t idx[IDXSIZE];
146 int16_t def[IDXSIZE];
147 } ldn[LDNSIZE];
150 /* pci.c */
151 #ifdef PCI_SUPPORT
152 extern struct pci_access *pacc;
153 struct pci_dev *pci_dev_find(uint16_t vendor, uint16_t device);
154 #endif
156 /* superiotool.c */
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[],
165 uint16_t id);
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[]);
174 /* ali.c */
175 void probe_idregs_ali(uint16_t port);
176 void print_ali_chips(void);
178 /* aspeed.c */
179 void probe_idregs_aspeed(uint16_t port);
180 void print_aspeed_chips(void);
182 /* amd.c */
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);
190 /* exar.c */
191 void probe_idregs_exar(uint16_t port);
192 void print_exar_chips(void);
194 /* fintek.c */
195 void probe_idregs_fintek(uint16_t port);
196 void probe_idregs_fintek_alternative(uint16_t port);
197 void print_fintek_chips(void);
199 /* infineon.c */
200 void probe_idregs_infineon(uint16_t port);
201 void print_infineon_chips(void);
203 /* ite.c */
204 void probe_idregs_ite(uint16_t port);
205 void print_ite_chips(void);
207 /* nsc.c */
208 void probe_idregs_nsc(uint16_t port);
209 void print_nsc_chips(void);
211 /* nuvoton.c */
212 void probe_idregs_nuvoton(uint16_t port);
213 void print_nuvoton_chips(void);
215 /* smsc.c */
216 void probe_idregs_smsc(uint16_t port);
217 void print_smsc_chips(void);
219 /* winbond.c */
220 void probe_idregs_winbond(uint16_t port);
221 void print_winbond_chips(void);
223 /* via.c */
224 #ifdef PCI_SUPPORT
225 void probe_idregs_via(uint16_t port);
226 void print_via_chips(void);
227 #endif
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}},
247 #ifdef PCI_SUPPORT
248 {probe_idregs_via, {0x2e, 0x4e, 0x3f0, EOT}},
249 /* in fact read the BASE from HW */
250 {probe_idregs_amd, {0xaa, EOT}},
251 #endif
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[] = {
260 {print_ali_chips},
261 {print_exar_chips},
262 {print_fintek_chips},
263 {print_ite_chips},
264 {print_nsc_chips},
265 {print_nuvoton_chips},
266 {print_smsc_chips},
267 {print_winbond_chips},
268 #ifdef PCI_SUPPORT
269 {print_via_chips},
270 {print_amd_chips},
271 {print_aspeed_chips},
272 #endif
273 {print_serverengines_chips},
274 {print_infineon_chips},
277 #endif