Graf Yang | 6b3087c | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 1 | /* |
Robin Getz | 96f1050 | 2009-09-24 14:11:24 +0000 | [diff] [blame] | 2 | * IPI management based on arch/arm/kernel/smp.c (Copyright 2002 ARM Limited) |
Graf Yang | 6b3087c | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 3 | * |
Robin Getz | 96f1050 | 2009-09-24 14:11:24 +0000 | [diff] [blame] | 4 | * Copyright 2007-2009 Analog Devices Inc. |
| 5 | * Philippe Gerum <rpm@xenomai.org> |
Graf Yang | 6b3087c | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 6 | * |
Robin Getz | 96f1050 | 2009-09-24 14:11:24 +0000 | [diff] [blame] | 7 | * Licensed under the GPL-2. |
Graf Yang | 6b3087c | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 8 | */ |
| 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 Liu | d0014be | 2011-12-12 11:04:05 +0800 | [diff] [blame] | 17 | #include <linux/clockchips.h> |
Graf Yang | 6b3087c | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 18 | #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 Yang | 9c199b5 | 2009-09-21 11:51:31 +0000 | [diff] [blame] | 23 | #include <linux/cpumask.h> |
Graf Yang | 6b3087c | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 24 | #include <linux/seq_file.h> |
| 25 | #include <linux/irq.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 26 | #include <linux/slab.h> |
Arun Sharma | 60063497 | 2011-07-26 16:09:06 -0700 | [diff] [blame] | 27 | #include <linux/atomic.h> |
Graf Yang | 6b3087c | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 28 | #include <asm/cacheflush.h> |
Mike Frysinger | 6327a57 | 2011-04-15 03:06:59 -0400 | [diff] [blame] | 29 | #include <asm/irq_handler.h> |
Graf Yang | 6b3087c | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 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> |
| 35 | #include <asm/cpu.h> |
Graf Yang | 1fa9be7 | 2009-05-15 11:01:59 +0000 | [diff] [blame] | 36 | #include <asm/time.h> |
Graf Yang | 6b3087c | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 37 | #include <linux/err.h> |
| 38 | |
Graf Yang | 555487b | 2009-05-06 10:38:07 +0000 | [diff] [blame] | 39 | /* |
| 40 | * Anomaly notes: |
| 41 | * 05000120 - we always define corelock as 32-bit integer in L2 |
| 42 | */ |
Graf Yang | 6b3087c | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 43 | struct corelock_slot corelock __attribute__ ((__section__(".l2.bss"))); |
| 44 | |
Sonic Zhang | c6345ab | 2010-08-05 07:49:26 +0000 | [diff] [blame] | 45 | #ifdef CONFIG_ICACHE_FLUSH_L1 |
| 46 | unsigned long blackfin_iflush_l1_entry[NR_CPUS]; |
| 47 | #endif |
| 48 | |
Paul Gortmaker | 13dff62 | 2013-06-18 16:56:21 -0400 | [diff] [blame] | 49 | struct blackfin_initial_pda initial_pda_coreb; |
Graf Yang | 6b3087c | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 50 | |
Steven Miao | 5088846 | 2012-07-31 17:28:10 +0800 | [diff] [blame] | 51 | enum ipi_message_type { |
Steven Miao | 150382a | 2013-07-09 15:39:53 +0800 | [diff] [blame] | 52 | BFIN_IPI_NONE, |
Steven Miao | 5088846 | 2012-07-31 17:28:10 +0800 | [diff] [blame] | 53 | 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 Yang | 6b3087c | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 59 | |
| 60 | struct blackfin_flush_data { |
| 61 | unsigned long start; |
| 62 | unsigned long end; |
| 63 | }; |
| 64 | |
| 65 | void *secondary_stack; |
| 66 | |
Graf Yang | 6b3087c | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 67 | static struct blackfin_flush_data smp_flush_data; |
| 68 | |
| 69 | static DEFINE_SPINLOCK(stop_lock); |
| 70 | |
Yi Li | 73a4006 | 2009-12-17 08:20:32 +0000 | [diff] [blame] | 71 | /* 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 Miao | 5088846 | 2012-07-31 17:28:10 +0800 | [diff] [blame] | 75 | struct ipi_data { |
Steven Miao | 150382a | 2013-07-09 15:39:53 +0800 | [diff] [blame] | 76 | atomic_t count; |
| 77 | atomic_t bits; |
Graf Yang | 6b3087c | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 78 | }; |
| 79 | |
Steven Miao | 5088846 | 2012-07-31 17:28:10 +0800 | [diff] [blame] | 80 | static DEFINE_PER_CPU(struct ipi_data, bfin_ipi); |
Graf Yang | 6b3087c | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 81 | |
| 82 | static 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 Motohiro | fecedc80 | 2011-04-26 10:57:27 +0900 | [diff] [blame] | 89 | set_cpu_online(cpu, false); |
Graf Yang | 6b3087c | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 90 | |
| 91 | local_irq_disable(); |
| 92 | |
| 93 | while (1) |
| 94 | SSYNC(); |
| 95 | } |
| 96 | |
| 97 | static 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 Zhang | 8d50de9 | 2011-04-12 08:16:04 +0000 | [diff] [blame] | 102 | blackfin_dcache_invalidate_range((unsigned long)fdata, |
| 103 | (unsigned long)fdata + sizeof(*fdata)); |
Graf Yang | 6b3087c | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 104 | |
Sonic Zhang | 8d50de9 | 2011-04-12 08:16:04 +0000 | [diff] [blame] | 105 | /* 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 Yang | 6b3087c | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 119 | } |
| 120 | |
Yi Li | 73a4006 | 2009-12-17 08:20:32 +0000 | [diff] [blame] | 121 | /* Use IRQ_SUPPLE_0 to request reschedule. |
| 122 | * When returning from interrupt to user space, |
| 123 | * there is chance to reschedule */ |
| 124 | static 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 Liu | d0014be | 2011-12-12 11:04:05 +0800 | [diff] [blame] | 132 | DECLARE_PER_CPU(struct clock_event_device, coretmr_events); |
| 133 | void 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 Li | 73a4006 | 2009-12-17 08:20:32 +0000 | [diff] [blame] | 140 | static irqreturn_t ipi_handler_int1(int irq, void *dev_instance) |
Graf Yang | 6b3087c | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 141 | { |
Steven Miao | 5088846 | 2012-07-31 17:28:10 +0800 | [diff] [blame] | 142 | struct ipi_data *bfin_ipi_data; |
Graf Yang | 6b3087c | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 143 | unsigned int cpu = smp_processor_id(); |
Steven Miao | 5088846 | 2012-07-31 17:28:10 +0800 | [diff] [blame] | 144 | unsigned long pending; |
| 145 | unsigned long msg; |
Graf Yang | 6b3087c | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 146 | |
Yi Li | 73a4006 | 2009-12-17 08:20:32 +0000 | [diff] [blame] | 147 | platform_clear_ipi(cpu, IRQ_SUPPLE_1); |
Graf Yang | 6b3087c | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 148 | |
Steven Miao | 5088846 | 2012-07-31 17:28:10 +0800 | [diff] [blame] | 149 | bfin_ipi_data = &__get_cpu_var(bfin_ipi); |
Steven Miao | 16fc5bc | 2013-07-16 13:25:21 +0800 | [diff] [blame] | 150 | while ((pending = atomic_xchg(&bfin_ipi_data->bits, 0)) != 0) { |
Steven Miao | 5088846 | 2012-07-31 17:28:10 +0800 | [diff] [blame] | 151 | msg = 0; |
| 152 | do { |
| 153 | msg = find_next_bit(&pending, BITS_PER_LONG, msg + 1); |
| 154 | switch (msg) { |
| 155 | case BFIN_IPI_TIMER: |
| 156 | ipi_timer(); |
| 157 | break; |
| 158 | case BFIN_IPI_RESCHEDULE: |
| 159 | scheduler_ipi(); |
| 160 | break; |
| 161 | case BFIN_IPI_CALL_FUNC: |
| 162 | generic_smp_call_function_interrupt(); |
| 163 | break; |
Yi Li | 73a4006 | 2009-12-17 08:20:32 +0000 | [diff] [blame] | 164 | |
Steven Miao | 5088846 | 2012-07-31 17:28:10 +0800 | [diff] [blame] | 165 | case BFIN_IPI_CALL_FUNC_SINGLE: |
| 166 | generic_smp_call_function_single_interrupt(); |
| 167 | break; |
| 168 | |
| 169 | case BFIN_IPI_CPU_STOP: |
| 170 | ipi_cpu_stop(cpu); |
| 171 | break; |
| 172 | } |
Steven Miao | 150382a | 2013-07-09 15:39:53 +0800 | [diff] [blame] | 173 | atomic_dec(&bfin_ipi_data->count); |
Steven Miao | 5088846 | 2012-07-31 17:28:10 +0800 | [diff] [blame] | 174 | } while (msg < BITS_PER_LONG); |
Graf Yang | 6b3087c | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 175 | } |
Graf Yang | 6b3087c | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 176 | return IRQ_HANDLED; |
| 177 | } |
| 178 | |
Steven Miao | 5088846 | 2012-07-31 17:28:10 +0800 | [diff] [blame] | 179 | static void bfin_ipi_init(void) |
Graf Yang | 6b3087c | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 180 | { |
| 181 | unsigned int cpu; |
Steven Miao | 5088846 | 2012-07-31 17:28:10 +0800 | [diff] [blame] | 182 | struct ipi_data *bfin_ipi_data; |
Graf Yang | 6b3087c | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 183 | for_each_possible_cpu(cpu) { |
Steven Miao | 5088846 | 2012-07-31 17:28:10 +0800 | [diff] [blame] | 184 | bfin_ipi_data = &per_cpu(bfin_ipi, cpu); |
Steven Miao | 16fc5bc | 2013-07-16 13:25:21 +0800 | [diff] [blame] | 185 | atomic_set(&bfin_ipi_data->bits, 0); |
| 186 | atomic_set(&bfin_ipi_data->count, 0); |
Graf Yang | 6b3087c | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 187 | } |
| 188 | } |
| 189 | |
Steven Miao | 5088846 | 2012-07-31 17:28:10 +0800 | [diff] [blame] | 190 | void send_ipi(const struct cpumask *cpumask, enum ipi_message_type msg) |
Graf Yang | 6b3087c | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 191 | { |
| 192 | unsigned int cpu; |
Steven Miao | 5088846 | 2012-07-31 17:28:10 +0800 | [diff] [blame] | 193 | struct ipi_data *bfin_ipi_data; |
| 194 | unsigned long flags; |
Graf Yang | 6b3087c | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 195 | |
Steven Miao | 5088846 | 2012-07-31 17:28:10 +0800 | [diff] [blame] | 196 | local_irq_save(flags); |
Steven Miao | 5088846 | 2012-07-31 17:28:10 +0800 | [diff] [blame] | 197 | for_each_cpu(cpu, cpumask) { |
| 198 | bfin_ipi_data = &per_cpu(bfin_ipi, cpu); |
Steven Miao | 150382a | 2013-07-09 15:39:53 +0800 | [diff] [blame] | 199 | atomic_set_mask((1 << msg), &bfin_ipi_data->bits); |
| 200 | atomic_inc(&bfin_ipi_data->count); |
Yi Li | 73a4006 | 2009-12-17 08:20:32 +0000 | [diff] [blame] | 201 | platform_send_ipi_cpu(cpu, IRQ_SUPPLE_1); |
Graf Yang | 6b3087c | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 202 | } |
Yi Li | 73a4006 | 2009-12-17 08:20:32 +0000 | [diff] [blame] | 203 | |
Steven Miao | 5088846 | 2012-07-31 17:28:10 +0800 | [diff] [blame] | 204 | local_irq_restore(flags); |
Yi Li | 73a4006 | 2009-12-17 08:20:32 +0000 | [diff] [blame] | 205 | } |
| 206 | |
Steven Miao | 5088846 | 2012-07-31 17:28:10 +0800 | [diff] [blame] | 207 | void arch_send_call_function_single_ipi(int cpu) |
Yi Li | 73a4006 | 2009-12-17 08:20:32 +0000 | [diff] [blame] | 208 | { |
Steven Miao | 5088846 | 2012-07-31 17:28:10 +0800 | [diff] [blame] | 209 | send_ipi(cpumask_of(cpu), BFIN_IPI_CALL_FUNC_SINGLE); |
Graf Yang | 6b3087c | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 210 | } |
Graf Yang | 6b3087c | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 211 | |
Steven Miao | 5088846 | 2012-07-31 17:28:10 +0800 | [diff] [blame] | 212 | void arch_send_call_function_ipi_mask(const struct cpumask *mask) |
Graf Yang | 6b3087c | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 213 | { |
Steven Miao | 5088846 | 2012-07-31 17:28:10 +0800 | [diff] [blame] | 214 | send_ipi(mask, BFIN_IPI_CALL_FUNC); |
Graf Yang | 6b3087c | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 215 | } |
Graf Yang | 6b3087c | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 216 | |
| 217 | void smp_send_reschedule(int cpu) |
| 218 | { |
Steven Miao | 5088846 | 2012-07-31 17:28:10 +0800 | [diff] [blame] | 219 | send_ipi(cpumask_of(cpu), BFIN_IPI_RESCHEDULE); |
Graf Yang | 6b3087c | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 220 | |
| 221 | return; |
| 222 | } |
| 223 | |
Bob Liu | d0014be | 2011-12-12 11:04:05 +0800 | [diff] [blame] | 224 | void smp_send_msg(const struct cpumask *mask, unsigned long type) |
| 225 | { |
Steven Miao | 5088846 | 2012-07-31 17:28:10 +0800 | [diff] [blame] | 226 | send_ipi(mask, type); |
Bob Liu | d0014be | 2011-12-12 11:04:05 +0800 | [diff] [blame] | 227 | } |
| 228 | |
| 229 | void smp_timer_broadcast(const struct cpumask *mask) |
| 230 | { |
| 231 | smp_send_msg(mask, BFIN_IPI_TIMER); |
| 232 | } |
| 233 | |
Graf Yang | 6b3087c | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 234 | void smp_send_stop(void) |
| 235 | { |
Graf Yang | 6b3087c | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 236 | cpumask_t callmap; |
Graf Yang | 6b3087c | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 237 | |
Sonic Zhang | 567ebfc | 2010-06-25 05:55:16 +0000 | [diff] [blame] | 238 | preempt_disable(); |
KOSAKI Motohiro | fecedc80 | 2011-04-26 10:57:27 +0900 | [diff] [blame] | 239 | cpumask_copy(&callmap, cpu_online_mask); |
| 240 | cpumask_clear_cpu(smp_processor_id(), &callmap); |
| 241 | if (!cpumask_empty(&callmap)) |
Steven Miao | 5088846 | 2012-07-31 17:28:10 +0800 | [diff] [blame] | 242 | send_ipi(&callmap, BFIN_IPI_CPU_STOP); |
Graf Yang | 6b3087c | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 243 | |
Sonic Zhang | 567ebfc | 2010-06-25 05:55:16 +0000 | [diff] [blame] | 244 | preempt_enable(); |
Graf Yang | 6b3087c | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 245 | |
Graf Yang | 6b3087c | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 246 | return; |
| 247 | } |
| 248 | |
Paul Gortmaker | 13dff62 | 2013-06-18 16:56:21 -0400 | [diff] [blame] | 249 | int __cpu_up(unsigned int cpu, struct task_struct *idle) |
Graf Yang | 6b3087c | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 250 | { |
Graf Yang | 6b3087c | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 251 | int ret; |
Graf Yang | 0b39db2 | 2009-12-28 11:13:51 +0000 | [diff] [blame] | 252 | |
Graf Yang | 6b3087c | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 253 | secondary_stack = task_stack_page(idle) + THREAD_SIZE; |
Graf Yang | 6b3087c | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 254 | |
| 255 | ret = platform_boot_secondary(cpu, idle); |
| 256 | |
Graf Yang | 6b3087c | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 257 | secondary_stack = NULL; |
| 258 | |
| 259 | return ret; |
| 260 | } |
| 261 | |
Paul Gortmaker | 13dff62 | 2013-06-18 16:56:21 -0400 | [diff] [blame] | 262 | static void setup_secondary(unsigned int cpu) |
Graf Yang | 6b3087c | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 263 | { |
Graf Yang | 6b3087c | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 264 | unsigned long ilat; |
| 265 | |
| 266 | bfin_write_IMASK(0); |
| 267 | CSYNC(); |
| 268 | ilat = bfin_read_ILAT(); |
| 269 | CSYNC(); |
| 270 | bfin_write_ILAT(ilat); |
| 271 | CSYNC(); |
| 272 | |
Graf Yang | 6b3087c | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 273 | /* Enable interrupt levels IVG7-15. IARs have been already |
| 274 | * programmed by the boot CPU. */ |
Mike Frysinger | 4005978 | 2008-11-18 17:48:22 +0800 | [diff] [blame] | 275 | bfin_irq_flags |= IMASK_IVG15 | |
Graf Yang | 6b3087c | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 276 | IMASK_IVG14 | IMASK_IVG13 | IMASK_IVG12 | IMASK_IVG11 | |
| 277 | IMASK_IVG10 | IMASK_IVG9 | IMASK_IVG8 | IMASK_IVG7 | IMASK_IVGHW; |
Graf Yang | 6b3087c | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 278 | } |
| 279 | |
Paul Gortmaker | 13dff62 | 2013-06-18 16:56:21 -0400 | [diff] [blame] | 280 | void secondary_start_kernel(void) |
Graf Yang | 6b3087c | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 281 | { |
| 282 | unsigned int cpu = smp_processor_id(); |
| 283 | struct mm_struct *mm = &init_mm; |
| 284 | |
| 285 | if (_bfin_swrst & SWRST_DBL_FAULT_B) { |
| 286 | printk(KERN_EMERG "CoreB Recovering from DOUBLE FAULT event\n"); |
| 287 | #ifdef CONFIG_DEBUG_DOUBLEFAULT |
Mike Frysinger | fb1d9be | 2011-05-29 23:12:51 -0400 | [diff] [blame] | 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); |
Graf Yang | 6b3087c | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 295 | #endif |
| 296 | printk(KERN_NOTICE " The instruction at %pF caused a double exception\n", |
Mike Frysinger | fb1d9be | 2011-05-29 23:12:51 -0400 | [diff] [blame] | 297 | initial_pda_coreb.retx); |
Graf Yang | 6b3087c | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 298 | } |
| 299 | |
| 300 | /* |
| 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). |
| 304 | */ |
| 305 | init_exception_vectors(); |
| 306 | |
Graf Yang | 6b3087c | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 307 | local_irq_disable(); |
| 308 | |
| 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; |
Graf Yang | 6b3087c | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 313 | |
| 314 | preempt_disable(); |
| 315 | |
| 316 | setup_secondary(cpu); |
| 317 | |
Yi Li | 578d36f | 2009-12-02 07:58:12 +0000 | [diff] [blame] | 318 | platform_secondary_init(cpu); |
Yi Li | 0d152c2 | 2009-12-28 10:21:49 +0000 | [diff] [blame] | 319 | /* setup local core timer */ |
| 320 | bfin_local_timer_setup(); |
| 321 | |
Graf Yang | 6b3087c | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 322 | local_irq_enable(); |
| 323 | |
steven miao | ab61d2a | 2010-09-07 10:08:36 +0000 | [diff] [blame] | 324 | bfin_setup_caches(cpu); |
| 325 | |
Bob Liu | d0014be | 2011-12-12 11:04:05 +0800 | [diff] [blame] | 326 | notify_cpu_starting(cpu); |
Yi Li | 578d36f | 2009-12-02 07:58:12 +0000 | [diff] [blame] | 327 | /* |
| 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. |
| 331 | */ |
| 332 | calibrate_delay(); |
Graf Yang | 6b3087c | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 333 | |
Steven Miao | 150382a | 2013-07-09 15:39:53 +0800 | [diff] [blame] | 334 | /* We are done with local CPU inits, unblock the boot CPU. */ |
| 335 | set_cpu_online(cpu, true); |
Thomas Gleixner | 25d67f8 | 2013-03-21 22:49:41 +0100 | [diff] [blame] | 336 | cpu_startup_entry(CPUHP_ONLINE); |
Graf Yang | 6b3087c | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 337 | } |
| 338 | |
| 339 | void __init smp_prepare_boot_cpu(void) |
| 340 | { |
| 341 | } |
| 342 | |
| 343 | void __init smp_prepare_cpus(unsigned int max_cpus) |
| 344 | { |
| 345 | platform_prepare_cpus(max_cpus); |
Steven Miao | 5088846 | 2012-07-31 17:28:10 +0800 | [diff] [blame] | 346 | bfin_ipi_init(); |
Yi Li | 73a4006 | 2009-12-17 08:20:32 +0000 | [diff] [blame] | 347 | platform_request_ipi(IRQ_SUPPLE_0, ipi_handler_int0); |
| 348 | platform_request_ipi(IRQ_SUPPLE_1, ipi_handler_int1); |
Graf Yang | 6b3087c | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 349 | } |
| 350 | |
| 351 | void __init smp_cpus_done(unsigned int max_cpus) |
| 352 | { |
| 353 | unsigned long bogosum = 0; |
| 354 | unsigned int cpu; |
| 355 | |
| 356 | for_each_online_cpu(cpu) |
Michael Hennerich | c70c754 | 2009-07-09 09:58:52 +0000 | [diff] [blame] | 357 | bogosum += loops_per_jiffy; |
Graf Yang | 6b3087c | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 358 | |
| 359 | printk(KERN_INFO "SMP: Total of %d processors activated " |
| 360 | "(%lu.%02lu BogoMIPS).\n", |
| 361 | num_online_cpus(), |
| 362 | bogosum / (500000/HZ), |
| 363 | (bogosum / (5000/HZ)) % 100); |
| 364 | } |
| 365 | |
| 366 | void smp_icache_flush_range_others(unsigned long start, unsigned long end) |
| 367 | { |
| 368 | smp_flush_data.start = start; |
| 369 | smp_flush_data.end = end; |
| 370 | |
Steven Miao | a2eff9d | 2011-11-25 14:25:30 +0800 | [diff] [blame] | 371 | preempt_disable(); |
| 372 | if (smp_call_function(&ipi_flush_icache, &smp_flush_data, 1)) |
Graf Yang | 6b3087c | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 373 | printk(KERN_WARNING "SMP: failed to run I-cache flush request on other CPUs\n"); |
Steven Miao | a2eff9d | 2011-11-25 14:25:30 +0800 | [diff] [blame] | 374 | preempt_enable(); |
Graf Yang | 6b3087c | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 375 | } |
| 376 | EXPORT_SYMBOL_GPL(smp_icache_flush_range_others); |
| 377 | |
Sonic Zhang | 47e9ded | 2009-06-10 08:57:08 +0000 | [diff] [blame] | 378 | #ifdef __ARCH_SYNC_CORE_ICACHE |
Graf Yang | 718340f | 2010-02-01 06:07:50 +0000 | [diff] [blame] | 379 | unsigned long icache_invld_count[NR_CPUS]; |
Sonic Zhang | 47e9ded | 2009-06-10 08:57:08 +0000 | [diff] [blame] | 380 | void resync_core_icache(void) |
| 381 | { |
| 382 | unsigned int cpu = get_cpu(); |
| 383 | blackfin_invalidate_entire_icache(); |
Graf Yang | 718340f | 2010-02-01 06:07:50 +0000 | [diff] [blame] | 384 | icache_invld_count[cpu]++; |
Sonic Zhang | 47e9ded | 2009-06-10 08:57:08 +0000 | [diff] [blame] | 385 | put_cpu(); |
| 386 | } |
| 387 | EXPORT_SYMBOL(resync_core_icache); |
| 388 | #endif |
| 389 | |
Graf Yang | 6b3087c | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 390 | #ifdef __ARCH_SYNC_CORE_DCACHE |
Graf Yang | 718340f | 2010-02-01 06:07:50 +0000 | [diff] [blame] | 391 | unsigned long dcache_invld_count[NR_CPUS]; |
Graf Yang | 6b3087c | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 392 | unsigned long barrier_mask __attribute__ ((__section__(".l2.bss"))); |
| 393 | |
| 394 | void resync_core_dcache(void) |
| 395 | { |
| 396 | unsigned int cpu = get_cpu(); |
| 397 | blackfin_invalidate_entire_dcache(); |
Graf Yang | 718340f | 2010-02-01 06:07:50 +0000 | [diff] [blame] | 398 | dcache_invld_count[cpu]++; |
Graf Yang | 6b3087c | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 399 | put_cpu(); |
| 400 | } |
| 401 | EXPORT_SYMBOL(resync_core_dcache); |
| 402 | #endif |
Graf Yang | 0b39db2 | 2009-12-28 11:13:51 +0000 | [diff] [blame] | 403 | |
| 404 | #ifdef CONFIG_HOTPLUG_CPU |
Paul Gortmaker | 13dff62 | 2013-06-18 16:56:21 -0400 | [diff] [blame] | 405 | int __cpu_disable(void) |
Graf Yang | 0b39db2 | 2009-12-28 11:13:51 +0000 | [diff] [blame] | 406 | { |
| 407 | unsigned int cpu = smp_processor_id(); |
| 408 | |
| 409 | if (cpu == 0) |
| 410 | return -EPERM; |
| 411 | |
| 412 | set_cpu_online(cpu, false); |
| 413 | return 0; |
| 414 | } |
| 415 | |
| 416 | static DECLARE_COMPLETION(cpu_killed); |
| 417 | |
Paul Gortmaker | 13dff62 | 2013-06-18 16:56:21 -0400 | [diff] [blame] | 418 | int __cpu_die(unsigned int cpu) |
Graf Yang | 0b39db2 | 2009-12-28 11:13:51 +0000 | [diff] [blame] | 419 | { |
| 420 | return wait_for_completion_timeout(&cpu_killed, 5000); |
| 421 | } |
| 422 | |
| 423 | void cpu_die(void) |
| 424 | { |
| 425 | complete(&cpu_killed); |
| 426 | |
| 427 | atomic_dec(&init_mm.mm_users); |
| 428 | atomic_dec(&init_mm.mm_count); |
| 429 | |
| 430 | local_irq_disable(); |
| 431 | platform_cpu_die(); |
| 432 | } |
| 433 | #endif |