blob: 0a0c601c6ade59aaf743a9bd7cf6a760c9860932 [file] [log] [blame]
Nicholas Piggin5a61ef72017-05-09 13:16:52 +10001/*
2 * Copyright 2017, Nicholas Piggin, IBM Corporation
3 * Licensed under GPLv2.
4 */
5
6#define pr_fmt(fmt) "dt-cpu-ftrs: " fmt
7
8#include <linux/export.h>
9#include <linux/init.h>
10#include <linux/jump_label.h>
Nicholas Piggina2b05b72017-05-11 21:24:41 +100011#include <linux/libfdt.h>
Nicholas Piggin5a61ef72017-05-09 13:16:52 +100012#include <linux/memblock.h>
13#include <linux/printk.h>
14#include <linux/sched.h>
15#include <linux/string.h>
16#include <linux/threads.h>
17
18#include <asm/cputable.h>
19#include <asm/dt_cpu_ftrs.h>
20#include <asm/mmu.h>
21#include <asm/oprofile_impl.h>
22#include <asm/prom.h>
23#include <asm/setup.h>
24
25
26/* Device-tree visible constants follow */
27#define ISA_V2_07B 2070
28#define ISA_V3_0B 3000
29
30#define USABLE_PR (1U << 0)
31#define USABLE_OS (1U << 1)
32#define USABLE_HV (1U << 2)
33
34#define HV_SUPPORT_HFSCR (1U << 0)
35#define OS_SUPPORT_FSCR (1U << 0)
36
37/* For parsing, we define all bits set as "NONE" case */
38#define HV_SUPPORT_NONE 0xffffffffU
39#define OS_SUPPORT_NONE 0xffffffffU
40
41struct dt_cpu_feature {
42 const char *name;
43 uint32_t isa;
44 uint32_t usable_privilege;
45 uint32_t hv_support;
46 uint32_t os_support;
47 uint32_t hfscr_bit_nr;
48 uint32_t fscr_bit_nr;
49 uint32_t hwcap_bit_nr;
50 /* fdt parsing */
51 unsigned long node;
52 int enabled;
53 int disabled;
54};
55
56#define CPU_FTRS_BASE \
Paul Mackerrasc0d64cf2018-03-20 08:46:11 +110057 (CPU_FTR_LWSYNC | \
Nicholas Piggin5a61ef72017-05-09 13:16:52 +100058 CPU_FTR_FPU_UNAVAILABLE |\
59 CPU_FTR_NODSISRALIGN |\
60 CPU_FTR_NOEXECUTE |\
61 CPU_FTR_COHERENT_ICACHE | \
62 CPU_FTR_STCX_CHECKS_ADDRESS |\
63 CPU_FTR_POPCNTB | CPU_FTR_POPCNTD | \
64 CPU_FTR_DAWR | \
65 CPU_FTR_ARCH_206 |\
66 CPU_FTR_ARCH_207S)
67
68#define MMU_FTRS_HASH_BASE (MMU_FTRS_POWER8)
69
70#define COMMON_USER_BASE (PPC_FEATURE_32 | PPC_FEATURE_64 | \
71 PPC_FEATURE_ARCH_2_06 |\
72 PPC_FEATURE_ICACHE_SNOOP)
73#define COMMON_USER2_BASE (PPC_FEATURE2_ARCH_2_07 | \
74 PPC_FEATURE2_ISEL)
75/*
76 * Set up the base CPU
77 */
78
Nicholas Piggin5a61ef72017-05-09 13:16:52 +100079extern long __machine_check_early_realmode_p8(struct pt_regs *regs);
80extern long __machine_check_early_realmode_p9(struct pt_regs *regs);
81
82static int hv_mode;
83
84static struct {
85 u64 lpcr;
86 u64 hfscr;
87 u64 fscr;
88} system_registers;
89
90static void (*init_pmu_registers)(void);
91
Nicholas Piggin5a61ef72017-05-09 13:16:52 +100092static void __restore_cpu_cpufeatures(void)
93{
94 /*
95 * LPCR is restored by the power on engine already. It can be changed
96 * after early init e.g., by radix enable, and we have no unified API
97 * for saving and restoring such SPRs.
98 *
99 * This ->restore hook should really be removed from idle and register
100 * restore moved directly into the idle restore code, because this code
101 * doesn't know how idle is implemented or what it needs restored here.
102 *
103 * The best we can do to accommodate secondary boot and idle restore
104 * for now is "or" LPCR with existing.
105 */
106
107 mtspr(SPRN_LPCR, system_registers.lpcr | mfspr(SPRN_LPCR));
108 if (hv_mode) {
109 mtspr(SPRN_LPID, 0);
110 mtspr(SPRN_HFSCR, system_registers.hfscr);
111 }
112 mtspr(SPRN_FSCR, system_registers.fscr);
113
114 if (init_pmu_registers)
115 init_pmu_registers();
Nicholas Piggin5a61ef72017-05-09 13:16:52 +1000116}
117
118static char dt_cpu_name[64];
119
120static struct cpu_spec __initdata base_cpu_spec = {
121 .cpu_name = NULL,
122 .cpu_features = CPU_FTRS_BASE,
123 .cpu_user_features = COMMON_USER_BASE,
124 .cpu_user_features2 = COMMON_USER2_BASE,
125 .mmu_features = 0,
126 .icache_bsize = 32, /* minimum block size, fixed by */
127 .dcache_bsize = 32, /* cache info init. */
128 .num_pmcs = 0,
129 .pmc_type = PPC_PMC_DEFAULT,
130 .oprofile_cpu_type = NULL,
131 .oprofile_type = PPC_OPROFILE_INVALID,
132 .cpu_setup = NULL,
133 .cpu_restore = __restore_cpu_cpufeatures,
Nicholas Piggin5a61ef72017-05-09 13:16:52 +1000134 .machine_check_early = NULL,
135 .platform = NULL,
136};
137
138static void __init cpufeatures_setup_cpu(void)
139{
140 set_cur_cpu_spec(&base_cpu_spec);
141
142 cur_cpu_spec->pvr_mask = -1;
143 cur_cpu_spec->pvr_value = mfspr(SPRN_PVR);
144
145 /* Initialize the base environment -- clear FSCR/HFSCR. */
146 hv_mode = !!(mfmsr() & MSR_HV);
147 if (hv_mode) {
148 /* CPU_FTR_HVMODE is used early in PACA setup */
149 cur_cpu_spec->cpu_features |= CPU_FTR_HVMODE;
150 mtspr(SPRN_HFSCR, 0);
151 }
152 mtspr(SPRN_FSCR, 0);
153
154 /*
155 * LPCR does not get cleared, to match behaviour with secondaries
156 * in __restore_cpu_cpufeatures. Once the idle code is fixed, this
157 * could clear LPCR too.
158 */
159}
160
161static int __init feat_try_enable_unknown(struct dt_cpu_feature *f)
162{
163 if (f->hv_support == HV_SUPPORT_NONE) {
164 } else if (f->hv_support & HV_SUPPORT_HFSCR) {
165 u64 hfscr = mfspr(SPRN_HFSCR);
166 hfscr |= 1UL << f->hfscr_bit_nr;
167 mtspr(SPRN_HFSCR, hfscr);
168 } else {
169 /* Does not have a known recipe */
170 return 0;
171 }
172
173 if (f->os_support == OS_SUPPORT_NONE) {
174 } else if (f->os_support & OS_SUPPORT_FSCR) {
175 u64 fscr = mfspr(SPRN_FSCR);
176 fscr |= 1UL << f->fscr_bit_nr;
177 mtspr(SPRN_FSCR, fscr);
178 } else {
179 /* Does not have a known recipe */
180 return 0;
181 }
182
183 if ((f->usable_privilege & USABLE_PR) && (f->hwcap_bit_nr != -1)) {
184 uint32_t word = f->hwcap_bit_nr / 32;
185 uint32_t bit = f->hwcap_bit_nr % 32;
186
187 if (word == 0)
188 cur_cpu_spec->cpu_user_features |= 1U << bit;
189 else if (word == 1)
190 cur_cpu_spec->cpu_user_features2 |= 1U << bit;
191 else
192 pr_err("%s could not advertise to user (no hwcap bits)\n", f->name);
193 }
194
195 return 1;
196}
197
198static int __init feat_enable(struct dt_cpu_feature *f)
199{
200 if (f->hv_support != HV_SUPPORT_NONE) {
201 if (f->hfscr_bit_nr != -1) {
202 u64 hfscr = mfspr(SPRN_HFSCR);
203 hfscr |= 1UL << f->hfscr_bit_nr;
204 mtspr(SPRN_HFSCR, hfscr);
205 }
206 }
207
208 if (f->os_support != OS_SUPPORT_NONE) {
209 if (f->fscr_bit_nr != -1) {
210 u64 fscr = mfspr(SPRN_FSCR);
211 fscr |= 1UL << f->fscr_bit_nr;
212 mtspr(SPRN_FSCR, fscr);
213 }
214 }
215
216 if ((f->usable_privilege & USABLE_PR) && (f->hwcap_bit_nr != -1)) {
217 uint32_t word = f->hwcap_bit_nr / 32;
218 uint32_t bit = f->hwcap_bit_nr % 32;
219
220 if (word == 0)
221 cur_cpu_spec->cpu_user_features |= 1U << bit;
222 else if (word == 1)
223 cur_cpu_spec->cpu_user_features2 |= 1U << bit;
224 else
225 pr_err("CPU feature: %s could not advertise to user (no hwcap bits)\n", f->name);
226 }
227
228 return 1;
229}
230
231static int __init feat_disable(struct dt_cpu_feature *f)
232{
233 return 0;
234}
235
236static int __init feat_enable_hv(struct dt_cpu_feature *f)
237{
238 u64 lpcr;
239
240 if (!hv_mode) {
241 pr_err("CPU feature hypervisor present in device tree but HV mode not enabled in the CPU. Ignoring.\n");
242 return 0;
243 }
244
245 mtspr(SPRN_LPID, 0);
246
247 lpcr = mfspr(SPRN_LPCR);
248 lpcr &= ~LPCR_LPES0; /* HV external interrupts */
249 mtspr(SPRN_LPCR, lpcr);
250
251 cur_cpu_spec->cpu_features |= CPU_FTR_HVMODE;
252
253 return 1;
254}
255
256static int __init feat_enable_le(struct dt_cpu_feature *f)
257{
258 cur_cpu_spec->cpu_user_features |= PPC_FEATURE_TRUE_LE;
259 return 1;
260}
261
262static int __init feat_enable_smt(struct dt_cpu_feature *f)
263{
264 cur_cpu_spec->cpu_features |= CPU_FTR_SMT;
265 cur_cpu_spec->cpu_user_features |= PPC_FEATURE_SMT;
266 return 1;
267}
268
269static int __init feat_enable_idle_nap(struct dt_cpu_feature *f)
270{
271 u64 lpcr;
272
273 /* Set PECE wakeup modes for ISA 207 */
274 lpcr = mfspr(SPRN_LPCR);
275 lpcr |= LPCR_PECE0;
276 lpcr |= LPCR_PECE1;
277 lpcr |= LPCR_PECE2;
278 mtspr(SPRN_LPCR, lpcr);
279
280 return 1;
281}
282
283static int __init feat_enable_align_dsisr(struct dt_cpu_feature *f)
284{
285 cur_cpu_spec->cpu_features &= ~CPU_FTR_NODSISRALIGN;
286
287 return 1;
288}
289
290static int __init feat_enable_idle_stop(struct dt_cpu_feature *f)
291{
292 u64 lpcr;
293
294 /* Set PECE wakeup modes for ISAv3.0B */
295 lpcr = mfspr(SPRN_LPCR);
296 lpcr |= LPCR_PECE0;
297 lpcr |= LPCR_PECE1;
298 lpcr |= LPCR_PECE2;
299 mtspr(SPRN_LPCR, lpcr);
300
301 return 1;
302}
303
304static int __init feat_enable_mmu_hash(struct dt_cpu_feature *f)
305{
306 u64 lpcr;
307
308 lpcr = mfspr(SPRN_LPCR);
309 lpcr &= ~LPCR_ISL;
310
311 /* VRMASD */
312 lpcr |= LPCR_VPM0;
313 lpcr &= ~LPCR_VPM1;
314 lpcr |= 0x10UL << LPCR_VRMASD_SH; /* L=1 LP=00 */
315 mtspr(SPRN_LPCR, lpcr);
316
317 cur_cpu_spec->mmu_features |= MMU_FTRS_HASH_BASE;
318 cur_cpu_spec->cpu_user_features |= PPC_FEATURE_HAS_MMU;
319
320 return 1;
321}
322
323static int __init feat_enable_mmu_hash_v3(struct dt_cpu_feature *f)
324{
325 u64 lpcr;
326
327 lpcr = mfspr(SPRN_LPCR);
328 lpcr &= ~LPCR_ISL;
329 mtspr(SPRN_LPCR, lpcr);
330
331 cur_cpu_spec->mmu_features |= MMU_FTRS_HASH_BASE;
332 cur_cpu_spec->cpu_user_features |= PPC_FEATURE_HAS_MMU;
333
334 return 1;
335}
336
337
338static int __init feat_enable_mmu_radix(struct dt_cpu_feature *f)
339{
340#ifdef CONFIG_PPC_RADIX_MMU
341 cur_cpu_spec->mmu_features |= MMU_FTR_TYPE_RADIX;
342 cur_cpu_spec->mmu_features |= MMU_FTRS_HASH_BASE;
343 cur_cpu_spec->cpu_user_features |= PPC_FEATURE_HAS_MMU;
344
345 return 1;
346#endif
347 return 0;
348}
349
350static int __init feat_enable_dscr(struct dt_cpu_feature *f)
351{
352 u64 lpcr;
353
354 feat_enable(f);
355
356 lpcr = mfspr(SPRN_LPCR);
357 lpcr &= ~LPCR_DPFD;
358 lpcr |= (4UL << LPCR_DPFD_SH);
359 mtspr(SPRN_LPCR, lpcr);
360
361 return 1;
362}
363
364static void hfscr_pmu_enable(void)
365{
366 u64 hfscr = mfspr(SPRN_HFSCR);
367 hfscr |= PPC_BIT(60);
368 mtspr(SPRN_HFSCR, hfscr);
369}
370
371static void init_pmu_power8(void)
372{
373 if (hv_mode) {
374 mtspr(SPRN_MMCRC, 0);
375 mtspr(SPRN_MMCRH, 0);
376 }
377
378 mtspr(SPRN_MMCRA, 0);
379 mtspr(SPRN_MMCR0, 0);
380 mtspr(SPRN_MMCR1, 0);
381 mtspr(SPRN_MMCR2, 0);
382 mtspr(SPRN_MMCRS, 0);
383}
384
385static int __init feat_enable_mce_power8(struct dt_cpu_feature *f)
386{
387 cur_cpu_spec->platform = "power8";
Nicholas Piggin5a61ef72017-05-09 13:16:52 +1000388 cur_cpu_spec->machine_check_early = __machine_check_early_realmode_p8;
389
390 return 1;
391}
392
393static int __init feat_enable_pmu_power8(struct dt_cpu_feature *f)
394{
395 hfscr_pmu_enable();
396
397 init_pmu_power8();
398 init_pmu_registers = init_pmu_power8;
399
400 cur_cpu_spec->cpu_features |= CPU_FTR_MMCRA;
401 cur_cpu_spec->cpu_user_features |= PPC_FEATURE_PSERIES_PERFMON_COMPAT;
402 if (pvr_version_is(PVR_POWER8E))
403 cur_cpu_spec->cpu_features |= CPU_FTR_PMAO_BUG;
404
405 cur_cpu_spec->num_pmcs = 6;
406 cur_cpu_spec->pmc_type = PPC_PMC_IBM;
407 cur_cpu_spec->oprofile_cpu_type = "ppc64/power8";
408
409 return 1;
410}
411
412static void init_pmu_power9(void)
413{
414 if (hv_mode)
415 mtspr(SPRN_MMCRC, 0);
416
417 mtspr(SPRN_MMCRA, 0);
418 mtspr(SPRN_MMCR0, 0);
419 mtspr(SPRN_MMCR1, 0);
420 mtspr(SPRN_MMCR2, 0);
421}
422
423static int __init feat_enable_mce_power9(struct dt_cpu_feature *f)
424{
425 cur_cpu_spec->platform = "power9";
Nicholas Piggin5a61ef72017-05-09 13:16:52 +1000426 cur_cpu_spec->machine_check_early = __machine_check_early_realmode_p9;
427
428 return 1;
429}
430
431static int __init feat_enable_pmu_power9(struct dt_cpu_feature *f)
432{
433 hfscr_pmu_enable();
434
435 init_pmu_power9();
436 init_pmu_registers = init_pmu_power9;
437
438 cur_cpu_spec->cpu_features |= CPU_FTR_MMCRA;
439 cur_cpu_spec->cpu_user_features |= PPC_FEATURE_PSERIES_PERFMON_COMPAT;
440
441 cur_cpu_spec->num_pmcs = 6;
442 cur_cpu_spec->pmc_type = PPC_PMC_IBM;
443 cur_cpu_spec->oprofile_cpu_type = "ppc64/power9";
444
445 return 1;
446}
447
448static int __init feat_enable_tm(struct dt_cpu_feature *f)
449{
450#ifdef CONFIG_PPC_TRANSACTIONAL_MEM
451 feat_enable(f);
452 cur_cpu_spec->cpu_user_features2 |= PPC_FEATURE2_HTM_NOSC;
453 return 1;
454#endif
455 return 0;
456}
457
458static int __init feat_enable_fp(struct dt_cpu_feature *f)
459{
460 feat_enable(f);
461 cur_cpu_spec->cpu_features &= ~CPU_FTR_FPU_UNAVAILABLE;
462
463 return 1;
464}
465
466static int __init feat_enable_vector(struct dt_cpu_feature *f)
467{
468#ifdef CONFIG_ALTIVEC
469 feat_enable(f);
470 cur_cpu_spec->cpu_features |= CPU_FTR_ALTIVEC;
471 cur_cpu_spec->cpu_features |= CPU_FTR_VMX_COPY;
472 cur_cpu_spec->cpu_user_features |= PPC_FEATURE_HAS_ALTIVEC;
473
474 return 1;
475#endif
476 return 0;
477}
478
479static int __init feat_enable_vsx(struct dt_cpu_feature *f)
480{
481#ifdef CONFIG_VSX
482 feat_enable(f);
483 cur_cpu_spec->cpu_features |= CPU_FTR_VSX;
484 cur_cpu_spec->cpu_user_features |= PPC_FEATURE_HAS_VSX;
485
486 return 1;
487#endif
488 return 0;
489}
490
491static int __init feat_enable_purr(struct dt_cpu_feature *f)
492{
493 cur_cpu_spec->cpu_features |= CPU_FTR_PURR | CPU_FTR_SPURR;
494
495 return 1;
496}
497
498static int __init feat_enable_ebb(struct dt_cpu_feature *f)
499{
500 /*
501 * PPC_FEATURE2_EBB is enabled in PMU init code because it has
502 * historically been related to the PMU facility. This may have
503 * to be decoupled if EBB becomes more generic. For now, follow
504 * existing convention.
505 */
506 f->hwcap_bit_nr = -1;
507 feat_enable(f);
508
509 return 1;
510}
511
512static int __init feat_enable_dbell(struct dt_cpu_feature *f)
513{
514 u64 lpcr;
515
516 /* P9 has an HFSCR for privileged state */
517 feat_enable(f);
518
519 cur_cpu_spec->cpu_features |= CPU_FTR_DBELL;
520
521 lpcr = mfspr(SPRN_LPCR);
522 lpcr |= LPCR_PECEDH; /* hyp doorbell wakeup */
523 mtspr(SPRN_LPCR, lpcr);
524
525 return 1;
526}
527
528static int __init feat_enable_hvi(struct dt_cpu_feature *f)
529{
530 u64 lpcr;
531
532 /*
533 * POWER9 XIVE interrupts including in OPAL XICS compatibility
534 * are always delivered as hypervisor virtualization interrupts (HVI)
535 * rather than EE.
536 *
537 * However LPES0 is not set here, in the chance that an EE does get
538 * delivered to the host somehow, the EE handler would not expect it
539 * to be delivered in LPES0 mode (e.g., using SRR[01]). This could
540 * happen if there is a bug in interrupt controller code, or IC is
541 * misconfigured in systemsim.
542 */
543
544 lpcr = mfspr(SPRN_LPCR);
545 lpcr |= LPCR_HVICE; /* enable hvi interrupts */
546 lpcr |= LPCR_HEIC; /* disable ee interrupts when MSR_HV */
547 lpcr |= LPCR_PECE_HVEE; /* hvi can wake from stop */
548 mtspr(SPRN_LPCR, lpcr);
549
550 return 1;
551}
552
553static int __init feat_enable_large_ci(struct dt_cpu_feature *f)
554{
555 cur_cpu_spec->mmu_features |= MMU_FTR_CI_LARGE_PAGE;
556
557 return 1;
558}
559
560struct dt_cpu_feature_match {
561 const char *name;
562 int (*enable)(struct dt_cpu_feature *f);
563 u64 cpu_ftr_bit_mask;
564};
565
566static struct dt_cpu_feature_match __initdata
567 dt_cpu_feature_match_table[] = {
568 {"hypervisor", feat_enable_hv, 0},
569 {"big-endian", feat_enable, 0},
570 {"little-endian", feat_enable_le, CPU_FTR_REAL_LE},
571 {"smt", feat_enable_smt, 0},
572 {"interrupt-facilities", feat_enable, 0},
573 {"timer-facilities", feat_enable, 0},
574 {"timer-facilities-v3", feat_enable, 0},
575 {"debug-facilities", feat_enable, 0},
576 {"come-from-address-register", feat_enable, CPU_FTR_CFAR},
577 {"branch-tracing", feat_enable, 0},
578 {"floating-point", feat_enable_fp, 0},
579 {"vector", feat_enable_vector, 0},
580 {"vector-scalar", feat_enable_vsx, 0},
581 {"vector-scalar-v3", feat_enable, 0},
582 {"decimal-floating-point", feat_enable, 0},
583 {"decimal-integer", feat_enable, 0},
584 {"quadword-load-store", feat_enable, 0},
585 {"vector-crypto", feat_enable, 0},
586 {"mmu-hash", feat_enable_mmu_hash, 0},
587 {"mmu-radix", feat_enable_mmu_radix, 0},
588 {"mmu-hash-v3", feat_enable_mmu_hash_v3, 0},
589 {"virtual-page-class-key-protection", feat_enable, 0},
590 {"transactional-memory", feat_enable_tm, CPU_FTR_TM},
591 {"transactional-memory-v3", feat_enable_tm, 0},
Paul Mackerrasb5af4f22018-03-21 21:31:59 +1100592 {"tm-suspend-hypervisor-assist", feat_enable, CPU_FTR_P9_TM_HV_ASSIST},
593 {"tm-suspend-xer-so-bug", feat_enable, CPU_FTR_P9_TM_XER_SO_BUG},
Nicholas Piggin5a61ef72017-05-09 13:16:52 +1000594 {"idle-nap", feat_enable_idle_nap, 0},
595 {"alignment-interrupt-dsisr", feat_enable_align_dsisr, 0},
596 {"idle-stop", feat_enable_idle_stop, 0},
597 {"machine-check-power8", feat_enable_mce_power8, 0},
598 {"performance-monitor-power8", feat_enable_pmu_power8, 0},
599 {"data-stream-control-register", feat_enable_dscr, CPU_FTR_DSCR},
600 {"event-based-branch", feat_enable_ebb, 0},
601 {"target-address-register", feat_enable, 0},
602 {"branch-history-rolling-buffer", feat_enable, 0},
603 {"control-register", feat_enable, CPU_FTR_CTRL},
604 {"processor-control-facility", feat_enable_dbell, CPU_FTR_DBELL},
605 {"processor-control-facility-v3", feat_enable_dbell, CPU_FTR_DBELL},
606 {"processor-utilization-of-resources-register", feat_enable_purr, 0},
Nicholas Piggin5a61ef72017-05-09 13:16:52 +1000607 {"no-execute", feat_enable, 0},
608 {"strong-access-ordering", feat_enable, CPU_FTR_SAO},
609 {"cache-inhibited-large-page", feat_enable_large_ci, 0},
Michael Ellermanc1807e32017-10-19 15:08:19 +1100610 {"coprocessor-icswx", feat_enable, 0},
Nicholas Piggin5a61ef72017-05-09 13:16:52 +1000611 {"hypervisor-virtualization-interrupt", feat_enable_hvi, 0},
612 {"program-priority-register", feat_enable, CPU_FTR_HAS_PPR},
613 {"wait", feat_enable, 0},
614 {"atomic-memory-operations", feat_enable, 0},
615 {"branch-v3", feat_enable, 0},
616 {"copy-paste", feat_enable, 0},
617 {"decimal-floating-point-v3", feat_enable, 0},
618 {"decimal-integer-v3", feat_enable, 0},
619 {"fixed-point-v3", feat_enable, 0},
620 {"floating-point-v3", feat_enable, 0},
621 {"group-start-register", feat_enable, 0},
622 {"pc-relative-addressing", feat_enable, 0},
623 {"machine-check-power9", feat_enable_mce_power9, 0},
624 {"performance-monitor-power9", feat_enable_pmu_power9, 0},
625 {"event-based-branch-v3", feat_enable, 0},
626 {"random-number-generator", feat_enable, 0},
627 {"system-call-vectored", feat_disable, 0},
628 {"trace-interrupt-v3", feat_enable, 0},
629 {"vector-v3", feat_enable, 0},
630 {"vector-binary128", feat_enable, 0},
631 {"vector-binary16", feat_enable, 0},
632 {"wait-v3", feat_enable, 0},
633};
634
Nicholas Piggina2b05b72017-05-11 21:24:41 +1000635static bool __initdata using_dt_cpu_ftrs;
636static bool __initdata enable_unknown = true;
637
638static int __init dt_cpu_ftrs_parse(char *str)
639{
640 if (!str)
641 return 0;
642
643 if (!strcmp(str, "off"))
644 using_dt_cpu_ftrs = false;
645 else if (!strcmp(str, "known"))
646 enable_unknown = false;
647 else
648 return 1;
649
650 return 0;
651}
652early_param("dt_cpu_ftrs", dt_cpu_ftrs_parse);
Nicholas Piggin5a61ef72017-05-09 13:16:52 +1000653
654static void __init cpufeatures_setup_start(u32 isa)
655{
656 pr_info("setup for ISA %d\n", isa);
657
658 if (isa >= 3000) {
659 cur_cpu_spec->cpu_features |= CPU_FTR_ARCH_300;
660 cur_cpu_spec->cpu_user_features2 |= PPC_FEATURE2_ARCH_3_00;
661 }
662}
663
664static bool __init cpufeatures_process_feature(struct dt_cpu_feature *f)
665{
666 const struct dt_cpu_feature_match *m;
667 bool known = false;
668 int i;
669
670 for (i = 0; i < ARRAY_SIZE(dt_cpu_feature_match_table); i++) {
671 m = &dt_cpu_feature_match_table[i];
672 if (!strcmp(f->name, m->name)) {
673 known = true;
674 if (m->enable(f))
675 break;
676
677 pr_info("not enabling: %s (disabled or unsupported by kernel)\n",
678 f->name);
679 return false;
680 }
681 }
682
Nicholas Piggina2b05b72017-05-11 21:24:41 +1000683 if (!known && enable_unknown) {
Nicholas Piggin5a61ef72017-05-09 13:16:52 +1000684 if (!feat_try_enable_unknown(f)) {
685 pr_info("not enabling: %s (unknown and unsupported by kernel)\n",
686 f->name);
687 return false;
688 }
689 }
690
691 if (m->cpu_ftr_bit_mask)
692 cur_cpu_spec->cpu_features |= m->cpu_ftr_bit_mask;
693
694 if (known)
695 pr_debug("enabling: %s\n", f->name);
696 else
697 pr_debug("enabling: %s (unknown)\n", f->name);
698
699 return true;
700}
701
702static __init void cpufeatures_cpu_quirks(void)
703{
704 int version = mfspr(SPRN_PVR);
705
706 /*
707 * Not all quirks can be derived from the cpufeatures device tree.
708 */
709 if ((version & 0xffffff00) == 0x004e0100)
710 cur_cpu_spec->cpu_features |= CPU_FTR_POWER9_DD1;
Michael Ellerman4d6c51b2017-11-22 23:17:01 +1100711 else if ((version & 0xffffefff) == 0x004e0201)
712 cur_cpu_spec->cpu_features |= CPU_FTR_POWER9_DD2_1;
Paul Mackerrasb5af4f22018-03-21 21:31:59 +1100713 else if ((version & 0xffffefff) == 0x004e0202)
714 cur_cpu_spec->cpu_features |= CPU_FTR_P9_TM_HV_ASSIST |
715 CPU_FTR_P9_TM_XER_SO_BUG;
Nicholas Piggin5a61ef72017-05-09 13:16:52 +1000716}
717
718static void __init cpufeatures_setup_finished(void)
719{
720 cpufeatures_cpu_quirks();
721
722 if (hv_mode && !(cur_cpu_spec->cpu_features & CPU_FTR_HVMODE)) {
723 pr_err("hypervisor not present in device tree but HV mode is enabled in the CPU. Enabling.\n");
724 cur_cpu_spec->cpu_features |= CPU_FTR_HVMODE;
725 }
726
727 system_registers.lpcr = mfspr(SPRN_LPCR);
728 system_registers.hfscr = mfspr(SPRN_HFSCR);
729 system_registers.fscr = mfspr(SPRN_FSCR);
730
Nicholas Piggin5a61ef72017-05-09 13:16:52 +1000731 pr_info("final cpu/mmu features = 0x%016lx 0x%08x\n",
732 cur_cpu_spec->cpu_features, cur_cpu_spec->mmu_features);
733}
734
Nicholas Piggina2b05b72017-05-11 21:24:41 +1000735static int __init disabled_on_cmdline(void)
736{
737 unsigned long root, chosen;
738 const char *p;
739
740 root = of_get_flat_dt_root();
741 chosen = of_get_flat_dt_subnode_by_name(root, "chosen");
742 if (chosen == -FDT_ERR_NOTFOUND)
743 return false;
744
745 p = of_get_flat_dt_prop(chosen, "bootargs", NULL);
746 if (!p)
747 return false;
748
749 if (strstr(p, "dt_cpu_ftrs=off"))
750 return true;
751
752 return false;
753}
754
Nicholas Piggin5a61ef72017-05-09 13:16:52 +1000755static int __init fdt_find_cpu_features(unsigned long node, const char *uname,
756 int depth, void *data)
757{
758 if (of_flat_dt_is_compatible(node, "ibm,powerpc-cpu-features")
759 && of_get_flat_dt_prop(node, "isa", NULL))
760 return 1;
761
762 return 0;
763}
764
Nicholas Piggin5a61ef72017-05-09 13:16:52 +1000765bool __init dt_cpu_ftrs_in_use(void)
766{
767 return using_dt_cpu_ftrs;
768}
769
770bool __init dt_cpu_ftrs_init(void *fdt)
771{
Nicholas Piggina2b05b72017-05-11 21:24:41 +1000772 using_dt_cpu_ftrs = false;
773
Nicholas Piggin5a61ef72017-05-09 13:16:52 +1000774 /* Setup and verify the FDT, if it fails we just bail */
775 if (!early_init_dt_verify(fdt))
776 return false;
777
778 if (!of_scan_flat_dt(fdt_find_cpu_features, NULL))
779 return false;
780
Nicholas Piggina2b05b72017-05-11 21:24:41 +1000781 if (disabled_on_cmdline())
782 return false;
783
Nicholas Piggin5a61ef72017-05-09 13:16:52 +1000784 cpufeatures_setup_cpu();
785
786 using_dt_cpu_ftrs = true;
787 return true;
788}
789
790static int nr_dt_cpu_features;
791static struct dt_cpu_feature *dt_cpu_features;
792
793static int __init process_cpufeatures_node(unsigned long node,
794 const char *uname, int i)
795{
796 const __be32 *prop;
797 struct dt_cpu_feature *f;
798 int len;
799
800 f = &dt_cpu_features[i];
801 memset(f, 0, sizeof(struct dt_cpu_feature));
802
803 f->node = node;
804
805 f->name = uname;
806
807 prop = of_get_flat_dt_prop(node, "isa", &len);
808 if (!prop) {
809 pr_warn("%s: missing isa property\n", uname);
810 return 0;
811 }
812 f->isa = be32_to_cpup(prop);
813
814 prop = of_get_flat_dt_prop(node, "usable-privilege", &len);
815 if (!prop) {
816 pr_warn("%s: missing usable-privilege property", uname);
817 return 0;
818 }
819 f->usable_privilege = be32_to_cpup(prop);
820
821 prop = of_get_flat_dt_prop(node, "hv-support", &len);
822 if (prop)
823 f->hv_support = be32_to_cpup(prop);
824 else
825 f->hv_support = HV_SUPPORT_NONE;
826
827 prop = of_get_flat_dt_prop(node, "os-support", &len);
828 if (prop)
829 f->os_support = be32_to_cpup(prop);
830 else
831 f->os_support = OS_SUPPORT_NONE;
832
833 prop = of_get_flat_dt_prop(node, "hfscr-bit-nr", &len);
834 if (prop)
835 f->hfscr_bit_nr = be32_to_cpup(prop);
836 else
837 f->hfscr_bit_nr = -1;
838 prop = of_get_flat_dt_prop(node, "fscr-bit-nr", &len);
839 if (prop)
840 f->fscr_bit_nr = be32_to_cpup(prop);
841 else
842 f->fscr_bit_nr = -1;
843 prop = of_get_flat_dt_prop(node, "hwcap-bit-nr", &len);
844 if (prop)
845 f->hwcap_bit_nr = be32_to_cpup(prop);
846 else
847 f->hwcap_bit_nr = -1;
848
849 if (f->usable_privilege & USABLE_HV) {
850 if (!(mfmsr() & MSR_HV)) {
851 pr_warn("%s: HV feature passed to guest\n", uname);
852 return 0;
853 }
854
855 if (f->hv_support == HV_SUPPORT_NONE && f->hfscr_bit_nr != -1) {
856 pr_warn("%s: unwanted hfscr_bit_nr\n", uname);
857 return 0;
858 }
859
860 if (f->hv_support == HV_SUPPORT_HFSCR) {
861 if (f->hfscr_bit_nr == -1) {
862 pr_warn("%s: missing hfscr_bit_nr\n", uname);
863 return 0;
864 }
865 }
866 } else {
867 if (f->hv_support != HV_SUPPORT_NONE || f->hfscr_bit_nr != -1) {
868 pr_warn("%s: unwanted hv_support/hfscr_bit_nr\n", uname);
869 return 0;
870 }
871 }
872
873 if (f->usable_privilege & USABLE_OS) {
874 if (f->os_support == OS_SUPPORT_NONE && f->fscr_bit_nr != -1) {
875 pr_warn("%s: unwanted fscr_bit_nr\n", uname);
876 return 0;
877 }
878
879 if (f->os_support == OS_SUPPORT_FSCR) {
880 if (f->fscr_bit_nr == -1) {
881 pr_warn("%s: missing fscr_bit_nr\n", uname);
882 return 0;
883 }
884 }
885 } else {
886 if (f->os_support != OS_SUPPORT_NONE || f->fscr_bit_nr != -1) {
887 pr_warn("%s: unwanted os_support/fscr_bit_nr\n", uname);
888 return 0;
889 }
890 }
891
892 if (!(f->usable_privilege & USABLE_PR)) {
893 if (f->hwcap_bit_nr != -1) {
894 pr_warn("%s: unwanted hwcap_bit_nr\n", uname);
895 return 0;
896 }
897 }
898
899 /* Do all the independent features in the first pass */
900 if (!of_get_flat_dt_prop(node, "dependencies", &len)) {
901 if (cpufeatures_process_feature(f))
902 f->enabled = 1;
903 else
904 f->disabled = 1;
905 }
906
907 return 0;
908}
909
910static void __init cpufeatures_deps_enable(struct dt_cpu_feature *f)
911{
912 const __be32 *prop;
913 int len;
914 int nr_deps;
915 int i;
916
917 if (f->enabled || f->disabled)
918 return;
919
920 prop = of_get_flat_dt_prop(f->node, "dependencies", &len);
921 if (!prop) {
922 pr_warn("%s: missing dependencies property", f->name);
923 return;
924 }
925
926 nr_deps = len / sizeof(int);
927
928 for (i = 0; i < nr_deps; i++) {
929 unsigned long phandle = be32_to_cpu(prop[i]);
930 int j;
931
932 for (j = 0; j < nr_dt_cpu_features; j++) {
933 struct dt_cpu_feature *d = &dt_cpu_features[j];
934
935 if (of_get_flat_dt_phandle(d->node) == phandle) {
936 cpufeatures_deps_enable(d);
937 if (d->disabled) {
938 f->disabled = 1;
939 return;
940 }
941 }
942 }
943 }
944
945 if (cpufeatures_process_feature(f))
946 f->enabled = 1;
947 else
948 f->disabled = 1;
949}
950
951static int __init scan_cpufeatures_subnodes(unsigned long node,
952 const char *uname,
953 void *data)
954{
955 int *count = data;
956
957 process_cpufeatures_node(node, uname, *count);
958
959 (*count)++;
960
961 return 0;
962}
963
964static int __init count_cpufeatures_subnodes(unsigned long node,
965 const char *uname,
966 void *data)
967{
968 int *count = data;
969
970 (*count)++;
971
972 return 0;
973}
974
975static int __init dt_cpu_ftrs_scan_callback(unsigned long node, const char
976 *uname, int depth, void *data)
977{
978 const __be32 *prop;
979 int count, i;
980 u32 isa;
981
982 /* We are scanning "ibm,powerpc-cpu-features" nodes only */
983 if (!of_flat_dt_is_compatible(node, "ibm,powerpc-cpu-features"))
984 return 0;
985
986 prop = of_get_flat_dt_prop(node, "isa", NULL);
987 if (!prop)
988 /* We checked before, "can't happen" */
989 return 0;
990
991 isa = be32_to_cpup(prop);
992
993 /* Count and allocate space for cpu features */
994 of_scan_flat_dt_subnodes(node, count_cpufeatures_subnodes,
995 &nr_dt_cpu_features);
996 dt_cpu_features = __va(
997 memblock_alloc(sizeof(struct dt_cpu_feature)*
998 nr_dt_cpu_features, PAGE_SIZE));
999
1000 cpufeatures_setup_start(isa);
1001
1002 /* Scan nodes into dt_cpu_features and enable those without deps */
1003 count = 0;
1004 of_scan_flat_dt_subnodes(node, scan_cpufeatures_subnodes, &count);
1005
1006 /* Recursive enable remaining features with dependencies */
1007 for (i = 0; i < nr_dt_cpu_features; i++) {
1008 struct dt_cpu_feature *f = &dt_cpu_features[i];
1009
1010 cpufeatures_deps_enable(f);
1011 }
1012
1013 prop = of_get_flat_dt_prop(node, "display-name", NULL);
1014 if (prop && strlen((char *)prop) != 0) {
1015 strlcpy(dt_cpu_name, (char *)prop, sizeof(dt_cpu_name));
1016 cur_cpu_spec->cpu_name = dt_cpu_name;
1017 }
1018
1019 cpufeatures_setup_finished();
1020
1021 memblock_free(__pa(dt_cpu_features),
1022 sizeof(struct dt_cpu_feature)*nr_dt_cpu_features);
1023
1024 return 0;
1025}
1026
1027void __init dt_cpu_ftrs_scan(void)
1028{
Nicholas Piggina2b05b72017-05-11 21:24:41 +10001029 if (!using_dt_cpu_ftrs)
1030 return;
1031
Nicholas Piggin5a61ef72017-05-09 13:16:52 +10001032 of_scan_flat_dt(dt_cpu_ftrs_scan_callback, NULL);
1033}