Linux Audio

Check our new training course

Loading...
v6.13.7
  1/*
  2 * Copyright (C) 2014 Stefan Kristiansson <stefan.kristiansson@saunalahti.fi>
  3 * Copyright (C) 2017 Stafford Horne <shorne@gmail.com>
  4 *
  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)
  8 *
  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.
 12 */
 13
 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>
 19#include <linux/of.h>
 20#include <asm/cpuinfo.h>
 21#include <asm/mmu_context.h>
 22#include <asm/tlbflush.h>
 23#include <asm/cacheflush.h>
 24#include <asm/time.h>
 25
 26asmlinkage __init void secondary_start_kernel(void);
 27
 28static void (*smp_cross_call)(const struct cpumask *, unsigned int);
 29
 30unsigned long secondary_release = -1;
 31struct thread_info *secondary_thread_info;
 32
 33enum ipi_msg_type {
 34	IPI_WAKEUP,
 35	IPI_RESCHEDULE,
 36	IPI_CALL_FUNC,
 37	IPI_CALL_FUNC_SINGLE,
 38};
 39
 40static DEFINE_SPINLOCK(boot_lock);
 41
 42static void boot_secondary(unsigned int cpu, struct task_struct *idle)
 43{
 44	/*
 45	 * set synchronisation state between this boot processor
 46	 * and the secondary one
 47	 */
 48	spin_lock(&boot_lock);
 49
 50	secondary_release = cpu;
 51	smp_cross_call(cpumask_of(cpu), IPI_WAKEUP);
 52
 53	/*
 54	 * now the secondary core is starting up let it run its
 55	 * calibrations, then wait for it to finish
 56	 */
 57	spin_unlock(&boot_lock);
 58}
 59
 
 
 
 
 60void __init smp_init_cpus(void)
 61{
 62	struct device_node *cpu;
 63	u32 cpu_id;
 64
 65	for_each_of_cpu_node(cpu) {
 66		cpu_id = of_get_cpu_hwid(cpu, 0);
 67		if (cpu_id < NR_CPUS)
 68			set_cpu_possible(cpu_id, true);
 69	}
 70}
 71
 72void __init smp_prepare_cpus(unsigned int max_cpus)
 73{
 74	unsigned int cpu;
 75
 76	/*
 77	 * Initialise the present map, which describes the set of CPUs
 78	 * actually populated at the present time.
 79	 */
 80	for_each_possible_cpu(cpu) {
 81		if (cpu < max_cpus)
 82			set_cpu_present(cpu, true);
 83	}
 84}
 85
 86void __init smp_cpus_done(unsigned int max_cpus)
 87{
 88}
 89
 90static DECLARE_COMPLETION(cpu_running);
 91
 92int __cpu_up(unsigned int cpu, struct task_struct *idle)
 93{
 94	if (smp_cross_call == NULL) {
 95		pr_warn("CPU%u: failed to start, IPI controller missing",
 96			cpu);
 97		return -EIO;
 98	}
 99
100	secondary_thread_info = task_thread_info(idle);
101	current_pgd[cpu] = init_mm.pgd;
102
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);
107		return -EIO;
108	}
109	synchronise_count_master(cpu);
110
111	return 0;
112}
113
114asmlinkage __init void secondary_start_kernel(void)
115{
116	struct mm_struct *mm = &init_mm;
117	unsigned int cpu = smp_processor_id();
118	/*
119	 * All kernel threads share the same mm context; grab a
120	 * reference and switch to it.
121	 */
122	mmgrab(mm);
123	current->active_mm = mm;
124	cpumask_set_cpu(cpu, mm_cpumask(mm));
125
126	pr_info("CPU%u: Booted secondary processor\n", cpu);
127
128	setup_cpuinfo();
129	openrisc_clockevent_init();
130
131	notify_cpu_starting(cpu);
132
133	/*
134	 * OK, now it's safe to let the boot CPU continue
135	 */
136	complete(&cpu_running);
137
138	synchronise_count_slave(cpu);
139	set_cpu_online(cpu, true);
140
141	local_irq_enable();
 
 
142	/*
143	 * OK, it's off to the idle thread for us
144	 */
145	cpu_startup_entry(CPUHP_AP_ONLINE_IDLE);
146}
147
148void handle_IPI(unsigned int ipi_msg)
149{
150	unsigned int cpu = smp_processor_id();
151
152	switch (ipi_msg) {
153	case IPI_WAKEUP:
154		break;
155
156	case IPI_RESCHEDULE:
157		scheduler_ipi();
158		break;
159
160	case IPI_CALL_FUNC:
161		generic_smp_call_function_interrupt();
162		break;
163
164	case IPI_CALL_FUNC_SINGLE:
165		generic_smp_call_function_single_interrupt();
166		break;
167
168	default:
169		WARN(1, "CPU%u: Unknown IPI message 0x%x\n", cpu, ipi_msg);
170		break;
171	}
172}
173
174void arch_smp_send_reschedule(int cpu)
175{
176	smp_cross_call(cpumask_of(cpu), IPI_RESCHEDULE);
177}
178
179static void stop_this_cpu(void *dummy)
180{
181	/* Remove this CPU */
182	set_cpu_online(smp_processor_id(), false);
183
184	local_irq_disable();
185	/* CPU Doze */
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 */
189	while (1)
190		;
191}
192
193void smp_send_stop(void)
194{
195	smp_call_function(stop_this_cpu, NULL, 0);
196}
197
 
 
 
 
 
 
198void __init set_smp_cross_call(void (*fn)(const struct cpumask *, unsigned int))
199{
200	smp_cross_call = fn;
201}
202
203void arch_send_call_function_single_ipi(int cpu)
204{
205	smp_cross_call(cpumask_of(cpu), IPI_CALL_FUNC_SINGLE);
206}
207
208void arch_send_call_function_ipi_mask(const struct cpumask *mask)
209{
210	smp_cross_call(mask, IPI_CALL_FUNC);
211}
212
213/* TLB flush operations - Performed on each CPU*/
214static inline void ipi_flush_tlb_all(void *ignored)
215{
216	local_flush_tlb_all();
217}
218
219static inline void ipi_flush_tlb_mm(void *info)
220{
221	struct mm_struct *mm = (struct mm_struct *)info;
222
223	local_flush_tlb_mm(mm);
224}
225
226static void smp_flush_tlb_mm(struct cpumask *cmask, struct mm_struct *mm)
227{
228	unsigned int cpuid;
229
230	if (cpumask_empty(cmask))
231		return;
232
233	cpuid = get_cpu();
234
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);
238	} else {
239		on_each_cpu_mask(cmask, ipi_flush_tlb_mm, mm, 1);
240	}
241	put_cpu();
242}
243
244struct flush_tlb_data {
245	unsigned long addr1;
246	unsigned long addr2;
247};
248
249static inline void ipi_flush_tlb_page(void *info)
250{
251	struct flush_tlb_data *fd = (struct flush_tlb_data *)info;
252
253	local_flush_tlb_page(NULL, fd->addr1);
254}
255
256static inline void ipi_flush_tlb_range(void *info)
257{
258	struct flush_tlb_data *fd = (struct flush_tlb_data *)info;
259
260	local_flush_tlb_range(NULL, fd->addr1, fd->addr2);
261}
262
263static void smp_flush_tlb_range(const struct cpumask *cmask, unsigned long start,
264				unsigned long end)
265{
266	unsigned int cpuid;
267
268	if (cpumask_empty(cmask))
269		return;
270
271	cpuid = get_cpu();
272
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);
277		else
278			local_flush_tlb_range(NULL, start, end);
279	} else {
280		struct flush_tlb_data fd;
281
282		fd.addr1 = start;
283		fd.addr2 = end;
284
285		if ((end - start) <= PAGE_SIZE)
286			on_each_cpu_mask(cmask, ipi_flush_tlb_page, &fd, 1);
287		else
288			on_each_cpu_mask(cmask, ipi_flush_tlb_range, &fd, 1);
289	}
290	put_cpu();
291}
292
293void flush_tlb_all(void)
294{
295	on_each_cpu(ipi_flush_tlb_all, NULL, 1);
296}
297
298void flush_tlb_mm(struct mm_struct *mm)
299{
300	smp_flush_tlb_mm(mm_cpumask(mm), mm);
301}
302
303void flush_tlb_page(struct vm_area_struct *vma, unsigned long uaddr)
304{
305	smp_flush_tlb_range(mm_cpumask(vma->vm_mm), uaddr, uaddr + PAGE_SIZE);
306}
307
308void flush_tlb_range(struct vm_area_struct *vma,
309		     unsigned long start, unsigned long end)
310{
311	const struct cpumask *cmask = vma ? mm_cpumask(vma->vm_mm)
312					  : cpu_online_mask;
313	smp_flush_tlb_range(cmask, start, end);
314}
315
316/* Instruction cache invalidate - performed on each cpu */
317static void ipi_icache_page_inv(void *arg)
318{
319	struct page *page = arg;
320
321	local_icache_page_inv(page);
322}
323
324void smp_icache_page_inv(struct page *page)
325{
326	on_each_cpu(ipi_icache_page_inv, page, 1);
327}
328EXPORT_SYMBOL(smp_icache_page_inv);
v5.9
  1/*
  2 * Copyright (C) 2014 Stefan Kristiansson <stefan.kristiansson@saunalahti.fi>
  3 * Copyright (C) 2017 Stafford Horne <shorne@gmail.com>
  4 *
  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)
  8 *
  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.
 12 */
 13
 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>
 
 19#include <asm/cpuinfo.h>
 20#include <asm/mmu_context.h>
 21#include <asm/tlbflush.h>
 22#include <asm/cacheflush.h>
 23#include <asm/time.h>
 24
 
 
 25static void (*smp_cross_call)(const struct cpumask *, unsigned int);
 26
 27unsigned long secondary_release = -1;
 28struct thread_info *secondary_thread_info;
 29
 30enum ipi_msg_type {
 31	IPI_WAKEUP,
 32	IPI_RESCHEDULE,
 33	IPI_CALL_FUNC,
 34	IPI_CALL_FUNC_SINGLE,
 35};
 36
 37static DEFINE_SPINLOCK(boot_lock);
 38
 39static void boot_secondary(unsigned int cpu, struct task_struct *idle)
 40{
 41	/*
 42	 * set synchronisation state between this boot processor
 43	 * and the secondary one
 44	 */
 45	spin_lock(&boot_lock);
 46
 47	secondary_release = cpu;
 48	smp_cross_call(cpumask_of(cpu), IPI_WAKEUP);
 49
 50	/*
 51	 * now the secondary core is starting up let it run its
 52	 * calibrations, then wait for it to finish
 53	 */
 54	spin_unlock(&boot_lock);
 55}
 56
 57void __init smp_prepare_boot_cpu(void)
 58{
 59}
 60
 61void __init smp_init_cpus(void)
 62{
 63	int i;
 
 64
 65	for (i = 0; i < NR_CPUS; i++)
 66		set_cpu_possible(i, true);
 
 
 
 67}
 68
 69void __init smp_prepare_cpus(unsigned int max_cpus)
 70{
 71	int i;
 72
 73	/*
 74	 * Initialise the present map, which describes the set of CPUs
 75	 * actually populated at the present time.
 76	 */
 77	for (i = 0; i < max_cpus; i++)
 78		set_cpu_present(i, true);
 
 
 79}
 80
 81void __init smp_cpus_done(unsigned int max_cpus)
 82{
 83}
 84
 85static DECLARE_COMPLETION(cpu_running);
 86
 87int __cpu_up(unsigned int cpu, struct task_struct *idle)
 88{
 89	if (smp_cross_call == NULL) {
 90		pr_warn("CPU%u: failed to start, IPI controller missing",
 91			cpu);
 92		return -EIO;
 93	}
 94
 95	secondary_thread_info = task_thread_info(idle);
 96	current_pgd[cpu] = init_mm.pgd;
 97
 98	boot_secondary(cpu, idle);
 99	if (!wait_for_completion_timeout(&cpu_running,
100					msecs_to_jiffies(1000))) {
101		pr_crit("CPU%u: failed to start\n", cpu);
102		return -EIO;
103	}
104	synchronise_count_master(cpu);
105
106	return 0;
107}
108
109asmlinkage __init void secondary_start_kernel(void)
110{
111	struct mm_struct *mm = &init_mm;
112	unsigned int cpu = smp_processor_id();
113	/*
114	 * All kernel threads share the same mm context; grab a
115	 * reference and switch to it.
116	 */
117	mmgrab(mm);
118	current->active_mm = mm;
119	cpumask_set_cpu(cpu, mm_cpumask(mm));
120
121	pr_info("CPU%u: Booted secondary processor\n", cpu);
122
123	setup_cpuinfo();
124	openrisc_clockevent_init();
125
126	notify_cpu_starting(cpu);
127
128	/*
129	 * OK, now it's safe to let the boot CPU continue
130	 */
131	complete(&cpu_running);
132
133	synchronise_count_slave(cpu);
134	set_cpu_online(cpu, true);
135
136	local_irq_enable();
137
138	preempt_disable();
139	/*
140	 * OK, it's off to the idle thread for us
141	 */
142	cpu_startup_entry(CPUHP_AP_ONLINE_IDLE);
143}
144
145void handle_IPI(unsigned int ipi_msg)
146{
147	unsigned int cpu = smp_processor_id();
148
149	switch (ipi_msg) {
150	case IPI_WAKEUP:
151		break;
152
153	case IPI_RESCHEDULE:
154		scheduler_ipi();
155		break;
156
157	case IPI_CALL_FUNC:
158		generic_smp_call_function_interrupt();
159		break;
160
161	case IPI_CALL_FUNC_SINGLE:
162		generic_smp_call_function_single_interrupt();
163		break;
164
165	default:
166		WARN(1, "CPU%u: Unknown IPI message 0x%x\n", cpu, ipi_msg);
167		break;
168	}
169}
170
171void smp_send_reschedule(int cpu)
172{
173	smp_cross_call(cpumask_of(cpu), IPI_RESCHEDULE);
174}
175
176static void stop_this_cpu(void *dummy)
177{
178	/* Remove this CPU */
179	set_cpu_online(smp_processor_id(), false);
180
181	local_irq_disable();
182	/* CPU Doze */
183	if (mfspr(SPR_UPR) & SPR_UPR_PMP)
184		mtspr(SPR_PMR, mfspr(SPR_PMR) | SPR_PMR_DME);
185	/* If that didn't work, infinite loop */
186	while (1)
187		;
188}
189
190void smp_send_stop(void)
191{
192	smp_call_function(stop_this_cpu, NULL, 0);
193}
194
195/* not supported, yet */
196int setup_profiling_timer(unsigned int multiplier)
197{
198	return -EINVAL;
199}
200
201void __init set_smp_cross_call(void (*fn)(const struct cpumask *, unsigned int))
202{
203	smp_cross_call = fn;
204}
205
206void arch_send_call_function_single_ipi(int cpu)
207{
208	smp_cross_call(cpumask_of(cpu), IPI_CALL_FUNC_SINGLE);
209}
210
211void arch_send_call_function_ipi_mask(const struct cpumask *mask)
212{
213	smp_cross_call(mask, IPI_CALL_FUNC);
214}
215
216/* TLB flush operations - Performed on each CPU*/
217static inline void ipi_flush_tlb_all(void *ignored)
218{
219	local_flush_tlb_all();
220}
221
222static inline void ipi_flush_tlb_mm(void *info)
223{
224	struct mm_struct *mm = (struct mm_struct *)info;
225
226	local_flush_tlb_mm(mm);
227}
228
229static void smp_flush_tlb_mm(struct cpumask *cmask, struct mm_struct *mm)
230{
231	unsigned int cpuid;
232
233	if (cpumask_empty(cmask))
234		return;
235
236	cpuid = get_cpu();
237
238	if (cpumask_any_but(cmask, cpuid) >= nr_cpu_ids) {
239		/* local cpu is the only cpu present in cpumask */
240		local_flush_tlb_mm(mm);
241	} else {
242		on_each_cpu_mask(cmask, ipi_flush_tlb_mm, mm, 1);
243	}
244	put_cpu();
245}
246
247struct flush_tlb_data {
248	unsigned long addr1;
249	unsigned long addr2;
250};
251
252static inline void ipi_flush_tlb_page(void *info)
253{
254	struct flush_tlb_data *fd = (struct flush_tlb_data *)info;
255
256	local_flush_tlb_page(NULL, fd->addr1);
257}
258
259static inline void ipi_flush_tlb_range(void *info)
260{
261	struct flush_tlb_data *fd = (struct flush_tlb_data *)info;
262
263	local_flush_tlb_range(NULL, fd->addr1, fd->addr2);
264}
265
266static void smp_flush_tlb_range(struct cpumask *cmask, unsigned long start,
267				unsigned long end)
268{
269	unsigned int cpuid;
270
271	if (cpumask_empty(cmask))
272		return;
273
274	cpuid = get_cpu();
275
276	if (cpumask_any_but(cmask, cpuid) >= nr_cpu_ids) {
277		/* local cpu is the only cpu present in cpumask */
278		if ((end - start) <= PAGE_SIZE)
279			local_flush_tlb_page(NULL, start);
280		else
281			local_flush_tlb_range(NULL, start, end);
282	} else {
283		struct flush_tlb_data fd;
284
285		fd.addr1 = start;
286		fd.addr2 = end;
287
288		if ((end - start) <= PAGE_SIZE)
289			on_each_cpu_mask(cmask, ipi_flush_tlb_page, &fd, 1);
290		else
291			on_each_cpu_mask(cmask, ipi_flush_tlb_range, &fd, 1);
292	}
293	put_cpu();
294}
295
296void flush_tlb_all(void)
297{
298	on_each_cpu(ipi_flush_tlb_all, NULL, 1);
299}
300
301void flush_tlb_mm(struct mm_struct *mm)
302{
303	smp_flush_tlb_mm(mm_cpumask(mm), mm);
304}
305
306void flush_tlb_page(struct vm_area_struct *vma, unsigned long uaddr)
307{
308	smp_flush_tlb_range(mm_cpumask(vma->vm_mm), uaddr, uaddr + PAGE_SIZE);
309}
310
311void flush_tlb_range(struct vm_area_struct *vma,
312		     unsigned long start, unsigned long end)
313{
314	smp_flush_tlb_range(mm_cpumask(vma->vm_mm), start, end);
 
 
315}
316
317/* Instruction cache invalidate - performed on each cpu */
318static void ipi_icache_page_inv(void *arg)
319{
320	struct page *page = arg;
321
322	local_icache_page_inv(page);
323}
324
325void smp_icache_page_inv(struct page *page)
326{
327	on_each_cpu(ipi_icache_page_inv, page, 1);
328}
329EXPORT_SYMBOL(smp_icache_page_inv);