blob: 2bbae07838198912aa4beda231a0f96eaa647bd5 [file] [log] [blame]
Graf Yang6b3087c2009-01-07 23:14:39 +08001/*
Robin Getz96f10502009-09-24 14:11:24 +00002 * IPI management based on arch/arm/kernel/smp.c (Copyright 2002 ARM Limited)
Graf Yang6b3087c2009-01-07 23:14:39 +08003 *
Robin Getz96f10502009-09-24 14:11:24 +00004 * Copyright 2007-2009 Analog Devices Inc.
5 * Philippe Gerum <rpm@xenomai.org>
Graf Yang6b3087c2009-01-07 23:14:39 +08006 *
Robin Getz96f10502009-09-24 14:11:24 +00007 * Licensed under the GPL-2.
Graf Yang6b3087c2009-01-07 23:14:39 +08008 */
9
10#include <linux/module.h>
11#include <linux/delay.h>
12#include <linux/init.h>
13#include <linux/spinlock.h>
14#include <linux/sched.h>
15#include <linux/interrupt.h>
16#include <linux/cache.h>
Bob Liud0014be2011-12-12 11:04:05 +080017#include <linux/clockchips.h>
Graf Yang6b3087c2009-01-07 23:14:39 +080018#include <linux/profile.h>
19#include <linux/errno.h>
20#include <linux/mm.h>
21#include <linux/cpu.h>
22#include <linux/smp.h>
Graf Yang9c199b52009-09-21 11:51:31 +000023#include <linux/cpumask.h>
Graf Yang6b3087c2009-01-07 23:14:39 +080024#include <linux/seq_file.h>
25#include <linux/irq.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090026#include <linux/slab.h>
Arun Sharma600634972011-07-26 16:09:06 -070027#include <linux/atomic.h>
Graf Yang6b3087c2009-01-07 23:14:39 +080028#include <asm/cacheflush.h>
Mike Frysinger6327a572011-04-15 03:06:59 -040029#include <asm/irq_handler.h>
Graf Yang6b3087c2009-01-07 23:14:39 +080030#include <asm/mmu_context.h>
31#include <asm/pgtable.h>
32#include <asm/pgalloc.h>
33#include <asm/processor.h>
34#include <asm/ptrace.h>
35#include <asm/cpu.h>
Graf Yang1fa9be72009-05-15 11:01:59 +000036#include <asm/time.h>
Graf Yang6b3087c2009-01-07 23:14:39 +080037#include <linux/err.h>
38
Graf Yang555487b2009-05-06 10:38:07 +000039/*
40 * Anomaly notes:
41 * 05000120 - we always define corelock as 32-bit integer in L2
42 */
Graf Yang6b3087c2009-01-07 23:14:39 +080043struct corelock_slot corelock __attribute__ ((__section__(".l2.bss")));
44
Sonic Zhangc6345ab2010-08-05 07:49:26 +000045#ifdef CONFIG_ICACHE_FLUSH_L1
46unsigned long blackfin_iflush_l1_entry[NR_CPUS];
47#endif
48
Paul Gortmaker13dff622013-06-18 16:56:21 -040049struct blackfin_initial_pda initial_pda_coreb;
Graf Yang6b3087c2009-01-07 23:14:39 +080050
Steven Miao50888462012-07-31 17:28:10 +080051enum ipi_message_type {
Steven Miao150382a2013-07-09 15:39:53 +080052 BFIN_IPI_NONE,
Steven Miao50888462012-07-31 17:28:10 +080053 BFIN_IPI_TIMER,
54 BFIN_IPI_RESCHEDULE,
55 BFIN_IPI_CALL_FUNC,
56 BFIN_IPI_CALL_FUNC_SINGLE,
57 BFIN_IPI_CPU_STOP,
58};
Graf Yang6b3087c2009-01-07 23:14:39 +080059
60struct blackfin_flush_data {
61 unsigned long start;
62 unsigned long end;
63};
64
65void *secondary_stack;
66
Graf Yang6b3087c2009-01-07 23:14:39 +080067static struct blackfin_flush_data smp_flush_data;
68
69static DEFINE_SPINLOCK(stop_lock);
70
Yi Li73a40062009-12-17 08:20:32 +000071/* A magic number - stress test shows this is safe for common cases */
72#define BFIN_IPI_MSGQ_LEN 5
73
74/* Simple FIFO buffer, overflow leads to panic */
Steven Miao50888462012-07-31 17:28:10 +080075struct ipi_data {
Steven Miao150382a2013-07-09 15:39:53 +080076 atomic_t count;
77 atomic_t bits;
Graf Yang6b3087c2009-01-07 23:14:39 +080078};
79
Steven Miao50888462012-07-31 17:28:10 +080080static DEFINE_PER_CPU(struct ipi_data, bfin_ipi);
Graf Yang6b3087c2009-01-07 23:14:39 +080081
82static void ipi_cpu_stop(unsigned int cpu)
83{
84 spin_lock(&stop_lock);
85 printk(KERN_CRIT "CPU%u: stopping\n", cpu);
86 dump_stack();
87 spin_unlock(&stop_lock);
88
KOSAKI Motohirofecedc802011-04-26 10:57:27 +090089 set_cpu_online(cpu, false);
Graf Yang6b3087c2009-01-07 23:14:39 +080090
91 local_irq_disable();
92
93 while (1)
94 SSYNC();
95}
96
97static void ipi_flush_icache(void *info)
98{
99 struct blackfin_flush_data *fdata = info;
100
101 /* Invalidate the memory holding the bounds of the flushed region. */
Sonic Zhang8d50de92011-04-12 08:16:04 +0000102 blackfin_dcache_invalidate_range((unsigned long)fdata,
103 (unsigned long)fdata + sizeof(*fdata));
Graf Yang6b3087c2009-01-07 23:14:39 +0800104
Sonic Zhang8d50de92011-04-12 08:16:04 +0000105 /* Make sure all write buffers in the data side of the core
106 * are flushed before trying to invalidate the icache. This
107 * needs to be after the data flush and before the icache
108 * flush so that the SSYNC does the right thing in preventing
109 * the instruction prefetcher from hitting things in cached
110 * memory at the wrong time -- it runs much further ahead than
111 * the pipeline.
112 */
113 SSYNC();
114
115 /* ipi_flaush_icache is invoked by generic flush_icache_range,
116 * so call blackfin arch icache flush directly here.
117 */
118 blackfin_icache_flush_range(fdata->start, fdata->end);
Graf Yang6b3087c2009-01-07 23:14:39 +0800119}
120
Yi Li73a40062009-12-17 08:20:32 +0000121/* Use IRQ_SUPPLE_0 to request reschedule.
122 * When returning from interrupt to user space,
123 * there is chance to reschedule */
124static irqreturn_t ipi_handler_int0(int irq, void *dev_instance)
125{
126 unsigned int cpu = smp_processor_id();
127
128 platform_clear_ipi(cpu, IRQ_SUPPLE_0);
129 return IRQ_HANDLED;
130}
131
Bob Liud0014be2011-12-12 11:04:05 +0800132DECLARE_PER_CPU(struct clock_event_device, coretmr_events);
133void ipi_timer(void)
134{
135 int cpu = smp_processor_id();
136 struct clock_event_device *evt = &per_cpu(coretmr_events, cpu);
137 evt->event_handler(evt);
138}
139
Yi Li73a40062009-12-17 08:20:32 +0000140static irqreturn_t ipi_handler_int1(int irq, void *dev_instance)
Graf Yang6b3087c2009-01-07 23:14:39 +0800141{
Steven Miao50888462012-07-31 17:28:10 +0800142 struct ipi_data *bfin_ipi_data;
Graf Yang6b3087c2009-01-07 23:14:39 +0800143 unsigned int cpu = smp_processor_id();
Steven Miao50888462012-07-31 17:28:10 +0800144 unsigned long pending;
145 unsigned long msg;
Graf Yang6b3087c2009-01-07 23:14:39 +0800146
Yi Li73a40062009-12-17 08:20:32 +0000147 platform_clear_ipi(cpu, IRQ_SUPPLE_1);
Graf Yang6b3087c2009-01-07 23:14:39 +0800148
Steven Miao177a48f2013-11-15 15:41:35 +0800149 smp_rmb();
Steven Miao50888462012-07-31 17:28:10 +0800150 bfin_ipi_data = &__get_cpu_var(bfin_ipi);
Steven Miao16fc5bc2013-07-16 13:25:21 +0800151 while ((pending = atomic_xchg(&bfin_ipi_data->bits, 0)) != 0) {
Steven Miao50888462012-07-31 17:28:10 +0800152 msg = 0;
153 do {
154 msg = find_next_bit(&pending, BITS_PER_LONG, msg + 1);
155 switch (msg) {
156 case BFIN_IPI_TIMER:
157 ipi_timer();
158 break;
159 case BFIN_IPI_RESCHEDULE:
160 scheduler_ipi();
161 break;
162 case BFIN_IPI_CALL_FUNC:
163 generic_smp_call_function_interrupt();
164 break;
Steven Miao50888462012-07-31 17:28:10 +0800165 case BFIN_IPI_CALL_FUNC_SINGLE:
166 generic_smp_call_function_single_interrupt();
167 break;
Steven Miao50888462012-07-31 17:28:10 +0800168 case BFIN_IPI_CPU_STOP:
169 ipi_cpu_stop(cpu);
170 break;
Steven Miao177a48f2013-11-15 15:41:35 +0800171 default:
172 goto out;
Steven Miao50888462012-07-31 17:28:10 +0800173 }
Steven Miao150382a2013-07-09 15:39:53 +0800174 atomic_dec(&bfin_ipi_data->count);
Steven Miao50888462012-07-31 17:28:10 +0800175 } while (msg < BITS_PER_LONG);
Steven Miao177a48f2013-11-15 15:41:35 +0800176
Graf Yang6b3087c2009-01-07 23:14:39 +0800177 }
Steven Miao177a48f2013-11-15 15:41:35 +0800178out:
Graf Yang6b3087c2009-01-07 23:14:39 +0800179 return IRQ_HANDLED;
180}
181
Steven Miao50888462012-07-31 17:28:10 +0800182static void bfin_ipi_init(void)
Graf Yang6b3087c2009-01-07 23:14:39 +0800183{
184 unsigned int cpu;
Steven Miao50888462012-07-31 17:28:10 +0800185 struct ipi_data *bfin_ipi_data;
Graf Yang6b3087c2009-01-07 23:14:39 +0800186 for_each_possible_cpu(cpu) {
Steven Miao50888462012-07-31 17:28:10 +0800187 bfin_ipi_data = &per_cpu(bfin_ipi, cpu);
Steven Miao16fc5bc2013-07-16 13:25:21 +0800188 atomic_set(&bfin_ipi_data->bits, 0);
189 atomic_set(&bfin_ipi_data->count, 0);
Graf Yang6b3087c2009-01-07 23:14:39 +0800190 }
191}
192
Steven Miao50888462012-07-31 17:28:10 +0800193void send_ipi(const struct cpumask *cpumask, enum ipi_message_type msg)
Graf Yang6b3087c2009-01-07 23:14:39 +0800194{
195 unsigned int cpu;
Steven Miao50888462012-07-31 17:28:10 +0800196 struct ipi_data *bfin_ipi_data;
197 unsigned long flags;
Graf Yang6b3087c2009-01-07 23:14:39 +0800198
Steven Miao50888462012-07-31 17:28:10 +0800199 local_irq_save(flags);
Steven Miao50888462012-07-31 17:28:10 +0800200 for_each_cpu(cpu, cpumask) {
201 bfin_ipi_data = &per_cpu(bfin_ipi, cpu);
Steven Miao150382a2013-07-09 15:39:53 +0800202 atomic_set_mask((1 << msg), &bfin_ipi_data->bits);
203 atomic_inc(&bfin_ipi_data->count);
Graf Yang6b3087c2009-01-07 23:14:39 +0800204 }
Steven Miao50888462012-07-31 17:28:10 +0800205 local_irq_restore(flags);
Steven Miao177a48f2013-11-15 15:41:35 +0800206 smp_wmb();
207 for_each_cpu(cpu, cpumask)
208 platform_send_ipi_cpu(cpu, IRQ_SUPPLE_1);
Yi Li73a40062009-12-17 08:20:32 +0000209}
210
Steven Miao50888462012-07-31 17:28:10 +0800211void arch_send_call_function_single_ipi(int cpu)
Yi Li73a40062009-12-17 08:20:32 +0000212{
Steven Miao50888462012-07-31 17:28:10 +0800213 send_ipi(cpumask_of(cpu), BFIN_IPI_CALL_FUNC_SINGLE);
Graf Yang6b3087c2009-01-07 23:14:39 +0800214}
Graf Yang6b3087c2009-01-07 23:14:39 +0800215
Steven Miao50888462012-07-31 17:28:10 +0800216void arch_send_call_function_ipi_mask(const struct cpumask *mask)
Graf Yang6b3087c2009-01-07 23:14:39 +0800217{
Steven Miao50888462012-07-31 17:28:10 +0800218 send_ipi(mask, BFIN_IPI_CALL_FUNC);
Graf Yang6b3087c2009-01-07 23:14:39 +0800219}
Graf Yang6b3087c2009-01-07 23:14:39 +0800220
221void smp_send_reschedule(int cpu)
222{
Steven Miao50888462012-07-31 17:28:10 +0800223 send_ipi(cpumask_of(cpu), BFIN_IPI_RESCHEDULE);
Graf Yang6b3087c2009-01-07 23:14:39 +0800224
225 return;
226}
227
Bob Liud0014be2011-12-12 11:04:05 +0800228void smp_send_msg(const struct cpumask *mask, unsigned long type)
229{
Steven Miao50888462012-07-31 17:28:10 +0800230 send_ipi(mask, type);
Bob Liud0014be2011-12-12 11:04:05 +0800231}
232
233void smp_timer_broadcast(const struct cpumask *mask)
234{
235 smp_send_msg(mask, BFIN_IPI_TIMER);
236}
237
Graf Yang6b3087c2009-01-07 23:14:39 +0800238void smp_send_stop(void)
239{
Graf Yang6b3087c2009-01-07 23:14:39 +0800240 cpumask_t callmap;
Graf Yang6b3087c2009-01-07 23:14:39 +0800241
Sonic Zhang567ebfc2010-06-25 05:55:16 +0000242 preempt_disable();
KOSAKI Motohirofecedc802011-04-26 10:57:27 +0900243 cpumask_copy(&callmap, cpu_online_mask);
244 cpumask_clear_cpu(smp_processor_id(), &callmap);
245 if (!cpumask_empty(&callmap))
Steven Miao50888462012-07-31 17:28:10 +0800246 send_ipi(&callmap, BFIN_IPI_CPU_STOP);
Graf Yang6b3087c2009-01-07 23:14:39 +0800247
Sonic Zhang567ebfc2010-06-25 05:55:16 +0000248 preempt_enable();
Graf Yang6b3087c2009-01-07 23:14:39 +0800249
Graf Yang6b3087c2009-01-07 23:14:39 +0800250 return;
251}
252
Paul Gortmaker13dff622013-06-18 16:56:21 -0400253int __cpu_up(unsigned int cpu, struct task_struct *idle)
Graf Yang6b3087c2009-01-07 23:14:39 +0800254{
Graf Yang6b3087c2009-01-07 23:14:39 +0800255 int ret;
Graf Yang0b39db22009-12-28 11:13:51 +0000256
Graf Yang6b3087c2009-01-07 23:14:39 +0800257 secondary_stack = task_stack_page(idle) + THREAD_SIZE;
Graf Yang6b3087c2009-01-07 23:14:39 +0800258
259 ret = platform_boot_secondary(cpu, idle);
260
Graf Yang6b3087c2009-01-07 23:14:39 +0800261 secondary_stack = NULL;
262
263 return ret;
264}
265
Paul Gortmaker13dff622013-06-18 16:56:21 -0400266static void setup_secondary(unsigned int cpu)
Graf Yang6b3087c2009-01-07 23:14:39 +0800267{
Graf Yang6b3087c2009-01-07 23:14:39 +0800268 unsigned long ilat;
269
270 bfin_write_IMASK(0);
271 CSYNC();
272 ilat = bfin_read_ILAT();
273 CSYNC();
274 bfin_write_ILAT(ilat);
275 CSYNC();
276
Graf Yang6b3087c2009-01-07 23:14:39 +0800277 /* Enable interrupt levels IVG7-15. IARs have been already
278 * programmed by the boot CPU. */
Mike Frysinger40059782008-11-18 17:48:22 +0800279 bfin_irq_flags |= IMASK_IVG15 |
Graf Yang6b3087c2009-01-07 23:14:39 +0800280 IMASK_IVG14 | IMASK_IVG13 | IMASK_IVG12 | IMASK_IVG11 |
281 IMASK_IVG10 | IMASK_IVG9 | IMASK_IVG8 | IMASK_IVG7 | IMASK_IVGHW;
Graf Yang6b3087c2009-01-07 23:14:39 +0800282}
283
Paul Gortmaker13dff622013-06-18 16:56:21 -0400284void secondary_start_kernel(void)
Graf Yang6b3087c2009-01-07 23:14:39 +0800285{
286 unsigned int cpu = smp_processor_id();
287 struct mm_struct *mm = &init_mm;
288
289 if (_bfin_swrst & SWRST_DBL_FAULT_B) {
290 printk(KERN_EMERG "CoreB Recovering from DOUBLE FAULT event\n");
291#ifdef CONFIG_DEBUG_DOUBLEFAULT
Mike Frysingerfb1d9be2011-05-29 23:12:51 -0400292 printk(KERN_EMERG " While handling exception (EXCAUSE = %#x) at %pF\n",
293 initial_pda_coreb.seqstat_doublefault & SEQSTAT_EXCAUSE,
294 initial_pda_coreb.retx_doublefault);
295 printk(KERN_NOTICE " DCPLB_FAULT_ADDR: %pF\n",
296 initial_pda_coreb.dcplb_doublefault_addr);
297 printk(KERN_NOTICE " ICPLB_FAULT_ADDR: %pF\n",
298 initial_pda_coreb.icplb_doublefault_addr);
Graf Yang6b3087c2009-01-07 23:14:39 +0800299#endif
300 printk(KERN_NOTICE " The instruction at %pF caused a double exception\n",
Mike Frysingerfb1d9be2011-05-29 23:12:51 -0400301 initial_pda_coreb.retx);
Graf Yang6b3087c2009-01-07 23:14:39 +0800302 }
303
304 /*
305 * We want the D-cache to be enabled early, in case the atomic
306 * support code emulates cache coherence (see
307 * __ARCH_SYNC_CORE_DCACHE).
308 */
309 init_exception_vectors();
310
Graf Yang6b3087c2009-01-07 23:14:39 +0800311 local_irq_disable();
312
313 /* Attach the new idle task to the global mm. */
314 atomic_inc(&mm->mm_users);
315 atomic_inc(&mm->mm_count);
316 current->active_mm = mm;
Graf Yang6b3087c2009-01-07 23:14:39 +0800317
318 preempt_disable();
319
320 setup_secondary(cpu);
321
Yi Li578d36f2009-12-02 07:58:12 +0000322 platform_secondary_init(cpu);
Yi Li0d152c22009-12-28 10:21:49 +0000323 /* setup local core timer */
324 bfin_local_timer_setup();
325
Graf Yang6b3087c2009-01-07 23:14:39 +0800326 local_irq_enable();
327
steven miaoab61d2a2010-09-07 10:08:36 +0000328 bfin_setup_caches(cpu);
329
Bob Liud0014be2011-12-12 11:04:05 +0800330 notify_cpu_starting(cpu);
Yi Li578d36f2009-12-02 07:58:12 +0000331 /*
332 * Calibrate loops per jiffy value.
333 * IRQs need to be enabled here - D-cache can be invalidated
334 * in timer irq handler, so core B can read correct jiffies.
335 */
336 calibrate_delay();
Graf Yang6b3087c2009-01-07 23:14:39 +0800337
Steven Miao150382a2013-07-09 15:39:53 +0800338 /* We are done with local CPU inits, unblock the boot CPU. */
339 set_cpu_online(cpu, true);
Thomas Gleixner25d67f82013-03-21 22:49:41 +0100340 cpu_startup_entry(CPUHP_ONLINE);
Graf Yang6b3087c2009-01-07 23:14:39 +0800341}
342
343void __init smp_prepare_boot_cpu(void)
344{
345}
346
347void __init smp_prepare_cpus(unsigned int max_cpus)
348{
349 platform_prepare_cpus(max_cpus);
Steven Miao50888462012-07-31 17:28:10 +0800350 bfin_ipi_init();
Yi Li73a40062009-12-17 08:20:32 +0000351 platform_request_ipi(IRQ_SUPPLE_0, ipi_handler_int0);
352 platform_request_ipi(IRQ_SUPPLE_1, ipi_handler_int1);
Graf Yang6b3087c2009-01-07 23:14:39 +0800353}
354
355void __init smp_cpus_done(unsigned int max_cpus)
356{
357 unsigned long bogosum = 0;
358 unsigned int cpu;
359
360 for_each_online_cpu(cpu)
Michael Hennerichc70c7542009-07-09 09:58:52 +0000361 bogosum += loops_per_jiffy;
Graf Yang6b3087c2009-01-07 23:14:39 +0800362
363 printk(KERN_INFO "SMP: Total of %d processors activated "
364 "(%lu.%02lu BogoMIPS).\n",
365 num_online_cpus(),
366 bogosum / (500000/HZ),
367 (bogosum / (5000/HZ)) % 100);
368}
369
370void smp_icache_flush_range_others(unsigned long start, unsigned long end)
371{
372 smp_flush_data.start = start;
373 smp_flush_data.end = end;
374
Steven Miaoa2eff9d2011-11-25 14:25:30 +0800375 preempt_disable();
376 if (smp_call_function(&ipi_flush_icache, &smp_flush_data, 1))
Graf Yang6b3087c2009-01-07 23:14:39 +0800377 printk(KERN_WARNING "SMP: failed to run I-cache flush request on other CPUs\n");
Steven Miaoa2eff9d2011-11-25 14:25:30 +0800378 preempt_enable();
Graf Yang6b3087c2009-01-07 23:14:39 +0800379}
380EXPORT_SYMBOL_GPL(smp_icache_flush_range_others);
381
Sonic Zhang47e9ded2009-06-10 08:57:08 +0000382#ifdef __ARCH_SYNC_CORE_ICACHE
Graf Yang718340f2010-02-01 06:07:50 +0000383unsigned long icache_invld_count[NR_CPUS];
Sonic Zhang47e9ded2009-06-10 08:57:08 +0000384void resync_core_icache(void)
385{
386 unsigned int cpu = get_cpu();
387 blackfin_invalidate_entire_icache();
Graf Yang718340f2010-02-01 06:07:50 +0000388 icache_invld_count[cpu]++;
Sonic Zhang47e9ded2009-06-10 08:57:08 +0000389 put_cpu();
390}
391EXPORT_SYMBOL(resync_core_icache);
392#endif
393
Graf Yang6b3087c2009-01-07 23:14:39 +0800394#ifdef __ARCH_SYNC_CORE_DCACHE
Graf Yang718340f2010-02-01 06:07:50 +0000395unsigned long dcache_invld_count[NR_CPUS];
Graf Yang6b3087c2009-01-07 23:14:39 +0800396unsigned long barrier_mask __attribute__ ((__section__(".l2.bss")));
397
398void resync_core_dcache(void)
399{
400 unsigned int cpu = get_cpu();
401 blackfin_invalidate_entire_dcache();
Graf Yang718340f2010-02-01 06:07:50 +0000402 dcache_invld_count[cpu]++;
Graf Yang6b3087c2009-01-07 23:14:39 +0800403 put_cpu();
404}
405EXPORT_SYMBOL(resync_core_dcache);
406#endif
Graf Yang0b39db22009-12-28 11:13:51 +0000407
408#ifdef CONFIG_HOTPLUG_CPU
Paul Gortmaker13dff622013-06-18 16:56:21 -0400409int __cpu_disable(void)
Graf Yang0b39db22009-12-28 11:13:51 +0000410{
411 unsigned int cpu = smp_processor_id();
412
413 if (cpu == 0)
414 return -EPERM;
415
416 set_cpu_online(cpu, false);
417 return 0;
418}
419
420static DECLARE_COMPLETION(cpu_killed);
421
Paul Gortmaker13dff622013-06-18 16:56:21 -0400422int __cpu_die(unsigned int cpu)
Graf Yang0b39db22009-12-28 11:13:51 +0000423{
424 return wait_for_completion_timeout(&cpu_killed, 5000);
425}
426
427void cpu_die(void)
428{
429 complete(&cpu_killed);
430
431 atomic_dec(&init_mm.mm_users);
432 atomic_dec(&init_mm.mm_count);
433
434 local_irq_disable();
435 platform_cpu_die();
436}
437#endif