]> git.ozlabs.org Git - ccan/blobdiff - ccan/cpuid/cpuid.c
Merge branch 'io'
[ccan] / ccan / cpuid / cpuid.c
index 6f2c5a5306bb9dcd952ade80a176b7b1ed55f46b..6133e13f03c420144348f8d08ea9901d643985f9 100644 (file)
  * This file has been written with some help from wikipedia:
  *     http://en.wikipedia.org/wiki/CPUID
  */
-#include <stdint.h>
-#include <string.h>
 
+/* Only compile this file if we're on a x86 machine.  */
+#if defined(__i386__) || defined(__i386) || defined(__x86_64) \
+       || defined(_M_AMD64) || defined(__M_X64)
 #include "cpuid.h"
 
+#include <string.h>
+
 enum {
        CPU_PROC_BRAND_STRING_INTERNAL0                 = 0x80000003,
        CPU_PROC_BRAND_STRING_INTERNAL1                 = 0x80000004
@@ -58,71 +61,98 @@ static void ___cpuid(cpuid_t info, uint32_t *eax, uint32_t *ebx, uint32_t *ecx,
 }
 #endif
 
-int highest_ext_func_supported(void)
+static struct {
+       uint32_t feature;
+       uint32_t mask;
+       bool use_edx;           /* ecx will be used if false.  */
+} features[] = {
+       { CF_MMX,               1 << 23,        true },
+       { CF_SSE,               1 << 25,        true },
+       { CF_SSE2,              1 << 26,        true },
+       { CF_SSE3,              1 << 9,         false },
+       { CF_FPU,               1 << 0,         true },
+
+       { CF_TSC,               1 << 4,         true },
+       { CF_MSR,               1 << 5,         true },
+
+       { CF_SSSE3,             1 << 9,         false },
+       { CF_AVX,               1 << 28,        false },
+
+       /* Extended ones.  */
+       { CEF_x64,              1 << 30,        true },
+       { CEF_FPU,              1 << 0,         true },
+       { CEF_DE,               1 << 2,         true },
+       { CEF_SYSCALLRET,       1 << 11,        true },
+       { CEF_CMOV,             1 << 15,        true },
+
+       { CEF_SSE4a,            1 << 6,         false },
+       { CEF_FMA4,             1 << 16,        false },
+       { CEF_XOP,              1 << 11,        false }
+};
+
+static bool has_feature(int feature, uint32_t ecx, uint32_t edx)
 {
-       static int highest;
+       int i;
 
-       if (!highest) {
-               asm volatile(
-                       "cpuid\n\t"
-                       : "=a" (highest)
-                       : "a" (CPU_HIGHEST_EXTENDED_FUNCTION_SUPPORTED)
-               );
+       for (i = 0; i < sizeof(features) / sizeof(features[0]); ++i) {
+               if (features[i].feature == feature) {
+                       if (features[i].use_edx)
+                               return (edx & features[i].mask);
+                       else
+                               return (ecx & features[i].mask);
+               }
        }
 
-       return highest;
+       return false;
 }
 
-int cpuid_test_feature(cpuid_t feature)
+bool cpuid_is_supported(void)
 {
-       if (feature > CPU_VIRT_PHYS_ADDR_SIZES || feature < CPU_EXTENDED_PROC_INFO_FEATURE_BITS)
-               return 0;
+       int ret = 0;
+
+       asm volatile(
+               "pushfl\n\t"
+               "popl %%eax\n\t"
+               "movl %%eax, %%ecx\n\t"
+               "xorl $0x200000, %%eax\n\t"
+               "pushl %%eax\n\t"
+               "popfl\n\t"
+
+               "pushfl\n\t"
+               "popl %%eax\n\t"
+               "xorl %%ecx, %%eax\n\t"
+               "shrl $21, %%eax\n\t"
+               "andl $1, %%eax\n\t"
+               "pushl %%ecx\n\t"
+               "popfl\n\t"
+
+               : "=a" (ret)
+       );
 
-       return (feature <= highest_ext_func_supported());
+       return !!ret;
 }
 
-int cpuid_has_feature(cpufeature_t feature)
+bool cpuid_test_feature(cpuid_t feature)
 {
-       uint32_t eax, ebx, ecx, edx;
-
-       ___cpuid(CPU_PROCINFO_AND_FEATUREBITS, &eax, &ebx, &ecx, &edx);
-       switch (feature) {
-               case CF_MMX:
-               case CF_SSE:
-               case CF_SSE2:
-                       return (edx & ((int)feature)) != 0;
-               case CF_SSE3:
-               case CF_SSSE3:
-               case CF_SSE41:
-               case CF_SSE42:
-               case CF_AVX:
-               case CF_FMA:
-                       return (ecx & ((int)feature)) != 0;
-       }
+       if (feature > CPU_VIRT_PHYS_ADDR_SIZES || feature < CPU_EXTENDED_PROC_INFO_FEATURE_BITS)
+               return false;
 
-       return 0;
+       return (feature <= cpuid_highest_ext_func_supported());
 }
 
-int cpuid_has_ext_feature(cpuextfeature_t extfeature)
+bool cpuid_has_feature(int feature, bool extended)
 {
        uint32_t eax, ebx, ecx, edx;
-       if (!cpuid_test_feature(CPU_EXTENDED_PROC_INFO_FEATURE_BITS))
-               return 0;
-
-       ___cpuid(CPU_EXTENDED_PROC_INFO_FEATURE_BITS, &eax, &ebx, &ecx, &edx);
-       switch (extfeature) {
-               case CEF_x64:
-                       return (edx & ((int)extfeature)) != 0;
-               case CEF_SSE4a:
-               case CEF_FMA4:
-               case CEF_XOP:
-                       return (ecx & ((int)extfeature)) != 0;
-       }
 
-       return 0;
+       if (!extended)
+               ___cpuid(CPU_PROCINFO_AND_FEATUREBITS, &eax, &ebx, &ecx, &edx);
+       else
+               ___cpuid(CPU_EXTENDED_PROC_INFO_FEATURE_BITS, &eax, &ebx, &ecx, &edx);
+
+       return has_feature(feature, ecx, edx);
 }
 
-static const char *cpuids[] = {
+static const char *const cpuids[] = {
        "Nooooooooone",
        "AMDisbetter!",
        "AuthenticAMD",
@@ -141,7 +171,7 @@ static const char *cpuids[] = {
        "KVMKVMKVMKVM"
 };
 
-cputype_t get_cpu_type(void)
+cputype_t cpuid_get_cpu_type(void)
 {
        static cputype_t cputype;
        if (cputype == CT_NONE) {
@@ -165,12 +195,27 @@ cputype_t get_cpu_type(void)
        return cputype;
 }
 
-const char *get_cpu_type_string(const cputype_t cputype)
+const char *cpuid_get_cpu_type_string(const cputype_t cputype)
 {
        return cpuids[(int)cputype];
 }
 
-void cpuid(cpuid_t info, void *buf)
+uint32_t cpuid_highest_ext_func_supported(void)
+{
+       static uint32_t highest;
+
+       if (!highest) {
+               asm volatile(
+                       "cpuid\n\t"
+                       : "=a" (highest)
+                       : "a" (CPU_HIGHEST_EXTENDED_FUNCTION_SUPPORTED)
+               );
+       }
+
+       return highest;
+}
+
+void cpuid(cpuid_t info, uint32_t *buf)
 {
        /* Sanity checks, make sure we're not trying to do something
         * invalid or we are trying to get information that isn't supported
@@ -179,14 +224,13 @@ void cpuid(cpuid_t info, void *buf)
                && !cpuid_test_feature(info)))
                return;
 
-       uint32_t *ubuf = buf;
        if (info == CPU_PROC_BRAND_STRING) {
-               ___cpuid(CPU_PROC_BRAND_STRING,           &ubuf[0], &ubuf[1], &ubuf[2],  &ubuf[3]);
-               ___cpuid(CPU_PROC_BRAND_STRING_INTERNAL0, &ubuf[4], &ubuf[5], &ubuf[6],  &ubuf[7]);
-               ___cpuid(CPU_PROC_BRAND_STRING_INTERNAL1, &ubuf[8], &ubuf[9], &ubuf[10], &ubuf[11]);
+               ___cpuid(CPU_PROC_BRAND_STRING,           &buf[0], &buf[1], &buf[2],  &buf[3]);
+               ___cpuid(CPU_PROC_BRAND_STRING_INTERNAL0, &buf[4], &buf[5], &buf[6],  &buf[7]);
+               ___cpuid(CPU_PROC_BRAND_STRING_INTERNAL1, &buf[8], &buf[9], &buf[10], &buf[11]);
                return;
        } else if (info == CPU_HIGHEST_EXTENDED_FUNCTION_SUPPORTED) {
-               *ubuf = highest_ext_func_supported();
+               *buf = cpuid_highest_ext_func_supported();
                return;
        }
 
@@ -195,40 +239,46 @@ void cpuid(cpuid_t info, void *buf)
 
        switch (info) {
                case CPU_VENDORID:
-                       ubuf[0] = ebx;
-                       ubuf[1] = edx;
-                       ubuf[2] = ecx;
+                       buf[0] = ebx;
+                       buf[1] = edx;
+                       buf[2] = ecx;
                        break;
                case CPU_PROCINFO_AND_FEATUREBITS:
-                       ubuf[0] = eax;  /* The so called "signature" of the CPU.  */
-                       ubuf[1] = edx;  /* Feature flags #1.  */
-                       ubuf[2] = ecx;  /* Feature flags #2.  */
-                       ubuf[3] = ebx;  /* Additional feature information.  */
+                       buf[0] = eax;   /* The so called "signature" of the CPU.  */
+                       buf[1] = edx;   /* Feature flags #1.  */
+                       buf[2] = ecx;   /* Feature flags #2.  */
+                       buf[3] = ebx;   /* Additional feature information.  */
                        break;
                case CPU_CACHE_AND_TLBD_INFO:
-                       ubuf[0] = eax;
-                       ubuf[1] = ebx;
-                       ubuf[2] = ecx;
-                       ubuf[3] = edx;
+                       buf[0] = eax;
+                       buf[1] = ebx;
+                       buf[2] = ecx;
+                       buf[3] = edx;
                        break;
                case CPU_EXTENDED_PROC_INFO_FEATURE_BITS:
-                       ubuf[0] = edx;
-                       ubuf[1] = ecx;
+                       buf[0] = edx;
+                       buf[1] = ecx;
                        break;
                case CPU_L1_CACHE_AND_TLB_IDS:
+                       buf[0] = eax;
+                       buf[1] = ebx;
+                       buf[2] = ecx;
+                       buf[3] = edx;
                        break;
                case CPU_EXTENDED_L2_CACHE_FEATURES:
-                       *ubuf = ecx;
+                       *buf = ecx;
                        break;
                case CPU_ADV_POWER_MGT_INFO:
-                       *ubuf = edx;
+                       *buf = edx;
                        break;
                case CPU_VIRT_PHYS_ADDR_SIZES:
-                       *ubuf = eax;
+                       *buf = eax;
                        break;
                default:
-                       *ubuf = 0xbaadf00d;
+                       *buf = 0xbaadf00d;
                        break;
        }
 }
 
+#endif
+