| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236 |
- /*
- * Copyright (c) 2013 Ahmed Samy <f.fallen45@gmail.com>
- *
- * Permission is hereby granted, free of charge, to any person obtaining a copy
- * of this software and associated documentation files (the "Software"), to deal
- * in the Software without restriction, including without limitation the rights
- * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the Software is
- * furnished to do so, subject to the following conditions:
- *
- * The above copyright notice and this permission notice shall be included in
- * all copies or substantial portions of the Software.
- *
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
- * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
- * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
- * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
- * THE SOFTWARE.
- */
- #ifndef CCAN_CPUID_H
- #define CCAN_CPUID_H
- /**
- * enum cpuid - stuff to get information on from the CPU.
- *
- * This is used as a parameter in cpuid().
- *
- * CPU_VENDORID:
- * The CPU's Vendor ID.
- *
- * CPU_PROCINFO_AND_FEATUREBITS:
- * Processor information and feature bits (SSE, etc.).
- *
- * CPU_CACHE_AND_TLBD_INFO
- * Cache and TLBD Information.
- *
- * CPU_HIGHEST_EXTENDED_FUNCTION_SUPPORTED:
- * Highest extended function supported address.
- * Can be like 0x80000008.
- *
- * CPU_EXTENDED_PROC_INFO_FEATURE_BITS:
- * Extended processor information and feature bits (64bit etc.)
- *
- * CPU_PROC_BRAND_STRING:
- * The Processor's brand string.
- *
- * CPU_L1_CACHE_AND_TLB_IDS:
- * L1 Cache and TLB Identifications.
- *
- * CPU_EXTENDED_L2_CACHE_FEATURES:
- * Extended L2 Cache features.
- *
- * CPU_ADV_POWER_MGT_INFO:
- * Advaned power management information.
- *
- * CPU_VIRT_PHYS_ADDR_SIZES:
- * Virtual and physical address sizes.
- */
- typedef enum cpuid {
- CPU_VENDORID = 0,
- CPU_PROCINFO_AND_FEATUREBITS = 1,
- CPU_CACHE_AND_TLBD_INFO = 2,
- CPU_HIGHEST_EXTENDED_FUNCTION_SUPPORTED = 0x80000000,
- CPU_EXTENDED_PROC_INFO_FEATURE_BITS = 0x80000001,
- CPU_PROC_BRAND_STRING = 0x80000002,
- CPU_L1_CACHE_AND_TLB_IDS = 0x80000005,
- CPU_EXTENDED_L2_CACHE_FEATURES = 0x80000006,
- CPU_ADV_POWER_MGT_INFO = 0x80000007,
- CPU_VIRT_PHYS_ADDR_SIZES = 0x80000008
- } cpuid_t;
- /**
- * enum cpufeature
- *
- * This is used by cpuid_has_feature().
- *
- * CF_MMX:
- * Test for MMX support.
- *
- * CF_SSE*:
- * Test for SSE* support.
- *
- * CF_AVX:
- * Test for AVX support.
- *
- * CF_FMA:
- * Test for FMA support.
- */
- typedef enum cpufeature {
- CF_MMX = 1 << 23,
- CF_SSE = 1 << 25,
- CF_SSE2 = 1 << 26,
- CF_SSE3 = 1 << 0,
- CF_SSSE3 = 1 << 9,
- CF_SSE41 = 1 << 19,
- CF_SSE42 = 1 << 20,
- CF_AVX = 1 << 28,
- CF_FMA = 1 << 12
- } cpufeature_t;
- /**
- * enum cpuextfeature - Test for an extended feature provided by the CPU
- *
- * This is used by cpuid_has_ext_feature()
- *
- * CEF_x64:
- * Test for 64-bits.
- *
- * CEF_SSE4a:
- * CEF_FMA4:
- * CEF_XOP:
- * Test for SSE4a/FMA4/XOP
- */
- typedef enum cpuextfeature {
- CEF_x64 = 1 << 29,
- CEF_SSE4a = 1 << 6,
- CEF_FMA4 = 1 << 16,
- CEF_XOP = 1 << 11
- } cpuextfeature_t;
- /**
- * cpuid_is_supported - test if the CPUID instruction is supported
- *
- * CPUID is not supported by old CPUS.
- *
- * Returns 1 if the cpuid instruction is supported, 0 otherwise.
- *
- * See also: cpuid()
- */
- int cpuid_is_supported(void);
- /**
- * highest_ext_func_supported - Get the highest extended function supported
- *
- *
- * Returns the highest extended function supported.
- *
- * This is the same as calling:
- * cpuid(CPU_HIGHEST_EEXTENDED_FUNCTION_SUPPORTED, &highest);
- *
- * This is made visible to the linker because it's easier to call it
- * instead of calling cpuid with less type-checking. cpuid calls this.
- *
- * See also: cpuid()
- */
- int highest_ext_func_supported(void);
- /**
- * cpuid - Get Some information from the CPU.
- *
- * This function expects buf to be a valid pointer to a string/int/...
- * depending on the requested information.
- *
- * For CPU_VENDOR_ID:
- * Returns a string into buf.
- *
- * For CPU_PROCINFO_AND_FEATUREBITS:
- * buf[0]:
- * - 3:0 - Stepping
- * - 7:4 - Model
- * - 11:8 - Family
- * - 13:12 - Processor Type
- * - 19:16 - Extended Model
- * - 27:20 - Extended family
- * buf[1] and buf[2]:
- * Feature flags
- * buf[3]:
- * Additional feature information.
- *
- * For CPU_HIGHEST_EXTENDED_FUNCTION_SUPPORTED:
- * Returns the highest supported function in *buf (expects an integer ofc)
- *
- * For CPU_EXTENDED_PROC_INFO_FEATURE_BITS:
- * Returns them in buf[0] and buf[1].
- *
- * For CPU_VIRT_PHYS_ADDR_SIZES:
- * Returns it as an integer in *buf.
- *
- * For CPU_PROC_BRAND_STRING:
- * Have a char array with at least 48 bytes assigned to it.
- *
- * If an invalid flag has been passed a 0xbaadf00d is returned in *buf.
- */
- void cpuid(cpuid_t info, void *buf);
- /**
- * cpuid_test_feature - Test if @feature is available
- *
- * Returns 1 if feature is supported, 0 otherwise.
- *
- * The feature parameter must be >= CPU_EXTENDED_PROC_INFO_FEATURE_BITS
- * and <= CPU_VIRT_PHYS_ADDR_SIZES.
- */
- int cpuid_test_feature(cpuid_t feature);
- /**
- * cpuid_has_feature - Test if @feature is supported
- *
- * Test if the CPU supports MMX/SSE* etc
- *
- * Returns 1 if the feature is available, 0 otherwise.
- */
- #define cpuid_has_mmx() cpuid_has_feature(CF_MMX)
- #define cpuid_has_sse() cpuid_has_feature(CF_SSE)
- #define cpuid_has_sse2() cpuid_has_feature(CF_SSE2)
- #define cpuid_has_sse3() cpuid_has_feature(CF_SSE3)
- #define cpuid_has_ssse3() cpuid_has_feature(CF_SSSE3)
- #define cpuid_has_sse41() cpuid_has_feature(CF_SSE41)
- #define cpuid_has_sse42() cpuid_has_feature(CF_SSE42)
- #define cpuid_has_avx() cpuid_has_feature(CF_AVX)
- #define cpuid_has_fma() cpuid_has_feature(CF_FMA)
- int cpuid_has_feature(cpufeature_t feature);
- /**
- * cpuid_has_ext_feature - Test if @extfeature is an extended feature
- * that's supported by the CPU.
- *
- * Test if the CPU supports this extended feature.
- *
- * Returns 1 if available, 0 otherwise.
- */
- #define cpuid_has_x64() cpuid_has_ext_feature(CEF_x64)
- #define cpuid_has_sse4a() cpuid_has_ext_feature(CEF_SSE4a)
- #define cpuid_has_fma4() cpuid_has_ext_feature(CEF_FMA4)
- #define cpuid_has_xop() cpuid_has_ext_feature(CEF_XOP)
- int cpuid_has_ext_feature(cpuextfeature_t extfeature);
- #endif
|