1 // SPDX-License-Identifier: GPL-2.0-only
3 * Copyright 2017, Nicholas Piggin, IBM Corporation
6 #define pr_fmt(fmt) "dt-cpu-ftrs: " fmt
8 #include <linux/export.h>
9 #include <linux/init.h>
10 #include <linux/jump_label.h>
11 #include <linux/libfdt.h>
12 #include <linux/memblock.h>
13 #include <linux/printk.h>
14 #include <linux/sched.h>
15 #include <linux/string.h>
16 #include <linux/threads.h>
18 #include <asm/cputable.h>
19 #include <asm/dt_cpu_ftrs.h>
22 #include <asm/oprofile_impl.h>
24 #include <asm/setup.h>
27 /* Device-tree visible constants follow */
28 #define ISA_V3_0B 3000
31 #define USABLE_PR (1U << 0)
32 #define USABLE_OS (1U << 1)
33 #define USABLE_HV (1U << 2)
35 #define HV_SUPPORT_HFSCR (1U << 0)
36 #define OS_SUPPORT_FSCR (1U << 0)
38 /* For parsing, we define all bits set as "NONE" case */
39 #define HV_SUPPORT_NONE 0xffffffffU
40 #define OS_SUPPORT_NONE 0xffffffffU
42 struct dt_cpu_feature
{
45 uint32_t usable_privilege
;
48 uint32_t hfscr_bit_nr
;
50 uint32_t hwcap_bit_nr
;
57 #define MMU_FTRS_HASH_BASE (MMU_FTRS_POWER8)
59 #define COMMON_USER_BASE (PPC_FEATURE_32 | PPC_FEATURE_64 | \
60 PPC_FEATURE_ARCH_2_06 |\
61 PPC_FEATURE_ICACHE_SNOOP)
62 #define COMMON_USER2_BASE (PPC_FEATURE2_ARCH_2_07 | \
77 static void (*init_pmu_registers
)(void);
79 static void __restore_cpu_cpufeatures(void)
81 mtspr(SPRN_LPCR
, system_registers
.lpcr
);
84 mtspr(SPRN_HFSCR
, system_registers
.hfscr
);
85 mtspr(SPRN_PCR
, system_registers
.pcr
);
87 mtspr(SPRN_FSCR
, system_registers
.fscr
);
89 if (init_pmu_registers
)
93 static char dt_cpu_name
[64];
95 static struct cpu_spec __initdata base_cpu_spec
= {
97 .cpu_features
= CPU_FTRS_DT_CPU_BASE
,
98 .cpu_user_features
= COMMON_USER_BASE
,
99 .cpu_user_features2
= COMMON_USER2_BASE
,
101 .icache_bsize
= 32, /* minimum block size, fixed by */
102 .dcache_bsize
= 32, /* cache info init. */
104 .pmc_type
= PPC_PMC_DEFAULT
,
105 .oprofile_cpu_type
= NULL
,
106 .oprofile_type
= PPC_OPROFILE_INVALID
,
108 .cpu_restore
= __restore_cpu_cpufeatures
,
109 .machine_check_early
= NULL
,
113 static void __init
cpufeatures_setup_cpu(void)
115 set_cur_cpu_spec(&base_cpu_spec
);
117 cur_cpu_spec
->pvr_mask
= -1;
118 cur_cpu_spec
->pvr_value
= mfspr(SPRN_PVR
);
120 /* Initialize the base environment -- clear FSCR/HFSCR. */
121 hv_mode
= !!(mfmsr() & MSR_HV
);
123 cur_cpu_spec
->cpu_features
|= CPU_FTR_HVMODE
;
124 mtspr(SPRN_HFSCR
, 0);
127 mtspr(SPRN_PCR
, PCR_MASK
);
130 * LPCR does not get cleared, to match behaviour with secondaries
131 * in __restore_cpu_cpufeatures. Once the idle code is fixed, this
132 * could clear LPCR too.
136 static int __init
feat_try_enable_unknown(struct dt_cpu_feature
*f
)
138 if (f
->hv_support
== HV_SUPPORT_NONE
) {
139 } else if (f
->hv_support
& HV_SUPPORT_HFSCR
) {
140 u64 hfscr
= mfspr(SPRN_HFSCR
);
141 hfscr
|= 1UL << f
->hfscr_bit_nr
;
142 mtspr(SPRN_HFSCR
, hfscr
);
144 /* Does not have a known recipe */
148 if (f
->os_support
== OS_SUPPORT_NONE
) {
149 } else if (f
->os_support
& OS_SUPPORT_FSCR
) {
150 u64 fscr
= mfspr(SPRN_FSCR
);
151 fscr
|= 1UL << f
->fscr_bit_nr
;
152 mtspr(SPRN_FSCR
, fscr
);
154 /* Does not have a known recipe */
158 if ((f
->usable_privilege
& USABLE_PR
) && (f
->hwcap_bit_nr
!= -1)) {
159 uint32_t word
= f
->hwcap_bit_nr
/ 32;
160 uint32_t bit
= f
->hwcap_bit_nr
% 32;
163 cur_cpu_spec
->cpu_user_features
|= 1U << bit
;
165 cur_cpu_spec
->cpu_user_features2
|= 1U << bit
;
167 pr_err("%s could not advertise to user (no hwcap bits)\n", f
->name
);
173 static int __init
feat_enable(struct dt_cpu_feature
*f
)
175 if (f
->hv_support
!= HV_SUPPORT_NONE
) {
176 if (f
->hfscr_bit_nr
!= -1) {
177 u64 hfscr
= mfspr(SPRN_HFSCR
);
178 hfscr
|= 1UL << f
->hfscr_bit_nr
;
179 mtspr(SPRN_HFSCR
, hfscr
);
183 if (f
->os_support
!= OS_SUPPORT_NONE
) {
184 if (f
->fscr_bit_nr
!= -1) {
185 u64 fscr
= mfspr(SPRN_FSCR
);
186 fscr
|= 1UL << f
->fscr_bit_nr
;
187 mtspr(SPRN_FSCR
, fscr
);
191 if ((f
->usable_privilege
& USABLE_PR
) && (f
->hwcap_bit_nr
!= -1)) {
192 uint32_t word
= f
->hwcap_bit_nr
/ 32;
193 uint32_t bit
= f
->hwcap_bit_nr
% 32;
196 cur_cpu_spec
->cpu_user_features
|= 1U << bit
;
198 cur_cpu_spec
->cpu_user_features2
|= 1U << bit
;
200 pr_err("CPU feature: %s could not advertise to user (no hwcap bits)\n", f
->name
);
206 static int __init
feat_disable(struct dt_cpu_feature
*f
)
211 static int __init
feat_enable_hv(struct dt_cpu_feature
*f
)
216 pr_err("CPU feature hypervisor present in device tree but HV mode not enabled in the CPU. Ignoring.\n");
222 lpcr
= mfspr(SPRN_LPCR
);
223 lpcr
&= ~LPCR_LPES0
; /* HV external interrupts */
224 mtspr(SPRN_LPCR
, lpcr
);
226 cur_cpu_spec
->cpu_features
|= CPU_FTR_HVMODE
;
231 static int __init
feat_enable_le(struct dt_cpu_feature
*f
)
233 cur_cpu_spec
->cpu_user_features
|= PPC_FEATURE_TRUE_LE
;
237 static int __init
feat_enable_smt(struct dt_cpu_feature
*f
)
239 cur_cpu_spec
->cpu_features
|= CPU_FTR_SMT
;
240 cur_cpu_spec
->cpu_user_features
|= PPC_FEATURE_SMT
;
244 static int __init
feat_enable_idle_nap(struct dt_cpu_feature
*f
)
248 /* Set PECE wakeup modes for ISA 207 */
249 lpcr
= mfspr(SPRN_LPCR
);
253 mtspr(SPRN_LPCR
, lpcr
);
258 static int __init
feat_enable_idle_stop(struct dt_cpu_feature
*f
)
262 /* Set PECE wakeup modes for ISAv3.0B */
263 lpcr
= mfspr(SPRN_LPCR
);
267 mtspr(SPRN_LPCR
, lpcr
);
272 static int __init
feat_enable_mmu_hash(struct dt_cpu_feature
*f
)
276 lpcr
= mfspr(SPRN_LPCR
);
282 lpcr
|= 0x10UL
<< LPCR_VRMASD_SH
; /* L=1 LP=00 */
283 mtspr(SPRN_LPCR
, lpcr
);
285 cur_cpu_spec
->mmu_features
|= MMU_FTRS_HASH_BASE
;
286 cur_cpu_spec
->cpu_user_features
|= PPC_FEATURE_HAS_MMU
;
291 static int __init
feat_enable_mmu_hash_v3(struct dt_cpu_feature
*f
)
295 lpcr
= mfspr(SPRN_LPCR
);
296 lpcr
&= ~(LPCR_ISL
| LPCR_UPRT
| LPCR_HR
);
297 mtspr(SPRN_LPCR
, lpcr
);
299 cur_cpu_spec
->mmu_features
|= MMU_FTRS_HASH_BASE
;
300 cur_cpu_spec
->cpu_user_features
|= PPC_FEATURE_HAS_MMU
;
306 static int __init
feat_enable_mmu_radix(struct dt_cpu_feature
*f
)
308 #ifdef CONFIG_PPC_RADIX_MMU
309 cur_cpu_spec
->mmu_features
|= MMU_FTR_TYPE_RADIX
;
310 cur_cpu_spec
->mmu_features
|= MMU_FTRS_HASH_BASE
;
311 cur_cpu_spec
->mmu_features
|= MMU_FTR_GTSE
;
312 cur_cpu_spec
->cpu_user_features
|= PPC_FEATURE_HAS_MMU
;
319 static int __init
feat_enable_dscr(struct dt_cpu_feature
*f
)
324 * Linux relies on FSCR[DSCR] being clear, so that we can take the
325 * facility unavailable interrupt and track the task's usage of DSCR.
326 * See facility_unavailable_exception().
327 * Clear the bit here so that feat_enable() doesn't set it.
333 lpcr
= mfspr(SPRN_LPCR
);
335 lpcr
|= (4UL << LPCR_DPFD_SH
);
336 mtspr(SPRN_LPCR
, lpcr
);
341 static void hfscr_pmu_enable(void)
343 u64 hfscr
= mfspr(SPRN_HFSCR
);
344 hfscr
|= PPC_BIT(60);
345 mtspr(SPRN_HFSCR
, hfscr
);
348 static void init_pmu_power8(void)
351 mtspr(SPRN_MMCRC
, 0);
352 mtspr(SPRN_MMCRH
, 0);
355 mtspr(SPRN_MMCRA
, 0);
356 mtspr(SPRN_MMCR0
, 0);
357 mtspr(SPRN_MMCR1
, 0);
358 mtspr(SPRN_MMCR2
, 0);
359 mtspr(SPRN_MMCRS
, 0);
362 static int __init
feat_enable_mce_power8(struct dt_cpu_feature
*f
)
364 cur_cpu_spec
->platform
= "power8";
365 cur_cpu_spec
->machine_check_early
= __machine_check_early_realmode_p8
;
370 static int __init
feat_enable_pmu_power8(struct dt_cpu_feature
*f
)
375 init_pmu_registers
= init_pmu_power8
;
377 cur_cpu_spec
->cpu_features
|= CPU_FTR_MMCRA
;
378 cur_cpu_spec
->cpu_user_features
|= PPC_FEATURE_PSERIES_PERFMON_COMPAT
;
379 if (pvr_version_is(PVR_POWER8E
))
380 cur_cpu_spec
->cpu_features
|= CPU_FTR_PMAO_BUG
;
382 cur_cpu_spec
->num_pmcs
= 6;
383 cur_cpu_spec
->pmc_type
= PPC_PMC_IBM
;
384 cur_cpu_spec
->oprofile_cpu_type
= "ppc64/power8";
389 static void init_pmu_power9(void)
392 mtspr(SPRN_MMCRC
, 0);
394 mtspr(SPRN_MMCRA
, 0);
395 mtspr(SPRN_MMCR0
, 0);
396 mtspr(SPRN_MMCR1
, 0);
397 mtspr(SPRN_MMCR2
, 0);
400 static int __init
feat_enable_mce_power9(struct dt_cpu_feature
*f
)
402 cur_cpu_spec
->platform
= "power9";
403 cur_cpu_spec
->machine_check_early
= __machine_check_early_realmode_p9
;
408 static int __init
feat_enable_pmu_power9(struct dt_cpu_feature
*f
)
413 init_pmu_registers
= init_pmu_power9
;
415 cur_cpu_spec
->cpu_features
|= CPU_FTR_MMCRA
;
416 cur_cpu_spec
->cpu_user_features
|= PPC_FEATURE_PSERIES_PERFMON_COMPAT
;
418 cur_cpu_spec
->num_pmcs
= 6;
419 cur_cpu_spec
->pmc_type
= PPC_PMC_IBM
;
420 cur_cpu_spec
->oprofile_cpu_type
= "ppc64/power9";
425 static void init_pmu_power10(void)
429 mtspr(SPRN_MMCR3
, 0);
430 mtspr(SPRN_MMCRA
, MMCRA_BHRB_DISABLE
);
431 mtspr(SPRN_MMCR0
, MMCR0_PMCCEXT
);
434 static int __init
feat_enable_pmu_power10(struct dt_cpu_feature
*f
)
439 init_pmu_registers
= init_pmu_power10
;
441 cur_cpu_spec
->cpu_features
|= CPU_FTR_MMCRA
;
442 cur_cpu_spec
->cpu_user_features
|= PPC_FEATURE_PSERIES_PERFMON_COMPAT
;
444 cur_cpu_spec
->num_pmcs
= 6;
445 cur_cpu_spec
->pmc_type
= PPC_PMC_IBM
;
446 cur_cpu_spec
->oprofile_cpu_type
= "ppc64/power10";
451 static int __init
feat_enable_mce_power10(struct dt_cpu_feature
*f
)
453 cur_cpu_spec
->platform
= "power10";
454 cur_cpu_spec
->machine_check_early
= __machine_check_early_realmode_p10
;
459 static int __init
feat_enable_tm(struct dt_cpu_feature
*f
)
461 #ifdef CONFIG_PPC_TRANSACTIONAL_MEM
463 cur_cpu_spec
->cpu_user_features2
|= PPC_FEATURE2_HTM_NOSC
;
469 static int __init
feat_enable_fp(struct dt_cpu_feature
*f
)
472 cur_cpu_spec
->cpu_features
&= ~CPU_FTR_FPU_UNAVAILABLE
;
477 static int __init
feat_enable_vector(struct dt_cpu_feature
*f
)
479 #ifdef CONFIG_ALTIVEC
481 cur_cpu_spec
->cpu_features
|= CPU_FTR_ALTIVEC
;
482 cur_cpu_spec
->cpu_features
|= CPU_FTR_VMX_COPY
;
483 cur_cpu_spec
->cpu_user_features
|= PPC_FEATURE_HAS_ALTIVEC
;
490 static int __init
feat_enable_vsx(struct dt_cpu_feature
*f
)
494 cur_cpu_spec
->cpu_features
|= CPU_FTR_VSX
;
495 cur_cpu_spec
->cpu_user_features
|= PPC_FEATURE_HAS_VSX
;
502 static int __init
feat_enable_purr(struct dt_cpu_feature
*f
)
504 cur_cpu_spec
->cpu_features
|= CPU_FTR_PURR
| CPU_FTR_SPURR
;
509 static int __init
feat_enable_ebb(struct dt_cpu_feature
*f
)
512 * PPC_FEATURE2_EBB is enabled in PMU init code because it has
513 * historically been related to the PMU facility. This may have
514 * to be decoupled if EBB becomes more generic. For now, follow
515 * existing convention.
517 f
->hwcap_bit_nr
= -1;
523 static int __init
feat_enable_dbell(struct dt_cpu_feature
*f
)
527 /* P9 has an HFSCR for privileged state */
530 cur_cpu_spec
->cpu_features
|= CPU_FTR_DBELL
;
532 lpcr
= mfspr(SPRN_LPCR
);
533 lpcr
|= LPCR_PECEDH
; /* hyp doorbell wakeup */
534 mtspr(SPRN_LPCR
, lpcr
);
539 static int __init
feat_enable_hvi(struct dt_cpu_feature
*f
)
544 * POWER9 XIVE interrupts including in OPAL XICS compatibility
545 * are always delivered as hypervisor virtualization interrupts (HVI)
548 * However LPES0 is not set here, in the chance that an EE does get
549 * delivered to the host somehow, the EE handler would not expect it
550 * to be delivered in LPES0 mode (e.g., using SRR[01]). This could
551 * happen if there is a bug in interrupt controller code, or IC is
552 * misconfigured in systemsim.
555 lpcr
= mfspr(SPRN_LPCR
);
556 lpcr
|= LPCR_HVICE
; /* enable hvi interrupts */
557 lpcr
|= LPCR_HEIC
; /* disable ee interrupts when MSR_HV */
558 lpcr
|= LPCR_PECE_HVEE
; /* hvi can wake from stop */
559 mtspr(SPRN_LPCR
, lpcr
);
564 static int __init
feat_enable_large_ci(struct dt_cpu_feature
*f
)
566 cur_cpu_spec
->mmu_features
|= MMU_FTR_CI_LARGE_PAGE
;
571 static int __init
feat_enable_mma(struct dt_cpu_feature
*f
)
576 pcr
= mfspr(SPRN_PCR
);
578 mtspr(SPRN_PCR
, pcr
);
583 struct dt_cpu_feature_match
{
585 int (*enable
)(struct dt_cpu_feature
*f
);
586 u64 cpu_ftr_bit_mask
;
589 static struct dt_cpu_feature_match __initdata
590 dt_cpu_feature_match_table
[] = {
591 {"hypervisor", feat_enable_hv
, 0},
592 {"big-endian", feat_enable
, 0},
593 {"little-endian", feat_enable_le
, CPU_FTR_REAL_LE
},
594 {"smt", feat_enable_smt
, 0},
595 {"interrupt-facilities", feat_enable
, 0},
596 {"system-call-vectored", feat_enable
, 0},
597 {"timer-facilities", feat_enable
, 0},
598 {"timer-facilities-v3", feat_enable
, 0},
599 {"debug-facilities", feat_enable
, 0},
600 {"come-from-address-register", feat_enable
, CPU_FTR_CFAR
},
601 {"branch-tracing", feat_enable
, 0},
602 {"floating-point", feat_enable_fp
, 0},
603 {"vector", feat_enable_vector
, 0},
604 {"vector-scalar", feat_enable_vsx
, 0},
605 {"vector-scalar-v3", feat_enable
, 0},
606 {"decimal-floating-point", feat_enable
, 0},
607 {"decimal-integer", feat_enable
, 0},
608 {"quadword-load-store", feat_enable
, 0},
609 {"vector-crypto", feat_enable
, 0},
610 {"mmu-hash", feat_enable_mmu_hash
, 0},
611 {"mmu-radix", feat_enable_mmu_radix
, 0},
612 {"mmu-hash-v3", feat_enable_mmu_hash_v3
, 0},
613 {"virtual-page-class-key-protection", feat_enable
, 0},
614 {"transactional-memory", feat_enable_tm
, CPU_FTR_TM
},
615 {"transactional-memory-v3", feat_enable_tm
, 0},
616 {"tm-suspend-hypervisor-assist", feat_enable
, CPU_FTR_P9_TM_HV_ASSIST
},
617 {"tm-suspend-xer-so-bug", feat_enable
, CPU_FTR_P9_TM_XER_SO_BUG
},
618 {"idle-nap", feat_enable_idle_nap
, 0},
619 /* alignment-interrupt-dsisr ignored */
620 {"idle-stop", feat_enable_idle_stop
, 0},
621 {"machine-check-power8", feat_enable_mce_power8
, 0},
622 {"performance-monitor-power8", feat_enable_pmu_power8
, 0},
623 {"data-stream-control-register", feat_enable_dscr
, CPU_FTR_DSCR
},
624 {"event-based-branch", feat_enable_ebb
, 0},
625 {"target-address-register", feat_enable
, 0},
626 {"branch-history-rolling-buffer", feat_enable
, 0},
627 {"control-register", feat_enable
, CPU_FTR_CTRL
},
628 {"processor-control-facility", feat_enable_dbell
, CPU_FTR_DBELL
},
629 {"processor-control-facility-v3", feat_enable_dbell
, CPU_FTR_DBELL
},
630 {"processor-utilization-of-resources-register", feat_enable_purr
, 0},
631 {"no-execute", feat_enable
, 0},
632 {"strong-access-ordering", feat_enable
, CPU_FTR_SAO
},
633 {"cache-inhibited-large-page", feat_enable_large_ci
, 0},
634 {"coprocessor-icswx", feat_enable
, 0},
635 {"hypervisor-virtualization-interrupt", feat_enable_hvi
, 0},
636 {"program-priority-register", feat_enable
, CPU_FTR_HAS_PPR
},
637 {"wait", feat_enable
, 0},
638 {"atomic-memory-operations", feat_enable
, 0},
639 {"branch-v3", feat_enable
, 0},
640 {"copy-paste", feat_enable
, 0},
641 {"decimal-floating-point-v3", feat_enable
, 0},
642 {"decimal-integer-v3", feat_enable
, 0},
643 {"fixed-point-v3", feat_enable
, 0},
644 {"floating-point-v3", feat_enable
, 0},
645 {"group-start-register", feat_enable
, 0},
646 {"pc-relative-addressing", feat_enable
, 0},
647 {"machine-check-power9", feat_enable_mce_power9
, 0},
648 {"machine-check-power10", feat_enable_mce_power10
, 0},
649 {"performance-monitor-power9", feat_enable_pmu_power9
, 0},
650 {"performance-monitor-power10", feat_enable_pmu_power10
, 0},
651 {"event-based-branch-v3", feat_enable
, 0},
652 {"random-number-generator", feat_enable
, 0},
653 {"system-call-vectored", feat_disable
, 0},
654 {"trace-interrupt-v3", feat_enable
, 0},
655 {"vector-v3", feat_enable
, 0},
656 {"vector-binary128", feat_enable
, 0},
657 {"vector-binary16", feat_enable
, 0},
658 {"wait-v3", feat_enable
, 0},
659 {"prefix-instructions", feat_enable
, 0},
660 {"matrix-multiply-assist", feat_enable_mma
, 0},
661 {"debug-facilities-v31", feat_enable
, CPU_FTR_DAWR1
},
664 static bool __initdata using_dt_cpu_ftrs
;
665 static bool __initdata enable_unknown
= true;
667 static int __init
dt_cpu_ftrs_parse(char *str
)
672 if (!strcmp(str
, "off"))
673 using_dt_cpu_ftrs
= false;
674 else if (!strcmp(str
, "known"))
675 enable_unknown
= false;
681 early_param("dt_cpu_ftrs", dt_cpu_ftrs_parse
);
683 static void __init
cpufeatures_setup_start(u32 isa
)
685 pr_info("setup for ISA %d\n", isa
);
687 if (isa
>= ISA_V3_0B
) {
688 cur_cpu_spec
->cpu_features
|= CPU_FTR_ARCH_300
;
689 cur_cpu_spec
->cpu_user_features2
|= PPC_FEATURE2_ARCH_3_00
;
692 if (isa
>= ISA_V3_1
) {
693 cur_cpu_spec
->cpu_features
|= CPU_FTR_ARCH_31
;
694 cur_cpu_spec
->cpu_user_features2
|= PPC_FEATURE2_ARCH_3_1
;
698 static bool __init
cpufeatures_process_feature(struct dt_cpu_feature
*f
)
700 const struct dt_cpu_feature_match
*m
;
704 for (i
= 0; i
< ARRAY_SIZE(dt_cpu_feature_match_table
); i
++) {
705 m
= &dt_cpu_feature_match_table
[i
];
706 if (!strcmp(f
->name
, m
->name
)) {
709 cur_cpu_spec
->cpu_features
|= m
->cpu_ftr_bit_mask
;
713 pr_info("not enabling: %s (disabled or unsupported by kernel)\n",
719 if (!known
&& (!enable_unknown
|| !feat_try_enable_unknown(f
))) {
720 pr_info("not enabling: %s (unknown and unsupported by kernel)\n",
726 pr_debug("enabling: %s\n", f
->name
);
728 pr_debug("enabling: %s (unknown)\n", f
->name
);
734 * Handle POWER9 broadcast tlbie invalidation issue using
737 static __init
void update_tlbie_feature_flag(unsigned long pvr
)
739 if (PVR_VER(pvr
) == PVR_POWER9
) {
741 * Set the tlbie feature flag for anything below
742 * Nimbus DD 2.3 and Cumulus DD 1.3
744 if ((pvr
& 0xe000) == 0) {
746 if ((pvr
& 0xfff) < 0x203)
747 cur_cpu_spec
->cpu_features
|= CPU_FTR_P9_TLBIE_STQ_BUG
;
748 } else if ((pvr
& 0xc000) == 0) {
750 if ((pvr
& 0xfff) < 0x103)
751 cur_cpu_spec
->cpu_features
|= CPU_FTR_P9_TLBIE_STQ_BUG
;
753 WARN_ONCE(1, "Unknown PVR");
754 cur_cpu_spec
->cpu_features
|= CPU_FTR_P9_TLBIE_STQ_BUG
;
757 cur_cpu_spec
->cpu_features
|= CPU_FTR_P9_TLBIE_ERAT_BUG
;
761 static __init
void cpufeatures_cpu_quirks(void)
763 unsigned long version
= mfspr(SPRN_PVR
);
766 * Not all quirks can be derived from the cpufeatures device tree.
768 if ((version
& 0xffffefff) == 0x004e0200) {
769 /* DD2.0 has no feature flag */
770 cur_cpu_spec
->cpu_features
|= CPU_FTR_P9_RADIX_PREFETCH_BUG
;
771 } else if ((version
& 0xffffefff) == 0x004e0201) {
772 cur_cpu_spec
->cpu_features
|= CPU_FTR_POWER9_DD2_1
;
773 cur_cpu_spec
->cpu_features
|= CPU_FTR_P9_RADIX_PREFETCH_BUG
;
774 } else if ((version
& 0xffffefff) == 0x004e0202) {
775 cur_cpu_spec
->cpu_features
|= CPU_FTR_P9_TM_HV_ASSIST
;
776 cur_cpu_spec
->cpu_features
|= CPU_FTR_P9_TM_XER_SO_BUG
;
777 cur_cpu_spec
->cpu_features
|= CPU_FTR_POWER9_DD2_1
;
778 } else if ((version
& 0xffff0000) == 0x004e0000) {
779 /* DD2.1 and up have DD2_1 */
780 cur_cpu_spec
->cpu_features
|= CPU_FTR_POWER9_DD2_1
;
783 if ((version
& 0xffff0000) == 0x004e0000) {
784 cur_cpu_spec
->cpu_features
&= ~(CPU_FTR_DAWR
);
785 cur_cpu_spec
->cpu_features
|= CPU_FTR_P9_TIDR
;
788 update_tlbie_feature_flag(version
);
791 static void __init
cpufeatures_setup_finished(void)
793 cpufeatures_cpu_quirks();
795 if (hv_mode
&& !(cur_cpu_spec
->cpu_features
& CPU_FTR_HVMODE
)) {
796 pr_err("hypervisor not present in device tree but HV mode is enabled in the CPU. Enabling.\n");
797 cur_cpu_spec
->cpu_features
|= CPU_FTR_HVMODE
;
800 /* Make sure powerpc_base_platform is non-NULL */
801 powerpc_base_platform
= cur_cpu_spec
->platform
;
803 system_registers
.lpcr
= mfspr(SPRN_LPCR
);
804 system_registers
.hfscr
= mfspr(SPRN_HFSCR
);
805 system_registers
.fscr
= mfspr(SPRN_FSCR
);
806 system_registers
.pcr
= mfspr(SPRN_PCR
);
808 pr_info("final cpu/mmu features = 0x%016lx 0x%08x\n",
809 cur_cpu_spec
->cpu_features
, cur_cpu_spec
->mmu_features
);
812 static int __init
disabled_on_cmdline(void)
814 unsigned long root
, chosen
;
817 root
= of_get_flat_dt_root();
818 chosen
= of_get_flat_dt_subnode_by_name(root
, "chosen");
819 if (chosen
== -FDT_ERR_NOTFOUND
)
822 p
= of_get_flat_dt_prop(chosen
, "bootargs", NULL
);
826 if (strstr(p
, "dt_cpu_ftrs=off"))
832 static int __init
fdt_find_cpu_features(unsigned long node
, const char *uname
,
833 int depth
, void *data
)
835 if (of_flat_dt_is_compatible(node
, "ibm,powerpc-cpu-features")
836 && of_get_flat_dt_prop(node
, "isa", NULL
))
842 bool __init
dt_cpu_ftrs_in_use(void)
844 return using_dt_cpu_ftrs
;
847 bool __init
dt_cpu_ftrs_init(void *fdt
)
849 using_dt_cpu_ftrs
= false;
851 /* Setup and verify the FDT, if it fails we just bail */
852 if (!early_init_dt_verify(fdt
))
855 if (!of_scan_flat_dt(fdt_find_cpu_features
, NULL
))
858 if (disabled_on_cmdline())
861 cpufeatures_setup_cpu();
863 using_dt_cpu_ftrs
= true;
867 static int nr_dt_cpu_features
;
868 static struct dt_cpu_feature
*dt_cpu_features
;
870 static int __init
process_cpufeatures_node(unsigned long node
,
871 const char *uname
, int i
)
874 struct dt_cpu_feature
*f
;
877 f
= &dt_cpu_features
[i
];
883 prop
= of_get_flat_dt_prop(node
, "isa", &len
);
885 pr_warn("%s: missing isa property\n", uname
);
888 f
->isa
= be32_to_cpup(prop
);
890 prop
= of_get_flat_dt_prop(node
, "usable-privilege", &len
);
892 pr_warn("%s: missing usable-privilege property", uname
);
895 f
->usable_privilege
= be32_to_cpup(prop
);
897 prop
= of_get_flat_dt_prop(node
, "hv-support", &len
);
899 f
->hv_support
= be32_to_cpup(prop
);
901 f
->hv_support
= HV_SUPPORT_NONE
;
903 prop
= of_get_flat_dt_prop(node
, "os-support", &len
);
905 f
->os_support
= be32_to_cpup(prop
);
907 f
->os_support
= OS_SUPPORT_NONE
;
909 prop
= of_get_flat_dt_prop(node
, "hfscr-bit-nr", &len
);
911 f
->hfscr_bit_nr
= be32_to_cpup(prop
);
913 f
->hfscr_bit_nr
= -1;
914 prop
= of_get_flat_dt_prop(node
, "fscr-bit-nr", &len
);
916 f
->fscr_bit_nr
= be32_to_cpup(prop
);
919 prop
= of_get_flat_dt_prop(node
, "hwcap-bit-nr", &len
);
921 f
->hwcap_bit_nr
= be32_to_cpup(prop
);
923 f
->hwcap_bit_nr
= -1;
925 if (f
->usable_privilege
& USABLE_HV
) {
926 if (!(mfmsr() & MSR_HV
)) {
927 pr_warn("%s: HV feature passed to guest\n", uname
);
931 if (f
->hv_support
== HV_SUPPORT_NONE
&& f
->hfscr_bit_nr
!= -1) {
932 pr_warn("%s: unwanted hfscr_bit_nr\n", uname
);
936 if (f
->hv_support
== HV_SUPPORT_HFSCR
) {
937 if (f
->hfscr_bit_nr
== -1) {
938 pr_warn("%s: missing hfscr_bit_nr\n", uname
);
943 if (f
->hv_support
!= HV_SUPPORT_NONE
|| f
->hfscr_bit_nr
!= -1) {
944 pr_warn("%s: unwanted hv_support/hfscr_bit_nr\n", uname
);
949 if (f
->usable_privilege
& USABLE_OS
) {
950 if (f
->os_support
== OS_SUPPORT_NONE
&& f
->fscr_bit_nr
!= -1) {
951 pr_warn("%s: unwanted fscr_bit_nr\n", uname
);
955 if (f
->os_support
== OS_SUPPORT_FSCR
) {
956 if (f
->fscr_bit_nr
== -1) {
957 pr_warn("%s: missing fscr_bit_nr\n", uname
);
962 if (f
->os_support
!= OS_SUPPORT_NONE
|| f
->fscr_bit_nr
!= -1) {
963 pr_warn("%s: unwanted os_support/fscr_bit_nr\n", uname
);
968 if (!(f
->usable_privilege
& USABLE_PR
)) {
969 if (f
->hwcap_bit_nr
!= -1) {
970 pr_warn("%s: unwanted hwcap_bit_nr\n", uname
);
975 /* Do all the independent features in the first pass */
976 if (!of_get_flat_dt_prop(node
, "dependencies", &len
)) {
977 if (cpufeatures_process_feature(f
))
986 static void __init
cpufeatures_deps_enable(struct dt_cpu_feature
*f
)
993 if (f
->enabled
|| f
->disabled
)
996 prop
= of_get_flat_dt_prop(f
->node
, "dependencies", &len
);
998 pr_warn("%s: missing dependencies property", f
->name
);
1002 nr_deps
= len
/ sizeof(int);
1004 for (i
= 0; i
< nr_deps
; i
++) {
1005 unsigned long phandle
= be32_to_cpu(prop
[i
]);
1008 for (j
= 0; j
< nr_dt_cpu_features
; j
++) {
1009 struct dt_cpu_feature
*d
= &dt_cpu_features
[j
];
1011 if (of_get_flat_dt_phandle(d
->node
) == phandle
) {
1012 cpufeatures_deps_enable(d
);
1021 if (cpufeatures_process_feature(f
))
1027 static int __init
scan_cpufeatures_subnodes(unsigned long node
,
1033 process_cpufeatures_node(node
, uname
, *count
);
1040 static int __init
count_cpufeatures_subnodes(unsigned long node
,
1051 static int __init
dt_cpu_ftrs_scan_callback(unsigned long node
, const char
1052 *uname
, int depth
, void *data
)
1058 /* We are scanning "ibm,powerpc-cpu-features" nodes only */
1059 if (!of_flat_dt_is_compatible(node
, "ibm,powerpc-cpu-features"))
1062 prop
= of_get_flat_dt_prop(node
, "isa", NULL
);
1064 /* We checked before, "can't happen" */
1067 isa
= be32_to_cpup(prop
);
1069 /* Count and allocate space for cpu features */
1070 of_scan_flat_dt_subnodes(node
, count_cpufeatures_subnodes
,
1071 &nr_dt_cpu_features
);
1072 dt_cpu_features
= memblock_alloc(sizeof(struct dt_cpu_feature
) * nr_dt_cpu_features
, PAGE_SIZE
);
1073 if (!dt_cpu_features
)
1074 panic("%s: Failed to allocate %zu bytes align=0x%lx\n",
1076 sizeof(struct dt_cpu_feature
) * nr_dt_cpu_features
,
1079 cpufeatures_setup_start(isa
);
1081 /* Scan nodes into dt_cpu_features and enable those without deps */
1083 of_scan_flat_dt_subnodes(node
, scan_cpufeatures_subnodes
, &count
);
1085 /* Recursive enable remaining features with dependencies */
1086 for (i
= 0; i
< nr_dt_cpu_features
; i
++) {
1087 struct dt_cpu_feature
*f
= &dt_cpu_features
[i
];
1089 cpufeatures_deps_enable(f
);
1092 prop
= of_get_flat_dt_prop(node
, "display-name", NULL
);
1093 if (prop
&& strlen((char *)prop
) != 0) {
1094 strlcpy(dt_cpu_name
, (char *)prop
, sizeof(dt_cpu_name
));
1095 cur_cpu_spec
->cpu_name
= dt_cpu_name
;
1098 cpufeatures_setup_finished();
1100 memblock_free(__pa(dt_cpu_features
),
1101 sizeof(struct dt_cpu_feature
)*nr_dt_cpu_features
);
1106 void __init
dt_cpu_ftrs_scan(void)
1108 if (!using_dt_cpu_ftrs
)
1111 of_scan_flat_dt(dt_cpu_ftrs_scan_callback
, NULL
);