hwcap.h 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. /*
  2. * Copyright (C) 2012 ARM Ltd.
  3. *
  4. * This program is free software; you can redistribute it and/or modify
  5. * it under the terms of the GNU General Public License version 2 as
  6. * published by the Free Software Foundation.
  7. *
  8. * This program is distributed in the hope that it will be useful,
  9. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. * GNU General Public License for more details.
  12. *
  13. * You should have received a copy of the GNU General Public License
  14. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  15. */
  16. #ifndef __ASM_HWCAP_H
  17. #define __ASM_HWCAP_H
  18. #include <uapi/asm/hwcap.h>
  19. #define COMPAT_HWCAP_HALF (1 << 1)
  20. #define COMPAT_HWCAP_THUMB (1 << 2)
  21. #define COMPAT_HWCAP_FAST_MULT (1 << 4)
  22. #define COMPAT_HWCAP_VFP (1 << 6)
  23. #define COMPAT_HWCAP_EDSP (1 << 7)
  24. #define COMPAT_HWCAP_NEON (1 << 12)
  25. #define COMPAT_HWCAP_VFPv3 (1 << 13)
  26. #define COMPAT_HWCAP_TLS (1 << 15)
  27. #define COMPAT_HWCAP_VFPv4 (1 << 16)
  28. #define COMPAT_HWCAP_IDIVA (1 << 17)
  29. #define COMPAT_HWCAP_IDIVT (1 << 18)
  30. #define COMPAT_HWCAP_IDIV (COMPAT_HWCAP_IDIVA|COMPAT_HWCAP_IDIVT)
  31. #define COMPAT_HWCAP_LPAE (1 << 20)
  32. #define COMPAT_HWCAP_EVTSTRM (1 << 21)
  33. #define COMPAT_HWCAP2_AES (1 << 0)
  34. #define COMPAT_HWCAP2_PMULL (1 << 1)
  35. #define COMPAT_HWCAP2_SHA1 (1 << 2)
  36. #define COMPAT_HWCAP2_SHA2 (1 << 3)
  37. #define COMPAT_HWCAP2_CRC32 (1 << 4)
  38. #ifndef __ASSEMBLY__
  39. /*
  40. * This yields a mask that user programs can use to figure out what
  41. * instruction set this cpu supports.
  42. */
  43. #define ELF_HWCAP (elf_hwcap)
  44. #ifdef CONFIG_COMPAT
  45. #define COMPAT_ELF_HWCAP (compat_elf_hwcap)
  46. #define COMPAT_ELF_HWCAP2 (compat_elf_hwcap2)
  47. extern unsigned int compat_elf_hwcap, compat_elf_hwcap2;
  48. #endif
  49. enum {
  50. CAP_HWCAP = 1,
  51. #ifdef CONFIG_COMPAT
  52. CAP_COMPAT_HWCAP,
  53. CAP_COMPAT_HWCAP2,
  54. #endif
  55. };
  56. extern unsigned long elf_hwcap;
  57. #endif
  58. #endif