Konrad Eisele | 8401707 | 2009-08-31 22:08:13 +0000 | [diff] [blame] | 1 | /* leon_smp.c: Sparc-Leon SMP support. |
| 2 | * |
| 3 | * based on sun4m_smp.c |
| 4 | * Copyright (C) 1996 David S. Miller (davem@caip.rutgers.edu) |
| 5 | * Copyright (C) 2009 Daniel Hellstrom (daniel@gaisler.com) Aeroflex Gaisler AB |
| 6 | * Copyright (C) 2009 Konrad Eisele (konrad@gaisler.com) Aeroflex Gaisler AB |
| 7 | */ |
| 8 | |
| 9 | #include <asm/head.h> |
| 10 | |
| 11 | #include <linux/kernel.h> |
| 12 | #include <linux/sched.h> |
| 13 | #include <linux/threads.h> |
| 14 | #include <linux/smp.h> |
Konrad Eisele | 8401707 | 2009-08-31 22:08:13 +0000 | [diff] [blame] | 15 | #include <linux/interrupt.h> |
| 16 | #include <linux/kernel_stat.h> |
Daniel Hellstrom | 1ca0c80 | 2011-05-02 00:08:52 +0000 | [diff] [blame] | 17 | #include <linux/of.h> |
Konrad Eisele | 8401707 | 2009-08-31 22:08:13 +0000 | [diff] [blame] | 18 | #include <linux/init.h> |
| 19 | #include <linux/spinlock.h> |
| 20 | #include <linux/mm.h> |
| 21 | #include <linux/swap.h> |
| 22 | #include <linux/profile.h> |
| 23 | #include <linux/pm.h> |
| 24 | #include <linux/delay.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 25 | #include <linux/gfp.h> |
Tkhai Kirill | 62f0828 | 2012-04-04 21:49:26 +0200 | [diff] [blame] | 26 | #include <linux/cpu.h> |
| 27 | #include <linux/clockchips.h> |
Konrad Eisele | 8401707 | 2009-08-31 22:08:13 +0000 | [diff] [blame] | 28 | |
| 29 | #include <asm/cacheflush.h> |
| 30 | #include <asm/tlbflush.h> |
| 31 | |
| 32 | #include <asm/ptrace.h> |
Arun Sharma | 60063497 | 2011-07-26 16:09:06 -0700 | [diff] [blame] | 33 | #include <linux/atomic.h> |
Konrad Eisele | 8401707 | 2009-08-31 22:08:13 +0000 | [diff] [blame] | 34 | #include <asm/irq_regs.h> |
Daniel Hellstrom | 1ca0c80 | 2011-05-02 00:08:52 +0000 | [diff] [blame] | 35 | #include <asm/traps.h> |
Konrad Eisele | 8401707 | 2009-08-31 22:08:13 +0000 | [diff] [blame] | 36 | |
| 37 | #include <asm/delay.h> |
| 38 | #include <asm/irq.h> |
| 39 | #include <asm/page.h> |
| 40 | #include <asm/pgalloc.h> |
| 41 | #include <asm/pgtable.h> |
| 42 | #include <asm/oplib.h> |
| 43 | #include <asm/cpudata.h> |
| 44 | #include <asm/asi.h> |
| 45 | #include <asm/leon.h> |
| 46 | #include <asm/leon_amba.h> |
Tkhai Kirill | 62f0828 | 2012-04-04 21:49:26 +0200 | [diff] [blame] | 47 | #include <asm/timer.h> |
Konrad Eisele | 8401707 | 2009-08-31 22:08:13 +0000 | [diff] [blame] | 48 | |
Sam Ravnborg | a2a211c | 2011-02-25 22:59:20 -0800 | [diff] [blame] | 49 | #include "kernel.h" |
| 50 | |
Konrad Eisele | 8401707 | 2009-08-31 22:08:13 +0000 | [diff] [blame] | 51 | #include "irq.h" |
| 52 | |
| 53 | extern ctxd_t *srmmu_ctx_table_phys; |
| 54 | static int smp_processors_ready; |
| 55 | extern volatile unsigned long cpu_callin_map[NR_CPUS]; |
Konrad Eisele | 8401707 | 2009-08-31 22:08:13 +0000 | [diff] [blame] | 56 | extern cpumask_t smp_commenced_mask; |
Sam Ravnborg | 080f888 | 2012-05-25 21:20:15 +0000 | [diff] [blame] | 57 | void __cpuinit leon_configure_cache_smp(void); |
Daniel Hellstrom | 1ca0c80 | 2011-05-02 00:08:52 +0000 | [diff] [blame] | 58 | static void leon_ipi_init(void); |
| 59 | |
| 60 | /* IRQ number of LEON IPIs */ |
| 61 | int leon_ipi_irq = LEON3_IRQ_IPI_DEFAULT; |
Konrad Eisele | 8401707 | 2009-08-31 22:08:13 +0000 | [diff] [blame] | 62 | |
| 63 | static inline unsigned long do_swap(volatile unsigned long *ptr, |
| 64 | unsigned long val) |
| 65 | { |
Daniel Hellstrom | 502279a | 2010-10-25 21:23:46 +0000 | [diff] [blame] | 66 | __asm__ __volatile__("swapa [%2] %3, %0\n\t" : "=&r"(val) |
| 67 | : "0"(val), "r"(ptr), "i"(ASI_LEON_DCACHE_MISS) |
Konrad Eisele | 8401707 | 2009-08-31 22:08:13 +0000 | [diff] [blame] | 68 | : "memory"); |
| 69 | return val; |
| 70 | } |
| 71 | |
Sam Ravnborg | f9fd348 | 2013-02-15 15:52:06 +0100 | [diff] [blame] | 72 | void __cpuinit leon_cpu_pre_starting(void *arg) |
| 73 | { |
| 74 | leon_configure_cache_smp(); |
| 75 | } |
| 76 | |
| 77 | void __cpuinit leon_cpu_pre_online(void *arg) |
Konrad Eisele | 8401707 | 2009-08-31 22:08:13 +0000 | [diff] [blame] | 78 | { |
David S. Miller | c68e5d3 | 2012-05-13 23:09:04 -0700 | [diff] [blame] | 79 | int cpuid = hard_smp_processor_id(); |
Konrad Eisele | 8401707 | 2009-08-31 22:08:13 +0000 | [diff] [blame] | 80 | |
Sam Ravnborg | f9fd348 | 2013-02-15 15:52:06 +0100 | [diff] [blame] | 81 | /* Allow master to continue. The master will then give us the |
| 82 | * go-ahead by setting the smp_commenced_mask and will wait without |
| 83 | * timeouts until our setup is completed fully (signified by |
| 84 | * our bit being set in the cpu_online_mask). |
Konrad Eisele | 8401707 | 2009-08-31 22:08:13 +0000 | [diff] [blame] | 85 | */ |
| 86 | do_swap(&cpu_callin_map[cpuid], 1); |
| 87 | |
David S. Miller | 5d83d66 | 2012-05-13 20:49:31 -0700 | [diff] [blame] | 88 | local_ops->cache_all(); |
| 89 | local_ops->tlb_all(); |
Konrad Eisele | 8401707 | 2009-08-31 22:08:13 +0000 | [diff] [blame] | 90 | |
Konrad Eisele | 8401707 | 2009-08-31 22:08:13 +0000 | [diff] [blame] | 91 | /* Fix idle thread fields. */ |
| 92 | __asm__ __volatile__("ld [%0], %%g6\n\t" : : "r"(¤t_set[cpuid]) |
| 93 | : "memory" /* paranoid */); |
| 94 | |
| 95 | /* Attach to the address space of init_task. */ |
| 96 | atomic_inc(&init_mm.mm_count); |
| 97 | current->active_mm = &init_mm; |
| 98 | |
KOSAKI Motohiro | fb1fece | 2011-05-16 13:38:07 -0700 | [diff] [blame] | 99 | while (!cpumask_test_cpu(cpuid, &smp_commenced_mask)) |
Konrad Eisele | 8401707 | 2009-08-31 22:08:13 +0000 | [diff] [blame] | 100 | mb(); |
Konrad Eisele | 8401707 | 2009-08-31 22:08:13 +0000 | [diff] [blame] | 101 | } |
| 102 | |
| 103 | /* |
| 104 | * Cycle through the processors asking the PROM to start each one. |
| 105 | */ |
| 106 | |
| 107 | extern struct linux_prom_registers smp_penguin_ctable; |
| 108 | |
Sam Ravnborg | 080f888 | 2012-05-25 21:20:15 +0000 | [diff] [blame] | 109 | void __cpuinit leon_configure_cache_smp(void) |
Konrad Eisele | 8401707 | 2009-08-31 22:08:13 +0000 | [diff] [blame] | 110 | { |
| 111 | unsigned long cfg = sparc_leon3_get_dcachecfg(); |
| 112 | int me = smp_processor_id(); |
| 113 | |
| 114 | if (ASI_LEON3_SYSCTRL_CFG_SSIZE(cfg) > 4) { |
| 115 | printk(KERN_INFO "Note: SMP with snooping only works on 4k cache, found %dk(0x%x) on cpu %d, disabling caches\n", |
| 116 | (unsigned int)ASI_LEON3_SYSCTRL_CFG_SSIZE(cfg), |
| 117 | (unsigned int)cfg, (unsigned int)me); |
| 118 | sparc_leon3_disable_cache(); |
| 119 | } else { |
| 120 | if (cfg & ASI_LEON3_SYSCTRL_CFG_SNOOPING) { |
| 121 | sparc_leon3_enable_snooping(); |
| 122 | } else { |
| 123 | printk(KERN_INFO "Note: You have to enable snooping in the vhdl model cpu %d, disabling caches\n", |
| 124 | me); |
| 125 | sparc_leon3_disable_cache(); |
| 126 | } |
| 127 | } |
| 128 | |
David S. Miller | 5d83d66 | 2012-05-13 20:49:31 -0700 | [diff] [blame] | 129 | local_ops->cache_all(); |
| 130 | local_ops->tlb_all(); |
Konrad Eisele | 8401707 | 2009-08-31 22:08:13 +0000 | [diff] [blame] | 131 | } |
| 132 | |
| 133 | void leon_smp_setbroadcast(unsigned int mask) |
| 134 | { |
| 135 | int broadcast = |
| 136 | ((LEON3_BYPASS_LOAD_PA(&(leon3_irqctrl_regs->mpstatus)) >> |
| 137 | LEON3_IRQMPSTATUS_BROADCAST) & 1); |
| 138 | if (!broadcast) { |
| 139 | prom_printf("######## !!!! The irqmp-ctrl must have broadcast enabled, smp wont work !!!!! ####### nr cpus: %d\n", |
| 140 | leon_smp_nrcpus()); |
| 141 | if (leon_smp_nrcpus() > 1) { |
| 142 | BUG(); |
| 143 | } else { |
| 144 | prom_printf("continue anyway\n"); |
| 145 | return; |
| 146 | } |
| 147 | } |
| 148 | LEON_BYPASS_STORE_PA(&(leon3_irqctrl_regs->mpbroadcast), mask); |
| 149 | } |
| 150 | |
| 151 | unsigned int leon_smp_getbroadcast(void) |
| 152 | { |
| 153 | unsigned int mask; |
| 154 | mask = LEON_BYPASS_LOAD_PA(&(leon3_irqctrl_regs->mpbroadcast)); |
| 155 | return mask; |
| 156 | } |
| 157 | |
| 158 | int leon_smp_nrcpus(void) |
| 159 | { |
| 160 | int nrcpu = |
| 161 | ((LEON3_BYPASS_LOAD_PA(&(leon3_irqctrl_regs->mpstatus)) >> |
| 162 | LEON3_IRQMPSTATUS_CPUNR) & 0xf) + 1; |
| 163 | return nrcpu; |
| 164 | } |
| 165 | |
| 166 | void __init leon_boot_cpus(void) |
| 167 | { |
| 168 | int nrcpu = leon_smp_nrcpus(); |
| 169 | int me = smp_processor_id(); |
| 170 | |
Daniel Hellstrom | 1ca0c80 | 2011-05-02 00:08:52 +0000 | [diff] [blame] | 171 | /* Setup IPI */ |
| 172 | leon_ipi_init(); |
| 173 | |
Frans Pop | 0da2b30 | 2010-02-12 12:08:51 -0800 | [diff] [blame] | 174 | printk(KERN_INFO "%d:(%d:%d) cpus mpirq at 0x%x\n", (unsigned int)me, |
Konrad Eisele | 8401707 | 2009-08-31 22:08:13 +0000 | [diff] [blame] | 175 | (unsigned int)nrcpu, (unsigned int)NR_CPUS, |
| 176 | (unsigned int)&(leon3_irqctrl_regs->mpstatus)); |
| 177 | |
| 178 | leon_enable_irq_cpu(LEON3_IRQ_CROSS_CALL, me); |
| 179 | leon_enable_irq_cpu(LEON3_IRQ_TICKER, me); |
Daniel Hellstrom | 1ca0c80 | 2011-05-02 00:08:52 +0000 | [diff] [blame] | 180 | leon_enable_irq_cpu(leon_ipi_irq, me); |
Konrad Eisele | 8401707 | 2009-08-31 22:08:13 +0000 | [diff] [blame] | 181 | |
| 182 | leon_smp_setbroadcast(1 << LEON3_IRQ_TICKER); |
| 183 | |
| 184 | leon_configure_cache_smp(); |
David S. Miller | 5d83d66 | 2012-05-13 20:49:31 -0700 | [diff] [blame] | 185 | local_ops->cache_all(); |
Konrad Eisele | 8401707 | 2009-08-31 22:08:13 +0000 | [diff] [blame] | 186 | |
| 187 | } |
| 188 | |
Thomas Gleixner | f0a2bc7 | 2012-04-20 13:05:56 +0000 | [diff] [blame] | 189 | int __cpuinit leon_boot_one_cpu(int i, struct task_struct *idle) |
Konrad Eisele | 8401707 | 2009-08-31 22:08:13 +0000 | [diff] [blame] | 190 | { |
Konrad Eisele | 8401707 | 2009-08-31 22:08:13 +0000 | [diff] [blame] | 191 | int timeout; |
| 192 | |
Thomas Gleixner | f0a2bc7 | 2012-04-20 13:05:56 +0000 | [diff] [blame] | 193 | current_set[i] = task_thread_info(idle); |
Konrad Eisele | 8401707 | 2009-08-31 22:08:13 +0000 | [diff] [blame] | 194 | |
| 195 | /* See trampoline.S:leon_smp_cpu_startup for details... |
| 196 | * Initialize the contexts table |
| 197 | * Since the call to prom_startcpu() trashes the structure, |
| 198 | * we need to re-initialize it for each cpu |
| 199 | */ |
| 200 | smp_penguin_ctable.which_io = 0; |
| 201 | smp_penguin_ctable.phys_addr = (unsigned int)srmmu_ctx_table_phys; |
| 202 | smp_penguin_ctable.reg_size = 0; |
| 203 | |
| 204 | /* whirrr, whirrr, whirrrrrrrrr... */ |
| 205 | printk(KERN_INFO "Starting CPU %d : (irqmp: 0x%x)\n", (unsigned int)i, |
| 206 | (unsigned int)&leon3_irqctrl_regs->mpstatus); |
David S. Miller | 5d83d66 | 2012-05-13 20:49:31 -0700 | [diff] [blame] | 207 | local_ops->cache_all(); |
Konrad Eisele | 8401707 | 2009-08-31 22:08:13 +0000 | [diff] [blame] | 208 | |
Daniel Hellstrom | 970def6 | 2011-04-21 04:20:25 +0000 | [diff] [blame] | 209 | /* Make sure all IRQs are of from the start for this new CPU */ |
| 210 | LEON_BYPASS_STORE_PA(&leon3_irqctrl_regs->mask[i], 0); |
| 211 | |
| 212 | /* Wake one CPU */ |
Konrad Eisele | 8401707 | 2009-08-31 22:08:13 +0000 | [diff] [blame] | 213 | LEON_BYPASS_STORE_PA(&(leon3_irqctrl_regs->mpstatus), 1 << i); |
| 214 | |
| 215 | /* wheee... it's going... */ |
| 216 | for (timeout = 0; timeout < 10000; timeout++) { |
| 217 | if (cpu_callin_map[i]) |
| 218 | break; |
| 219 | udelay(200); |
| 220 | } |
Frans Pop | 0da2b30 | 2010-02-12 12:08:51 -0800 | [diff] [blame] | 221 | printk(KERN_INFO "Started CPU %d\n", (unsigned int)i); |
Konrad Eisele | 8401707 | 2009-08-31 22:08:13 +0000 | [diff] [blame] | 222 | |
| 223 | if (!(cpu_callin_map[i])) { |
| 224 | printk(KERN_ERR "Processor %d is stuck.\n", i); |
| 225 | return -ENODEV; |
| 226 | } else { |
| 227 | leon_enable_irq_cpu(LEON3_IRQ_CROSS_CALL, i); |
| 228 | leon_enable_irq_cpu(LEON3_IRQ_TICKER, i); |
Daniel Hellstrom | 1ca0c80 | 2011-05-02 00:08:52 +0000 | [diff] [blame] | 229 | leon_enable_irq_cpu(leon_ipi_irq, i); |
Konrad Eisele | 8401707 | 2009-08-31 22:08:13 +0000 | [diff] [blame] | 230 | } |
| 231 | |
David S. Miller | 5d83d66 | 2012-05-13 20:49:31 -0700 | [diff] [blame] | 232 | local_ops->cache_all(); |
Konrad Eisele | 8401707 | 2009-08-31 22:08:13 +0000 | [diff] [blame] | 233 | return 0; |
| 234 | } |
| 235 | |
| 236 | void __init leon_smp_done(void) |
| 237 | { |
| 238 | |
| 239 | int i, first; |
| 240 | int *prev; |
| 241 | |
| 242 | /* setup cpu list for irq rotation */ |
| 243 | first = 0; |
| 244 | prev = &first; |
| 245 | for (i = 0; i < NR_CPUS; i++) { |
| 246 | if (cpu_online(i)) { |
| 247 | *prev = i; |
| 248 | prev = &cpu_data(i).next; |
| 249 | } |
| 250 | } |
| 251 | *prev = first; |
David S. Miller | 5d83d66 | 2012-05-13 20:49:31 -0700 | [diff] [blame] | 252 | local_ops->cache_all(); |
Konrad Eisele | 8401707 | 2009-08-31 22:08:13 +0000 | [diff] [blame] | 253 | |
| 254 | /* Free unneeded trap tables */ |
KOSAKI Motohiro | fb1fece | 2011-05-16 13:38:07 -0700 | [diff] [blame] | 255 | if (!cpu_present(1)) { |
Jiang Liu | 70affe4 | 2013-05-07 16:18:08 -0700 | [diff] [blame] | 256 | free_reserved_page(virt_to_page(&trapbase_cpu1)); |
Konrad Eisele | 8401707 | 2009-08-31 22:08:13 +0000 | [diff] [blame] | 257 | num_physpages++; |
| 258 | } |
KOSAKI Motohiro | fb1fece | 2011-05-16 13:38:07 -0700 | [diff] [blame] | 259 | if (!cpu_present(2)) { |
Jiang Liu | 70affe4 | 2013-05-07 16:18:08 -0700 | [diff] [blame] | 260 | free_reserved_page(virt_to_page(&trapbase_cpu2)); |
Konrad Eisele | 8401707 | 2009-08-31 22:08:13 +0000 | [diff] [blame] | 261 | num_physpages++; |
| 262 | } |
KOSAKI Motohiro | fb1fece | 2011-05-16 13:38:07 -0700 | [diff] [blame] | 263 | if (!cpu_present(3)) { |
Jiang Liu | 70affe4 | 2013-05-07 16:18:08 -0700 | [diff] [blame] | 264 | free_reserved_page(virt_to_page(&trapbase_cpu3)); |
Konrad Eisele | 8401707 | 2009-08-31 22:08:13 +0000 | [diff] [blame] | 265 | num_physpages++; |
| 266 | } |
| 267 | /* Ok, they are spinning and ready to go. */ |
| 268 | smp_processors_ready = 1; |
| 269 | |
| 270 | } |
| 271 | |
| 272 | void leon_irq_rotate(int cpu) |
| 273 | { |
| 274 | } |
| 275 | |
Daniel Hellstrom | 1ca0c80 | 2011-05-02 00:08:52 +0000 | [diff] [blame] | 276 | struct leon_ipi_work { |
| 277 | int single; |
| 278 | int msk; |
| 279 | int resched; |
| 280 | }; |
| 281 | |
| 282 | static DEFINE_PER_CPU_SHARED_ALIGNED(struct leon_ipi_work, leon_ipi_work); |
| 283 | |
| 284 | /* Initialize IPIs on the LEON, in order to save IRQ resources only one IRQ |
| 285 | * is used for all three types of IPIs. |
| 286 | */ |
| 287 | static void __init leon_ipi_init(void) |
| 288 | { |
| 289 | int cpu, len; |
| 290 | struct leon_ipi_work *work; |
| 291 | struct property *pp; |
| 292 | struct device_node *rootnp; |
| 293 | struct tt_entry *trap_table; |
| 294 | unsigned long flags; |
| 295 | |
| 296 | /* Find IPI IRQ or stick with default value */ |
| 297 | rootnp = of_find_node_by_path("/ambapp0"); |
| 298 | if (rootnp) { |
| 299 | pp = of_find_property(rootnp, "ipi_num", &len); |
| 300 | if (pp && (*(int *)pp->value)) |
| 301 | leon_ipi_irq = *(int *)pp->value; |
| 302 | } |
| 303 | printk(KERN_INFO "leon: SMP IPIs at IRQ %d\n", leon_ipi_irq); |
| 304 | |
| 305 | /* Adjust so that we jump directly to smpleon_ipi */ |
| 306 | local_irq_save(flags); |
| 307 | trap_table = &sparc_ttable[SP_TRAP_IRQ1 + (leon_ipi_irq - 1)]; |
| 308 | trap_table->inst_three += smpleon_ipi - real_irq_entry; |
David S. Miller | 5d83d66 | 2012-05-13 20:49:31 -0700 | [diff] [blame] | 309 | local_ops->cache_all(); |
Daniel Hellstrom | 1ca0c80 | 2011-05-02 00:08:52 +0000 | [diff] [blame] | 310 | local_irq_restore(flags); |
| 311 | |
| 312 | for_each_possible_cpu(cpu) { |
| 313 | work = &per_cpu(leon_ipi_work, cpu); |
| 314 | work->single = work->msk = work->resched = 0; |
| 315 | } |
| 316 | } |
| 317 | |
Sam Ravnborg | 4ba22b1 | 2012-05-14 15:14:36 +0200 | [diff] [blame] | 318 | static void leon_send_ipi(int cpu, int level) |
| 319 | { |
| 320 | unsigned long mask; |
| 321 | mask = leon_get_irqmask(level); |
| 322 | LEON3_BYPASS_STORE_PA(&leon3_irqctrl_regs->force[cpu], mask); |
| 323 | } |
| 324 | |
Daniel Hellstrom | 1ca0c80 | 2011-05-02 00:08:52 +0000 | [diff] [blame] | 325 | static void leon_ipi_single(int cpu) |
| 326 | { |
| 327 | struct leon_ipi_work *work = &per_cpu(leon_ipi_work, cpu); |
| 328 | |
| 329 | /* Mark work */ |
| 330 | work->single = 1; |
| 331 | |
| 332 | /* Generate IRQ on the CPU */ |
Sam Ravnborg | 4ba22b1 | 2012-05-14 15:14:36 +0200 | [diff] [blame] | 333 | leon_send_ipi(cpu, leon_ipi_irq); |
Daniel Hellstrom | 1ca0c80 | 2011-05-02 00:08:52 +0000 | [diff] [blame] | 334 | } |
| 335 | |
| 336 | static void leon_ipi_mask_one(int cpu) |
| 337 | { |
| 338 | struct leon_ipi_work *work = &per_cpu(leon_ipi_work, cpu); |
| 339 | |
| 340 | /* Mark work */ |
| 341 | work->msk = 1; |
| 342 | |
| 343 | /* Generate IRQ on the CPU */ |
Sam Ravnborg | 4ba22b1 | 2012-05-14 15:14:36 +0200 | [diff] [blame] | 344 | leon_send_ipi(cpu, leon_ipi_irq); |
Daniel Hellstrom | 1ca0c80 | 2011-05-02 00:08:52 +0000 | [diff] [blame] | 345 | } |
| 346 | |
| 347 | static void leon_ipi_resched(int cpu) |
| 348 | { |
| 349 | struct leon_ipi_work *work = &per_cpu(leon_ipi_work, cpu); |
| 350 | |
| 351 | /* Mark work */ |
| 352 | work->resched = 1; |
| 353 | |
| 354 | /* Generate IRQ on the CPU (any IRQ will cause resched) */ |
Sam Ravnborg | 4ba22b1 | 2012-05-14 15:14:36 +0200 | [diff] [blame] | 355 | leon_send_ipi(cpu, leon_ipi_irq); |
Daniel Hellstrom | 1ca0c80 | 2011-05-02 00:08:52 +0000 | [diff] [blame] | 356 | } |
| 357 | |
| 358 | void leonsmp_ipi_interrupt(void) |
| 359 | { |
| 360 | struct leon_ipi_work *work = &__get_cpu_var(leon_ipi_work); |
| 361 | |
| 362 | if (work->single) { |
| 363 | work->single = 0; |
| 364 | smp_call_function_single_interrupt(); |
| 365 | } |
| 366 | if (work->msk) { |
| 367 | work->msk = 0; |
| 368 | smp_call_function_interrupt(); |
| 369 | } |
| 370 | if (work->resched) { |
| 371 | work->resched = 0; |
| 372 | smp_resched_interrupt(); |
| 373 | } |
| 374 | } |
| 375 | |
Konrad Eisele | 8401707 | 2009-08-31 22:08:13 +0000 | [diff] [blame] | 376 | static struct smp_funcall { |
| 377 | smpfunc_t func; |
| 378 | unsigned long arg1; |
| 379 | unsigned long arg2; |
| 380 | unsigned long arg3; |
| 381 | unsigned long arg4; |
| 382 | unsigned long arg5; |
| 383 | unsigned long processors_in[NR_CPUS]; /* Set when ipi entered. */ |
| 384 | unsigned long processors_out[NR_CPUS]; /* Set when ipi exited. */ |
| 385 | } ccall_info; |
| 386 | |
| 387 | static DEFINE_SPINLOCK(cross_call_lock); |
| 388 | |
| 389 | /* Cross calls must be serialized, at least currently. */ |
| 390 | static void leon_cross_call(smpfunc_t func, cpumask_t mask, unsigned long arg1, |
| 391 | unsigned long arg2, unsigned long arg3, |
| 392 | unsigned long arg4) |
| 393 | { |
| 394 | if (smp_processors_ready) { |
| 395 | register int high = NR_CPUS - 1; |
| 396 | unsigned long flags; |
| 397 | |
| 398 | spin_lock_irqsave(&cross_call_lock, flags); |
| 399 | |
| 400 | { |
| 401 | /* If you make changes here, make sure gcc generates proper code... */ |
| 402 | register smpfunc_t f asm("i0") = func; |
| 403 | register unsigned long a1 asm("i1") = arg1; |
| 404 | register unsigned long a2 asm("i2") = arg2; |
| 405 | register unsigned long a3 asm("i3") = arg3; |
| 406 | register unsigned long a4 asm("i4") = arg4; |
| 407 | register unsigned long a5 asm("i5") = 0; |
| 408 | |
| 409 | __asm__ __volatile__("std %0, [%6]\n\t" |
| 410 | "std %2, [%6 + 8]\n\t" |
| 411 | "std %4, [%6 + 16]\n\t" : : |
| 412 | "r"(f), "r"(a1), "r"(a2), "r"(a3), |
| 413 | "r"(a4), "r"(a5), |
| 414 | "r"(&ccall_info.func)); |
| 415 | } |
| 416 | |
| 417 | /* Init receive/complete mapping, plus fire the IPI's off. */ |
| 418 | { |
| 419 | register int i; |
| 420 | |
KOSAKI Motohiro | fb1fece | 2011-05-16 13:38:07 -0700 | [diff] [blame] | 421 | cpumask_clear_cpu(smp_processor_id(), &mask); |
| 422 | cpumask_and(&mask, cpu_online_mask, &mask); |
Konrad Eisele | 8401707 | 2009-08-31 22:08:13 +0000 | [diff] [blame] | 423 | for (i = 0; i <= high; i++) { |
KOSAKI Motohiro | fb1fece | 2011-05-16 13:38:07 -0700 | [diff] [blame] | 424 | if (cpumask_test_cpu(i, &mask)) { |
Konrad Eisele | 8401707 | 2009-08-31 22:08:13 +0000 | [diff] [blame] | 425 | ccall_info.processors_in[i] = 0; |
| 426 | ccall_info.processors_out[i] = 0; |
Sam Ravnborg | 4ba22b1 | 2012-05-14 15:14:36 +0200 | [diff] [blame] | 427 | leon_send_ipi(i, LEON3_IRQ_CROSS_CALL); |
Konrad Eisele | 8401707 | 2009-08-31 22:08:13 +0000 | [diff] [blame] | 428 | |
| 429 | } |
| 430 | } |
| 431 | } |
| 432 | |
| 433 | { |
| 434 | register int i; |
| 435 | |
| 436 | i = 0; |
| 437 | do { |
KOSAKI Motohiro | fb1fece | 2011-05-16 13:38:07 -0700 | [diff] [blame] | 438 | if (!cpumask_test_cpu(i, &mask)) |
Konrad Eisele | 8401707 | 2009-08-31 22:08:13 +0000 | [diff] [blame] | 439 | continue; |
| 440 | |
| 441 | while (!ccall_info.processors_in[i]) |
| 442 | barrier(); |
| 443 | } while (++i <= high); |
| 444 | |
| 445 | i = 0; |
| 446 | do { |
KOSAKI Motohiro | fb1fece | 2011-05-16 13:38:07 -0700 | [diff] [blame] | 447 | if (!cpumask_test_cpu(i, &mask)) |
Konrad Eisele | 8401707 | 2009-08-31 22:08:13 +0000 | [diff] [blame] | 448 | continue; |
| 449 | |
| 450 | while (!ccall_info.processors_out[i]) |
| 451 | barrier(); |
| 452 | } while (++i <= high); |
| 453 | } |
| 454 | |
| 455 | spin_unlock_irqrestore(&cross_call_lock, flags); |
| 456 | } |
| 457 | } |
| 458 | |
| 459 | /* Running cross calls. */ |
| 460 | void leon_cross_call_irq(void) |
| 461 | { |
| 462 | int i = smp_processor_id(); |
| 463 | |
| 464 | ccall_info.processors_in[i] = 1; |
| 465 | ccall_info.func(ccall_info.arg1, ccall_info.arg2, ccall_info.arg3, |
| 466 | ccall_info.arg4, ccall_info.arg5); |
| 467 | ccall_info.processors_out[i] = 1; |
| 468 | } |
| 469 | |
Sam Ravnborg | 4ba22b1 | 2012-05-14 15:14:36 +0200 | [diff] [blame] | 470 | static const struct sparc32_ipi_ops leon_ipi_ops = { |
| 471 | .cross_call = leon_cross_call, |
| 472 | .resched = leon_ipi_resched, |
| 473 | .single = leon_ipi_single, |
| 474 | .mask_one = leon_ipi_mask_one, |
| 475 | }; |
| 476 | |
Konrad Eisele | 8401707 | 2009-08-31 22:08:13 +0000 | [diff] [blame] | 477 | void __init leon_init_smp(void) |
| 478 | { |
| 479 | /* Patch ipi15 trap table */ |
| 480 | t_nmi[1] = t_nmi[1] + (linux_trap_ipi15_leon - linux_trap_ipi15_sun4m); |
| 481 | |
Sam Ravnborg | 4ba22b1 | 2012-05-14 15:14:36 +0200 | [diff] [blame] | 482 | sparc32_ipi_ops = &leon_ipi_ops; |
Konrad Eisele | 8401707 | 2009-08-31 22:08:13 +0000 | [diff] [blame] | 483 | } |