cpufeature.h 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  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_HAS_PAN 4
  24. #define ARM64_HAS_LSE_ATOMICS 5
  25. #define ARM64_NCAPS 6
  26. #ifndef __ASSEMBLY__
  27. #include <linux/kernel.h>
  28. struct arm64_cpu_capabilities {
  29. const char *desc;
  30. u16 capability;
  31. bool (*matches)(const struct arm64_cpu_capabilities *);
  32. void (*enable)(void);
  33. union {
  34. struct { /* To be used for erratum handling only */
  35. u32 midr_model;
  36. u32 midr_range_min, midr_range_max;
  37. };
  38. struct { /* Feature register checking */
  39. int field_pos;
  40. int min_field_value;
  41. };
  42. };
  43. };
  44. extern DECLARE_BITMAP(cpu_hwcaps, ARM64_NCAPS);
  45. static inline bool cpu_have_feature(unsigned int num)
  46. {
  47. return elf_hwcap & (1UL << num);
  48. }
  49. static inline bool cpus_have_cap(unsigned int num)
  50. {
  51. if (num >= ARM64_NCAPS)
  52. return false;
  53. return test_bit(num, cpu_hwcaps);
  54. }
  55. static inline void cpus_set_cap(unsigned int num)
  56. {
  57. if (num >= ARM64_NCAPS)
  58. pr_warn("Attempt to set an illegal CPU capability (%d >= %d)\n",
  59. num, ARM64_NCAPS);
  60. else
  61. __set_bit(num, cpu_hwcaps);
  62. }
  63. static inline int __attribute_const__ cpuid_feature_extract_field(u64 features,
  64. int field)
  65. {
  66. return (s64)(features << (64 - 4 - field)) >> (64 - 4);
  67. }
  68. void check_cpu_capabilities(const struct arm64_cpu_capabilities *caps,
  69. const char *info);
  70. void check_local_cpu_errata(void);
  71. void check_local_cpu_features(void);
  72. bool cpu_supports_mixed_endian_el0(void);
  73. bool system_supports_mixed_endian_el0(void);
  74. #endif /* __ASSEMBLY__ */
  75. #endif