2 * Copyright (C) 2014 Stefan Kristiansson <stefan.kristiansson@saunalahti.fi>
3 * Copyright (C) 2017 Stafford Horne <shorne@gmail.com>
5 * Based on arm64 and arc implementations
6 * Copyright (C) 2013 ARM Ltd.
7 * Copyright (C) 2004, 2007-2010, 2011-2012 Synopsys, Inc. (www.synopsys.com)
9 * This file is licensed under the terms of the GNU General Public License
10 * version 2. This program is licensed "as is" without any warranty of any
11 * kind, whether express or implied.
14 #include <linux/smp.h>
15 #include <linux/cpu.h>
16 #include <linux/sched.h>
17 #include <linux/sched/mm.h>
18 #include <linux/irq.h>
20 #include <asm/cpuinfo.h>
21 #include <asm/mmu_context.h>
22 #include <asm/tlbflush.h>
23 #include <asm/cacheflush.h>
26 asmlinkage __init
void secondary_start_kernel(void);
28 static void (*smp_cross_call
)(const struct cpumask
*, unsigned int);
30 unsigned long secondary_release
= -1;
31 struct thread_info
*secondary_thread_info
;
40 static DEFINE_SPINLOCK(boot_lock
);
42 static void boot_secondary(unsigned int cpu
, struct task_struct
*idle
)
45 * set synchronisation state between this boot processor
46 * and the secondary one
48 spin_lock(&boot_lock
);
50 secondary_release
= cpu
;
51 smp_cross_call(cpumask_of(cpu
), IPI_WAKEUP
);
54 * now the secondary core is starting up let it run its
55 * calibrations, then wait for it to finish
57 spin_unlock(&boot_lock
);
60 void __init
smp_init_cpus(void)
62 struct device_node
*cpu
;
65 for_each_of_cpu_node(cpu
) {
66 cpu_id
= of_get_cpu_hwid(cpu
, 0);
68 set_cpu_possible(cpu_id
, true);
72 void __init
smp_prepare_cpus(unsigned int max_cpus
)
77 * Initialise the present map, which describes the set of CPUs
78 * actually populated at the present time.
80 for_each_possible_cpu(cpu
) {
82 set_cpu_present(cpu
, true);
86 void __init
smp_cpus_done(unsigned int max_cpus
)
90 static DECLARE_COMPLETION(cpu_running
);
92 int __cpu_up(unsigned int cpu
, struct task_struct
*idle
)
94 if (smp_cross_call
== NULL
) {
95 pr_warn("CPU%u: failed to start, IPI controller missing",
100 secondary_thread_info
= task_thread_info(idle
);
101 current_pgd
[cpu
] = init_mm
.pgd
;
103 boot_secondary(cpu
, idle
);
104 if (!wait_for_completion_timeout(&cpu_running
,
105 msecs_to_jiffies(1000))) {
106 pr_crit("CPU%u: failed to start\n", cpu
);
109 synchronise_count_master(cpu
);
114 asmlinkage __init
void secondary_start_kernel(void)
116 struct mm_struct
*mm
= &init_mm
;
117 unsigned int cpu
= smp_processor_id();
119 * All kernel threads share the same mm context; grab a
120 * reference and switch to it.
123 current
->active_mm
= mm
;
124 cpumask_set_cpu(cpu
, mm_cpumask(mm
));
126 pr_info("CPU%u: Booted secondary processor\n", cpu
);
129 openrisc_clockevent_init();
131 notify_cpu_starting(cpu
);
134 * OK, now it's safe to let the boot CPU continue
136 complete(&cpu_running
);
138 synchronise_count_slave(cpu
);
139 set_cpu_online(cpu
, true);
143 * OK, it's off to the idle thread for us
145 cpu_startup_entry(CPUHP_AP_ONLINE_IDLE
);
148 void handle_IPI(unsigned int ipi_msg
)
150 unsigned int cpu
= smp_processor_id();
161 generic_smp_call_function_interrupt();
164 case IPI_CALL_FUNC_SINGLE
:
165 generic_smp_call_function_single_interrupt();
169 WARN(1, "CPU%u: Unknown IPI message 0x%x\n", cpu
, ipi_msg
);
174 void arch_smp_send_reschedule(int cpu
)
176 smp_cross_call(cpumask_of(cpu
), IPI_RESCHEDULE
);
179 static void stop_this_cpu(void *dummy
)
181 /* Remove this CPU */
182 set_cpu_online(smp_processor_id(), false);
186 if (mfspr(SPR_UPR
) & SPR_UPR_PMP
)
187 mtspr(SPR_PMR
, mfspr(SPR_PMR
) | SPR_PMR_DME
);
188 /* If that didn't work, infinite loop */
193 void smp_send_stop(void)
195 smp_call_function(stop_this_cpu
, NULL
, 0);
198 void __init
set_smp_cross_call(void (*fn
)(const struct cpumask
*, unsigned int))
203 void arch_send_call_function_single_ipi(int cpu
)
205 smp_cross_call(cpumask_of(cpu
), IPI_CALL_FUNC_SINGLE
);
208 void arch_send_call_function_ipi_mask(const struct cpumask
*mask
)
210 smp_cross_call(mask
, IPI_CALL_FUNC
);
213 /* TLB flush operations - Performed on each CPU*/
214 static inline void ipi_flush_tlb_all(void *ignored
)
216 local_flush_tlb_all();
219 static inline void ipi_flush_tlb_mm(void *info
)
221 struct mm_struct
*mm
= (struct mm_struct
*)info
;
223 local_flush_tlb_mm(mm
);
226 static void smp_flush_tlb_mm(struct cpumask
*cmask
, struct mm_struct
*mm
)
230 if (cpumask_empty(cmask
))
235 if (cpumask_any_but(cmask
, cpuid
) >= nr_cpu_ids
) {
236 /* local cpu is the only cpu present in cpumask */
237 local_flush_tlb_mm(mm
);
239 on_each_cpu_mask(cmask
, ipi_flush_tlb_mm
, mm
, 1);
244 struct flush_tlb_data
{
249 static inline void ipi_flush_tlb_page(void *info
)
251 struct flush_tlb_data
*fd
= (struct flush_tlb_data
*)info
;
253 local_flush_tlb_page(NULL
, fd
->addr1
);
256 static inline void ipi_flush_tlb_range(void *info
)
258 struct flush_tlb_data
*fd
= (struct flush_tlb_data
*)info
;
260 local_flush_tlb_range(NULL
, fd
->addr1
, fd
->addr2
);
263 static void smp_flush_tlb_range(const struct cpumask
*cmask
, unsigned long start
,
268 if (cpumask_empty(cmask
))
273 if (cpumask_any_but(cmask
, cpuid
) >= nr_cpu_ids
) {
274 /* local cpu is the only cpu present in cpumask */
275 if ((end
- start
) <= PAGE_SIZE
)
276 local_flush_tlb_page(NULL
, start
);
278 local_flush_tlb_range(NULL
, start
, end
);
280 struct flush_tlb_data fd
;
285 if ((end
- start
) <= PAGE_SIZE
)
286 on_each_cpu_mask(cmask
, ipi_flush_tlb_page
, &fd
, 1);
288 on_each_cpu_mask(cmask
, ipi_flush_tlb_range
, &fd
, 1);
293 void flush_tlb_all(void)
295 on_each_cpu(ipi_flush_tlb_all
, NULL
, 1);
298 void flush_tlb_mm(struct mm_struct
*mm
)
300 smp_flush_tlb_mm(mm_cpumask(mm
), mm
);
303 void flush_tlb_page(struct vm_area_struct
*vma
, unsigned long uaddr
)
305 smp_flush_tlb_range(mm_cpumask(vma
->vm_mm
), uaddr
, uaddr
+ PAGE_SIZE
);
308 void flush_tlb_range(struct vm_area_struct
*vma
,
309 unsigned long start
, unsigned long end
)
311 const struct cpumask
*cmask
= vma
? mm_cpumask(vma
->vm_mm
)
313 smp_flush_tlb_range(cmask
, start
, end
);
316 /* Instruction cache invalidate - performed on each cpu */
317 static void ipi_icache_page_inv(void *arg
)
319 struct page
*page
= arg
;
321 local_icache_page_inv(page
);
324 void smp_icache_page_inv(struct page
*page
)
326 on_each_cpu(ipi_icache_page_inv
, page
, 1);
328 EXPORT_SYMBOL(smp_icache_page_inv
);