cpufeature.h 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. /*
  2. * Copyright (C) 2014 Linaro Ltd. <ard.biesheuvel@linaro.org>
  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. #ifndef __ASM_CPUFEATURE_H
  9. #define __ASM_CPUFEATURE_H
  10. #include <asm/hwcap.h>
  11. /*
  12. * In the arm64 world (as in the ARM world), elf_hwcap is used both internally
  13. * in the kernel and for user space to keep track of which optional features
  14. * are supported by the current system. So let's map feature 'x' to HWCAP_x.
  15. * Note that HWCAP_x constants are bit fields so we need to take the log.
  16. */
  17. #define MAX_CPU_FEATURES (8 * sizeof(elf_hwcap))
  18. #define cpu_feature(x) ilog2(HWCAP_ ## x)
  19. #define ARM64_WORKAROUND_CLEAN_CACHE 0
  20. #define ARM64_WORKAROUND_DEVICE_LOAD_ACQUIRE 1
  21. #define ARM64_WORKAROUND_845719 2
  22. #define ARM64_HAS_SYSREG_GIC_CPUIF 3
  23. #define ARM64_NCAPS 4
  24. #ifndef __ASSEMBLY__
  25. struct arm64_cpu_capabilities {
  26. const char *desc;
  27. u16 capability;
  28. bool (*matches)(const struct arm64_cpu_capabilities *);
  29. union {
  30. struct { /* To be used for erratum handling only */
  31. u32 midr_model;
  32. u32 midr_range_min, midr_range_max;
  33. };
  34. struct { /* Feature register checking */
  35. u64 register_mask;
  36. u64 register_value;
  37. };
  38. };
  39. };
  40. extern DECLARE_BITMAP(cpu_hwcaps, ARM64_NCAPS);
  41. static inline bool cpu_have_feature(unsigned int num)
  42. {
  43. return elf_hwcap & (1UL << num);
  44. }
  45. static inline bool cpus_have_cap(unsigned int num)
  46. {
  47. if (num >= ARM64_NCAPS)
  48. return false;
  49. return test_bit(num, cpu_hwcaps);
  50. }
  51. static inline void cpus_set_cap(unsigned int num)
  52. {
  53. if (num >= ARM64_NCAPS)
  54. pr_warn("Attempt to set an illegal CPU capability (%d >= %d)\n",
  55. num, ARM64_NCAPS);
  56. else
  57. __set_bit(num, cpu_hwcaps);
  58. }
  59. void check_cpu_capabilities(const struct arm64_cpu_capabilities *caps,
  60. const char *info);
  61. void check_local_cpu_errata(void);
  62. void check_local_cpu_features(void);
  63. bool cpu_supports_mixed_endian_el0(void);
  64. bool system_supports_mixed_endian_el0(void);
  65. #endif /* __ASSEMBLY__ */
  66. #endif