Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | /* |
| 3 | * linux/arch/alpha/kernel/smp.c |
| 4 | * |
| 5 | * 2001-07-09 Phil Ezolt (Phillip.Ezolt@compaq.com) |
| 6 | * Renamed modified smp_call_function to smp_call_function_on_cpu() |
| 7 | * Created an function that conforms to the old calling convention |
| 8 | * of smp_call_function(). |
| 9 | * |
| 10 | * This is helpful for DCPI. |
| 11 | * |
| 12 | */ |
| 13 | |
| 14 | #include <linux/errno.h> |
| 15 | #include <linux/kernel.h> |
| 16 | #include <linux/kernel_stat.h> |
| 17 | #include <linux/module.h> |
Ingo Molnar | 68e21be | 2017-02-01 19:08:20 +0100 | [diff] [blame] | 18 | #include <linux/sched/mm.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 19 | #include <linux/mm.h> |
Alexey Dobriyan | 4e950f6 | 2007-07-30 02:36:13 +0400 | [diff] [blame] | 20 | #include <linux/err.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 21 | #include <linux/threads.h> |
| 22 | #include <linux/smp.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 | #include <linux/interrupt.h> |
| 24 | #include <linux/init.h> |
| 25 | #include <linux/delay.h> |
| 26 | #include <linux/spinlock.h> |
| 27 | #include <linux/irq.h> |
| 28 | #include <linux/cache.h> |
| 29 | #include <linux/profile.h> |
| 30 | #include <linux/bitops.h> |
Alexey Dobriyan | 574f34c | 2008-10-15 22:01:19 -0700 | [diff] [blame] | 31 | #include <linux/cpu.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | |
| 33 | #include <asm/hwrpb.h> |
| 34 | #include <asm/ptrace.h> |
Arun Sharma | 60063497 | 2011-07-26 16:09:06 -0700 | [diff] [blame] | 35 | #include <linux/atomic.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 36 | |
| 37 | #include <asm/io.h> |
| 38 | #include <asm/irq.h> |
| 39 | #include <asm/pgtable.h> |
| 40 | #include <asm/pgalloc.h> |
| 41 | #include <asm/mmu_context.h> |
| 42 | #include <asm/tlbflush.h> |
| 43 | |
| 44 | #include "proto.h" |
| 45 | #include "irq_impl.h" |
| 46 | |
| 47 | |
| 48 | #define DEBUG_SMP 0 |
| 49 | #if DEBUG_SMP |
| 50 | #define DBGS(args) printk args |
| 51 | #else |
| 52 | #define DBGS(args) |
| 53 | #endif |
| 54 | |
| 55 | /* A collection of per-processor data. */ |
| 56 | struct cpuinfo_alpha cpu_data[NR_CPUS]; |
Al Viro | cff52da | 2006-10-11 17:40:22 +0100 | [diff] [blame] | 57 | EXPORT_SYMBOL(cpu_data); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 58 | |
| 59 | /* A collection of single bit ipi messages. */ |
| 60 | static struct { |
| 61 | unsigned long bits ____cacheline_aligned; |
| 62 | } ipi_data[NR_CPUS] __cacheline_aligned; |
| 63 | |
| 64 | enum ipi_message_type { |
| 65 | IPI_RESCHEDULE, |
| 66 | IPI_CALL_FUNC, |
| 67 | IPI_CPU_STOP, |
| 68 | }; |
| 69 | |
| 70 | /* Set to a secondary's cpuid when it comes online. */ |
Greg Kroah-Hartman | f8d6c8d | 2012-12-21 14:05:55 -0800 | [diff] [blame] | 71 | static int smp_secondary_alive = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 72 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 73 | int smp_num_probed; /* Internal processor count */ |
| 74 | int smp_num_cpus = 1; /* Number that came online. */ |
Al Viro | cff52da | 2006-10-11 17:40:22 +0100 | [diff] [blame] | 75 | EXPORT_SYMBOL(smp_num_cpus); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 76 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 77 | /* |
| 78 | * Called by both boot and secondaries to move global data into |
| 79 | * per-processor storage. |
| 80 | */ |
| 81 | static inline void __init |
| 82 | smp_store_cpu_info(int cpuid) |
| 83 | { |
| 84 | cpu_data[cpuid].loops_per_jiffy = loops_per_jiffy; |
| 85 | cpu_data[cpuid].last_asn = ASN_FIRST_VERSION; |
| 86 | cpu_data[cpuid].need_new_asn = 0; |
| 87 | cpu_data[cpuid].asn_lock = 0; |
| 88 | } |
| 89 | |
| 90 | /* |
| 91 | * Ideally sets up per-cpu profiling hooks. Doesn't do much now... |
| 92 | */ |
| 93 | static inline void __init |
| 94 | smp_setup_percpu_timer(int cpuid) |
| 95 | { |
| 96 | cpu_data[cpuid].prof_counter = 1; |
| 97 | cpu_data[cpuid].prof_multiplier = 1; |
| 98 | } |
| 99 | |
| 100 | static void __init |
| 101 | wait_boot_cpu_to_stop(int cpuid) |
| 102 | { |
| 103 | unsigned long stop = jiffies + 10*HZ; |
| 104 | |
| 105 | while (time_before(jiffies, stop)) { |
| 106 | if (!smp_secondary_alive) |
| 107 | return; |
| 108 | barrier(); |
| 109 | } |
| 110 | |
| 111 | printk("wait_boot_cpu_to_stop: FAILED on CPU %d, hanging now\n", cpuid); |
| 112 | for (;;) |
| 113 | barrier(); |
| 114 | } |
| 115 | |
| 116 | /* |
| 117 | * Where secondaries begin a life of C. |
| 118 | */ |
Matt Turner | 69f0678 | 2017-08-24 08:59:36 -0700 | [diff] [blame] | 119 | void __init |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 120 | smp_callin(void) |
| 121 | { |
| 122 | int cpuid = hard_smp_processor_id(); |
| 123 | |
Rusty Russell | 1371be0 | 2009-02-16 17:31:59 -0600 | [diff] [blame] | 124 | if (cpu_online(cpuid)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 125 | printk("??, cpu 0x%x already present??\n", cpuid); |
| 126 | BUG(); |
| 127 | } |
Rusty Russell | 1371be0 | 2009-02-16 17:31:59 -0600 | [diff] [blame] | 128 | set_cpu_online(cpuid, true); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 129 | |
| 130 | /* Turn on machine checks. */ |
| 131 | wrmces(7); |
| 132 | |
| 133 | /* Set trap vectors. */ |
| 134 | trap_init(); |
| 135 | |
| 136 | /* Set interrupt vector. */ |
| 137 | wrent(entInt, 0); |
| 138 | |
| 139 | /* Get our local ticker going. */ |
| 140 | smp_setup_percpu_timer(cpuid); |
Richard Henderson | a1659d6 | 2013-07-14 10:57:34 -0700 | [diff] [blame] | 141 | init_clockevent(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 142 | |
| 143 | /* Call platform-specific callin, if specified */ |
Richard Henderson | a1659d6 | 2013-07-14 10:57:34 -0700 | [diff] [blame] | 144 | if (alpha_mv.smp_callin) |
| 145 | alpha_mv.smp_callin(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 146 | |
| 147 | /* All kernel threads share the same mm context. */ |
Vegard Nossum | f1f1007 | 2017-02-27 14:30:07 -0800 | [diff] [blame] | 148 | mmgrab(&init_mm); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 149 | current->active_mm = &init_mm; |
| 150 | |
Manfred Spraul | e545a61 | 2008-09-07 16:57:22 +0200 | [diff] [blame] | 151 | /* inform the notifiers about the new cpu */ |
| 152 | notify_cpu_starting(cpuid); |
| 153 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 154 | /* Must have completely accurate bogos. */ |
| 155 | local_irq_enable(); |
| 156 | |
| 157 | /* Wait boot CPU to stop with irq enabled before running |
| 158 | calibrate_delay. */ |
| 159 | wait_boot_cpu_to_stop(cpuid); |
| 160 | mb(); |
| 161 | calibrate_delay(); |
| 162 | |
| 163 | smp_store_cpu_info(cpuid); |
| 164 | /* Allow master to continue only after we written loops_per_jiffy. */ |
| 165 | wmb(); |
| 166 | smp_secondary_alive = 1; |
| 167 | |
| 168 | DBGS(("smp_callin: commencing CPU %d current %p active_mm %p\n", |
| 169 | cpuid, current, current->active_mm)); |
| 170 | |
Frederic Weisbecker | 6a6c027 | 2012-08-23 14:11:25 +0200 | [diff] [blame] | 171 | preempt_disable(); |
Thomas Gleixner | fc6d73d | 2016-02-26 18:43:40 +0000 | [diff] [blame] | 172 | cpu_startup_entry(CPUHP_AP_ONLINE_IDLE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 173 | } |
| 174 | |
| 175 | /* Wait until hwrpb->txrdy is clear for cpu. Return -1 on timeout. */ |
Greg Kroah-Hartman | f8d6c8d | 2012-12-21 14:05:55 -0800 | [diff] [blame] | 176 | static int |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 177 | wait_for_txrdy (unsigned long cpumask) |
| 178 | { |
| 179 | unsigned long timeout; |
| 180 | |
| 181 | if (!(hwrpb->txrdy & cpumask)) |
| 182 | return 0; |
| 183 | |
| 184 | timeout = jiffies + 10*HZ; |
| 185 | while (time_before(jiffies, timeout)) { |
| 186 | if (!(hwrpb->txrdy & cpumask)) |
| 187 | return 0; |
| 188 | udelay(10); |
| 189 | barrier(); |
| 190 | } |
| 191 | |
| 192 | return -1; |
| 193 | } |
| 194 | |
| 195 | /* |
| 196 | * Send a message to a secondary's console. "START" is one such |
| 197 | * interesting message. ;-) |
| 198 | */ |
Paul Gortmaker | ab39c77 | 2013-06-17 15:43:14 -0400 | [diff] [blame] | 199 | static void |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 200 | send_secondary_console_msg(char *str, int cpuid) |
| 201 | { |
| 202 | struct percpu_struct *cpu; |
| 203 | register char *cp1, *cp2; |
| 204 | unsigned long cpumask; |
| 205 | size_t len; |
| 206 | |
| 207 | cpu = (struct percpu_struct *) |
| 208 | ((char*)hwrpb |
| 209 | + hwrpb->processor_offset |
| 210 | + cpuid * hwrpb->processor_size); |
| 211 | |
| 212 | cpumask = (1UL << cpuid); |
| 213 | if (wait_for_txrdy(cpumask)) |
| 214 | goto timeout; |
| 215 | |
| 216 | cp2 = str; |
| 217 | len = strlen(cp2); |
| 218 | *(unsigned int *)&cpu->ipc_buffer[0] = len; |
| 219 | cp1 = (char *) &cpu->ipc_buffer[1]; |
| 220 | memcpy(cp1, cp2, len); |
| 221 | |
| 222 | /* atomic test and set */ |
| 223 | wmb(); |
| 224 | set_bit(cpuid, &hwrpb->rxrdy); |
| 225 | |
| 226 | if (wait_for_txrdy(cpumask)) |
| 227 | goto timeout; |
| 228 | return; |
| 229 | |
| 230 | timeout: |
| 231 | printk("Processor %x not ready\n", cpuid); |
| 232 | } |
| 233 | |
| 234 | /* |
| 235 | * A secondary console wants to send a message. Receive it. |
| 236 | */ |
| 237 | static void |
| 238 | recv_secondary_console_msg(void) |
| 239 | { |
| 240 | int mycpu, i, cnt; |
| 241 | unsigned long txrdy = hwrpb->txrdy; |
| 242 | char *cp1, *cp2, buf[80]; |
| 243 | struct percpu_struct *cpu; |
| 244 | |
| 245 | DBGS(("recv_secondary_console_msg: TXRDY 0x%lx.\n", txrdy)); |
| 246 | |
| 247 | mycpu = hard_smp_processor_id(); |
| 248 | |
| 249 | for (i = 0; i < NR_CPUS; i++) { |
| 250 | if (!(txrdy & (1UL << i))) |
| 251 | continue; |
| 252 | |
| 253 | DBGS(("recv_secondary_console_msg: " |
| 254 | "TXRDY contains CPU %d.\n", i)); |
| 255 | |
| 256 | cpu = (struct percpu_struct *) |
| 257 | ((char*)hwrpb |
| 258 | + hwrpb->processor_offset |
| 259 | + i * hwrpb->processor_size); |
| 260 | |
| 261 | DBGS(("recv_secondary_console_msg: on %d from %d" |
| 262 | " HALT_REASON 0x%lx FLAGS 0x%lx\n", |
| 263 | mycpu, i, cpu->halt_reason, cpu->flags)); |
| 264 | |
| 265 | cnt = cpu->ipc_buffer[0] >> 32; |
| 266 | if (cnt <= 0 || cnt >= 80) |
| 267 | strcpy(buf, "<<< BOGUS MSG >>>"); |
| 268 | else { |
Chen Gang | 91b678c | 2013-05-29 19:04:09 +0800 | [diff] [blame] | 269 | cp1 = (char *) &cpu->ipc_buffer[1]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 270 | cp2 = buf; |
Chen Gang | 00ee030 | 2013-05-29 18:51:28 +0800 | [diff] [blame] | 271 | memcpy(cp2, cp1, cnt); |
| 272 | cp2[cnt] = '\0'; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 273 | |
| 274 | while ((cp2 = strchr(cp2, '\r')) != 0) { |
| 275 | *cp2 = ' '; |
| 276 | if (cp2[1] == '\n') |
| 277 | cp2[1] = ' '; |
| 278 | } |
| 279 | } |
| 280 | |
| 281 | DBGS((KERN_INFO "recv_secondary_console_msg: on %d " |
| 282 | "message is '%s'\n", mycpu, buf)); |
| 283 | } |
| 284 | |
| 285 | hwrpb->txrdy = 0; |
| 286 | } |
| 287 | |
| 288 | /* |
| 289 | * Convince the console to have a secondary cpu begin execution. |
| 290 | */ |
Paul Gortmaker | ab39c77 | 2013-06-17 15:43:14 -0400 | [diff] [blame] | 291 | static int |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 292 | secondary_cpu_start(int cpuid, struct task_struct *idle) |
| 293 | { |
| 294 | struct percpu_struct *cpu; |
| 295 | struct pcb_struct *hwpcb, *ipcb; |
| 296 | unsigned long timeout; |
| 297 | |
| 298 | cpu = (struct percpu_struct *) |
| 299 | ((char*)hwrpb |
| 300 | + hwrpb->processor_offset |
| 301 | + cpuid * hwrpb->processor_size); |
| 302 | hwpcb = (struct pcb_struct *) cpu->hwpcb; |
Al Viro | 37bfbaf | 2006-01-12 01:05:36 -0800 | [diff] [blame] | 303 | ipcb = &task_thread_info(idle)->pcb; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 304 | |
| 305 | /* Initialize the CPU's HWPCB to something just good enough for |
| 306 | us to get started. Immediately after starting, we'll swpctx |
| 307 | to the target idle task's pcb. Reuse the stack in the mean |
| 308 | time. Precalculate the target PCBB. */ |
| 309 | hwpcb->ksp = (unsigned long)ipcb + sizeof(union thread_union) - 16; |
| 310 | hwpcb->usp = 0; |
| 311 | hwpcb->ptbr = ipcb->ptbr; |
| 312 | hwpcb->pcc = 0; |
| 313 | hwpcb->asn = 0; |
| 314 | hwpcb->unique = virt_to_phys(ipcb); |
| 315 | hwpcb->flags = ipcb->flags; |
| 316 | hwpcb->res1 = hwpcb->res2 = 0; |
| 317 | |
| 318 | #if 0 |
| 319 | DBGS(("KSP 0x%lx PTBR 0x%lx VPTBR 0x%lx UNIQUE 0x%lx\n", |
| 320 | hwpcb->ksp, hwpcb->ptbr, hwrpb->vptb, hwpcb->unique)); |
| 321 | #endif |
| 322 | DBGS(("Starting secondary cpu %d: state 0x%lx pal_flags 0x%lx\n", |
| 323 | cpuid, idle->state, ipcb->flags)); |
| 324 | |
| 325 | /* Setup HWRPB fields that SRM uses to activate secondary CPU */ |
| 326 | hwrpb->CPU_restart = __smp_callin; |
| 327 | hwrpb->CPU_restart_data = (unsigned long) __smp_callin; |
| 328 | |
| 329 | /* Recalculate and update the HWRPB checksum */ |
| 330 | hwrpb_update_checksum(hwrpb); |
| 331 | |
| 332 | /* |
| 333 | * Send a "start" command to the specified processor. |
| 334 | */ |
| 335 | |
| 336 | /* SRM III 3.4.1.3 */ |
| 337 | cpu->flags |= 0x22; /* turn on Context Valid and Restart Capable */ |
| 338 | cpu->flags &= ~1; /* turn off Bootstrap In Progress */ |
| 339 | wmb(); |
| 340 | |
| 341 | send_secondary_console_msg("START\r\n", cpuid); |
| 342 | |
| 343 | /* Wait 10 seconds for an ACK from the console. */ |
| 344 | timeout = jiffies + 10*HZ; |
| 345 | while (time_before(jiffies, timeout)) { |
| 346 | if (cpu->flags & 1) |
| 347 | goto started; |
| 348 | udelay(10); |
| 349 | barrier(); |
| 350 | } |
| 351 | printk(KERN_ERR "SMP: Processor %d failed to start.\n", cpuid); |
| 352 | return -1; |
| 353 | |
| 354 | started: |
| 355 | DBGS(("secondary_cpu_start: SUCCESS for CPU %d!!!\n", cpuid)); |
| 356 | return 0; |
| 357 | } |
| 358 | |
| 359 | /* |
| 360 | * Bring one cpu online. |
| 361 | */ |
Paul Gortmaker | ab39c77 | 2013-06-17 15:43:14 -0400 | [diff] [blame] | 362 | static int |
Thomas Gleixner | 2ec9415 | 2012-04-20 13:05:55 +0000 | [diff] [blame] | 363 | smp_boot_one_cpu(int cpuid, struct task_struct *idle) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 364 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 365 | unsigned long timeout; |
| 366 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 367 | /* Signal the secondary to wait a moment. */ |
| 368 | smp_secondary_alive = -1; |
| 369 | |
| 370 | /* Whirrr, whirrr, whirrrrrrrrr... */ |
| 371 | if (secondary_cpu_start(cpuid, idle)) |
| 372 | return -1; |
| 373 | |
| 374 | /* Notify the secondary CPU it can run calibrate_delay. */ |
| 375 | mb(); |
| 376 | smp_secondary_alive = 0; |
| 377 | |
| 378 | /* We've been acked by the console; wait one second for |
| 379 | the task to start up for real. */ |
| 380 | timeout = jiffies + 1*HZ; |
| 381 | while (time_before(jiffies, timeout)) { |
| 382 | if (smp_secondary_alive == 1) |
| 383 | goto alive; |
| 384 | udelay(10); |
| 385 | barrier(); |
| 386 | } |
| 387 | |
| 388 | /* We failed to boot the CPU. */ |
| 389 | |
| 390 | printk(KERN_ERR "SMP: Processor %d is stuck.\n", cpuid); |
| 391 | return -1; |
| 392 | |
| 393 | alive: |
| 394 | /* Another "Red Snapper". */ |
| 395 | return 0; |
| 396 | } |
| 397 | |
| 398 | /* |
| 399 | * Called from setup_arch. Detect an SMP system and which processors |
| 400 | * are present. |
| 401 | */ |
| 402 | void __init |
| 403 | setup_smp(void) |
| 404 | { |
| 405 | struct percpu_struct *cpubase, *cpu; |
| 406 | unsigned long i; |
| 407 | |
| 408 | if (boot_cpuid != 0) { |
| 409 | printk(KERN_WARNING "SMP: Booting off cpu %d instead of 0?\n", |
| 410 | boot_cpuid); |
| 411 | } |
| 412 | |
| 413 | if (hwrpb->nr_processors > 1) { |
| 414 | int boot_cpu_palrev; |
| 415 | |
| 416 | DBGS(("setup_smp: nr_processors %ld\n", |
| 417 | hwrpb->nr_processors)); |
| 418 | |
| 419 | cpubase = (struct percpu_struct *) |
| 420 | ((char*)hwrpb + hwrpb->processor_offset); |
| 421 | boot_cpu_palrev = cpubase->pal_revision; |
| 422 | |
| 423 | for (i = 0; i < hwrpb->nr_processors; i++) { |
| 424 | cpu = (struct percpu_struct *) |
| 425 | ((char *)cpubase + i*hwrpb->processor_size); |
| 426 | if ((cpu->flags & 0x1cc) == 0x1cc) { |
| 427 | smp_num_probed++; |
Rusty Russell | 1371be0 | 2009-02-16 17:31:59 -0600 | [diff] [blame] | 428 | set_cpu_possible(i, true); |
| 429 | set_cpu_present(i, true); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 430 | cpu->pal_revision = boot_cpu_palrev; |
| 431 | } |
| 432 | |
| 433 | DBGS(("setup_smp: CPU %d: flags 0x%lx type 0x%lx\n", |
| 434 | i, cpu->flags, cpu->type)); |
| 435 | DBGS(("setup_smp: CPU %d: PAL rev 0x%lx\n", |
| 436 | i, cpu->pal_revision)); |
| 437 | } |
| 438 | } else { |
| 439 | smp_num_probed = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 440 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 441 | |
Rusty Russell | 5f054e3 | 2012-03-29 15:38:31 +1030 | [diff] [blame] | 442 | printk(KERN_INFO "SMP: %d CPUs probed -- cpu_present_mask = %lx\n", |
KOSAKI Motohiro | 81740fc | 2011-05-24 17:12:56 -0700 | [diff] [blame] | 443 | smp_num_probed, cpumask_bits(cpu_present_mask)[0]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 444 | } |
| 445 | |
| 446 | /* |
| 447 | * Called by smp_init prepare the secondaries |
| 448 | */ |
| 449 | void __init |
| 450 | smp_prepare_cpus(unsigned int max_cpus) |
| 451 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 452 | /* Take care of some initial bookkeeping. */ |
| 453 | memset(ipi_data, 0, sizeof(ipi_data)); |
| 454 | |
| 455 | current_thread_info()->cpu = boot_cpuid; |
| 456 | |
| 457 | smp_store_cpu_info(boot_cpuid); |
| 458 | smp_setup_percpu_timer(boot_cpuid); |
| 459 | |
| 460 | /* Nothing to do on a UP box, or when told not to. */ |
| 461 | if (smp_num_probed == 1 || max_cpus == 0) { |
Rusty Russell | 1371be0 | 2009-02-16 17:31:59 -0600 | [diff] [blame] | 462 | init_cpu_possible(cpumask_of(boot_cpuid)); |
| 463 | init_cpu_present(cpumask_of(boot_cpuid)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 464 | printk(KERN_INFO "SMP mode deactivated.\n"); |
| 465 | return; |
| 466 | } |
| 467 | |
| 468 | printk(KERN_INFO "SMP starting up secondaries.\n"); |
| 469 | |
Ivan Kokshaysky | 328c2a8 | 2006-02-08 11:55:06 +0300 | [diff] [blame] | 470 | smp_num_cpus = smp_num_probed; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 471 | } |
| 472 | |
Greg Kroah-Hartman | f8d6c8d | 2012-12-21 14:05:55 -0800 | [diff] [blame] | 473 | void |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 474 | smp_prepare_boot_cpu(void) |
| 475 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 476 | } |
| 477 | |
Paul Gortmaker | ab39c77 | 2013-06-17 15:43:14 -0400 | [diff] [blame] | 478 | int |
Thomas Gleixner | 8239c25 | 2012-04-20 13:05:42 +0000 | [diff] [blame] | 479 | __cpu_up(unsigned int cpu, struct task_struct *tidle) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 480 | { |
Thomas Gleixner | 2ec9415 | 2012-04-20 13:05:55 +0000 | [diff] [blame] | 481 | smp_boot_one_cpu(cpu, tidle); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 482 | |
| 483 | return cpu_online(cpu) ? 0 : -ENOSYS; |
| 484 | } |
| 485 | |
| 486 | void __init |
| 487 | smp_cpus_done(unsigned int max_cpus) |
| 488 | { |
| 489 | int cpu; |
| 490 | unsigned long bogosum = 0; |
| 491 | |
| 492 | for(cpu = 0; cpu < NR_CPUS; cpu++) |
| 493 | if (cpu_online(cpu)) |
| 494 | bogosum += cpu_data[cpu].loops_per_jiffy; |
| 495 | |
| 496 | printk(KERN_INFO "SMP: Total of %d processors activated " |
| 497 | "(%lu.%02lu BogoMIPS).\n", |
| 498 | num_online_cpus(), |
| 499 | (bogosum + 2500) / (500000/HZ), |
| 500 | ((bogosum + 2500) / (5000/HZ)) % 100); |
| 501 | } |
| 502 | |
Al Viro | ed5f656 | 2007-07-26 17:34:19 +0100 | [diff] [blame] | 503 | int |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 504 | setup_profiling_timer(unsigned int multiplier) |
| 505 | { |
| 506 | return -EINVAL; |
| 507 | } |
| 508 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 509 | static void |
Rusty Russell | 81065e4 | 2009-09-24 09:34:43 -0600 | [diff] [blame] | 510 | send_ipi_message(const struct cpumask *to_whom, enum ipi_message_type operation) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 511 | { |
| 512 | int i; |
| 513 | |
| 514 | mb(); |
Rusty Russell | 81065e4 | 2009-09-24 09:34:43 -0600 | [diff] [blame] | 515 | for_each_cpu(i, to_whom) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 516 | set_bit(operation, &ipi_data[i].bits); |
| 517 | |
| 518 | mb(); |
Rusty Russell | 81065e4 | 2009-09-24 09:34:43 -0600 | [diff] [blame] | 519 | for_each_cpu(i, to_whom) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 520 | wripir(i); |
| 521 | } |
| 522 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 523 | void |
| 524 | handle_ipi(struct pt_regs *regs) |
| 525 | { |
| 526 | int this_cpu = smp_processor_id(); |
| 527 | unsigned long *pending_ipis = &ipi_data[this_cpu].bits; |
| 528 | unsigned long ops; |
| 529 | |
| 530 | #if 0 |
| 531 | DBGS(("handle_ipi: on CPU %d ops 0x%lx PC 0x%lx\n", |
| 532 | this_cpu, *pending_ipis, regs->pc)); |
| 533 | #endif |
| 534 | |
| 535 | mb(); /* Order interrupt and bit testing. */ |
| 536 | while ((ops = xchg(pending_ipis, 0)) != 0) { |
| 537 | mb(); /* Order bit clearing and data access. */ |
| 538 | do { |
| 539 | unsigned long which; |
| 540 | |
| 541 | which = ops & -ops; |
| 542 | ops &= ~which; |
| 543 | which = __ffs(which); |
| 544 | |
| 545 | switch (which) { |
| 546 | case IPI_RESCHEDULE: |
Peter Zijlstra | 184748c | 2011-04-05 17:23:39 +0200 | [diff] [blame] | 547 | scheduler_ipi(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 548 | break; |
| 549 | |
| 550 | case IPI_CALL_FUNC: |
Jens Axboe | c524a1d | 2008-06-10 20:47:29 +0200 | [diff] [blame] | 551 | generic_smp_call_function_interrupt(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 552 | break; |
Jens Axboe | c524a1d | 2008-06-10 20:47:29 +0200 | [diff] [blame] | 553 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 554 | case IPI_CPU_STOP: |
| 555 | halt(); |
| 556 | |
| 557 | default: |
| 558 | printk(KERN_CRIT "Unknown IPI on CPU %d: %lu\n", |
| 559 | this_cpu, which); |
| 560 | break; |
| 561 | } |
| 562 | } while (ops); |
| 563 | |
| 564 | mb(); /* Order data access and bit testing. */ |
| 565 | } |
| 566 | |
| 567 | cpu_data[this_cpu].ipi_count++; |
| 568 | |
| 569 | if (hwrpb->txrdy) |
| 570 | recv_secondary_console_msg(); |
| 571 | } |
| 572 | |
| 573 | void |
| 574 | smp_send_reschedule(int cpu) |
| 575 | { |
| 576 | #ifdef DEBUG_IPI_MSG |
| 577 | if (cpu == hard_smp_processor_id()) |
| 578 | printk(KERN_WARNING |
| 579 | "smp_send_reschedule: Sending IPI to self.\n"); |
| 580 | #endif |
Rusty Russell | 81065e4 | 2009-09-24 09:34:43 -0600 | [diff] [blame] | 581 | send_ipi_message(cpumask_of(cpu), IPI_RESCHEDULE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 582 | } |
| 583 | |
| 584 | void |
| 585 | smp_send_stop(void) |
| 586 | { |
KOSAKI Motohiro | 81740fc | 2011-05-24 17:12:56 -0700 | [diff] [blame] | 587 | cpumask_t to_whom; |
| 588 | cpumask_copy(&to_whom, cpu_possible_mask); |
| 589 | cpumask_clear_cpu(smp_processor_id(), &to_whom); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 590 | #ifdef DEBUG_IPI_MSG |
| 591 | if (hard_smp_processor_id() != boot_cpu_id) |
| 592 | printk(KERN_WARNING "smp_send_stop: Not on boot cpu.\n"); |
| 593 | #endif |
Rusty Russell | 81065e4 | 2009-09-24 09:34:43 -0600 | [diff] [blame] | 594 | send_ipi_message(&to_whom, IPI_CPU_STOP); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 595 | } |
| 596 | |
Rusty Russell | 81065e4 | 2009-09-24 09:34:43 -0600 | [diff] [blame] | 597 | void arch_send_call_function_ipi_mask(const struct cpumask *mask) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 598 | { |
Jens Axboe | c524a1d | 2008-06-10 20:47:29 +0200 | [diff] [blame] | 599 | send_ipi_message(mask, IPI_CALL_FUNC); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 600 | } |
| 601 | |
Jens Axboe | c524a1d | 2008-06-10 20:47:29 +0200 | [diff] [blame] | 602 | void arch_send_call_function_single_ipi(int cpu) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 603 | { |
Jiang Liu | 614aab5 | 2013-12-16 00:36:25 +0800 | [diff] [blame] | 604 | send_ipi_message(cpumask_of(cpu), IPI_CALL_FUNC); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 605 | } |
| 606 | |
| 607 | static void |
| 608 | ipi_imb(void *ignored) |
| 609 | { |
| 610 | imb(); |
| 611 | } |
| 612 | |
| 613 | void |
| 614 | smp_imb(void) |
| 615 | { |
| 616 | /* Must wait other processors to flush their icache before continue. */ |
Nadav Amit | caa7593 | 2019-06-12 23:48:05 -0700 | [diff] [blame^] | 617 | on_each_cpu(ipi_imb, NULL, 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 618 | } |
Al Viro | cff52da | 2006-10-11 17:40:22 +0100 | [diff] [blame] | 619 | EXPORT_SYMBOL(smp_imb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 620 | |
| 621 | static void |
| 622 | ipi_flush_tlb_all(void *ignored) |
| 623 | { |
| 624 | tbia(); |
| 625 | } |
| 626 | |
| 627 | void |
| 628 | flush_tlb_all(void) |
| 629 | { |
| 630 | /* Although we don't have any data to pass, we do want to |
| 631 | synchronize with the other processors. */ |
Nadav Amit | caa7593 | 2019-06-12 23:48:05 -0700 | [diff] [blame^] | 632 | on_each_cpu(ipi_flush_tlb_all, NULL, 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 633 | } |
| 634 | |
| 635 | #define asn_locked() (cpu_data[smp_processor_id()].asn_lock) |
| 636 | |
| 637 | static void |
| 638 | ipi_flush_tlb_mm(void *x) |
| 639 | { |
| 640 | struct mm_struct *mm = (struct mm_struct *) x; |
| 641 | if (mm == current->active_mm && !asn_locked()) |
| 642 | flush_tlb_current(mm); |
| 643 | else |
| 644 | flush_tlb_other(mm); |
| 645 | } |
| 646 | |
| 647 | void |
| 648 | flush_tlb_mm(struct mm_struct *mm) |
| 649 | { |
| 650 | preempt_disable(); |
| 651 | |
| 652 | if (mm == current->active_mm) { |
| 653 | flush_tlb_current(mm); |
| 654 | if (atomic_read(&mm->mm_users) <= 1) { |
| 655 | int cpu, this_cpu = smp_processor_id(); |
| 656 | for (cpu = 0; cpu < NR_CPUS; cpu++) { |
| 657 | if (!cpu_online(cpu) || cpu == this_cpu) |
| 658 | continue; |
| 659 | if (mm->context[cpu]) |
| 660 | mm->context[cpu] = 0; |
| 661 | } |
| 662 | preempt_enable(); |
| 663 | return; |
| 664 | } |
| 665 | } |
| 666 | |
Nadav Amit | caa7593 | 2019-06-12 23:48:05 -0700 | [diff] [blame^] | 667 | smp_call_function(ipi_flush_tlb_mm, mm, 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 668 | |
| 669 | preempt_enable(); |
| 670 | } |
Al Viro | cff52da | 2006-10-11 17:40:22 +0100 | [diff] [blame] | 671 | EXPORT_SYMBOL(flush_tlb_mm); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 672 | |
| 673 | struct flush_tlb_page_struct { |
| 674 | struct vm_area_struct *vma; |
| 675 | struct mm_struct *mm; |
| 676 | unsigned long addr; |
| 677 | }; |
| 678 | |
| 679 | static void |
| 680 | ipi_flush_tlb_page(void *x) |
| 681 | { |
| 682 | struct flush_tlb_page_struct *data = (struct flush_tlb_page_struct *)x; |
| 683 | struct mm_struct * mm = data->mm; |
| 684 | |
| 685 | if (mm == current->active_mm && !asn_locked()) |
| 686 | flush_tlb_current_page(mm, data->vma, data->addr); |
| 687 | else |
| 688 | flush_tlb_other(mm); |
| 689 | } |
| 690 | |
| 691 | void |
| 692 | flush_tlb_page(struct vm_area_struct *vma, unsigned long addr) |
| 693 | { |
| 694 | struct flush_tlb_page_struct data; |
| 695 | struct mm_struct *mm = vma->vm_mm; |
| 696 | |
| 697 | preempt_disable(); |
| 698 | |
| 699 | if (mm == current->active_mm) { |
| 700 | flush_tlb_current_page(mm, vma, addr); |
| 701 | if (atomic_read(&mm->mm_users) <= 1) { |
| 702 | int cpu, this_cpu = smp_processor_id(); |
| 703 | for (cpu = 0; cpu < NR_CPUS; cpu++) { |
| 704 | if (!cpu_online(cpu) || cpu == this_cpu) |
| 705 | continue; |
| 706 | if (mm->context[cpu]) |
| 707 | mm->context[cpu] = 0; |
| 708 | } |
| 709 | preempt_enable(); |
| 710 | return; |
| 711 | } |
| 712 | } |
| 713 | |
| 714 | data.vma = vma; |
| 715 | data.mm = mm; |
| 716 | data.addr = addr; |
| 717 | |
Nadav Amit | caa7593 | 2019-06-12 23:48:05 -0700 | [diff] [blame^] | 718 | smp_call_function(ipi_flush_tlb_page, &data, 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 719 | |
| 720 | preempt_enable(); |
| 721 | } |
Al Viro | cff52da | 2006-10-11 17:40:22 +0100 | [diff] [blame] | 722 | EXPORT_SYMBOL(flush_tlb_page); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 723 | |
| 724 | void |
| 725 | flush_tlb_range(struct vm_area_struct *vma, unsigned long start, unsigned long end) |
| 726 | { |
| 727 | /* On the Alpha we always flush the whole user tlb. */ |
| 728 | flush_tlb_mm(vma->vm_mm); |
| 729 | } |
Al Viro | cff52da | 2006-10-11 17:40:22 +0100 | [diff] [blame] | 730 | EXPORT_SYMBOL(flush_tlb_range); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 731 | |
| 732 | static void |
| 733 | ipi_flush_icache_page(void *x) |
| 734 | { |
| 735 | struct mm_struct *mm = (struct mm_struct *) x; |
| 736 | if (mm == current->active_mm && !asn_locked()) |
| 737 | __load_new_mm_context(mm); |
| 738 | else |
| 739 | flush_tlb_other(mm); |
| 740 | } |
| 741 | |
| 742 | void |
| 743 | flush_icache_user_range(struct vm_area_struct *vma, struct page *page, |
| 744 | unsigned long addr, int len) |
| 745 | { |
| 746 | struct mm_struct *mm = vma->vm_mm; |
| 747 | |
| 748 | if ((vma->vm_flags & VM_EXEC) == 0) |
| 749 | return; |
| 750 | |
| 751 | preempt_disable(); |
| 752 | |
| 753 | if (mm == current->active_mm) { |
| 754 | __load_new_mm_context(mm); |
| 755 | if (atomic_read(&mm->mm_users) <= 1) { |
| 756 | int cpu, this_cpu = smp_processor_id(); |
| 757 | for (cpu = 0; cpu < NR_CPUS; cpu++) { |
| 758 | if (!cpu_online(cpu) || cpu == this_cpu) |
| 759 | continue; |
| 760 | if (mm->context[cpu]) |
| 761 | mm->context[cpu] = 0; |
| 762 | } |
| 763 | preempt_enable(); |
| 764 | return; |
| 765 | } |
| 766 | } |
| 767 | |
Nadav Amit | caa7593 | 2019-06-12 23:48:05 -0700 | [diff] [blame^] | 768 | smp_call_function(ipi_flush_icache_page, mm, 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 769 | |
| 770 | preempt_enable(); |
| 771 | } |