Linux Audio

Check our new training course

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