2 * IPI management based on arch/arm/kernel/smp.c (Copyright 2002 ARM Limited)
4 * Copyright 2007-2009 Analog Devices Inc.
5 * Philippe Gerum <rpm@xenomai.org>
7 * Licensed under the GPL-2.
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>
17 #include <linux/clockchips.h>
18 #include <linux/profile.h>
19 #include <linux/errno.h>
21 #include <linux/cpu.h>
22 #include <linux/smp.h>
23 #include <linux/cpumask.h>
24 #include <linux/seq_file.h>
25 #include <linux/irq.h>
26 #include <linux/slab.h>
27 #include <linux/atomic.h>
28 #include <asm/cacheflush.h>
29 #include <asm/irq_handler.h>
30 #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>
37 #include <linux/err.h>
41 * 05000120 - we always define corelock as 32-bit integer in L2
43 struct corelock_slot corelock
__attribute__ ((__section__(".l2.bss")));
45 #ifdef CONFIG_ICACHE_FLUSH_L1
46 unsigned long blackfin_iflush_l1_entry
[NR_CPUS
];
49 struct blackfin_initial_pda initial_pda_coreb
;
51 enum ipi_message_type
{
59 struct blackfin_flush_data
{
64 void *secondary_stack
;
66 static struct blackfin_flush_data smp_flush_data
;
68 static DEFINE_SPINLOCK(stop_lock
);
70 /* A magic number - stress test shows this is safe for common cases */
71 #define BFIN_IPI_MSGQ_LEN 5
73 /* Simple FIFO buffer, overflow leads to panic */
79 static DEFINE_PER_CPU(struct ipi_data
, bfin_ipi
);
81 static void ipi_cpu_stop(unsigned int cpu
)
83 spin_lock(&stop_lock
);
84 printk(KERN_CRIT
"CPU%u: stopping\n", cpu
);
86 spin_unlock(&stop_lock
);
88 set_cpu_online(cpu
, false);
96 static void ipi_flush_icache(void *info
)
98 struct blackfin_flush_data
*fdata
= info
;
100 /* Invalidate the memory holding the bounds of the flushed region. */
101 blackfin_dcache_invalidate_range((unsigned long)fdata
,
102 (unsigned long)fdata
+ sizeof(*fdata
));
104 /* Make sure all write buffers in the data side of the core
105 * are flushed before trying to invalidate the icache. This
106 * needs to be after the data flush and before the icache
107 * flush so that the SSYNC does the right thing in preventing
108 * the instruction prefetcher from hitting things in cached
109 * memory at the wrong time -- it runs much further ahead than
114 /* ipi_flaush_icache is invoked by generic flush_icache_range,
115 * so call blackfin arch icache flush directly here.
117 blackfin_icache_flush_range(fdata
->start
, fdata
->end
);
120 /* Use IRQ_SUPPLE_0 to request reschedule.
121 * When returning from interrupt to user space,
122 * there is chance to reschedule */
123 static irqreturn_t
ipi_handler_int0(int irq
, void *dev_instance
)
125 unsigned int cpu
= smp_processor_id();
127 platform_clear_ipi(cpu
, IRQ_SUPPLE_0
);
131 DECLARE_PER_CPU(struct clock_event_device
, coretmr_events
);
134 int cpu
= smp_processor_id();
135 struct clock_event_device
*evt
= &per_cpu(coretmr_events
, cpu
);
136 evt
->event_handler(evt
);
139 static irqreturn_t
ipi_handler_int1(int irq
, void *dev_instance
)
141 struct ipi_data
*bfin_ipi_data
;
142 unsigned int cpu
= smp_processor_id();
143 unsigned long pending
;
146 platform_clear_ipi(cpu
, IRQ_SUPPLE_1
);
149 bfin_ipi_data
= this_cpu_ptr(&bfin_ipi
);
150 while ((pending
= atomic_xchg(&bfin_ipi_data
->bits
, 0)) != 0) {
153 msg
= find_next_bit(&pending
, BITS_PER_LONG
, msg
+ 1);
158 case BFIN_IPI_RESCHEDULE
:
161 case BFIN_IPI_CALL_FUNC
:
162 generic_smp_call_function_interrupt();
164 case BFIN_IPI_CPU_STOP
:
170 atomic_dec(&bfin_ipi_data
->count
);
171 } while (msg
< BITS_PER_LONG
);
178 static void bfin_ipi_init(void)
181 struct ipi_data
*bfin_ipi_data
;
182 for_each_possible_cpu(cpu
) {
183 bfin_ipi_data
= &per_cpu(bfin_ipi
, cpu
);
184 atomic_set(&bfin_ipi_data
->bits
, 0);
185 atomic_set(&bfin_ipi_data
->count
, 0);
189 void send_ipi(const struct cpumask
*cpumask
, enum ipi_message_type msg
)
192 struct ipi_data
*bfin_ipi_data
;
195 local_irq_save(flags
);
196 for_each_cpu(cpu
, cpumask
) {
197 bfin_ipi_data
= &per_cpu(bfin_ipi
, cpu
);
198 atomic_set_mask((1 << msg
), &bfin_ipi_data
->bits
);
199 atomic_inc(&bfin_ipi_data
->count
);
201 local_irq_restore(flags
);
203 for_each_cpu(cpu
, cpumask
)
204 platform_send_ipi_cpu(cpu
, IRQ_SUPPLE_1
);
207 void arch_send_call_function_single_ipi(int cpu
)
209 send_ipi(cpumask_of(cpu
), BFIN_IPI_CALL_FUNC
);
212 void arch_send_call_function_ipi_mask(const struct cpumask
*mask
)
214 send_ipi(mask
, BFIN_IPI_CALL_FUNC
);
217 void smp_send_reschedule(int cpu
)
219 send_ipi(cpumask_of(cpu
), BFIN_IPI_RESCHEDULE
);
224 void smp_send_msg(const struct cpumask
*mask
, unsigned long type
)
226 send_ipi(mask
, type
);
229 void smp_timer_broadcast(const struct cpumask
*mask
)
231 smp_send_msg(mask
, BFIN_IPI_TIMER
);
234 void smp_send_stop(void)
239 cpumask_copy(&callmap
, cpu_online_mask
);
240 cpumask_clear_cpu(smp_processor_id(), &callmap
);
241 if (!cpumask_empty(&callmap
))
242 send_ipi(&callmap
, BFIN_IPI_CPU_STOP
);
249 int __cpu_up(unsigned int cpu
, struct task_struct
*idle
)
253 secondary_stack
= task_stack_page(idle
) + THREAD_SIZE
;
255 ret
= platform_boot_secondary(cpu
, idle
);
257 secondary_stack
= NULL
;
262 static void setup_secondary(unsigned int cpu
)
268 ilat
= bfin_read_ILAT();
270 bfin_write_ILAT(ilat
);
273 /* Enable interrupt levels IVG7-15. IARs have been already
274 * programmed by the boot CPU. */
275 bfin_irq_flags
|= IMASK_IVG15
|
276 IMASK_IVG14
| IMASK_IVG13
| IMASK_IVG12
| IMASK_IVG11
|
277 IMASK_IVG10
| IMASK_IVG9
| IMASK_IVG8
| IMASK_IVG7
| IMASK_IVGHW
;
280 void secondary_start_kernel(void)
282 unsigned int cpu
= smp_processor_id();
283 struct mm_struct
*mm
= &init_mm
;
285 if (_bfin_swrst
& SWRST_DBL_FAULT_B
) {
286 printk(KERN_EMERG
"CoreB Recovering from DOUBLE FAULT event\n");
287 #ifdef CONFIG_DEBUG_DOUBLEFAULT
288 printk(KERN_EMERG
" While handling exception (EXCAUSE = %#x) at %pF\n",
289 initial_pda_coreb
.seqstat_doublefault
& SEQSTAT_EXCAUSE
,
290 initial_pda_coreb
.retx_doublefault
);
291 printk(KERN_NOTICE
" DCPLB_FAULT_ADDR: %pF\n",
292 initial_pda_coreb
.dcplb_doublefault_addr
);
293 printk(KERN_NOTICE
" ICPLB_FAULT_ADDR: %pF\n",
294 initial_pda_coreb
.icplb_doublefault_addr
);
296 printk(KERN_NOTICE
" The instruction at %pF caused a double exception\n",
297 initial_pda_coreb
.retx
);
301 * We want the D-cache to be enabled early, in case the atomic
302 * support code emulates cache coherence (see
303 * __ARCH_SYNC_CORE_DCACHE).
305 init_exception_vectors();
309 /* Attach the new idle task to the global mm. */
310 atomic_inc(&mm
->mm_users
);
311 atomic_inc(&mm
->mm_count
);
312 current
->active_mm
= mm
;
316 setup_secondary(cpu
);
318 platform_secondary_init(cpu
);
319 /* setup local core timer */
320 bfin_local_timer_setup();
324 bfin_setup_caches(cpu
);
326 notify_cpu_starting(cpu
);
328 * Calibrate loops per jiffy value.
329 * IRQs need to be enabled here - D-cache can be invalidated
330 * in timer irq handler, so core B can read correct jiffies.
334 /* We are done with local CPU inits, unblock the boot CPU. */
335 set_cpu_online(cpu
, true);
336 cpu_startup_entry(CPUHP_ONLINE
);
339 void __init
smp_prepare_boot_cpu(void)
343 void __init
smp_prepare_cpus(unsigned int max_cpus
)
345 platform_prepare_cpus(max_cpus
);
347 platform_request_ipi(IRQ_SUPPLE_0
, ipi_handler_int0
);
348 platform_request_ipi(IRQ_SUPPLE_1
, ipi_handler_int1
);
351 void __init
smp_cpus_done(unsigned int max_cpus
)
353 unsigned long bogosum
= 0;
356 for_each_online_cpu(cpu
)
357 bogosum
+= loops_per_jiffy
;
359 printk(KERN_INFO
"SMP: Total of %d processors activated "
360 "(%lu.%02lu BogoMIPS).\n",
362 bogosum
/ (500000/HZ
),
363 (bogosum
/ (5000/HZ
)) % 100);
366 void smp_icache_flush_range_others(unsigned long start
, unsigned long end
)
368 smp_flush_data
.start
= start
;
369 smp_flush_data
.end
= end
;
372 if (smp_call_function(&ipi_flush_icache
, &smp_flush_data
, 1))
373 printk(KERN_WARNING
"SMP: failed to run I-cache flush request on other CPUs\n");
376 EXPORT_SYMBOL_GPL(smp_icache_flush_range_others
);
378 #ifdef __ARCH_SYNC_CORE_ICACHE
379 unsigned long icache_invld_count
[NR_CPUS
];
380 void resync_core_icache(void)
382 unsigned int cpu
= get_cpu();
383 blackfin_invalidate_entire_icache();
384 icache_invld_count
[cpu
]++;
387 EXPORT_SYMBOL(resync_core_icache
);
390 #ifdef __ARCH_SYNC_CORE_DCACHE
391 unsigned long dcache_invld_count
[NR_CPUS
];
392 unsigned long barrier_mask
__attribute__ ((__section__(".l2.bss")));
394 void resync_core_dcache(void)
396 unsigned int cpu
= get_cpu();
397 blackfin_invalidate_entire_dcache();
398 dcache_invld_count
[cpu
]++;
401 EXPORT_SYMBOL(resync_core_dcache
);
404 #ifdef CONFIG_HOTPLUG_CPU
405 int __cpu_disable(void)
407 unsigned int cpu
= smp_processor_id();
412 set_cpu_online(cpu
, false);
416 static DECLARE_COMPLETION(cpu_killed
);
418 int __cpu_die(unsigned int cpu
)
420 return wait_for_completion_timeout(&cpu_killed
, 5000);
425 complete(&cpu_killed
);
427 atomic_dec(&init_mm
.mm_users
);
428 atomic_dec(&init_mm
.mm_count
);