cpuinfo.c 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253
  1. /*
  2. * Record and handle CPU attributes.
  3. *
  4. * Copyright (C) 2014 ARM Ltd.
  5. * This program is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License version 2 as
  7. * published by the Free Software Foundation.
  8. *
  9. * This program is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. * GNU General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU General Public License
  15. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  16. */
  17. #include <asm/arch_timer.h>
  18. #include <asm/cachetype.h>
  19. #include <asm/cpu.h>
  20. #include <asm/cputype.h>
  21. #include <asm/cpufeature.h>
  22. #include <linux/bitops.h>
  23. #include <linux/bug.h>
  24. #include <linux/init.h>
  25. #include <linux/kernel.h>
  26. #include <linux/personality.h>
  27. #include <linux/preempt.h>
  28. #include <linux/printk.h>
  29. #include <linux/seq_file.h>
  30. #include <linux/sched.h>
  31. #include <linux/smp.h>
  32. #include <linux/delay.h>
  33. /*
  34. * In case the boot CPU is hotpluggable, we record its initial state and
  35. * current state separately. Certain system registers may contain different
  36. * values depending on configuration at or after reset.
  37. */
  38. DEFINE_PER_CPU(struct cpuinfo_arm64, cpu_data);
  39. static struct cpuinfo_arm64 boot_cpu_data;
  40. static char *icache_policy_str[] = {
  41. [ICACHE_POLICY_RESERVED] = "RESERVED/UNKNOWN",
  42. [ICACHE_POLICY_AIVIVT] = "AIVIVT",
  43. [ICACHE_POLICY_VIPT] = "VIPT",
  44. [ICACHE_POLICY_PIPT] = "PIPT",
  45. };
  46. unsigned long __icache_flags;
  47. static const char *const hwcap_str[] = {
  48. "fp",
  49. "asimd",
  50. "evtstrm",
  51. "aes",
  52. "pmull",
  53. "sha1",
  54. "sha2",
  55. "crc32",
  56. "atomics",
  57. NULL
  58. };
  59. #ifdef CONFIG_COMPAT
  60. static const char *const compat_hwcap_str[] = {
  61. "swp",
  62. "half",
  63. "thumb",
  64. "26bit",
  65. "fastmult",
  66. "fpa",
  67. "vfp",
  68. "edsp",
  69. "java",
  70. "iwmmxt",
  71. "crunch",
  72. "thumbee",
  73. "neon",
  74. "vfpv3",
  75. "vfpv3d16",
  76. "tls",
  77. "vfpv4",
  78. "idiva",
  79. "idivt",
  80. "vfpd32",
  81. "lpae",
  82. "evtstrm"
  83. };
  84. static const char *const compat_hwcap2_str[] = {
  85. "aes",
  86. "pmull",
  87. "sha1",
  88. "sha2",
  89. "crc32",
  90. NULL
  91. };
  92. #endif /* CONFIG_COMPAT */
  93. static int c_show(struct seq_file *m, void *v)
  94. {
  95. int i, j;
  96. for_each_online_cpu(i) {
  97. struct cpuinfo_arm64 *cpuinfo = &per_cpu(cpu_data, i);
  98. u32 midr = cpuinfo->reg_midr;
  99. /*
  100. * glibc reads /proc/cpuinfo to determine the number of
  101. * online processors, looking for lines beginning with
  102. * "processor". Give glibc what it expects.
  103. */
  104. seq_printf(m, "processor\t: %d\n", i);
  105. seq_printf(m, "BogoMIPS\t: %lu.%02lu\n",
  106. loops_per_jiffy / (500000UL/HZ),
  107. loops_per_jiffy / (5000UL/HZ) % 100);
  108. /*
  109. * Dump out the common processor features in a single line.
  110. * Userspace should read the hwcaps with getauxval(AT_HWCAP)
  111. * rather than attempting to parse this, but there's a body of
  112. * software which does already (at least for 32-bit).
  113. */
  114. seq_puts(m, "Features\t:");
  115. if (personality(current->personality) == PER_LINUX32) {
  116. #ifdef CONFIG_COMPAT
  117. for (j = 0; compat_hwcap_str[j]; j++)
  118. if (compat_elf_hwcap & (1 << j))
  119. seq_printf(m, " %s", compat_hwcap_str[j]);
  120. for (j = 0; compat_hwcap2_str[j]; j++)
  121. if (compat_elf_hwcap2 & (1 << j))
  122. seq_printf(m, " %s", compat_hwcap2_str[j]);
  123. #endif /* CONFIG_COMPAT */
  124. } else {
  125. for (j = 0; hwcap_str[j]; j++)
  126. if (elf_hwcap & (1 << j))
  127. seq_printf(m, " %s", hwcap_str[j]);
  128. }
  129. seq_puts(m, "\n");
  130. seq_printf(m, "CPU implementer\t: 0x%02x\n",
  131. MIDR_IMPLEMENTOR(midr));
  132. seq_printf(m, "CPU architecture: 8\n");
  133. seq_printf(m, "CPU variant\t: 0x%x\n", MIDR_VARIANT(midr));
  134. seq_printf(m, "CPU part\t: 0x%03x\n", MIDR_PARTNUM(midr));
  135. seq_printf(m, "CPU revision\t: %d\n\n", MIDR_REVISION(midr));
  136. }
  137. return 0;
  138. }
  139. static void *c_start(struct seq_file *m, loff_t *pos)
  140. {
  141. return *pos < 1 ? (void *)1 : NULL;
  142. }
  143. static void *c_next(struct seq_file *m, void *v, loff_t *pos)
  144. {
  145. ++*pos;
  146. return NULL;
  147. }
  148. static void c_stop(struct seq_file *m, void *v)
  149. {
  150. }
  151. const struct seq_operations cpuinfo_op = {
  152. .start = c_start,
  153. .next = c_next,
  154. .stop = c_stop,
  155. .show = c_show
  156. };
  157. static void cpuinfo_detect_icache_policy(struct cpuinfo_arm64 *info)
  158. {
  159. unsigned int cpu = smp_processor_id();
  160. u32 l1ip = CTR_L1IP(info->reg_ctr);
  161. if (l1ip != ICACHE_POLICY_PIPT) {
  162. /*
  163. * VIPT caches are non-aliasing if the VA always equals the PA
  164. * in all bit positions that are covered by the index. This is
  165. * the case if the size of a way (# of sets * line size) does
  166. * not exceed PAGE_SIZE.
  167. */
  168. u32 waysize = icache_get_numsets() * icache_get_linesize();
  169. if (l1ip != ICACHE_POLICY_VIPT || waysize > PAGE_SIZE)
  170. set_bit(ICACHEF_ALIASING, &__icache_flags);
  171. }
  172. if (l1ip == ICACHE_POLICY_AIVIVT)
  173. set_bit(ICACHEF_AIVIVT, &__icache_flags);
  174. pr_info("Detected %s I-cache on CPU%d\n", icache_policy_str[l1ip], cpu);
  175. }
  176. static void __cpuinfo_store_cpu(struct cpuinfo_arm64 *info)
  177. {
  178. info->reg_cntfrq = arch_timer_get_cntfrq();
  179. info->reg_ctr = read_cpuid_cachetype();
  180. info->reg_dczid = read_cpuid(DCZID_EL0);
  181. info->reg_midr = read_cpuid_id();
  182. info->reg_id_aa64dfr0 = read_cpuid(ID_AA64DFR0_EL1);
  183. info->reg_id_aa64dfr1 = read_cpuid(ID_AA64DFR1_EL1);
  184. info->reg_id_aa64isar0 = read_cpuid(ID_AA64ISAR0_EL1);
  185. info->reg_id_aa64isar1 = read_cpuid(ID_AA64ISAR1_EL1);
  186. info->reg_id_aa64mmfr0 = read_cpuid(ID_AA64MMFR0_EL1);
  187. info->reg_id_aa64mmfr1 = read_cpuid(ID_AA64MMFR1_EL1);
  188. info->reg_id_aa64pfr0 = read_cpuid(ID_AA64PFR0_EL1);
  189. info->reg_id_aa64pfr1 = read_cpuid(ID_AA64PFR1_EL1);
  190. info->reg_id_dfr0 = read_cpuid(ID_DFR0_EL1);
  191. info->reg_id_isar0 = read_cpuid(ID_ISAR0_EL1);
  192. info->reg_id_isar1 = read_cpuid(ID_ISAR1_EL1);
  193. info->reg_id_isar2 = read_cpuid(ID_ISAR2_EL1);
  194. info->reg_id_isar3 = read_cpuid(ID_ISAR3_EL1);
  195. info->reg_id_isar4 = read_cpuid(ID_ISAR4_EL1);
  196. info->reg_id_isar5 = read_cpuid(ID_ISAR5_EL1);
  197. info->reg_id_mmfr0 = read_cpuid(ID_MMFR0_EL1);
  198. info->reg_id_mmfr1 = read_cpuid(ID_MMFR1_EL1);
  199. info->reg_id_mmfr2 = read_cpuid(ID_MMFR2_EL1);
  200. info->reg_id_mmfr3 = read_cpuid(ID_MMFR3_EL1);
  201. info->reg_id_pfr0 = read_cpuid(ID_PFR0_EL1);
  202. info->reg_id_pfr1 = read_cpuid(ID_PFR1_EL1);
  203. info->reg_mvfr0 = read_cpuid(MVFR0_EL1);
  204. info->reg_mvfr1 = read_cpuid(MVFR1_EL1);
  205. info->reg_mvfr2 = read_cpuid(MVFR2_EL1);
  206. cpuinfo_detect_icache_policy(info);
  207. check_local_cpu_errata();
  208. }
  209. void cpuinfo_store_cpu(void)
  210. {
  211. struct cpuinfo_arm64 *info = this_cpu_ptr(&cpu_data);
  212. __cpuinfo_store_cpu(info);
  213. update_cpu_features(smp_processor_id(), info, &boot_cpu_data);
  214. }
  215. void __init cpuinfo_store_boot_cpu(void)
  216. {
  217. struct cpuinfo_arm64 *info = &per_cpu(cpu_data, 0);
  218. __cpuinfo_store_cpu(info);
  219. boot_cpu_data = *info;
  220. init_cpu_features(&boot_cpu_data);
  221. }