4 * Copyright 1995,1997 Morten Welinder
5 * Copyright 1997-1998 Marcus Meissner
12 #include "wine/winestring.h"
17 #include "debugtools.h"
19 DEFAULT_DEBUG_CHANNEL(reg);
21 static BYTE PF[64] = {0,};
23 /***********************************************************************
24 * GetSystemInfo [KERNELL32.404]
26 * Gets the current system information.
28 * On the first call it reads cached values, so it doesn't have to determine
29 * them repeatedly. On Linux, the /proc/cpuinfo special file is used.
31 * It creates a registry subhierarchy, looking like:
32 * \HARDWARE\DESCRIPTION\System\CentralProcessor\<processornumber>\
33 * Identifier (CPU x86)
34 * Note that there is a hierarchy for every processor installed, so this
35 * supports multiprocessor systems. This is done like Win95 does it, I think.
37 * It also creates a cached flag array for IsProcessorFeaturePresent().
42 VOID WINAPI GetSystemInfo(
43 LPSYSTEM_INFO si /* [out] system information */
46 static SYSTEM_INFO cachedsi;
50 memcpy(si,&cachedsi,sizeof(*si));
53 memset(PF,0,sizeof(PF));
55 /* choose sensible defaults ...
56 * FIXME: perhaps overrideable with precompiler flags?
58 cachedsi.u.s.wProcessorArchitecture = PROCESSOR_ARCHITECTURE_INTEL;
59 cachedsi.dwPageSize = VIRTUAL_GetPageSize();
61 /* FIXME: the two entries below should be computed somehow... */
62 cachedsi.lpMinimumApplicationAddress = (void *)0x00010000;
63 cachedsi.lpMaximumApplicationAddress = (void *)0x7FFFFFFF;
64 cachedsi.dwActiveProcessorMask = 1;
65 cachedsi.dwNumberOfProcessors = 1;
66 cachedsi.dwProcessorType = PROCESSOR_INTEL_386;
67 cachedsi.dwAllocationGranularity = 0x10000;
68 cachedsi.wProcessorLevel = 3; /* 386 */
69 cachedsi.wProcessorRevision = 0;
71 cache = 1; /* even if there is no more info, we now have a cacheentry */
72 memcpy(si,&cachedsi,sizeof(*si));
74 /* Hmm, reasonable processor feature defaults? */
76 /* Create this registry key for all systems */
77 if (RegCreateKeyA(HKEY_LOCAL_MACHINE,"HARDWARE\\DESCRIPTION\\System\\CentralProcessor",&hkey)!=ERROR_SUCCESS) {
78 WARN("Unable to register CPU information\n");
85 FILE *f = fopen ("/proc/cpuinfo", "r");
90 while (fgets(line,200,f)!=NULL) {
93 /* NOTE: the ':' is the only character we can rely on */
94 if (!(value = strchr(line,':')))
96 /* terminate the valuename */
98 /* skip any leading spaces */
99 while (*value==' ') value++;
100 if ((s=strchr(value,'\n')))
104 if (!strncasecmp(line, "cpu family",strlen("cpu family"))) {
105 if (isdigit (value[0])) {
106 switch (value[0] - '0') {
107 case 3: cachedsi.dwProcessorType = PROCESSOR_INTEL_386;
108 cachedsi.wProcessorLevel= 3;
110 case 4: cachedsi.dwProcessorType = PROCESSOR_INTEL_486;
111 cachedsi.wProcessorLevel= 4;
113 case 5: cachedsi.dwProcessorType = PROCESSOR_INTEL_PENTIUM;
114 cachedsi.wProcessorLevel= 5;
116 case 6: cachedsi.dwProcessorType = PROCESSOR_INTEL_PENTIUM;
117 cachedsi.wProcessorLevel= 5;
123 /* set the CPU type of the current processor */
124 sprintf(buf,"CPU %ld",cachedsi.dwProcessorType);
126 RegSetValueExA(xhkey,"Identifier",0,REG_SZ,buf,strlen(buf));
130 if (!strncasecmp(line, "cpu",strlen("cpu"))) {
131 if ( isdigit (value[0]) && value[1] == '8' &&
132 value[2] == '6' && value[3] == 0
134 switch (value[0] - '0') {
135 case 3: cachedsi.dwProcessorType = PROCESSOR_INTEL_386;
136 cachedsi.wProcessorLevel= 3;
138 case 4: cachedsi.dwProcessorType = PROCESSOR_INTEL_486;
139 cachedsi.wProcessorLevel= 4;
141 case 5: cachedsi.dwProcessorType = PROCESSOR_INTEL_PENTIUM;
142 cachedsi.wProcessorLevel= 5;
144 case 6: cachedsi.dwProcessorType = PROCESSOR_INTEL_PENTIUM;
145 cachedsi.wProcessorLevel= 5;
151 /* set the CPU type of the current processor */
152 sprintf(buf,"CPU %ld",cachedsi.dwProcessorType);
154 RegSetValueExA(xhkey,"Identifier",0,REG_SZ,buf,strlen(buf));
157 if (!strncasecmp(line,"fdiv_bug",strlen("fdiv_bug"))) {
158 if (!strncasecmp(value,"yes",3))
159 PF[PF_FLOATING_POINT_PRECISION_ERRATA] = TRUE;
163 if (!strncasecmp(line,"fpu",strlen("fpu"))) {
164 if (!strncasecmp(value,"no",2))
165 PF[PF_FLOATING_POINT_EMULATED] = TRUE;
169 if (!strncasecmp(line,"processor",strlen("processor"))) {
170 /* processor number counts up...*/
173 if (sscanf(value,"%d",&x))
174 if (x+1>cachedsi.dwNumberOfProcessors)
175 cachedsi.dwNumberOfProcessors=x+1;
177 /* Create a new processor subkey on a multiprocessor
183 RegCreateKeyA(hkey,buf,&xhkey);
185 if (!strncasecmp(line,"stepping",strlen("stepping"))) {
188 if (sscanf(value,"%d",&x))
189 cachedsi.wProcessorRevision = x;
191 if (!strncasecmp(line,"flags",strlen("flags"))) {
192 if (strstr(value,"cx8"))
193 PF[PF_COMPARE_EXCHANGE_DOUBLE] = TRUE;
194 if (strstr(value,"mmx"))
195 PF[PF_MMX_INSTRUCTIONS_AVAILABLE] = TRUE;
201 memcpy(si,&cachedsi,sizeof(*si));
203 /* FIXME: how do we do this on other systems? */
205 RegCreateKeyA(hkey,"0",&xhkey);
206 RegSetValueExA(xhkey,"Identifier",0,REG_SZ,"CPU 386",strlen("CPU 386"));
215 /***********************************************************************
216 * IsProcessorFeaturePresent [KERNELL32.880]
218 * TRUE if processorfeature present
221 BOOL WINAPI IsProcessorFeaturePresent (
222 DWORD feature /* [in] feature number, see PF_ defines */
225 GetSystemInfo (&si); /* To ensure the information is loaded and cached */