cachepc-linux

Fork of AMDESE/linux with modifications for CachePC side-channel attack
git clone https://git.sinitax.com/sinitax/cachepc-linux
Log | Files | Refs | README | LICENSE | sfeed.txt

hwcap.h (715B)


      1/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
      2#ifndef _UAPI_ASM_HWCAP_H
      3#define _UAPI_ASM_HWCAP_H
      4
      5/* HWCAP flags */
      6#define HWCAP_MIPS_R6		(1 << 0)
      7#define HWCAP_MIPS_MSA		(1 << 1)
      8#define HWCAP_MIPS_CRC32	(1 << 2)
      9#define HWCAP_MIPS_MIPS16	(1 << 3)
     10#define HWCAP_MIPS_MDMX     (1 << 4)
     11#define HWCAP_MIPS_MIPS3D   (1 << 5)
     12#define HWCAP_MIPS_SMARTMIPS (1 << 6)
     13#define HWCAP_MIPS_DSP      (1 << 7)
     14#define HWCAP_MIPS_DSP2     (1 << 8)
     15#define HWCAP_MIPS_DSP3     (1 << 9)
     16#define HWCAP_MIPS_MIPS16E2 (1 << 10)
     17#define HWCAP_LOONGSON_MMI  (1 << 11)
     18#define HWCAP_LOONGSON_EXT  (1 << 12)
     19#define HWCAP_LOONGSON_EXT2 (1 << 13)
     20#define HWCAP_LOONGSON_CPUCFG (1 << 14)
     21
     22#endif /* _UAPI_ASM_HWCAP_H */