blob: fca4d7ff22b9fab4d8f8097d20b1a69daaddabb7 [file] [log] [blame]
Thomas Gleixnerf50a7f32019-05-28 09:57:18 -07001// SPDX-License-Identifier: GPL-2.0-only
Nicholas Piggin5a61ef72017-05-09 13:16:52 +10002/*
3 * Copyright 2017, Nicholas Piggin, IBM Corporation
Nicholas Piggin5a61ef72017-05-09 13:16:52 +10004 */
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
Nicholas Piggin5a61ef72017-05-09 13:16:52 +100056#define MMU_FTRS_HASH_BASE (MMU_FTRS_POWER8)
57
58#define COMMON_USER_BASE (PPC_FEATURE_32 | PPC_FEATURE_64 | \
59 PPC_FEATURE_ARCH_2_06 |\
60 PPC_FEATURE_ICACHE_SNOOP)
61#define COMMON_USER2_BASE (PPC_FEATURE2_ARCH_2_07 | \
62 PPC_FEATURE2_ISEL)
63/*
64 * Set up the base CPU
65 */
66
Nicholas Piggin5a61ef72017-05-09 13:16:52 +100067extern long __machine_check_early_realmode_p8(struct pt_regs *regs);
68extern long __machine_check_early_realmode_p9(struct pt_regs *regs);
69
70static int hv_mode;
71
72static struct {
73 u64 lpcr;
Nicholas Piggina57ac412018-04-05 15:50:49 +100074 u64 lpcr_clear;
Nicholas Piggin5a61ef72017-05-09 13:16:52 +100075 u64 hfscr;
76 u64 fscr;
77} system_registers;
78
79static void (*init_pmu_registers)(void);
80
Nicholas Piggin5a61ef72017-05-09 13:16:52 +100081static void __restore_cpu_cpufeatures(void)
82{
Nicholas Piggina57ac412018-04-05 15:50:49 +100083 u64 lpcr;
84
Nicholas Piggin5a61ef72017-05-09 13:16:52 +100085 /*
86 * LPCR is restored by the power on engine already. It can be changed
87 * after early init e.g., by radix enable, and we have no unified API
88 * for saving and restoring such SPRs.
89 *
90 * This ->restore hook should really be removed from idle and register
91 * restore moved directly into the idle restore code, because this code
92 * doesn't know how idle is implemented or what it needs restored here.
93 *
94 * The best we can do to accommodate secondary boot and idle restore
95 * for now is "or" LPCR with existing.
96 */
Nicholas Piggina57ac412018-04-05 15:50:49 +100097 lpcr = mfspr(SPRN_LPCR);
98 lpcr |= system_registers.lpcr;
99 lpcr &= ~system_registers.lpcr_clear;
100 mtspr(SPRN_LPCR, lpcr);
Nicholas Piggin5a61ef72017-05-09 13:16:52 +1000101 if (hv_mode) {
102 mtspr(SPRN_LPID, 0);
103 mtspr(SPRN_HFSCR, system_registers.hfscr);
Jordan Niethe13c7bb32019-09-17 10:46:05 +1000104 mtspr(SPRN_PCR, PCR_MASK);
Nicholas Piggin5a61ef72017-05-09 13:16:52 +1000105 }
106 mtspr(SPRN_FSCR, system_registers.fscr);
107
108 if (init_pmu_registers)
109 init_pmu_registers();
Nicholas Piggin5a61ef72017-05-09 13:16:52 +1000110}
111
112static char dt_cpu_name[64];
113
114static struct cpu_spec __initdata base_cpu_spec = {
115 .cpu_name = NULL,
Michael Ellerman81b654c2018-04-12 22:24:45 +1000116 .cpu_features = CPU_FTRS_DT_CPU_BASE,
Nicholas Piggin5a61ef72017-05-09 13:16:52 +1000117 .cpu_user_features = COMMON_USER_BASE,
118 .cpu_user_features2 = COMMON_USER2_BASE,
119 .mmu_features = 0,
120 .icache_bsize = 32, /* minimum block size, fixed by */
121 .dcache_bsize = 32, /* cache info init. */
122 .num_pmcs = 0,
123 .pmc_type = PPC_PMC_DEFAULT,
124 .oprofile_cpu_type = NULL,
125 .oprofile_type = PPC_OPROFILE_INVALID,
126 .cpu_setup = NULL,
127 .cpu_restore = __restore_cpu_cpufeatures,
Nicholas Piggin5a61ef72017-05-09 13:16:52 +1000128 .machine_check_early = NULL,
129 .platform = NULL,
130};
131
132static void __init cpufeatures_setup_cpu(void)
133{
134 set_cur_cpu_spec(&base_cpu_spec);
135
136 cur_cpu_spec->pvr_mask = -1;
137 cur_cpu_spec->pvr_value = mfspr(SPRN_PVR);
138
139 /* Initialize the base environment -- clear FSCR/HFSCR. */
140 hv_mode = !!(mfmsr() & MSR_HV);
141 if (hv_mode) {
Nicholas Piggin5a61ef72017-05-09 13:16:52 +1000142 cur_cpu_spec->cpu_features |= CPU_FTR_HVMODE;
143 mtspr(SPRN_HFSCR, 0);
144 }
145 mtspr(SPRN_FSCR, 0);
Jordan Niethe13c7bb32019-09-17 10:46:05 +1000146 mtspr(SPRN_PCR, PCR_MASK);
Nicholas Piggin5a61ef72017-05-09 13:16:52 +1000147
148 /*
149 * LPCR does not get cleared, to match behaviour with secondaries
150 * in __restore_cpu_cpufeatures. Once the idle code is fixed, this
151 * could clear LPCR too.
152 */
153}
154
155static int __init feat_try_enable_unknown(struct dt_cpu_feature *f)
156{
157 if (f->hv_support == HV_SUPPORT_NONE) {
158 } else if (f->hv_support & HV_SUPPORT_HFSCR) {
159 u64 hfscr = mfspr(SPRN_HFSCR);
160 hfscr |= 1UL << f->hfscr_bit_nr;
161 mtspr(SPRN_HFSCR, hfscr);
162 } else {
163 /* Does not have a known recipe */
164 return 0;
165 }
166
167 if (f->os_support == OS_SUPPORT_NONE) {
168 } else if (f->os_support & OS_SUPPORT_FSCR) {
169 u64 fscr = mfspr(SPRN_FSCR);
170 fscr |= 1UL << f->fscr_bit_nr;
171 mtspr(SPRN_FSCR, fscr);
172 } else {
173 /* Does not have a known recipe */
174 return 0;
175 }
176
177 if ((f->usable_privilege & USABLE_PR) && (f->hwcap_bit_nr != -1)) {
178 uint32_t word = f->hwcap_bit_nr / 32;
179 uint32_t bit = f->hwcap_bit_nr % 32;
180
181 if (word == 0)
182 cur_cpu_spec->cpu_user_features |= 1U << bit;
183 else if (word == 1)
184 cur_cpu_spec->cpu_user_features2 |= 1U << bit;
185 else
186 pr_err("%s could not advertise to user (no hwcap bits)\n", f->name);
187 }
188
189 return 1;
190}
191
192static int __init feat_enable(struct dt_cpu_feature *f)
193{
194 if (f->hv_support != HV_SUPPORT_NONE) {
195 if (f->hfscr_bit_nr != -1) {
196 u64 hfscr = mfspr(SPRN_HFSCR);
197 hfscr |= 1UL << f->hfscr_bit_nr;
198 mtspr(SPRN_HFSCR, hfscr);
199 }
200 }
201
202 if (f->os_support != OS_SUPPORT_NONE) {
203 if (f->fscr_bit_nr != -1) {
204 u64 fscr = mfspr(SPRN_FSCR);
205 fscr |= 1UL << f->fscr_bit_nr;
206 mtspr(SPRN_FSCR, fscr);
207 }
208 }
209
210 if ((f->usable_privilege & USABLE_PR) && (f->hwcap_bit_nr != -1)) {
211 uint32_t word = f->hwcap_bit_nr / 32;
212 uint32_t bit = f->hwcap_bit_nr % 32;
213
214 if (word == 0)
215 cur_cpu_spec->cpu_user_features |= 1U << bit;
216 else if (word == 1)
217 cur_cpu_spec->cpu_user_features2 |= 1U << bit;
218 else
219 pr_err("CPU feature: %s could not advertise to user (no hwcap bits)\n", f->name);
220 }
221
222 return 1;
223}
224
225static int __init feat_disable(struct dt_cpu_feature *f)
226{
227 return 0;
228}
229
230static int __init feat_enable_hv(struct dt_cpu_feature *f)
231{
232 u64 lpcr;
233
234 if (!hv_mode) {
235 pr_err("CPU feature hypervisor present in device tree but HV mode not enabled in the CPU. Ignoring.\n");
236 return 0;
237 }
238
239 mtspr(SPRN_LPID, 0);
240
241 lpcr = mfspr(SPRN_LPCR);
242 lpcr &= ~LPCR_LPES0; /* HV external interrupts */
243 mtspr(SPRN_LPCR, lpcr);
244
245 cur_cpu_spec->cpu_features |= CPU_FTR_HVMODE;
246
247 return 1;
248}
249
250static int __init feat_enable_le(struct dt_cpu_feature *f)
251{
252 cur_cpu_spec->cpu_user_features |= PPC_FEATURE_TRUE_LE;
253 return 1;
254}
255
256static int __init feat_enable_smt(struct dt_cpu_feature *f)
257{
258 cur_cpu_spec->cpu_features |= CPU_FTR_SMT;
259 cur_cpu_spec->cpu_user_features |= PPC_FEATURE_SMT;
260 return 1;
261}
262
263static int __init feat_enable_idle_nap(struct dt_cpu_feature *f)
264{
265 u64 lpcr;
266
267 /* Set PECE wakeup modes for ISA 207 */
268 lpcr = mfspr(SPRN_LPCR);
269 lpcr |= LPCR_PECE0;
270 lpcr |= LPCR_PECE1;
271 lpcr |= LPCR_PECE2;
272 mtspr(SPRN_LPCR, lpcr);
273
274 return 1;
275}
276
277static int __init feat_enable_align_dsisr(struct dt_cpu_feature *f)
278{
279 cur_cpu_spec->cpu_features &= ~CPU_FTR_NODSISRALIGN;
280
281 return 1;
282}
283
284static int __init feat_enable_idle_stop(struct dt_cpu_feature *f)
285{
286 u64 lpcr;
287
288 /* Set PECE wakeup modes for ISAv3.0B */
289 lpcr = mfspr(SPRN_LPCR);
290 lpcr |= LPCR_PECE0;
291 lpcr |= LPCR_PECE1;
292 lpcr |= LPCR_PECE2;
293 mtspr(SPRN_LPCR, lpcr);
294
295 return 1;
296}
297
298static int __init feat_enable_mmu_hash(struct dt_cpu_feature *f)
299{
300 u64 lpcr;
301
302 lpcr = mfspr(SPRN_LPCR);
303 lpcr &= ~LPCR_ISL;
304
305 /* VRMASD */
306 lpcr |= LPCR_VPM0;
307 lpcr &= ~LPCR_VPM1;
308 lpcr |= 0x10UL << LPCR_VRMASD_SH; /* L=1 LP=00 */
309 mtspr(SPRN_LPCR, lpcr);
310
311 cur_cpu_spec->mmu_features |= MMU_FTRS_HASH_BASE;
312 cur_cpu_spec->cpu_user_features |= PPC_FEATURE_HAS_MMU;
313
314 return 1;
315}
316
317static int __init feat_enable_mmu_hash_v3(struct dt_cpu_feature *f)
318{
319 u64 lpcr;
320
Nicholas Piggina57ac412018-04-05 15:50:49 +1000321 system_registers.lpcr_clear |= (LPCR_ISL | LPCR_UPRT | LPCR_HR);
Nicholas Piggin5a61ef72017-05-09 13:16:52 +1000322 lpcr = mfspr(SPRN_LPCR);
Nicholas Piggina57ac412018-04-05 15:50:49 +1000323 lpcr &= ~(LPCR_ISL | LPCR_UPRT | LPCR_HR);
Nicholas Piggin5a61ef72017-05-09 13:16:52 +1000324 mtspr(SPRN_LPCR, lpcr);
325
326 cur_cpu_spec->mmu_features |= MMU_FTRS_HASH_BASE;
327 cur_cpu_spec->cpu_user_features |= PPC_FEATURE_HAS_MMU;
328
329 return 1;
330}
331
332
333static int __init feat_enable_mmu_radix(struct dt_cpu_feature *f)
334{
335#ifdef CONFIG_PPC_RADIX_MMU
336 cur_cpu_spec->mmu_features |= MMU_FTR_TYPE_RADIX;
337 cur_cpu_spec->mmu_features |= MMU_FTRS_HASH_BASE;
338 cur_cpu_spec->cpu_user_features |= PPC_FEATURE_HAS_MMU;
339
340 return 1;
341#endif
342 return 0;
343}
344
345static int __init feat_enable_dscr(struct dt_cpu_feature *f)
346{
347 u64 lpcr;
348
Michael Ellerman993e3d92020-05-28 00:58:41 +1000349 /*
350 * Linux relies on FSCR[DSCR] being clear, so that we can take the
351 * facility unavailable interrupt and track the task's usage of DSCR.
352 * See facility_unavailable_exception().
353 * Clear the bit here so that feat_enable() doesn't set it.
354 */
355 f->fscr_bit_nr = -1;
356
Nicholas Piggin5a61ef72017-05-09 13:16:52 +1000357 feat_enable(f);
358
359 lpcr = mfspr(SPRN_LPCR);
360 lpcr &= ~LPCR_DPFD;
361 lpcr |= (4UL << LPCR_DPFD_SH);
362 mtspr(SPRN_LPCR, lpcr);
363
364 return 1;
365}
366
367static void hfscr_pmu_enable(void)
368{
369 u64 hfscr = mfspr(SPRN_HFSCR);
370 hfscr |= PPC_BIT(60);
371 mtspr(SPRN_HFSCR, hfscr);
372}
373
374static void init_pmu_power8(void)
375{
376 if (hv_mode) {
377 mtspr(SPRN_MMCRC, 0);
378 mtspr(SPRN_MMCRH, 0);
379 }
380
381 mtspr(SPRN_MMCRA, 0);
382 mtspr(SPRN_MMCR0, 0);
383 mtspr(SPRN_MMCR1, 0);
384 mtspr(SPRN_MMCR2, 0);
385 mtspr(SPRN_MMCRS, 0);
386}
387
388static int __init feat_enable_mce_power8(struct dt_cpu_feature *f)
389{
390 cur_cpu_spec->platform = "power8";
Nicholas Piggin5a61ef72017-05-09 13:16:52 +1000391 cur_cpu_spec->machine_check_early = __machine_check_early_realmode_p8;
392
393 return 1;
394}
395
396static int __init feat_enable_pmu_power8(struct dt_cpu_feature *f)
397{
398 hfscr_pmu_enable();
399
400 init_pmu_power8();
401 init_pmu_registers = init_pmu_power8;
402
403 cur_cpu_spec->cpu_features |= CPU_FTR_MMCRA;
404 cur_cpu_spec->cpu_user_features |= PPC_FEATURE_PSERIES_PERFMON_COMPAT;
405 if (pvr_version_is(PVR_POWER8E))
406 cur_cpu_spec->cpu_features |= CPU_FTR_PMAO_BUG;
407
408 cur_cpu_spec->num_pmcs = 6;
409 cur_cpu_spec->pmc_type = PPC_PMC_IBM;
410 cur_cpu_spec->oprofile_cpu_type = "ppc64/power8";
411
412 return 1;
413}
414
415static void init_pmu_power9(void)
416{
417 if (hv_mode)
418 mtspr(SPRN_MMCRC, 0);
419
420 mtspr(SPRN_MMCRA, 0);
421 mtspr(SPRN_MMCR0, 0);
422 mtspr(SPRN_MMCR1, 0);
423 mtspr(SPRN_MMCR2, 0);
424}
425
426static int __init feat_enable_mce_power9(struct dt_cpu_feature *f)
427{
428 cur_cpu_spec->platform = "power9";
Nicholas Piggin5a61ef72017-05-09 13:16:52 +1000429 cur_cpu_spec->machine_check_early = __machine_check_early_realmode_p9;
430
431 return 1;
432}
433
434static int __init feat_enable_pmu_power9(struct dt_cpu_feature *f)
435{
436 hfscr_pmu_enable();
437
438 init_pmu_power9();
439 init_pmu_registers = init_pmu_power9;
440
441 cur_cpu_spec->cpu_features |= CPU_FTR_MMCRA;
442 cur_cpu_spec->cpu_user_features |= PPC_FEATURE_PSERIES_PERFMON_COMPAT;
443
444 cur_cpu_spec->num_pmcs = 6;
445 cur_cpu_spec->pmc_type = PPC_PMC_IBM;
446 cur_cpu_spec->oprofile_cpu_type = "ppc64/power9";
447
448 return 1;
449}
450
451static int __init feat_enable_tm(struct dt_cpu_feature *f)
452{
453#ifdef CONFIG_PPC_TRANSACTIONAL_MEM
454 feat_enable(f);
455 cur_cpu_spec->cpu_user_features2 |= PPC_FEATURE2_HTM_NOSC;
456 return 1;
457#endif
458 return 0;
459}
460
461static int __init feat_enable_fp(struct dt_cpu_feature *f)
462{
463 feat_enable(f);
464 cur_cpu_spec->cpu_features &= ~CPU_FTR_FPU_UNAVAILABLE;
465
466 return 1;
467}
468
469static int __init feat_enable_vector(struct dt_cpu_feature *f)
470{
471#ifdef CONFIG_ALTIVEC
472 feat_enable(f);
473 cur_cpu_spec->cpu_features |= CPU_FTR_ALTIVEC;
474 cur_cpu_spec->cpu_features |= CPU_FTR_VMX_COPY;
475 cur_cpu_spec->cpu_user_features |= PPC_FEATURE_HAS_ALTIVEC;
476
477 return 1;
478#endif
479 return 0;
480}
481
482static int __init feat_enable_vsx(struct dt_cpu_feature *f)
483{
484#ifdef CONFIG_VSX
485 feat_enable(f);
486 cur_cpu_spec->cpu_features |= CPU_FTR_VSX;
487 cur_cpu_spec->cpu_user_features |= PPC_FEATURE_HAS_VSX;
488
489 return 1;
490#endif
491 return 0;
492}
493
494static int __init feat_enable_purr(struct dt_cpu_feature *f)
495{
496 cur_cpu_spec->cpu_features |= CPU_FTR_PURR | CPU_FTR_SPURR;
497
498 return 1;
499}
500
501static int __init feat_enable_ebb(struct dt_cpu_feature *f)
502{
503 /*
504 * PPC_FEATURE2_EBB is enabled in PMU init code because it has
505 * historically been related to the PMU facility. This may have
506 * to be decoupled if EBB becomes more generic. For now, follow
507 * existing convention.
508 */
509 f->hwcap_bit_nr = -1;
510 feat_enable(f);
511
512 return 1;
513}
514
515static int __init feat_enable_dbell(struct dt_cpu_feature *f)
516{
517 u64 lpcr;
518
519 /* P9 has an HFSCR for privileged state */
520 feat_enable(f);
521
522 cur_cpu_spec->cpu_features |= CPU_FTR_DBELL;
523
524 lpcr = mfspr(SPRN_LPCR);
525 lpcr |= LPCR_PECEDH; /* hyp doorbell wakeup */
526 mtspr(SPRN_LPCR, lpcr);
527
528 return 1;
529}
530
531static int __init feat_enable_hvi(struct dt_cpu_feature *f)
532{
533 u64 lpcr;
534
535 /*
536 * POWER9 XIVE interrupts including in OPAL XICS compatibility
537 * are always delivered as hypervisor virtualization interrupts (HVI)
538 * rather than EE.
539 *
540 * However LPES0 is not set here, in the chance that an EE does get
541 * delivered to the host somehow, the EE handler would not expect it
542 * to be delivered in LPES0 mode (e.g., using SRR[01]). This could
543 * happen if there is a bug in interrupt controller code, or IC is
544 * misconfigured in systemsim.
545 */
546
547 lpcr = mfspr(SPRN_LPCR);
548 lpcr |= LPCR_HVICE; /* enable hvi interrupts */
549 lpcr |= LPCR_HEIC; /* disable ee interrupts when MSR_HV */
550 lpcr |= LPCR_PECE_HVEE; /* hvi can wake from stop */
551 mtspr(SPRN_LPCR, lpcr);
552
553 return 1;
554}
555
556static int __init feat_enable_large_ci(struct dt_cpu_feature *f)
557{
558 cur_cpu_spec->mmu_features |= MMU_FTR_CI_LARGE_PAGE;
559
560 return 1;
561}
562
563struct dt_cpu_feature_match {
564 const char *name;
565 int (*enable)(struct dt_cpu_feature *f);
566 u64 cpu_ftr_bit_mask;
567};
568
569static struct dt_cpu_feature_match __initdata
570 dt_cpu_feature_match_table[] = {
571 {"hypervisor", feat_enable_hv, 0},
572 {"big-endian", feat_enable, 0},
573 {"little-endian", feat_enable_le, CPU_FTR_REAL_LE},
574 {"smt", feat_enable_smt, 0},
575 {"interrupt-facilities", feat_enable, 0},
576 {"timer-facilities", feat_enable, 0},
577 {"timer-facilities-v3", feat_enable, 0},
578 {"debug-facilities", feat_enable, 0},
579 {"come-from-address-register", feat_enable, CPU_FTR_CFAR},
580 {"branch-tracing", feat_enable, 0},
581 {"floating-point", feat_enable_fp, 0},
582 {"vector", feat_enable_vector, 0},
583 {"vector-scalar", feat_enable_vsx, 0},
584 {"vector-scalar-v3", feat_enable, 0},
585 {"decimal-floating-point", feat_enable, 0},
586 {"decimal-integer", feat_enable, 0},
587 {"quadword-load-store", feat_enable, 0},
588 {"vector-crypto", feat_enable, 0},
589 {"mmu-hash", feat_enable_mmu_hash, 0},
590 {"mmu-radix", feat_enable_mmu_radix, 0},
591 {"mmu-hash-v3", feat_enable_mmu_hash_v3, 0},
592 {"virtual-page-class-key-protection", feat_enable, 0},
593 {"transactional-memory", feat_enable_tm, CPU_FTR_TM},
594 {"transactional-memory-v3", feat_enable_tm, 0},
Paul Mackerrasb5af4f22018-03-21 21:31:59 +1100595 {"tm-suspend-hypervisor-assist", feat_enable, CPU_FTR_P9_TM_HV_ASSIST},
596 {"tm-suspend-xer-so-bug", feat_enable, CPU_FTR_P9_TM_XER_SO_BUG},
Nicholas Piggin5a61ef72017-05-09 13:16:52 +1000597 {"idle-nap", feat_enable_idle_nap, 0},
598 {"alignment-interrupt-dsisr", feat_enable_align_dsisr, 0},
599 {"idle-stop", feat_enable_idle_stop, 0},
600 {"machine-check-power8", feat_enable_mce_power8, 0},
601 {"performance-monitor-power8", feat_enable_pmu_power8, 0},
602 {"data-stream-control-register", feat_enable_dscr, CPU_FTR_DSCR},
603 {"event-based-branch", feat_enable_ebb, 0},
604 {"target-address-register", feat_enable, 0},
605 {"branch-history-rolling-buffer", feat_enable, 0},
606 {"control-register", feat_enable, CPU_FTR_CTRL},
607 {"processor-control-facility", feat_enable_dbell, CPU_FTR_DBELL},
608 {"processor-control-facility-v3", feat_enable_dbell, CPU_FTR_DBELL},
609 {"processor-utilization-of-resources-register", feat_enable_purr, 0},
Nicholas Piggin5a61ef72017-05-09 13:16:52 +1000610 {"no-execute", feat_enable, 0},
611 {"strong-access-ordering", feat_enable, CPU_FTR_SAO},
612 {"cache-inhibited-large-page", feat_enable_large_ci, 0},
Michael Ellermanc1807e32017-10-19 15:08:19 +1100613 {"coprocessor-icswx", feat_enable, 0},
Nicholas Piggin5a61ef72017-05-09 13:16:52 +1000614 {"hypervisor-virtualization-interrupt", feat_enable_hvi, 0},
615 {"program-priority-register", feat_enable, CPU_FTR_HAS_PPR},
616 {"wait", feat_enable, 0},
617 {"atomic-memory-operations", feat_enable, 0},
618 {"branch-v3", feat_enable, 0},
619 {"copy-paste", feat_enable, 0},
620 {"decimal-floating-point-v3", feat_enable, 0},
621 {"decimal-integer-v3", feat_enable, 0},
622 {"fixed-point-v3", feat_enable, 0},
623 {"floating-point-v3", feat_enable, 0},
624 {"group-start-register", feat_enable, 0},
625 {"pc-relative-addressing", feat_enable, 0},
626 {"machine-check-power9", feat_enable_mce_power9, 0},
627 {"performance-monitor-power9", feat_enable_pmu_power9, 0},
628 {"event-based-branch-v3", feat_enable, 0},
629 {"random-number-generator", feat_enable, 0},
630 {"system-call-vectored", feat_disable, 0},
631 {"trace-interrupt-v3", feat_enable, 0},
632 {"vector-v3", feat_enable, 0},
633 {"vector-binary128", feat_enable, 0},
634 {"vector-binary16", feat_enable, 0},
635 {"wait-v3", feat_enable, 0},
636};
637
Nicholas Piggina2b05b72017-05-11 21:24:41 +1000638static bool __initdata using_dt_cpu_ftrs;
639static bool __initdata enable_unknown = true;
640
641static int __init dt_cpu_ftrs_parse(char *str)
642{
643 if (!str)
644 return 0;
645
646 if (!strcmp(str, "off"))
647 using_dt_cpu_ftrs = false;
648 else if (!strcmp(str, "known"))
649 enable_unknown = false;
650 else
651 return 1;
652
653 return 0;
654}
655early_param("dt_cpu_ftrs", dt_cpu_ftrs_parse);
Nicholas Piggin5a61ef72017-05-09 13:16:52 +1000656
657static void __init cpufeatures_setup_start(u32 isa)
658{
659 pr_info("setup for ISA %d\n", isa);
660
661 if (isa >= 3000) {
662 cur_cpu_spec->cpu_features |= CPU_FTR_ARCH_300;
663 cur_cpu_spec->cpu_user_features2 |= PPC_FEATURE2_ARCH_3_00;
664 }
665}
666
667static bool __init cpufeatures_process_feature(struct dt_cpu_feature *f)
668{
669 const struct dt_cpu_feature_match *m;
670 bool known = false;
671 int i;
672
673 for (i = 0; i < ARRAY_SIZE(dt_cpu_feature_match_table); i++) {
674 m = &dt_cpu_feature_match_table[i];
675 if (!strcmp(f->name, m->name)) {
676 known = true;
Michael Ellerman8cfaf102019-02-11 11:20:01 +1100677 if (m->enable(f)) {
678 cur_cpu_spec->cpu_features |= m->cpu_ftr_bit_mask;
Nicholas Piggin5a61ef72017-05-09 13:16:52 +1000679 break;
Michael Ellerman8cfaf102019-02-11 11:20:01 +1100680 }
Nicholas Piggin5a61ef72017-05-09 13:16:52 +1000681
682 pr_info("not enabling: %s (disabled or unsupported by kernel)\n",
683 f->name);
684 return false;
685 }
686 }
687
Michael Ellerman8cfaf102019-02-11 11:20:01 +1100688 if (!known && (!enable_unknown || !feat_try_enable_unknown(f))) {
689 pr_info("not enabling: %s (unknown and unsupported by kernel)\n",
690 f->name);
691 return false;
Nicholas Piggin5a61ef72017-05-09 13:16:52 +1000692 }
693
Nicholas Piggin5a61ef72017-05-09 13:16:52 +1000694 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
Aneesh Kumar K.V677733e2019-09-24 09:22:51 +0530702/*
703 * Handle POWER9 broadcast tlbie invalidation issue using
704 * cpu feature flag.
705 */
706static __init void update_tlbie_feature_flag(unsigned long pvr)
707{
708 if (PVR_VER(pvr) == PVR_POWER9) {
709 /*
710 * Set the tlbie feature flag for anything below
711 * Nimbus DD 2.3 and Cumulus DD 1.3
712 */
713 if ((pvr & 0xe000) == 0) {
714 /* Nimbus */
715 if ((pvr & 0xfff) < 0x203)
Aneesh Kumar K.V09ce98c2019-09-24 09:22:52 +0530716 cur_cpu_spec->cpu_features |= CPU_FTR_P9_TLBIE_STQ_BUG;
Aneesh Kumar K.V677733e2019-09-24 09:22:51 +0530717 } else if ((pvr & 0xc000) == 0) {
718 /* Cumulus */
719 if ((pvr & 0xfff) < 0x103)
Aneesh Kumar K.V09ce98c2019-09-24 09:22:52 +0530720 cur_cpu_spec->cpu_features |= CPU_FTR_P9_TLBIE_STQ_BUG;
Aneesh Kumar K.V677733e2019-09-24 09:22:51 +0530721 } else {
722 WARN_ONCE(1, "Unknown PVR");
Aneesh Kumar K.V09ce98c2019-09-24 09:22:52 +0530723 cur_cpu_spec->cpu_features |= CPU_FTR_P9_TLBIE_STQ_BUG;
Aneesh Kumar K.V677733e2019-09-24 09:22:51 +0530724 }
Aneesh Kumar K.V047e6572019-09-24 09:22:53 +0530725
726 cur_cpu_spec->cpu_features |= CPU_FTR_P9_TLBIE_ERAT_BUG;
Aneesh Kumar K.V677733e2019-09-24 09:22:51 +0530727 }
728}
729
Nicholas Piggin5a61ef72017-05-09 13:16:52 +1000730static __init void cpufeatures_cpu_quirks(void)
731{
Aneesh Kumar K.V677733e2019-09-24 09:22:51 +0530732 unsigned long version = mfspr(SPRN_PVR);
Nicholas Piggin5a61ef72017-05-09 13:16:52 +1000733
734 /*
735 * Not all quirks can be derived from the cpufeatures device tree.
736 */
Jordan Niethe736bcdd2019-12-06 14:17:22 +1100737 if ((version & 0xffffefff) == 0x004e0200) {
738 /* DD2.0 has no feature flag */
739 cur_cpu_spec->cpu_features |= CPU_FTR_P9_RADIX_PREFETCH_BUG;
740 } else if ((version & 0xffffefff) == 0x004e0201) {
Michael Ellerman4d6c51b2017-11-22 23:17:01 +1100741 cur_cpu_spec->cpu_features |= CPU_FTR_POWER9_DD2_1;
Jordan Niethe736bcdd2019-12-06 14:17:22 +1100742 cur_cpu_spec->cpu_features |= CPU_FTR_P9_RADIX_PREFETCH_BUG;
743 } else if ((version & 0xffffefff) == 0x004e0202) {
Nicholas Piggin9e9626e2018-02-21 05:08:27 +1000744 cur_cpu_spec->cpu_features |= CPU_FTR_P9_TM_HV_ASSIST;
745 cur_cpu_spec->cpu_features |= CPU_FTR_P9_TM_XER_SO_BUG;
746 cur_cpu_spec->cpu_features |= CPU_FTR_POWER9_DD2_1;
Jordan Niethe736bcdd2019-12-06 14:17:22 +1100747 } else if ((version & 0xffff0000) == 0x004e0000) {
Michael Ellerman749a0272018-06-13 23:23:56 +1000748 /* DD2.1 and up have DD2_1 */
Nicholas Piggin9e9626e2018-02-21 05:08:27 +1000749 cur_cpu_spec->cpu_features |= CPU_FTR_POWER9_DD2_1;
Jordan Niethe736bcdd2019-12-06 14:17:22 +1100750 }
Michael Neuling622aa352018-03-27 15:37:23 +1100751
Michael Ellerman95dff482018-03-28 22:59:50 +1100752 if ((version & 0xffff0000) == 0x004e0000) {
Michael Neuling622aa352018-03-27 15:37:23 +1100753 cur_cpu_spec->cpu_features &= ~(CPU_FTR_DAWR);
Alastair D'Silva81984422018-05-11 16:12:57 +1000754 cur_cpu_spec->cpu_features |= CPU_FTR_P9_TIDR;
Michael Ellerman95dff482018-03-28 22:59:50 +1100755 }
Nicholas Pigginc1301532018-04-05 15:57:54 +1000756
Aneesh Kumar K.V677733e2019-09-24 09:22:51 +0530757 update_tlbie_feature_flag(version);
Nicholas Pigginc1301532018-04-05 15:57:54 +1000758 /*
759 * PKEY was not in the initial base or feature node
760 * specification, but it should become optional in the next
761 * cpu feature version sequence.
762 */
763 cur_cpu_spec->cpu_features |= CPU_FTR_PKEY;
Nicholas Piggin5a61ef72017-05-09 13:16:52 +1000764}
765
766static void __init cpufeatures_setup_finished(void)
767{
768 cpufeatures_cpu_quirks();
769
770 if (hv_mode && !(cur_cpu_spec->cpu_features & CPU_FTR_HVMODE)) {
771 pr_err("hypervisor not present in device tree but HV mode is enabled in the CPU. Enabling.\n");
772 cur_cpu_spec->cpu_features |= CPU_FTR_HVMODE;
773 }
774
Michael Ellermane4b79902018-03-13 15:58:11 +1100775 /* Make sure powerpc_base_platform is non-NULL */
776 powerpc_base_platform = cur_cpu_spec->platform;
777
Nicholas Piggin5a61ef72017-05-09 13:16:52 +1000778 system_registers.lpcr = mfspr(SPRN_LPCR);
779 system_registers.hfscr = mfspr(SPRN_HFSCR);
780 system_registers.fscr = mfspr(SPRN_FSCR);
781
Nicholas Piggin5a61ef72017-05-09 13:16:52 +1000782 pr_info("final cpu/mmu features = 0x%016lx 0x%08x\n",
783 cur_cpu_spec->cpu_features, cur_cpu_spec->mmu_features);
784}
785
Nicholas Piggina2b05b72017-05-11 21:24:41 +1000786static int __init disabled_on_cmdline(void)
787{
788 unsigned long root, chosen;
789 const char *p;
790
791 root = of_get_flat_dt_root();
792 chosen = of_get_flat_dt_subnode_by_name(root, "chosen");
793 if (chosen == -FDT_ERR_NOTFOUND)
794 return false;
795
796 p = of_get_flat_dt_prop(chosen, "bootargs", NULL);
797 if (!p)
798 return false;
799
800 if (strstr(p, "dt_cpu_ftrs=off"))
801 return true;
802
803 return false;
804}
805
Nicholas Piggin5a61ef72017-05-09 13:16:52 +1000806static int __init fdt_find_cpu_features(unsigned long node, const char *uname,
807 int depth, void *data)
808{
809 if (of_flat_dt_is_compatible(node, "ibm,powerpc-cpu-features")
810 && of_get_flat_dt_prop(node, "isa", NULL))
811 return 1;
812
813 return 0;
814}
815
Nicholas Piggin5a61ef72017-05-09 13:16:52 +1000816bool __init dt_cpu_ftrs_in_use(void)
817{
818 return using_dt_cpu_ftrs;
819}
820
821bool __init dt_cpu_ftrs_init(void *fdt)
822{
Nicholas Piggina2b05b72017-05-11 21:24:41 +1000823 using_dt_cpu_ftrs = false;
824
Nicholas Piggin5a61ef72017-05-09 13:16:52 +1000825 /* Setup and verify the FDT, if it fails we just bail */
826 if (!early_init_dt_verify(fdt))
827 return false;
828
829 if (!of_scan_flat_dt(fdt_find_cpu_features, NULL))
830 return false;
831
Nicholas Piggina2b05b72017-05-11 21:24:41 +1000832 if (disabled_on_cmdline())
833 return false;
834
Nicholas Piggin5a61ef72017-05-09 13:16:52 +1000835 cpufeatures_setup_cpu();
836
837 using_dt_cpu_ftrs = true;
838 return true;
839}
840
841static int nr_dt_cpu_features;
842static struct dt_cpu_feature *dt_cpu_features;
843
844static int __init process_cpufeatures_node(unsigned long node,
845 const char *uname, int i)
846{
847 const __be32 *prop;
848 struct dt_cpu_feature *f;
849 int len;
850
851 f = &dt_cpu_features[i];
Nicholas Piggin5a61ef72017-05-09 13:16:52 +1000852
853 f->node = node;
854
855 f->name = uname;
856
857 prop = of_get_flat_dt_prop(node, "isa", &len);
858 if (!prop) {
859 pr_warn("%s: missing isa property\n", uname);
860 return 0;
861 }
862 f->isa = be32_to_cpup(prop);
863
864 prop = of_get_flat_dt_prop(node, "usable-privilege", &len);
865 if (!prop) {
866 pr_warn("%s: missing usable-privilege property", uname);
867 return 0;
868 }
869 f->usable_privilege = be32_to_cpup(prop);
870
871 prop = of_get_flat_dt_prop(node, "hv-support", &len);
872 if (prop)
873 f->hv_support = be32_to_cpup(prop);
874 else
875 f->hv_support = HV_SUPPORT_NONE;
876
877 prop = of_get_flat_dt_prop(node, "os-support", &len);
878 if (prop)
879 f->os_support = be32_to_cpup(prop);
880 else
881 f->os_support = OS_SUPPORT_NONE;
882
883 prop = of_get_flat_dt_prop(node, "hfscr-bit-nr", &len);
884 if (prop)
885 f->hfscr_bit_nr = be32_to_cpup(prop);
886 else
887 f->hfscr_bit_nr = -1;
888 prop = of_get_flat_dt_prop(node, "fscr-bit-nr", &len);
889 if (prop)
890 f->fscr_bit_nr = be32_to_cpup(prop);
891 else
892 f->fscr_bit_nr = -1;
893 prop = of_get_flat_dt_prop(node, "hwcap-bit-nr", &len);
894 if (prop)
895 f->hwcap_bit_nr = be32_to_cpup(prop);
896 else
897 f->hwcap_bit_nr = -1;
898
899 if (f->usable_privilege & USABLE_HV) {
900 if (!(mfmsr() & MSR_HV)) {
901 pr_warn("%s: HV feature passed to guest\n", uname);
902 return 0;
903 }
904
905 if (f->hv_support == HV_SUPPORT_NONE && f->hfscr_bit_nr != -1) {
906 pr_warn("%s: unwanted hfscr_bit_nr\n", uname);
907 return 0;
908 }
909
910 if (f->hv_support == HV_SUPPORT_HFSCR) {
911 if (f->hfscr_bit_nr == -1) {
912 pr_warn("%s: missing hfscr_bit_nr\n", uname);
913 return 0;
914 }
915 }
916 } else {
917 if (f->hv_support != HV_SUPPORT_NONE || f->hfscr_bit_nr != -1) {
918 pr_warn("%s: unwanted hv_support/hfscr_bit_nr\n", uname);
919 return 0;
920 }
921 }
922
923 if (f->usable_privilege & USABLE_OS) {
924 if (f->os_support == OS_SUPPORT_NONE && f->fscr_bit_nr != -1) {
925 pr_warn("%s: unwanted fscr_bit_nr\n", uname);
926 return 0;
927 }
928
929 if (f->os_support == OS_SUPPORT_FSCR) {
930 if (f->fscr_bit_nr == -1) {
931 pr_warn("%s: missing fscr_bit_nr\n", uname);
932 return 0;
933 }
934 }
935 } else {
936 if (f->os_support != OS_SUPPORT_NONE || f->fscr_bit_nr != -1) {
937 pr_warn("%s: unwanted os_support/fscr_bit_nr\n", uname);
938 return 0;
939 }
940 }
941
942 if (!(f->usable_privilege & USABLE_PR)) {
943 if (f->hwcap_bit_nr != -1) {
944 pr_warn("%s: unwanted hwcap_bit_nr\n", uname);
945 return 0;
946 }
947 }
948
949 /* Do all the independent features in the first pass */
950 if (!of_get_flat_dt_prop(node, "dependencies", &len)) {
951 if (cpufeatures_process_feature(f))
952 f->enabled = 1;
953 else
954 f->disabled = 1;
955 }
956
957 return 0;
958}
959
960static void __init cpufeatures_deps_enable(struct dt_cpu_feature *f)
961{
962 const __be32 *prop;
963 int len;
964 int nr_deps;
965 int i;
966
967 if (f->enabled || f->disabled)
968 return;
969
970 prop = of_get_flat_dt_prop(f->node, "dependencies", &len);
971 if (!prop) {
972 pr_warn("%s: missing dependencies property", f->name);
973 return;
974 }
975
976 nr_deps = len / sizeof(int);
977
978 for (i = 0; i < nr_deps; i++) {
979 unsigned long phandle = be32_to_cpu(prop[i]);
980 int j;
981
982 for (j = 0; j < nr_dt_cpu_features; j++) {
983 struct dt_cpu_feature *d = &dt_cpu_features[j];
984
985 if (of_get_flat_dt_phandle(d->node) == phandle) {
986 cpufeatures_deps_enable(d);
987 if (d->disabled) {
988 f->disabled = 1;
989 return;
990 }
991 }
992 }
993 }
994
995 if (cpufeatures_process_feature(f))
996 f->enabled = 1;
997 else
998 f->disabled = 1;
999}
1000
1001static int __init scan_cpufeatures_subnodes(unsigned long node,
1002 const char *uname,
1003 void *data)
1004{
1005 int *count = data;
1006
1007 process_cpufeatures_node(node, uname, *count);
1008
1009 (*count)++;
1010
1011 return 0;
1012}
1013
1014static int __init count_cpufeatures_subnodes(unsigned long node,
1015 const char *uname,
1016 void *data)
1017{
1018 int *count = data;
1019
1020 (*count)++;
1021
1022 return 0;
1023}
1024
1025static int __init dt_cpu_ftrs_scan_callback(unsigned long node, const char
1026 *uname, int depth, void *data)
1027{
1028 const __be32 *prop;
1029 int count, i;
1030 u32 isa;
1031
1032 /* We are scanning "ibm,powerpc-cpu-features" nodes only */
1033 if (!of_flat_dt_is_compatible(node, "ibm,powerpc-cpu-features"))
1034 return 0;
1035
1036 prop = of_get_flat_dt_prop(node, "isa", NULL);
1037 if (!prop)
1038 /* We checked before, "can't happen" */
1039 return 0;
1040
1041 isa = be32_to_cpup(prop);
1042
1043 /* Count and allocate space for cpu features */
1044 of_scan_flat_dt_subnodes(node, count_cpufeatures_subnodes,
1045 &nr_dt_cpu_features);
Christophe Leroy1269f7b2019-03-11 23:29:00 -07001046 dt_cpu_features = memblock_alloc(sizeof(struct dt_cpu_feature) * nr_dt_cpu_features, PAGE_SIZE);
Mike Rapoport8a7f97b2019-03-11 23:30:31 -07001047 if (!dt_cpu_features)
1048 panic("%s: Failed to allocate %zu bytes align=0x%lx\n",
1049 __func__,
1050 sizeof(struct dt_cpu_feature) * nr_dt_cpu_features,
1051 PAGE_SIZE);
Nicholas Piggin5a61ef72017-05-09 13:16:52 +10001052
1053 cpufeatures_setup_start(isa);
1054
1055 /* Scan nodes into dt_cpu_features and enable those without deps */
1056 count = 0;
1057 of_scan_flat_dt_subnodes(node, scan_cpufeatures_subnodes, &count);
1058
1059 /* Recursive enable remaining features with dependencies */
1060 for (i = 0; i < nr_dt_cpu_features; i++) {
1061 struct dt_cpu_feature *f = &dt_cpu_features[i];
1062
1063 cpufeatures_deps_enable(f);
1064 }
1065
1066 prop = of_get_flat_dt_prop(node, "display-name", NULL);
1067 if (prop && strlen((char *)prop) != 0) {
1068 strlcpy(dt_cpu_name, (char *)prop, sizeof(dt_cpu_name));
1069 cur_cpu_spec->cpu_name = dt_cpu_name;
1070 }
1071
1072 cpufeatures_setup_finished();
1073
1074 memblock_free(__pa(dt_cpu_features),
1075 sizeof(struct dt_cpu_feature)*nr_dt_cpu_features);
1076
1077 return 0;
1078}
1079
1080void __init dt_cpu_ftrs_scan(void)
1081{
Nicholas Piggina2b05b72017-05-11 21:24:41 +10001082 if (!using_dt_cpu_ftrs)
1083 return;
1084
Nicholas Piggin5a61ef72017-05-09 13:16:52 +10001085 of_scan_flat_dt(dt_cpu_ftrs_scan_callback, NULL);
1086}