Mercurial > mplayer.hg
annotate TOOLS/cpuinfo.c @ 20609:c90f6e02a589
Remove HAVE_MPLAYER check, we unconditionally compile with HAVE_MPLAYER set.
Also remove the corresponding else case, it was unreachable.
author | diego |
---|---|
date | Fri, 03 Nov 2006 10:09:39 +0000 |
parents | 2d5790e4ee8f |
children | ababf115f90d |
rev | line source |
---|---|
12960 | 1 /* small utility to extract CPU information |
17041 | 2 Used by configure to set CPU optimization levels on some operating |
3 systems where /proc/cpuinfo is non-existent or unreliable. */ | |
1038
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
diff
changeset
|
4 |
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
diff
changeset
|
5 #include <stdio.h> |
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
diff
changeset
|
6 #include <sys/time.h> |
17040
0bfb87188015
correct k6_mtrr detection, add a great deal of infos about newer processors
gpoirier
parents:
13612
diff
changeset
|
7 #include <stdlib.h> |
0bfb87188015
correct k6_mtrr detection, add a great deal of infos about newer processors
gpoirier
parents:
13612
diff
changeset
|
8 #include <string.h> |
18511
744aa553e4a1
Various improvement, fix build on AMD-64 and icc
gpoirier
parents:
17041
diff
changeset
|
9 #include <unistd.h> |
1038
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
diff
changeset
|
10 |
18910 | 11 #if defined(__MINGW32__) && (__MINGW32_MAJOR_VERSION <= 3) && (__MINGW32_MINOR_VERSION < 10) |
9764 | 12 #include <sys/timeb.h> |
17041 | 13 void gettimeofday(struct timeval* t,void* timezone) { |
14 struct timeb timebuffer; | |
15 ftime( &timebuffer ); | |
16 t->tv_sec=timebuffer.time; | |
17 t->tv_usec=1000*timebuffer.millitm; | |
9764 | 18 } |
18926
a163f6de7bdc
usleep is still missing in MinGW, so leave it out of the MinGW version check.
diego
parents:
18910
diff
changeset
|
19 #endif |
a163f6de7bdc
usleep is still missing in MinGW, so leave it out of the MinGW version check.
diego
parents:
18910
diff
changeset
|
20 #ifdef __MINGW32__ |
9764 | 21 #define MISSING_USLEEP |
22 #define sleep(t) _sleep(1000*t); | |
23 #endif | |
24 | |
13612 | 25 #ifdef __BEOS__ |
26 #define usleep(t) snooze(t) | |
27 #endif | |
28 | |
1038
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
diff
changeset
|
29 #ifdef M_UNIX |
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
diff
changeset
|
30 typedef long long int64_t; |
17041 | 31 #define MISSING_USLEEP |
1038
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
diff
changeset
|
32 #else |
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
diff
changeset
|
33 #include <inttypes.h> |
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
diff
changeset
|
34 #endif |
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
diff
changeset
|
35 |
19999
1ffb54bae960
Convert strings to comments since they're never used,
gpoirier
parents:
18926
diff
changeset
|
36 #define CPUID_FEATURE_DEF(bit, desc, description) \ |
1ffb54bae960
Convert strings to comments since they're never used,
gpoirier
parents:
18926
diff
changeset
|
37 { bit, desc } |
1038
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
diff
changeset
|
38 |
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
diff
changeset
|
39 typedef struct cpuid_regs { |
17041 | 40 unsigned int eax; |
41 unsigned int ebx; | |
42 unsigned int ecx; | |
43 unsigned int edx; | |
1038
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
diff
changeset
|
44 } cpuid_regs_t; |
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
diff
changeset
|
45 |
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
diff
changeset
|
46 static cpuid_regs_t |
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
diff
changeset
|
47 cpuid(int func) { |
17041 | 48 cpuid_regs_t regs; |
49 #define CPUID ".byte 0x0f, 0xa2; " | |
18534
cbcea803efa1
x86_64 only saves ebx, not rbx. Fix some potential compilation problem on amd64.
gpoirier
parents:
18517
diff
changeset
|
50 #ifdef __x86_64__ |
cbcea803efa1
x86_64 only saves ebx, not rbx. Fix some potential compilation problem on amd64.
gpoirier
parents:
18517
diff
changeset
|
51 asm("mov %%rbx, %%rsi\n\t" |
cbcea803efa1
x86_64 only saves ebx, not rbx. Fix some potential compilation problem on amd64.
gpoirier
parents:
18517
diff
changeset
|
52 #else |
18517 | 53 asm("mov %%ebx, %%esi\n\t" |
18534
cbcea803efa1
x86_64 only saves ebx, not rbx. Fix some potential compilation problem on amd64.
gpoirier
parents:
18517
diff
changeset
|
54 #endif |
18517 | 55 CPUID"\n\t" |
18534
cbcea803efa1
x86_64 only saves ebx, not rbx. Fix some potential compilation problem on amd64.
gpoirier
parents:
18517
diff
changeset
|
56 #ifdef __x86_64__ |
cbcea803efa1
x86_64 only saves ebx, not rbx. Fix some potential compilation problem on amd64.
gpoirier
parents:
18517
diff
changeset
|
57 "xchg %%rsi, %%rbx\n\t" |
cbcea803efa1
x86_64 only saves ebx, not rbx. Fix some potential compilation problem on amd64.
gpoirier
parents:
18517
diff
changeset
|
58 #else |
cbcea803efa1
x86_64 only saves ebx, not rbx. Fix some potential compilation problem on amd64.
gpoirier
parents:
18517
diff
changeset
|
59 "xchg %%esi, %%ebx\n\t" |
cbcea803efa1
x86_64 only saves ebx, not rbx. Fix some potential compilation problem on amd64.
gpoirier
parents:
18517
diff
changeset
|
60 #endif |
18517 | 61 : "=a" (regs.eax), "=S" (regs.ebx), "=c" (regs.ecx), "=d" (regs.edx) |
18511
744aa553e4a1
Various improvement, fix build on AMD-64 and icc
gpoirier
parents:
17041
diff
changeset
|
62 : "0" (func)); |
17041 | 63 return regs; |
1038
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
diff
changeset
|
64 } |
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
diff
changeset
|
65 |
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
diff
changeset
|
66 |
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
diff
changeset
|
67 static int64_t |
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
diff
changeset
|
68 rdtsc(void) |
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
diff
changeset
|
69 { |
18847
0e2d54a7cb61
merges two asm constraints to one, patch by Zuxy Meng zuxy PP meng AHH gmail PP com
gpoirier
parents:
18552
diff
changeset
|
70 uint64_t i; |
17041 | 71 #define RDTSC ".byte 0x0f, 0x31; " |
18847
0e2d54a7cb61
merges two asm constraints to one, patch by Zuxy Meng zuxy PP meng AHH gmail PP com
gpoirier
parents:
18552
diff
changeset
|
72 asm volatile (RDTSC : "=A"(i) : ); |
0e2d54a7cb61
merges two asm constraints to one, patch by Zuxy Meng zuxy PP meng AHH gmail PP com
gpoirier
parents:
18552
diff
changeset
|
73 return i; |
1038
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
diff
changeset
|
74 } |
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
diff
changeset
|
75 |
18511
744aa553e4a1
Various improvement, fix build on AMD-64 and icc
gpoirier
parents:
17041
diff
changeset
|
76 static const char* |
744aa553e4a1
Various improvement, fix build on AMD-64 and icc
gpoirier
parents:
17041
diff
changeset
|
77 brandname(int i) |
744aa553e4a1
Various improvement, fix build on AMD-64 and icc
gpoirier
parents:
17041
diff
changeset
|
78 { |
744aa553e4a1
Various improvement, fix build on AMD-64 and icc
gpoirier
parents:
17041
diff
changeset
|
79 const static char* brandmap[] = { |
744aa553e4a1
Various improvement, fix build on AMD-64 and icc
gpoirier
parents:
17041
diff
changeset
|
80 NULL, |
744aa553e4a1
Various improvement, fix build on AMD-64 and icc
gpoirier
parents:
17041
diff
changeset
|
81 "Intel(R) Celeron(R) processor", |
744aa553e4a1
Various improvement, fix build on AMD-64 and icc
gpoirier
parents:
17041
diff
changeset
|
82 "Intel(R) Pentium(R) III processor", |
744aa553e4a1
Various improvement, fix build on AMD-64 and icc
gpoirier
parents:
17041
diff
changeset
|
83 "Intel(R) Pentium(R) III Xeon(tm) processor", |
744aa553e4a1
Various improvement, fix build on AMD-64 and icc
gpoirier
parents:
17041
diff
changeset
|
84 "Intel(R) Pentium(R) III processor", |
744aa553e4a1
Various improvement, fix build on AMD-64 and icc
gpoirier
parents:
17041
diff
changeset
|
85 NULL, |
744aa553e4a1
Various improvement, fix build on AMD-64 and icc
gpoirier
parents:
17041
diff
changeset
|
86 "Mobile Intel(R) Pentium(R) III processor-M", |
744aa553e4a1
Various improvement, fix build on AMD-64 and icc
gpoirier
parents:
17041
diff
changeset
|
87 "Mobile Intel(R) Celeron(R) processor" |
744aa553e4a1
Various improvement, fix build on AMD-64 and icc
gpoirier
parents:
17041
diff
changeset
|
88 }; |
744aa553e4a1
Various improvement, fix build on AMD-64 and icc
gpoirier
parents:
17041
diff
changeset
|
89 |
744aa553e4a1
Various improvement, fix build on AMD-64 and icc
gpoirier
parents:
17041
diff
changeset
|
90 if (i >= sizeof(brandmap)) |
744aa553e4a1
Various improvement, fix build on AMD-64 and icc
gpoirier
parents:
17041
diff
changeset
|
91 return NULL; |
744aa553e4a1
Various improvement, fix build on AMD-64 and icc
gpoirier
parents:
17041
diff
changeset
|
92 else |
744aa553e4a1
Various improvement, fix build on AMD-64 and icc
gpoirier
parents:
17041
diff
changeset
|
93 return brandmap[i]; |
744aa553e4a1
Various improvement, fix build on AMD-64 and icc
gpoirier
parents:
17041
diff
changeset
|
94 } |
1038
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
diff
changeset
|
95 |
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
diff
changeset
|
96 static void |
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
diff
changeset
|
97 store32(char *d, unsigned int v) |
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
diff
changeset
|
98 { |
17041 | 99 d[0] = v & 0xff; |
100 d[1] = (v >> 8) & 0xff; | |
101 d[2] = (v >> 16) & 0xff; | |
102 d[3] = (v >> 24) & 0xff; | |
1038
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
diff
changeset
|
103 } |
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
diff
changeset
|
104 |
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
diff
changeset
|
105 |
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
diff
changeset
|
106 int |
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
diff
changeset
|
107 main(int argc, char **argv) |
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
diff
changeset
|
108 { |
17041 | 109 cpuid_regs_t regs, regs_ext; |
110 char idstr[13]; | |
111 unsigned max_cpuid; | |
112 unsigned max_ext_cpuid; | |
113 unsigned int amd_flags; | |
114 unsigned int amd_flags2; | |
18511
744aa553e4a1
Various improvement, fix build on AMD-64 and icc
gpoirier
parents:
17041
diff
changeset
|
115 const char *model_name = NULL; |
17041 | 116 int i; |
117 char processor_name[49]; | |
1038
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
diff
changeset
|
118 |
17041 | 119 regs = cpuid(0); |
120 max_cpuid = regs.eax; | |
121 /* printf("%d CPUID function codes\n", max_cpuid+1); */ | |
1038
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
diff
changeset
|
122 |
17041 | 123 store32(idstr+0, regs.ebx); |
124 store32(idstr+4, regs.edx); | |
125 store32(idstr+8, regs.ecx); | |
126 idstr[12] = 0; | |
127 printf("vendor_id\t: %s\n", idstr); | |
1038
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
diff
changeset
|
128 |
17041 | 129 regs_ext = cpuid((1<<31) + 0); |
130 max_ext_cpuid = regs_ext.eax; | |
131 if (max_ext_cpuid >= (1<<31) + 1) { | |
132 regs_ext = cpuid((1<<31) + 1); | |
133 amd_flags = regs_ext.edx; | |
134 amd_flags2 = regs_ext.ecx; | |
1038
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
diff
changeset
|
135 |
17041 | 136 if (max_ext_cpuid >= (1<<31) + 4) { |
137 for (i = 2; i <= 4; i++) { | |
138 regs_ext = cpuid((1<<31) + i); | |
139 store32(processor_name + (i-2)*16, regs_ext.eax); | |
140 store32(processor_name + (i-2)*16 + 4, regs_ext.ebx); | |
141 store32(processor_name + (i-2)*16 + 8, regs_ext.ecx); | |
142 store32(processor_name + (i-2)*16 + 12, regs_ext.edx); | |
143 } | |
144 processor_name[48] = 0; | |
145 model_name = processor_name; | |
146 } | |
147 } else { | |
148 amd_flags = 0; | |
149 amd_flags2 = 0; | |
150 } | |
1038
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
diff
changeset
|
151 |
17041 | 152 if (max_cpuid >= 1) { |
153 static struct { | |
154 int bit; | |
20001 | 155 char *desc; |
17041 | 156 } cap[] = { |
19999
1ffb54bae960
Convert strings to comments since they're never used,
gpoirier
parents:
18926
diff
changeset
|
157 CPUID_FEATURE_DEF(0, "fpu", "Floating-point unit on-chip"), |
1ffb54bae960
Convert strings to comments since they're never used,
gpoirier
parents:
18926
diff
changeset
|
158 CPUID_FEATURE_DEF(1, "vme", "Virtual Mode Enhancements"), |
1ffb54bae960
Convert strings to comments since they're never used,
gpoirier
parents:
18926
diff
changeset
|
159 CPUID_FEATURE_DEF(2, "de", "Debugging Extension"), |
1ffb54bae960
Convert strings to comments since they're never used,
gpoirier
parents:
18926
diff
changeset
|
160 CPUID_FEATURE_DEF(3, "pse", "Page Size Extension"), |
1ffb54bae960
Convert strings to comments since they're never used,
gpoirier
parents:
18926
diff
changeset
|
161 CPUID_FEATURE_DEF(4, "tsc", "Time Stamp Counter"), |
1ffb54bae960
Convert strings to comments since they're never used,
gpoirier
parents:
18926
diff
changeset
|
162 CPUID_FEATURE_DEF(5, "msr", "Pentium Processor MSR"), |
1ffb54bae960
Convert strings to comments since they're never used,
gpoirier
parents:
18926
diff
changeset
|
163 CPUID_FEATURE_DEF(6, "pae", "Physical Address Extension"), |
1ffb54bae960
Convert strings to comments since they're never used,
gpoirier
parents:
18926
diff
changeset
|
164 CPUID_FEATURE_DEF(7, "mce", "Machine Check Exception"), |
1ffb54bae960
Convert strings to comments since they're never used,
gpoirier
parents:
18926
diff
changeset
|
165 CPUID_FEATURE_DEF(8, "cx8", "CMPXCHG8B Instruction Supported"), |
1ffb54bae960
Convert strings to comments since they're never used,
gpoirier
parents:
18926
diff
changeset
|
166 CPUID_FEATURE_DEF(9, "apic", "On-chip APIC Hardware Enabled"), |
1ffb54bae960
Convert strings to comments since they're never used,
gpoirier
parents:
18926
diff
changeset
|
167 CPUID_FEATURE_DEF(11, "sep", "SYSENTER and SYSEXIT"), |
1ffb54bae960
Convert strings to comments since they're never used,
gpoirier
parents:
18926
diff
changeset
|
168 CPUID_FEATURE_DEF(12, "mtrr", "Memory Type Range Registers"), |
1ffb54bae960
Convert strings to comments since they're never used,
gpoirier
parents:
18926
diff
changeset
|
169 CPUID_FEATURE_DEF(13, "pge", "PTE Global Bit"), |
1ffb54bae960
Convert strings to comments since they're never used,
gpoirier
parents:
18926
diff
changeset
|
170 CPUID_FEATURE_DEF(14, "mca", "Machine Check Architecture"), |
1ffb54bae960
Convert strings to comments since they're never used,
gpoirier
parents:
18926
diff
changeset
|
171 CPUID_FEATURE_DEF(15, "cmov", "Conditional Move/Compare Instruction"), |
1ffb54bae960
Convert strings to comments since they're never used,
gpoirier
parents:
18926
diff
changeset
|
172 CPUID_FEATURE_DEF(16, "pat", "Page Attribute Table"), |
1ffb54bae960
Convert strings to comments since they're never used,
gpoirier
parents:
18926
diff
changeset
|
173 CPUID_FEATURE_DEF(17, "pse36", "Page Size Extension 36-bit"), |
1ffb54bae960
Convert strings to comments since they're never used,
gpoirier
parents:
18926
diff
changeset
|
174 CPUID_FEATURE_DEF(18, "pn", "Processor Serial Number"), |
1ffb54bae960
Convert strings to comments since they're never used,
gpoirier
parents:
18926
diff
changeset
|
175 CPUID_FEATURE_DEF(19, "cflsh", "CFLUSH instruction"), |
1ffb54bae960
Convert strings to comments since they're never used,
gpoirier
parents:
18926
diff
changeset
|
176 CPUID_FEATURE_DEF(21, "dts", "Debug Store"), |
1ffb54bae960
Convert strings to comments since they're never used,
gpoirier
parents:
18926
diff
changeset
|
177 CPUID_FEATURE_DEF(22, "acpi", "Thermal Monitor and Clock Ctrl"), |
1ffb54bae960
Convert strings to comments since they're never used,
gpoirier
parents:
18926
diff
changeset
|
178 CPUID_FEATURE_DEF(23, "mmx", "MMX Technology"), |
1ffb54bae960
Convert strings to comments since they're never used,
gpoirier
parents:
18926
diff
changeset
|
179 CPUID_FEATURE_DEF(24, "fxsr", "FXSAVE/FXRSTOR"), |
1ffb54bae960
Convert strings to comments since they're never used,
gpoirier
parents:
18926
diff
changeset
|
180 CPUID_FEATURE_DEF(25, "sse", "SSE Extensions"), |
1ffb54bae960
Convert strings to comments since they're never used,
gpoirier
parents:
18926
diff
changeset
|
181 CPUID_FEATURE_DEF(26, "sse2", "SSE2 Extensions"), |
1ffb54bae960
Convert strings to comments since they're never used,
gpoirier
parents:
18926
diff
changeset
|
182 CPUID_FEATURE_DEF(27, "ss", "Self Snoop"), |
1ffb54bae960
Convert strings to comments since they're never used,
gpoirier
parents:
18926
diff
changeset
|
183 CPUID_FEATURE_DEF(28, "ht", "Multi-threading"), |
1ffb54bae960
Convert strings to comments since they're never used,
gpoirier
parents:
18926
diff
changeset
|
184 CPUID_FEATURE_DEF(29, "tm", "Therm. Monitor"), |
1ffb54bae960
Convert strings to comments since they're never used,
gpoirier
parents:
18926
diff
changeset
|
185 CPUID_FEATURE_DEF(30, "ia64", "IA-64 Processor"), |
1ffb54bae960
Convert strings to comments since they're never used,
gpoirier
parents:
18926
diff
changeset
|
186 CPUID_FEATURE_DEF(31, "pbe", "Pend. Brk. EN."), |
17041 | 187 { -1 } |
188 }; | |
189 static struct { | |
190 int bit; | |
191 char *desc; | |
192 } cap2[] = { | |
19999
1ffb54bae960
Convert strings to comments since they're never used,
gpoirier
parents:
18926
diff
changeset
|
193 CPUID_FEATURE_DEF(0, "pni", "SSE3 Extensions"), |
1ffb54bae960
Convert strings to comments since they're never used,
gpoirier
parents:
18926
diff
changeset
|
194 CPUID_FEATURE_DEF(3, "monitor", "MONITOR/MWAIT"), |
1ffb54bae960
Convert strings to comments since they're never used,
gpoirier
parents:
18926
diff
changeset
|
195 CPUID_FEATURE_DEF(4, "ds_cpl", "CPL Qualified Debug Store"), |
1ffb54bae960
Convert strings to comments since they're never used,
gpoirier
parents:
18926
diff
changeset
|
196 CPUID_FEATURE_DEF(5, "vmx", "Virtual Machine Extensions"), |
20009
2d5790e4ee8f
Add support for "Safer Mode Extensions", "Supplemental SSE3", "Direct Cache Access"
gpoirier
parents:
20001
diff
changeset
|
197 CPUID_FEATURE_DEF(6, "smx", "Safer Mode Extensions"), |
19999
1ffb54bae960
Convert strings to comments since they're never used,
gpoirier
parents:
18926
diff
changeset
|
198 CPUID_FEATURE_DEF(7, "est", "Enhanced Intel SpeedStep Technology"), |
1ffb54bae960
Convert strings to comments since they're never used,
gpoirier
parents:
18926
diff
changeset
|
199 CPUID_FEATURE_DEF(8, "tm2", "Thermal Monitor 2"), |
20009
2d5790e4ee8f
Add support for "Safer Mode Extensions", "Supplemental SSE3", "Direct Cache Access"
gpoirier
parents:
20001
diff
changeset
|
200 CPUID_FEATURE_DEF(9, "ssse3", "Supplemental SSE3"), |
19999
1ffb54bae960
Convert strings to comments since they're never used,
gpoirier
parents:
18926
diff
changeset
|
201 CPUID_FEATURE_DEF(10, "cid", "L1 Context ID"), |
1ffb54bae960
Convert strings to comments since they're never used,
gpoirier
parents:
18926
diff
changeset
|
202 CPUID_FEATURE_DEF(13, "cx16", "CMPXCHG16B Available"), |
1ffb54bae960
Convert strings to comments since they're never used,
gpoirier
parents:
18926
diff
changeset
|
203 CPUID_FEATURE_DEF(14, "xtpr", "xTPR Disable"), |
20009
2d5790e4ee8f
Add support for "Safer Mode Extensions", "Supplemental SSE3", "Direct Cache Access"
gpoirier
parents:
20001
diff
changeset
|
204 CPUID_FEATURE_DEF(18, "dca", "Direct Cache Access"), |
17041 | 205 { -1 } |
206 }; | |
207 static struct { | |
208 int bit; | |
20000 | 209 char *desc; |
17041 | 210 } cap_amd[] = { |
19999
1ffb54bae960
Convert strings to comments since they're never used,
gpoirier
parents:
18926
diff
changeset
|
211 CPUID_FEATURE_DEF(11, "syscall", "SYSCALL and SYSRET"), |
1ffb54bae960
Convert strings to comments since they're never used,
gpoirier
parents:
18926
diff
changeset
|
212 CPUID_FEATURE_DEF(19, "mp", "MP Capable"), |
1ffb54bae960
Convert strings to comments since they're never used,
gpoirier
parents:
18926
diff
changeset
|
213 CPUID_FEATURE_DEF(20, "nx", "No-Execute Page Protection"), |
1ffb54bae960
Convert strings to comments since they're never used,
gpoirier
parents:
18926
diff
changeset
|
214 CPUID_FEATURE_DEF(22, "mmxext","MMX Technology (AMD Extensions)"), |
1ffb54bae960
Convert strings to comments since they're never used,
gpoirier
parents:
18926
diff
changeset
|
215 CPUID_FEATURE_DEF(25, "fxsr_opt", "Fast FXSAVE/FXRSTOR"), |
1ffb54bae960
Convert strings to comments since they're never used,
gpoirier
parents:
18926
diff
changeset
|
216 CPUID_FEATURE_DEF(27, "rdtscp", "RDTSCP Instruction"), |
1ffb54bae960
Convert strings to comments since they're never used,
gpoirier
parents:
18926
diff
changeset
|
217 CPUID_FEATURE_DEF(29, "lm", "Long Mode Capable"), |
1ffb54bae960
Convert strings to comments since they're never used,
gpoirier
parents:
18926
diff
changeset
|
218 CPUID_FEATURE_DEF(30, "3dnowext", "3DNow! Extensions"), |
1ffb54bae960
Convert strings to comments since they're never used,
gpoirier
parents:
18926
diff
changeset
|
219 CPUID_FEATURE_DEF(31, "3dnow", "3DNow!"), |
17041 | 220 { -1 } |
221 }; | |
222 static struct { | |
223 int bit; | |
224 char *desc; | |
225 } cap_amd2[] = { | |
19999
1ffb54bae960
Convert strings to comments since they're never used,
gpoirier
parents:
18926
diff
changeset
|
226 CPUID_FEATURE_DEF(0, "lahf_lm", "LAHF/SAHF Supported in 64-bit Mode"), |
1ffb54bae960
Convert strings to comments since they're never used,
gpoirier
parents:
18926
diff
changeset
|
227 CPUID_FEATURE_DEF(1, "cmp_legacy", "Chip Multi-Core"), |
1ffb54bae960
Convert strings to comments since they're never used,
gpoirier
parents:
18926
diff
changeset
|
228 CPUID_FEATURE_DEF(2, "svm", "Secure Virtual Machine"), |
1ffb54bae960
Convert strings to comments since they're never used,
gpoirier
parents:
18926
diff
changeset
|
229 CPUID_FEATURE_DEF(4, "cr8legacy", "CR8 Available in Legacy Mode"), |
17041 | 230 { -1 } |
231 }; | |
232 unsigned int family, model, stepping; | |
1038
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
diff
changeset
|
233 |
17041 | 234 regs = cpuid(1); |
18511
744aa553e4a1
Various improvement, fix build on AMD-64 and icc
gpoirier
parents:
17041
diff
changeset
|
235 family = (regs.eax >> 8) & 0xf; |
744aa553e4a1
Various improvement, fix build on AMD-64 and icc
gpoirier
parents:
17041
diff
changeset
|
236 model = (regs.eax >> 4) & 0xf; |
744aa553e4a1
Various improvement, fix build on AMD-64 and icc
gpoirier
parents:
17041
diff
changeset
|
237 stepping = regs.eax & 0xf; |
744aa553e4a1
Various improvement, fix build on AMD-64 and icc
gpoirier
parents:
17041
diff
changeset
|
238 |
744aa553e4a1
Various improvement, fix build on AMD-64 and icc
gpoirier
parents:
17041
diff
changeset
|
239 if (family == 0xf) |
744aa553e4a1
Various improvement, fix build on AMD-64 and icc
gpoirier
parents:
17041
diff
changeset
|
240 { |
744aa553e4a1
Various improvement, fix build on AMD-64 and icc
gpoirier
parents:
17041
diff
changeset
|
241 family += (regs.eax >> 20) & 0xff; |
744aa553e4a1
Various improvement, fix build on AMD-64 and icc
gpoirier
parents:
17041
diff
changeset
|
242 model += ((regs.eax >> 16) & 0xf) << 4; |
744aa553e4a1
Various improvement, fix build on AMD-64 and icc
gpoirier
parents:
17041
diff
changeset
|
243 } |
744aa553e4a1
Various improvement, fix build on AMD-64 and icc
gpoirier
parents:
17041
diff
changeset
|
244 |
17041 | 245 printf("cpu family\t: %d\n" |
246 "model\t\t: %d\n" | |
247 "stepping\t: %d\n" , | |
18511
744aa553e4a1
Various improvement, fix build on AMD-64 and icc
gpoirier
parents:
17041
diff
changeset
|
248 family, |
744aa553e4a1
Various improvement, fix build on AMD-64 and icc
gpoirier
parents:
17041
diff
changeset
|
249 model, |
744aa553e4a1
Various improvement, fix build on AMD-64 and icc
gpoirier
parents:
17041
diff
changeset
|
250 stepping); |
744aa553e4a1
Various improvement, fix build on AMD-64 and icc
gpoirier
parents:
17041
diff
changeset
|
251 |
744aa553e4a1
Various improvement, fix build on AMD-64 and icc
gpoirier
parents:
17041
diff
changeset
|
252 if (strstr(idstr, "Intel") && !model_name) { |
744aa553e4a1
Various improvement, fix build on AMD-64 and icc
gpoirier
parents:
17041
diff
changeset
|
253 if (family == 6 && model == 0xb && stepping == 1) |
744aa553e4a1
Various improvement, fix build on AMD-64 and icc
gpoirier
parents:
17041
diff
changeset
|
254 model_name = "Intel (R) Celeron (R) processor"; |
744aa553e4a1
Various improvement, fix build on AMD-64 and icc
gpoirier
parents:
17041
diff
changeset
|
255 else |
744aa553e4a1
Various improvement, fix build on AMD-64 and icc
gpoirier
parents:
17041
diff
changeset
|
256 model_name = brandname(regs.ebx & 0xf); |
744aa553e4a1
Various improvement, fix build on AMD-64 and icc
gpoirier
parents:
17041
diff
changeset
|
257 } |
744aa553e4a1
Various improvement, fix build on AMD-64 and icc
gpoirier
parents:
17041
diff
changeset
|
258 |
17041 | 259 printf("flags\t\t:"); |
260 for (i = 0; cap[i].bit >= 0; i++) { | |
261 if (regs.edx & (1 << cap[i].bit)) { | |
262 printf(" %s", cap[i].desc); | |
263 } | |
264 } | |
265 for (i = 0; cap2[i].bit >= 0; i++) { | |
18511
744aa553e4a1
Various improvement, fix build on AMD-64 and icc
gpoirier
parents:
17041
diff
changeset
|
266 if (regs.ecx & (1 << cap2[i].bit)) { |
17041 | 267 printf(" %s", cap2[i].desc); |
268 } | |
269 } | |
270 /* k6_mtrr is supported by some AMD K6-2/K6-III CPUs but | |
271 it is not indicated by a CPUID feature bit, so we | |
272 have to check the family, model and stepping instead. */ | |
273 if (strstr(idstr, "AMD") && | |
274 family == 5 && | |
275 (model >= 9 || model == 8 && stepping >= 8)) | |
276 printf(" %s", "k6_mtrr"); | |
18511
744aa553e4a1
Various improvement, fix build on AMD-64 and icc
gpoirier
parents:
17041
diff
changeset
|
277 /* similar for cyrix_arr. */ |
744aa553e4a1
Various improvement, fix build on AMD-64 and icc
gpoirier
parents:
17041
diff
changeset
|
278 if (strstr(idstr, "Cyrix") && |
744aa553e4a1
Various improvement, fix build on AMD-64 and icc
gpoirier
parents:
17041
diff
changeset
|
279 (family == 5 && model < 4 || family == 6)) |
744aa553e4a1
Various improvement, fix build on AMD-64 and icc
gpoirier
parents:
17041
diff
changeset
|
280 printf(" %s", "cyrix_arr"); |
18552
2d996eb065d4
On old WinChips Linux kernel use this to emulate MTRR, patch by Zuxy Meng < zuxy P meng A gmail P com>
poirierg
parents:
18534
diff
changeset
|
281 /* as well as centaur_mcr. */ |
2d996eb065d4
On old WinChips Linux kernel use this to emulate MTRR, patch by Zuxy Meng < zuxy P meng A gmail P com>
poirierg
parents:
18534
diff
changeset
|
282 if (strstr(idstr, "Centaur") && |
2d996eb065d4
On old WinChips Linux kernel use this to emulate MTRR, patch by Zuxy Meng < zuxy P meng A gmail P com>
poirierg
parents:
18534
diff
changeset
|
283 family == 5) |
2d996eb065d4
On old WinChips Linux kernel use this to emulate MTRR, patch by Zuxy Meng < zuxy P meng A gmail P com>
poirierg
parents:
18534
diff
changeset
|
284 printf(" %s", "centaur_mcr"); |
18511
744aa553e4a1
Various improvement, fix build on AMD-64 and icc
gpoirier
parents:
17041
diff
changeset
|
285 |
17041 | 286 for (i = 0; cap_amd[i].bit >= 0; i++) { |
287 if (amd_flags & (1 << cap_amd[i].bit)) { | |
288 printf(" %s", cap_amd[i].desc); | |
289 } | |
290 } | |
291 for (i = 0; cap_amd2[i].bit >= 0; i++) { | |
292 if (amd_flags2 & (1 << cap_amd2[i].bit)) { | |
293 printf(" %s", cap_amd2[i].desc); | |
294 } | |
295 } | |
296 printf("\n"); | |
1038
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
diff
changeset
|
297 |
17041 | 298 if (regs.edx & (1 << 4)) { |
299 int64_t tsc_start, tsc_end; | |
300 struct timeval tv_start, tv_end; | |
301 int usec_delay; | |
1038
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
diff
changeset
|
302 |
17041 | 303 tsc_start = rdtsc(); |
304 gettimeofday(&tv_start, NULL); | |
305 #ifdef MISSING_USLEEP | |
306 sleep(1); | |
1038
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
diff
changeset
|
307 #else |
17041 | 308 usleep(100000); |
1038
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
diff
changeset
|
309 #endif |
17041 | 310 tsc_end = rdtsc(); |
311 gettimeofday(&tv_end, NULL); | |
1038
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
diff
changeset
|
312 |
17041 | 313 usec_delay = 1000000 * (tv_end.tv_sec - tv_start.tv_sec) |
314 + (tv_end.tv_usec - tv_start.tv_usec); | |
1038
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
diff
changeset
|
315 |
17041 | 316 printf("cpu MHz\t\t: %.3f\n", |
317 (double)(tsc_end-tsc_start) / usec_delay); | |
318 } | |
319 } | |
1038
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
diff
changeset
|
320 |
18511
744aa553e4a1
Various improvement, fix build on AMD-64 and icc
gpoirier
parents:
17041
diff
changeset
|
321 printf("model name\t: "); |
744aa553e4a1
Various improvement, fix build on AMD-64 and icc
gpoirier
parents:
17041
diff
changeset
|
322 if (model_name) |
744aa553e4a1
Various improvement, fix build on AMD-64 and icc
gpoirier
parents:
17041
diff
changeset
|
323 printf("%s\n", model_name); |
744aa553e4a1
Various improvement, fix build on AMD-64 and icc
gpoirier
parents:
17041
diff
changeset
|
324 else |
744aa553e4a1
Various improvement, fix build on AMD-64 and icc
gpoirier
parents:
17041
diff
changeset
|
325 printf("Unknown %s CPU\n", idstr); |
1038
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
diff
changeset
|
326 } |