aboutsummaryrefslogtreecommitdiffstats
path: root/arch/powerpc
diff options
context:
space:
mode:
Diffstat (limited to 'arch/powerpc')
-rw-r--r--arch/powerpc/kernel/smp.c31
1 files changed, 23 insertions, 8 deletions
diff --git a/arch/powerpc/kernel/smp.c b/arch/powerpc/kernel/smp.c
index e2a4232c5871..10ffffef0414 100644
--- a/arch/powerpc/kernel/smp.c
+++ b/arch/powerpc/kernel/smp.c
@@ -766,6 +766,28 @@ int setup_profiling_timer(unsigned int multiplier)
766 return 0; 766 return 0;
767} 767}
768 768
769#ifdef CONFIG_SCHED_SMT
770/* cpumask of CPUs with asymetric SMT dependancy */
771static const int powerpc_smt_flags(void)
772{
773 int flags = SD_SHARE_CPUPOWER | SD_SHARE_PKG_RESOURCES;
774
775 if (cpu_has_feature(CPU_FTR_ASYM_SMT)) {
776 printk_once(KERN_INFO "Enabling Asymmetric SMT scheduling\n");
777 flags |= SD_ASYM_PACKING;
778 }
779 return flags;
780}
781#endif
782
783static struct sched_domain_topology_level powerpc_topology[] = {
784#ifdef CONFIG_SCHED_SMT
785 { cpu_smt_mask, powerpc_smt_flags, SD_INIT_NAME(SMT) },
786#endif
787 { cpu_cpu_mask, SD_INIT_NAME(DIE) },
788 { NULL, },
789};
790
769void __init smp_cpus_done(unsigned int max_cpus) 791void __init smp_cpus_done(unsigned int max_cpus)
770{ 792{
771 cpumask_var_t old_mask; 793 cpumask_var_t old_mask;
@@ -790,15 +812,8 @@ void __init smp_cpus_done(unsigned int max_cpus)
790 812
791 dump_numa_cpu_topology(); 813 dump_numa_cpu_topology();
792 814
793} 815 set_sched_topology(powerpc_topology);
794 816
795int arch_sd_sibling_asym_packing(void)
796{
797 if (cpu_has_feature(CPU_FTR_ASYM_SMT)) {
798 printk_once(KERN_INFO "Enabling Asymmetric SMT scheduling\n");
799 return SD_ASYM_PACKING;
800 }
801 return 0;
802} 817}
803 818
804#ifdef CONFIG_HOTPLUG_CPU 819#ifdef CONFIG_HOTPLUG_CPU