summaryrefslogtreecommitdiffstats
path: root/cpudetect.c
diff options
context:
space:
mode:
authoratmos4 <atmos4@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-10-20 02:35:31 +0000
committeratmos4 <atmos4@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-10-20 02:35:31 +0000
commit690490f7d022887a0d5390b90aabbf1545f43daf (patch)
treec7a1707bcff6f984e429eafb9062d45522037640 /cpudetect.c
parent4576b903d7aeb0820ec5b06e49487c0c86524c50 (diff)
downloadmpv-690490f7d022887a0d5390b90aabbf1545f43daf.tar.bz2
mpv-690490f7d022887a0d5390b90aabbf1545f43daf.tar.xz
Detect and show cpu name.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@2302 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'cpudetect.c')
-rw-r--r--cpudetect.c50
1 files changed, 49 insertions, 1 deletions
diff --git a/cpudetect.c b/cpudetect.c
index 2e8a27e555..ab16cc225b 100644
--- a/cpudetect.c
+++ b/cpudetect.c
@@ -79,7 +79,6 @@ do_cpuid(unsigned int ax, unsigned int *p)
}
-
void GetCpuCaps( CpuCaps *caps)
{
unsigned int regs[4];
@@ -95,6 +94,9 @@ void GetCpuCaps( CpuCaps *caps)
if (regs[0]>=0x00000001)
{
do_cpuid(0x00000001, regs2);
+
+ printf("CPU: %s\n",GetCpuFriendlyName(regs, regs2));
+
caps->cpuType=(regs2[0] >> 8)&0xf;
if(caps->cpuType==0xf){
// use extended family (P4, IA64)
@@ -140,6 +142,52 @@ void GetCpuCaps( CpuCaps *caps)
}
+
+#define CPUID_EXTFAMILY ((regs2[0] >> 20)&0xFF) /* 27..20 */
+#define CPUID_EXTMODEL ((regs2[0] >> 16)&0x0F) /* 19..16 */
+#define CPUID_TYPE ((regs2[0] >> 12)&0x04) /* 13..12 */
+#define CPUID_FAMILY ((regs2[0] >> 8)&0x0F) /* 11..08 */
+#define CPUID_MODEL ((regs2[0] >> 4)&0x0F) /* 07..04 */
+#define CPUID_STEPPING ((regs2[0] >> 0)&0x0F) /* 03..00 */
+
+char *GetCpuFriendlyName(unsigned int regs[], unsigned int regs2[]){
+#include "cputable.h" /* get cpuname and cpuvendors */
+ char vendor[17];
+ char retname[255];
+ int i;
+
+ sprintf(vendor,"%.4s%.4s%.4s",&regs[1],&regs[3],&regs[2]);
+
+ for(i=0; i<MAX_VENDORS; i++){
+ if(!strcmp(cpuvendors[i].string,vendor)){
+ if(cpuname[i][CPUID_FAMILY][CPUID_MODEL]){
+ sprintf(retname,"%s %s",cpuvendors[i].name,cpuname[i][CPUID_FAMILY][CPUID_MODEL]);
+ } else {
+ sprintf(retname,"unknown %s %d. Generation CPU",cpuvendors[i].name,CPUID_FAMILY);
+ printf("unknown %s CPU:\n",cpuvendors[i].name);
+ printf("Vendor: %s\n",cpuvendors[i].string);
+ printf("Type: %d\n",CPUID_TYPE);
+ printf("Family: %d (ext: %d)\n",CPUID_FAMILY,CPUID_EXTFAMILY);
+ printf("Model: %d (ext: %d)\n",CPUID_MODEL,CPUID_EXTMODEL);
+ printf("Stepping: %d\n",CPUID_STEPPING);
+ printf("Please send the above info along with the exact CPU name"
+ "to the MPlayer-Developers, so we can add it to the list!\n");
+ }
+ }
+ }
+
+ //printf("Detected CPU: %s\n", retname);
+ return retname;
+}
+
+#undef CPUID_EXTFAMILY
+#undef CPUID_EXTMODEL
+#undef CPUID_TYPE
+#undef CPUID_FAMILY
+#undef CPUID_MODEL
+#undef CPUID_STEPPING
+
+
#if defined(__linux__) && defined(_POSIX_SOURCE) && defined(X86_FXSR_MAGIC)
static void sigill_handler_sse( int signal, struct sigcontext sc )
{