Blame winpr/libwinpr/sysinfo/cpufeatures/cpu-features.h

Packit Service fa4841
/*
Packit Service fa4841
 * Copyright (C) 2010 The Android Open Source Project
Packit Service fa4841
 * All rights reserved.
Packit Service fa4841
 *
Packit Service fa4841
 * Redistribution and use in source and binary forms, with or without
Packit Service fa4841
 * modification, are permitted provided that the following conditions
Packit Service fa4841
 * are met:
Packit Service fa4841
 *  * Redistributions of source code must retain the above copyright
Packit Service fa4841
 *    notice, this list of conditions and the following disclaimer.
Packit Service fa4841
 *  * Redistributions in binary form must reproduce the above copyright
Packit Service fa4841
 *    notice, this list of conditions and the following disclaimer in
Packit Service fa4841
 *    the documentation and/or other materials provided with the
Packit Service fa4841
 *    distribution.
Packit Service fa4841
 *
Packit Service fa4841
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
Packit Service fa4841
 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
Packit Service fa4841
 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
Packit Service fa4841
 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
Packit Service fa4841
 * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
Packit Service fa4841
 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
Packit Service fa4841
 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
Packit Service fa4841
 * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
Packit Service fa4841
 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
Packit Service fa4841
 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
Packit Service fa4841
 * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
Packit Service fa4841
 * SUCH DAMAGE.
Packit Service fa4841
 */
Packit Service fa4841
#ifndef CPU_FEATURES_H
Packit Service fa4841
#define CPU_FEATURES_H
Packit Service fa4841
Packit Service fa4841
#include <sys/cdefs.h>
Packit Service fa4841
#include <stdint.h>
Packit Service fa4841
Packit Service fa4841
__BEGIN_DECLS
Packit Service fa4841
Packit Service fa4841
/* A list of valid values returned by android_getCpuFamily().
Packit Service fa4841
 * They describe the CPU Architecture of the current process.
Packit Service fa4841
 */
Packit Service fa4841
typedef enum
Packit Service fa4841
{
Packit Service fa4841
	ANDROID_CPU_FAMILY_UNKNOWN = 0,
Packit Service fa4841
	ANDROID_CPU_FAMILY_ARM,
Packit Service fa4841
	ANDROID_CPU_FAMILY_X86,
Packit Service fa4841
	ANDROID_CPU_FAMILY_MIPS,
Packit Service fa4841
	ANDROID_CPU_FAMILY_ARM64,
Packit Service fa4841
	ANDROID_CPU_FAMILY_X86_64,
Packit Service fa4841
	ANDROID_CPU_FAMILY_MIPS64,
Packit Service fa4841
Packit Service fa4841
	ANDROID_CPU_FAMILY_MAX /* do not remove */
Packit Service fa4841
Packit Service fa4841
} AndroidCpuFamily;
Packit Service fa4841
Packit Service fa4841
/* Return the CPU family of the current process.
Packit Service fa4841
 *
Packit Service fa4841
 * Note that this matches the bitness of the current process. I.e. when
Packit Service fa4841
 * running a 32-bit binary on a 64-bit capable CPU, this will return the
Packit Service fa4841
 * 32-bit CPU family value.
Packit Service fa4841
 */
Packit Service fa4841
extern AndroidCpuFamily android_getCpuFamily(void);
Packit Service fa4841
Packit Service fa4841
/* Return a bitmap describing a set of optional CPU features that are
Packit Service fa4841
 * supported by the current device's CPU. The exact bit-flags returned
Packit Service fa4841
 * depend on the value returned by android_getCpuFamily(). See the
Packit Service fa4841
 * documentation for the ANDROID_CPU_*_FEATURE_* flags below for details.
Packit Service fa4841
 */
Packit Service fa4841
extern uint64_t android_getCpuFeatures(void);
Packit Service fa4841
Packit Service fa4841
/* The list of feature flags for ANDROID_CPU_FAMILY_ARM that can be
Packit Service fa4841
 * recognized by the library (see note below for 64-bit ARM). Value details
Packit Service fa4841
 * are:
Packit Service fa4841
 *
Packit Service fa4841
 *   VFPv2:
Packit Service fa4841
 *     CPU supports the VFPv2 instruction set. Many, but not all, ARMv6 CPUs
Packit Service fa4841
 *     support these instructions. VFPv2 is a subset of VFPv3 so this will
Packit Service fa4841
 *     be set whenever VFPv3 is set too.
Packit Service fa4841
 *
Packit Service fa4841
 *   ARMv7:
Packit Service fa4841
 *     CPU supports the ARMv7-A basic instruction set.
Packit Service fa4841
 *     This feature is mandated by the 'armeabi-v7a' ABI.
Packit Service fa4841
 *
Packit Service fa4841
 *   VFPv3:
Packit Service fa4841
 *     CPU supports the VFPv3-D16 instruction set, providing hardware FPU
Packit Service fa4841
 *     support for single and double precision floating point registers.
Packit Service fa4841
 *     Note that only 16 FPU registers are available by default, unless
Packit Service fa4841
 *     the D32 bit is set too. This feature is also mandated by the
Packit Service fa4841
 *     'armeabi-v7a' ABI.
Packit Service fa4841
 *
Packit Service fa4841
 *   VFP_D32:
Packit Service fa4841
 *     CPU VFP optional extension that provides 32 FPU registers,
Packit Service fa4841
 *     instead of 16. Note that ARM mandates this feature is the 'NEON'
Packit Service fa4841
 *     feature is implemented by the CPU.
Packit Service fa4841
 *
Packit Service fa4841
 *   NEON:
Packit Service fa4841
 *     CPU FPU supports "ARM Advanced SIMD" instructions, also known as
Packit Service fa4841
 *     NEON. Note that this mandates the VFP_D32 feature as well, per the
Packit Service fa4841
 *     ARM Architecture specification.
Packit Service fa4841
 *
Packit Service fa4841
 *   VFP_FP16:
Packit Service fa4841
 *     Half-width floating precision VFP extension. If set, the CPU
Packit Service fa4841
 *     supports instructions to perform floating-point operations on
Packit Service fa4841
 *     16-bit registers. This is part of the VFPv4 specification, but
Packit Service fa4841
 *     not mandated by any Android ABI.
Packit Service fa4841
 *
Packit Service fa4841
 *   VFP_FMA:
Packit Service fa4841
 *     Fused multiply-accumulate VFP instructions extension. Also part of
Packit Service fa4841
 *     the VFPv4 specification, but not mandated by any Android ABI.
Packit Service fa4841
 *
Packit Service fa4841
 *   NEON_FMA:
Packit Service fa4841
 *     Fused multiply-accumulate NEON instructions extension. Optional
Packit Service fa4841
 *     extension from the VFPv4 specification, but not mandated by any
Packit Service fa4841
 *     Android ABI.
Packit Service fa4841
 *
Packit Service fa4841
 *   IDIV_ARM:
Packit Service fa4841
 *     Integer division available in ARM mode. Only available
Packit Service fa4841
 *     on recent CPUs (e.g. Cortex-A15).
Packit Service fa4841
 *
Packit Service fa4841
 *   IDIV_THUMB2:
Packit Service fa4841
 *     Integer division available in Thumb-2 mode. Only available
Packit Service fa4841
 *     on recent CPUs (e.g. Cortex-A15).
Packit Service fa4841
 *
Packit Service fa4841
 *   iWMMXt:
Packit Service fa4841
 *     Optional extension that adds MMX registers and operations to an
Packit Service fa4841
 *     ARM CPU. This is only available on a few XScale-based CPU designs
Packit Service fa4841
 *     sold by Marvell. Pretty rare in practice.
Packit Service fa4841
 *
Packit Service fa4841
 *   AES:
Packit Service fa4841
 *     CPU supports AES instructions. These instructions are only
Packit Service fa4841
 *     available for 32-bit applications running on ARMv8 CPU.
Packit Service fa4841
 *
Packit Service fa4841
 *   CRC32:
Packit Service fa4841
 *     CPU supports CRC32 instructions. These instructions are only
Packit Service fa4841
 *     available for 32-bit applications running on ARMv8 CPU.
Packit Service fa4841
 *
Packit Service fa4841
 *   SHA2:
Packit Service fa4841
 *     CPU supports SHA2 instructions. These instructions are only
Packit Service fa4841
 *     available for 32-bit applications running on ARMv8 CPU.
Packit Service fa4841
 *
Packit Service fa4841
 *   SHA1:
Packit Service fa4841
 *     CPU supports SHA1 instructions. These instructions are only
Packit Service fa4841
 *     available for 32-bit applications running on ARMv8 CPU.
Packit Service fa4841
 *
Packit Service fa4841
 *   PMULL:
Packit Service fa4841
 *     CPU supports 64-bit PMULL and PMULL2 instructions. These
Packit Service fa4841
 *     instructions are only available for 32-bit applications
Packit Service fa4841
 *     running on ARMv8 CPU.
Packit Service fa4841
 *
Packit Service fa4841
 * If you want to tell the compiler to generate code that targets one of
Packit Service fa4841
 * the feature set above, you should probably use one of the following
Packit Service fa4841
 * flags (for more details, see technical note at the end of this file):
Packit Service fa4841
 *
Packit Service fa4841
 *   -mfpu=vfp
Packit Service fa4841
 *   -mfpu=vfpv2
Packit Service fa4841
 *     These are equivalent and tell GCC to use VFPv2 instructions for
Packit Service fa4841
 *     floating-point operations. Use this if you want your code to
Packit Service fa4841
 *     run on *some* ARMv6 devices, and any ARMv7-A device supported
Packit Service fa4841
 *     by Android.
Packit Service fa4841
 *
Packit Service fa4841
 *     Generated code requires VFPv2 feature.
Packit Service fa4841
 *
Packit Service fa4841
 *   -mfpu=vfpv3-d16
Packit Service fa4841
 *     Tell GCC to use VFPv3 instructions (using only 16 FPU registers).
Packit Service fa4841
 *     This should be generic code that runs on any CPU that supports the
Packit Service fa4841
 *     'armeabi-v7a' Android ABI. Note that no ARMv6 CPU supports this.
Packit Service fa4841
 *
Packit Service fa4841
 *     Generated code requires VFPv3 feature.
Packit Service fa4841
 *
Packit Service fa4841
 *   -mfpu=vfpv3
Packit Service fa4841
 *     Tell GCC to use VFPv3 instructions with 32 FPU registers.
Packit Service fa4841
 *     Generated code requires VFPv3|VFP_D32 features.
Packit Service fa4841
 *
Packit Service fa4841
 *   -mfpu=neon
Packit Service fa4841
 *     Tell GCC to use VFPv3 instructions with 32 FPU registers, and
Packit Service fa4841
 *     also support NEON intrinsics (see <arm_neon.h>).
Packit Service fa4841
 *     Generated code requires VFPv3|VFP_D32|NEON features.
Packit Service fa4841
 *
Packit Service fa4841
 *   -mfpu=vfpv4-d16
Packit Service fa4841
 *     Generated code requires VFPv3|VFP_FP16|VFP_FMA features.
Packit Service fa4841
 *
Packit Service fa4841
 *   -mfpu=vfpv4
Packit Service fa4841
 *     Generated code requires VFPv3|VFP_FP16|VFP_FMA|VFP_D32 features.
Packit Service fa4841
 *
Packit Service fa4841
 *   -mfpu=neon-vfpv4
Packit Service fa4841
 *     Generated code requires VFPv3|VFP_FP16|VFP_FMA|VFP_D32|NEON|NEON_FMA
Packit Service fa4841
 *     features.
Packit Service fa4841
 *
Packit Service fa4841
 *   -mcpu=cortex-a7
Packit Service fa4841
 *   -mcpu=cortex-a15
Packit Service fa4841
 *     Generated code requires VFPv3|VFP_FP16|VFP_FMA|VFP_D32|
Packit Service fa4841
 *                             NEON|NEON_FMA|IDIV_ARM|IDIV_THUMB2
Packit Service fa4841
 *     This flag implies -mfpu=neon-vfpv4.
Packit Service fa4841
 *
Packit Service fa4841
 *   -mcpu=iwmmxt
Packit Service fa4841
 *     Allows the use of iWMMXt instrinsics with GCC.
Packit Service fa4841
 *
Packit Service fa4841
 * IMPORTANT NOTE: These flags should only be tested when
Packit Service fa4841
 * android_getCpuFamily() returns ANDROID_CPU_FAMILY_ARM, i.e. this is a
Packit Service fa4841
 * 32-bit process.
Packit Service fa4841
 *
Packit Service fa4841
 * When running a 64-bit ARM process on an ARMv8 CPU,
Packit Service fa4841
 * android_getCpuFeatures() will return a different set of bitflags
Packit Service fa4841
 */
Packit Service fa4841
enum
Packit Service fa4841
{
Packit Service fa4841
	ANDROID_CPU_ARM_FEATURE_ARMv7 = (1 << 0),
Packit Service fa4841
	ANDROID_CPU_ARM_FEATURE_VFPv3 = (1 << 1),
Packit Service fa4841
	ANDROID_CPU_ARM_FEATURE_NEON = (1 << 2),
Packit Service fa4841
	ANDROID_CPU_ARM_FEATURE_LDREX_STREX = (1 << 3),
Packit Service fa4841
	ANDROID_CPU_ARM_FEATURE_VFPv2 = (1 << 4),
Packit Service fa4841
	ANDROID_CPU_ARM_FEATURE_VFP_D32 = (1 << 5),
Packit Service fa4841
	ANDROID_CPU_ARM_FEATURE_VFP_FP16 = (1 << 6),
Packit Service fa4841
	ANDROID_CPU_ARM_FEATURE_VFP_FMA = (1 << 7),
Packit Service fa4841
	ANDROID_CPU_ARM_FEATURE_NEON_FMA = (1 << 8),
Packit Service fa4841
	ANDROID_CPU_ARM_FEATURE_IDIV_ARM = (1 << 9),
Packit Service fa4841
	ANDROID_CPU_ARM_FEATURE_IDIV_THUMB2 = (1 << 10),
Packit Service fa4841
	ANDROID_CPU_ARM_FEATURE_iWMMXt = (1 << 11),
Packit Service fa4841
	ANDROID_CPU_ARM_FEATURE_AES = (1 << 12),
Packit Service fa4841
	ANDROID_CPU_ARM_FEATURE_PMULL = (1 << 13),
Packit Service fa4841
	ANDROID_CPU_ARM_FEATURE_SHA1 = (1 << 14),
Packit Service fa4841
	ANDROID_CPU_ARM_FEATURE_SHA2 = (1 << 15),
Packit Service fa4841
	ANDROID_CPU_ARM_FEATURE_CRC32 = (1 << 16),
Packit Service fa4841
};
Packit Service fa4841
Packit Service fa4841
/* The bit flags corresponding to the output of android_getCpuFeatures()
Packit Service fa4841
 * when android_getCpuFamily() returns ANDROID_CPU_FAMILY_ARM64. Value details
Packit Service fa4841
 * are:
Packit Service fa4841
 *
Packit Service fa4841
 *   FP:
Packit Service fa4841
 *     CPU has Floating-point unit.
Packit Service fa4841
 *
Packit Service fa4841
 *   ASIMD:
Packit Service fa4841
 *     CPU has Advanced SIMD unit.
Packit Service fa4841
 *
Packit Service fa4841
 *   AES:
Packit Service fa4841
 *     CPU supports AES instructions.
Packit Service fa4841
 *
Packit Service fa4841
 *   CRC32:
Packit Service fa4841
 *     CPU supports CRC32 instructions.
Packit Service fa4841
 *
Packit Service fa4841
 *   SHA2:
Packit Service fa4841
 *     CPU supports SHA2 instructions.
Packit Service fa4841
 *
Packit Service fa4841
 *   SHA1:
Packit Service fa4841
 *     CPU supports SHA1 instructions.
Packit Service fa4841
 *
Packit Service fa4841
 *   PMULL:
Packit Service fa4841
 *     CPU supports 64-bit PMULL and PMULL2 instructions.
Packit Service fa4841
 */
Packit Service fa4841
enum
Packit Service fa4841
{
Packit Service fa4841
	ANDROID_CPU_ARM64_FEATURE_FP = (1 << 0),
Packit Service fa4841
	ANDROID_CPU_ARM64_FEATURE_ASIMD = (1 << 1),
Packit Service fa4841
	ANDROID_CPU_ARM64_FEATURE_AES = (1 << 2),
Packit Service fa4841
	ANDROID_CPU_ARM64_FEATURE_PMULL = (1 << 3),
Packit Service fa4841
	ANDROID_CPU_ARM64_FEATURE_SHA1 = (1 << 4),
Packit Service fa4841
	ANDROID_CPU_ARM64_FEATURE_SHA2 = (1 << 5),
Packit Service fa4841
	ANDROID_CPU_ARM64_FEATURE_CRC32 = (1 << 6),
Packit Service fa4841
};
Packit Service fa4841
Packit Service fa4841
/* The bit flags corresponding to the output of android_getCpuFeatures()
Packit Service fa4841
 * when android_getCpuFamily() returns ANDROID_CPU_FAMILY_X86 or
Packit Service fa4841
 * ANDROID_CPU_FAMILY_X86_64.
Packit Service fa4841
 */
Packit Service fa4841
enum
Packit Service fa4841
{
Packit Service fa4841
	ANDROID_CPU_X86_FEATURE_SSSE3 = (1 << 0),
Packit Service fa4841
	ANDROID_CPU_X86_FEATURE_POPCNT = (1 << 1),
Packit Service fa4841
	ANDROID_CPU_X86_FEATURE_MOVBE = (1 << 2),
Packit Service fa4841
	ANDROID_CPU_X86_FEATURE_SSE4_1 = (1 << 3),
Packit Service fa4841
	ANDROID_CPU_X86_FEATURE_SSE4_2 = (1 << 4),
Packit Service fa4841
	ANDROID_CPU_X86_FEATURE_AES_NI = (1 << 5),
Packit Service fa4841
	ANDROID_CPU_X86_FEATURE_AVX = (1 << 6),
Packit Service fa4841
	ANDROID_CPU_X86_FEATURE_RDRAND = (1 << 7),
Packit Service fa4841
	ANDROID_CPU_X86_FEATURE_AVX2 = (1 << 8),
Packit Service fa4841
	ANDROID_CPU_X86_FEATURE_SHA_NI = (1 << 9),
Packit Service fa4841
};
Packit Service fa4841
Packit Service fa4841
/* The bit flags corresponding to the output of android_getCpuFeatures()
Packit Service fa4841
 * when android_getCpuFamily() returns ANDROID_CPU_FAMILY_MIPS
Packit Service fa4841
 * or ANDROID_CPU_FAMILY_MIPS64.  Values are:
Packit Service fa4841
 *
Packit Service fa4841
 *   R6:
Packit Service fa4841
 *     CPU executes MIPS Release 6 instructions natively, and
Packit Service fa4841
 *     supports obsoleted R1..R5 instructions only via kernel traps.
Packit Service fa4841
 *
Packit Service fa4841
 *   MSA:
Packit Service fa4841
 *     CPU supports Mips SIMD Architecture instructions.
Packit Service fa4841
 */
Packit Service fa4841
enum
Packit Service fa4841
{
Packit Service fa4841
	ANDROID_CPU_MIPS_FEATURE_R6 = (1 << 0),
Packit Service fa4841
	ANDROID_CPU_MIPS_FEATURE_MSA = (1 << 1),
Packit Service fa4841
};
Packit Service fa4841
Packit Service fa4841
/* Return the number of CPU cores detected on this device. */
Packit Service fa4841
extern int android_getCpuCount(void);
Packit Service fa4841
Packit Service fa4841
/* The following is used to force the CPU count and features
Packit Service fa4841
 * mask in sandboxed processes. Under 4.1 and higher, these processes
Packit Service fa4841
 * cannot access /proc, which is the only way to get information from
Packit Service fa4841
 * the kernel about the current hardware (at least on ARM).
Packit Service fa4841
 *
Packit Service fa4841
 * It _must_ be called only once, and before any android_getCpuXXX
Packit Service fa4841
 * function, any other case will fail.
Packit Service fa4841
 *
Packit Service fa4841
 * This function return 1 on success, and 0 on failure.
Packit Service fa4841
 */
Packit Service fa4841
extern int android_setCpu(int cpu_count, uint64_t cpu_features);
Packit Service fa4841
Packit Service fa4841
#ifdef __arm__
Packit Service fa4841
/* Retrieve the ARM 32-bit CPUID value from the kernel.
Packit Service fa4841
 * Note that this cannot work on sandboxed processes under 4.1 and
Packit Service fa4841
 * higher, unless you called android_setCpuArm() before.
Packit Service fa4841
 */
Packit Service fa4841
extern uint32_t android_getCpuIdArm(void);
Packit Service fa4841
Packit Service fa4841
/* An ARM-specific variant of android_setCpu() that also allows you
Packit Service fa4841
 * to set the ARM CPUID field.
Packit Service fa4841
 */
Packit Service fa4841
extern int android_setCpuArm(int cpu_count, uint64_t cpu_features, uint32_t cpu_id);
Packit Service fa4841
#endif
Packit Service fa4841
Packit Service fa4841
__END_DECLS
Packit Service fa4841
Packit Service fa4841
#endif /* CPU_FEATURES_H */