cpufeature.h 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  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_NCAPS 3
  23. #ifndef __ASSEMBLY__
  24. extern DECLARE_BITMAP(cpu_hwcaps, ARM64_NCAPS);
  25. static inline bool cpu_have_feature(unsigned int num)
  26. {
  27. return elf_hwcap & (1UL << num);
  28. }
  29. bool cpu_supports_mixed_endian_el0(void);
  30. bool system_supports_mixed_endian_el0(void);
  31. static inline bool cpus_have_cap(unsigned int num)
  32. {
  33. if (num >= ARM64_NCAPS)
  34. return false;
  35. return test_bit(num, cpu_hwcaps);
  36. }
  37. static inline void cpus_set_cap(unsigned int num)
  38. {
  39. if (num >= ARM64_NCAPS)
  40. printk(KERN_WARNING"Attempt to set an illegal CPU capability (%d >= %d)\n",
  41. num, ARM64_NCAPS);
  42. else
  43. __set_bit(num, cpu_hwcaps);
  44. }
  45. void check_local_cpu_errata(void);
  46. #endif /* __ASSEMBLY__ */
  47. #endif