Make functions static (where possible) to reduce code size (trivial).
[coreboot.git] / payloads / coreinfo / cpuinfo_module.c
1 /*
2  * This file is part of the coreinfo project.
3  *
4  * It is derived from the x86info project, which is GPLv2-licensed.
5  *
6  * Copyright (C) 2001-2007 Dave Jones <davej@codemonkey.org.uk>
7  * Copyright (C) 2008 Advanced Micro Devices, Inc.
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; version 2 of the License.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  * GNU General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
21  */
22
23 #include "coreinfo.h"
24 #include <arch/rdtsc.h>
25
26 #define VENDOR_INTEL 0x756e6547
27 #define VENDOR_AMD   0x68747541
28 #define VENDOR_CYRIX 0x69727943
29 #define VENDOR_IDT   0x746e6543
30 #define VENDOR_GEODE 0x646f6547
31 #define VENDOR_RISE  0x52697365
32 #define VENDOR_RISE2 0x65736952
33 #define VENDOR_SIS   0x20536953
34
35 /* CPUID 0x00000001 EDX flags */
36 static const char *generic_cap_flags[] = {
37         "fpu", "vme", "de", "pse", "tsc", "msr", "pae", "mce",
38         "cx8", "apic", NULL, "sep", "mtrr", "pge", "mca", "cmov",
39         "pat", "pse36", "psn", "clflsh", NULL, "ds", "acpi", "mmx",
40         "fxsr", "sse", "sse2", "ss", "ht", "tm", NULL, "pbe"
41 };
42
43 /* CPUID 0x00000001 ECX flags */
44 static const char *intel_cap_generic_ecx_flags[] = {
45         "sse3", NULL, NULL, "monitor", "ds-cpl", "vmx", NULL, "est",
46         "tm2", "ssse3", "cntx-id", NULL, NULL, "cx16", "xTPR", NULL,
47         NULL, NULL, "dca", NULL, NULL, NULL, NULL, NULL,
48         NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL
49 };
50
51 /* CPUID 0x80000001 EDX flags */
52 static const char *intel_cap_extended_edx_flags[] = {
53         NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
54         NULL, NULL, NULL, "SYSCALL", NULL, NULL, NULL, NULL,
55         NULL, NULL, NULL, NULL, "xd", NULL, NULL, NULL,
56         NULL, NULL, NULL, NULL, NULL, "em64t", NULL, NULL,
57 };
58
59 /* CPUID 0x80000001 ECX flags */
60 static const char *intel_cap_extended_ecx_flags[] = {
61         "lahf_lm", NULL, NULL, NULL, NULL, NULL, NULL, NULL,
62         NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
63         NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
64         NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
65 };
66
67 static const char *amd_cap_generic_ecx_flags[] = {
68         "sse3", NULL, NULL, "mwait", NULL, NULL, NULL, NULL,
69         NULL, NULL, NULL, NULL, NULL, "cmpxchg16b", NULL, NULL,
70         NULL, NULL, NULL, NULL, NULL, NULL, NULL, "popcnt",
71         NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL
72 };
73
74 static const char *amd_cap_extended_edx_flags[] = {
75         "fpu", "vme", "de", "pse", "tsc", "msr", "pae", "mce",
76         "cx8", "apic", NULL, "sep", "mtrr", "pge", "mca", "cmov",
77         "pat", "pse36", NULL, "mp", "nx", NULL, "mmxext", "mmx",
78         "fxsr", "ffxsr", "page1gb", "rdtscp",
79         NULL, "lm", "3dnowext", "3dnow"
80 }; /* "mp" defined for CPUs prior to AMD family 0xf */
81
82 static const char *amd_cap_extended_ecx_flags[] = {
83         "lahf/sahf", "CmpLegacy", "svm", "ExtApicSpace",
84         "LockMovCr0", "abm", "sse4a", "misalignsse",
85         "3dnowPref", "osvw", "ibs", NULL, "skinit", "wdt", NULL, NULL,
86         NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
87         NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL
88 };
89
90 static unsigned long vendor;
91 static unsigned int cpu_khz;
92
93 static void decode_flags(WINDOW *win, unsigned long reg, const char **flags,
94                          int *row)
95 {
96         int i;
97         int lrow = *row;
98
99         wmove(win, lrow, 2);
100
101         for (i = 0; i < 32; i++) {
102                 if (flags[i] == NULL)
103                         continue;
104
105                 if (reg & (1 << i))
106                         wprintw(win, "%s ", flags[i]);
107
108                 if (i && (i % 16) == 0) {
109                         lrow++;
110                         wmove(win, lrow, 2);
111                 }
112         }
113
114         *row = lrow;
115 }
116
117 static void get_features(WINDOW *win, int *row)
118 {
119         unsigned long eax, ebx, ecx, edx;
120         int lrow = *row;
121
122         wmove(win, lrow++, 1);
123         wprintw(win, "Features: ");
124
125         docpuid(0x00000001, &eax, &ebx, &ecx, &edx);
126         decode_flags(win, edx, generic_cap_flags, &lrow);
127
128         lrow++;
129
130         switch (vendor) {
131         case VENDOR_AMD:
132                 wmove(win, lrow++, 1);
133                 wprintw(win, "AMD Extended Flags: ");
134                 decode_flags(win, ecx, amd_cap_generic_ecx_flags, &lrow);
135                 docpuid(0x80000001, &eax, &ebx, &ecx, &edx);
136                 decode_flags(win, edx, amd_cap_extended_edx_flags, &lrow);
137                 decode_flags(win, ecx, amd_cap_extended_ecx_flags, &lrow);
138                 break;
139         case VENDOR_INTEL:
140                 wmove(win, lrow++, 1);
141                 wprintw(win, "Intel Extended Flags: ");
142                 decode_flags(win, ecx, intel_cap_generic_ecx_flags, &lrow);
143                 docpuid(0x80000001, &eax, &ebx, &ecx, &edx);
144                 decode_flags(win, edx, intel_cap_extended_edx_flags, &lrow);
145                 decode_flags(win, ecx, intel_cap_extended_ecx_flags, &lrow);
146                 break;
147         }
148
149         *row = lrow;
150 }
151
152 static void do_name(WINDOW *win, int row)
153 {
154         char name[49], *p;
155         unsigned long eax, ebx, ecx, edx;
156         int i, t;
157
158         p = name;
159
160         for (i = 0x80000002; i <= 0x80000004; i++) {
161                 docpuid(i, &eax, &ebx, &ecx, &edx);
162
163                 if (eax == 0)
164                         break;
165
166                 for (t = 0; t < 4; t++)
167                         *p++ = eax >> (8 * t);
168                 for (t = 0; t < 4; t++)
169                         *p++ = ebx >> (8 * t);
170                 for (t = 0; t < 4; t++)
171                         *p++ = ecx >> (8 * t);
172                 for (t = 0; t < 4; t++)
173                         *p++ = edx >> (8 * t);
174         }
175
176         mvwprintw(win, row, 1, "Processor: %s", name);
177 }
178
179 static int cpuinfo_module_redraw(WINDOW *win)
180 {
181         unsigned long eax, ebx, ecx, edx;
182         unsigned int brand;
183         char *vstr;
184         int row = 2;
185
186         print_module_title(win, "CPU Information");
187
188         docpuid(0, NULL, &vendor, NULL, NULL);
189
190         switch (vendor) {
191         case VENDOR_INTEL:
192                 vstr = "Intel";
193                 break;
194         case VENDOR_AMD:
195                 vstr = "AMD";
196                 break;
197         case VENDOR_CYRIX:
198                 vstr = "Cyrix";
199                 break;
200         case VENDOR_IDT:
201                 vstr = "IDT";
202                 break;
203         case VENDOR_GEODE:
204                 vstr = "NatSemi Geode";
205                 break;
206         case VENDOR_RISE:
207         case VENDOR_RISE2:
208                 vstr = "RISE";
209                 break;
210         case VENDOR_SIS:
211                 vstr = "SiS";
212                 break;
213         default:
214                 vstr = "Unknown";
215                 break;
216         }
217
218         mvwprintw(win, row++, 1, "Vendor: %s", vstr);
219
220         do_name(win, row++);
221
222         docpuid(0x00000001, &eax, &ebx, &ecx, &edx);
223
224         mvwprintw(win, row++, 1, "Family: %X", (eax >> 8) & 0x0f);
225         mvwprintw(win, row++, 1, "Model: %X",
226                   ((eax >> 4) & 0xf) | ((eax >> 16) & 0xf) << 4);
227
228         mvwprintw(win, row++, 1, "Stepping: %X", eax & 0xf);
229
230         if (vendor == VENDOR_AMD) {
231                 docpuid(0x80000001, &eax, &ebx, &ecx, &edx);
232                 brand = ((ebx >> 9) & 0x1f);
233
234                 mvwprintw(win, row++, 1, "Brand: %X", brand);
235         }
236
237         if (cpu_khz != 0)
238                 mvwprintw(win, row++, 1, "CPU Speed: %d Mhz", cpu_khz / 1000);
239         else
240                 mvwprintw(win, row++, 1, "CPU Speed: Error");
241
242         row++;
243         get_features(win, &row);
244
245         return 0;
246 }
247
248 static unsigned int getticks(void)
249 {
250         unsigned long long start, end;
251
252         /* Read the number of ticks during the period. */
253         start = rdtsc();
254         mdelay(100);
255         end = rdtsc();
256
257         return (unsigned int)((end - start) / 100);
258 }
259
260 static int cpuinfo_module_init(void)
261 {
262         cpu_khz = getticks();
263         return 0;
264 }
265
266 struct coreinfo_module cpuinfo_module = {
267         .name = "CPU Info",
268         .init = cpuinfo_module_init,
269         .redraw = cpuinfo_module_redraw,
270         .handle = NULL,
271 };