powerpc/64: Set DSCR default initially from SPR
authorNicholas Piggin <npiggin@gmail.com>
Tue, 24 Oct 2017 11:44:44 +0000 (21:44 +1000)
committerMichael Ellerman <mpe@ellerman.id.au>
Fri, 10 Nov 2017 11:11:35 +0000 (22:11 +1100)
Take the DSCR value set by firmware as the dscr_default value,
rather than zero.

POWER9 recommends DSCR default to a non-zero value.

Signed-off-by: From: Nicholas Piggin <npiggin@gmail.com>
[mpe: Make record_spr_defaults() __init]
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
arch/powerpc/kernel/setup.h
arch/powerpc/kernel/setup_64.c
arch/powerpc/kernel/sysfs.c

index cfba134b3024035ee964c899ae3d7386bef290e1..21c18071d9d574b186b57881638fa5626cd1c105 100644 (file)
@@ -45,6 +45,12 @@ void emergency_stack_init(void);
 static inline void emergency_stack_init(void) { };
 #endif
 
+#ifdef CONFIG_PPC64
+void record_spr_defaults(void);
+#else
+static inline void record_spr_defaults(void) { };
+#endif
+
 /*
  * Having this in kvm_ppc.h makes include dependencies too
  * tricky to solve for setup-common.c so have it here.
index 87b4fe75fd4543a2a795f5f513cfbdfe08e014ca..8956a9856604e72634dd11ef416ec9788660bc37 100644 (file)
@@ -69,6 +69,8 @@
 #include <asm/opal.h>
 #include <asm/cputhreads.h>
 
+#include "setup.h"
+
 #ifdef DEBUG
 #define DBG(fmt...) udbg_printf(fmt)
 #else
@@ -316,6 +318,13 @@ void __init early_setup(unsigned long dt_ptr)
        /* Initialize the hash table or TLB handling */
        early_init_mmu();
 
+       /*
+        * After firmware and early platform setup code has set things up,
+        * we note the SPR values for configurable control/performance
+        * registers, and use those as initial defaults.
+        */
+       record_spr_defaults();
+
        /*
         * At this point, we can let interrupts switch to virtual mode
         * (the MMU has been setup), so adjust the MSR in the PACA to
index 4437c70c7c2b34db9725744c162af41ed57cdebe..b8d4a1dac39fc1524d77297dcda0c93ae9675edf 100644 (file)
@@ -590,6 +590,17 @@ static void sysfs_create_dscr_default(void)
        if (cpu_has_feature(CPU_FTR_DSCR))
                err = device_create_file(cpu_subsys.dev_root, &dev_attr_dscr_default);
 }
+
+void __init record_spr_defaults(void)
+{
+       int cpu;
+
+       if (cpu_has_feature(CPU_FTR_DSCR)) {
+               dscr_default = mfspr(SPRN_DSCR);
+               for (cpu = 0; cpu < nr_cpu_ids; cpu++)
+                       paca[cpu].dscr_default = dscr_default;
+       }
+}
 #endif /* CONFIG_PPC64 */
 
 #ifdef HAS_PPC_PMC_PA6T