1 /* 2 * This file is subject to the terms and conditions of the GNU General Public 3 * License. See the file "COPYING" in the main directory of this archive 4 * for more details. 5 * 6 * Copyright (C) 2004-2008, 2009, 2010 Cavium Networks 7 */ 8 #include <linux/cpu.h> 9 #include <linux/delay.h> 10 #include <linux/smp.h> 11 #include <linux/interrupt.h> 12 #include <linux/kernel_stat.h> 13 #include <linux/sched.h> 14 #include <linux/sched/hotplug.h> 15 #include <linux/sched/task_stack.h> 16 #include <linux/init.h> 17 #include <linux/export.h> 18 19 #include <asm/mmu_context.h> 20 #include <asm/time.h> 21 #include <asm/setup.h> 22 23 #include <asm/octeon/octeon.h> 24 25 #include "octeon_boot.h" 26 27 volatile unsigned long octeon_processor_boot = 0xff; 28 volatile unsigned long octeon_processor_sp; 29 volatile unsigned long octeon_processor_gp; 30 #ifdef CONFIG_RELOCATABLE 31 volatile unsigned long octeon_processor_relocated_kernel_entry; 32 #endif /* CONFIG_RELOCATABLE */ 33 34 #ifdef CONFIG_HOTPLUG_CPU 35 uint64_t octeon_bootloader_entry_addr; 36 EXPORT_SYMBOL(octeon_bootloader_entry_addr); 37 #endif 38 39 extern void kernel_entry(unsigned long arg1, ...); 40 41 static void octeon_icache_flush(void) 42 { 43 asm volatile ("synci 0($0)\n"); 44 } 45 46 static void (*octeon_message_functions[8])(void) = { 47 scheduler_ipi, 48 generic_smp_call_function_interrupt, 49 octeon_icache_flush, 50 }; 51 52 static irqreturn_t mailbox_interrupt(int irq, void *dev_id) 53 { 54 u64 mbox_clrx = CVMX_CIU_MBOX_CLRX(cvmx_get_core_num()); 55 u64 action; 56 int i; 57 58 /* 59 * Make sure the function array initialization remains 60 * correct. 61 */ 62 BUILD_BUG_ON(SMP_RESCHEDULE_YOURSELF != (1 << 0)); 63 BUILD_BUG_ON(SMP_CALL_FUNCTION != (1 << 1)); 64 BUILD_BUG_ON(SMP_ICACHE_FLUSH != (1 << 2)); 65 66 /* 67 * Load the mailbox register to figure out what we're supposed 68 * to do. 69 */ 70 action = cvmx_read_csr(mbox_clrx); 71 72 if (OCTEON_IS_MODEL(OCTEON_CN68XX)) 73 action &= 0xff; 74 else 75 action &= 0xffff; 76 77 /* Clear the mailbox to clear the interrupt */ 78 cvmx_write_csr(mbox_clrx, action); 79 80 for (i = 0; i < ARRAY_SIZE(octeon_message_functions) && action;) { 81 if (action & 1) { 82 void (*fn)(void) = octeon_message_functions[i]; 83 84 if (fn) 85 fn(); 86 } 87 action >>= 1; 88 i++; 89 } 90 return IRQ_HANDLED; 91 } 92 93 /** 94 * Cause the function described by call_data to be executed on the passed 95 * cpu. When the function has finished, increment the finished field of 96 * call_data. 97 */ 98 void octeon_send_ipi_single(int cpu, unsigned int action) 99 { 100 int coreid = cpu_logical_map(cpu); 101 /* 102 pr_info("SMP: Mailbox send cpu=%d, coreid=%d, action=%u\n", cpu, 103 coreid, action); 104 */ 105 cvmx_write_csr(CVMX_CIU_MBOX_SETX(coreid), action); 106 } 107 108 static inline void octeon_send_ipi_mask(const struct cpumask *mask, 109 unsigned int action) 110 { 111 unsigned int i; 112 113 for_each_cpu(i, mask) 114 octeon_send_ipi_single(i, action); 115 } 116 117 /** 118 * Detect available CPUs, populate cpu_possible_mask 119 */ 120 static void octeon_smp_hotplug_setup(void) 121 { 122 #ifdef CONFIG_HOTPLUG_CPU 123 struct linux_app_boot_info *labi; 124 125 if (!setup_max_cpus) 126 return; 127 128 labi = (struct linux_app_boot_info *)PHYS_TO_XKSEG_CACHED(LABI_ADDR_IN_BOOTLOADER); 129 if (labi->labi_signature != LABI_SIGNATURE) { 130 pr_info("The bootloader on this board does not support HOTPLUG_CPU."); 131 return; 132 } 133 134 octeon_bootloader_entry_addr = labi->InitTLBStart_addr; 135 #endif 136 } 137 138 static void __init octeon_smp_setup(void) 139 { 140 const int coreid = cvmx_get_core_num(); 141 int cpus; 142 int id; 143 struct cvmx_sysinfo *sysinfo = cvmx_sysinfo_get(); 144 145 #ifdef CONFIG_HOTPLUG_CPU 146 int core_mask = octeon_get_boot_coremask(); 147 unsigned int num_cores = cvmx_octeon_num_cores(); 148 #endif 149 150 /* The present CPUs are initially just the boot cpu (CPU 0). */ 151 for (id = 0; id < NR_CPUS; id++) { 152 set_cpu_possible(id, id == 0); 153 set_cpu_present(id, id == 0); 154 } 155 156 __cpu_number_map[coreid] = 0; 157 __cpu_logical_map[0] = coreid; 158 159 /* The present CPUs get the lowest CPU numbers. */ 160 cpus = 1; 161 for (id = 0; id < NR_CPUS; id++) { 162 if ((id != coreid) && cvmx_coremask_is_core_set(&sysinfo->core_mask, id)) { 163 set_cpu_possible(cpus, true); 164 set_cpu_present(cpus, true); 165 __cpu_number_map[id] = cpus; 166 __cpu_logical_map[cpus] = id; 167 cpus++; 168 } 169 } 170 171 #ifdef CONFIG_HOTPLUG_CPU 172 /* 173 * The possible CPUs are all those present on the chip. We 174 * will assign CPU numbers for possible cores as well. Cores 175 * are always consecutively numberd from 0. 176 */ 177 for (id = 0; setup_max_cpus && octeon_bootloader_entry_addr && 178 id < num_cores && id < NR_CPUS; id++) { 179 if (!(core_mask & (1 << id))) { 180 set_cpu_possible(cpus, true); 181 __cpu_number_map[id] = cpus; 182 __cpu_logical_map[cpus] = id; 183 cpus++; 184 } 185 } 186 #endif 187 188 octeon_smp_hotplug_setup(); 189 } 190 191 192 #ifdef CONFIG_RELOCATABLE 193 int plat_post_relocation(long offset) 194 { 195 unsigned long entry = (unsigned long)kernel_entry; 196 197 /* Send secondaries into relocated kernel */ 198 octeon_processor_relocated_kernel_entry = entry + offset; 199 200 return 0; 201 } 202 #endif /* CONFIG_RELOCATABLE */ 203 204 /** 205 * Firmware CPU startup hook 206 * 207 */ 208 static void octeon_boot_secondary(int cpu, struct task_struct *idle) 209 { 210 int count; 211 212 pr_info("SMP: Booting CPU%02d (CoreId %2d)...\n", cpu, 213 cpu_logical_map(cpu)); 214 215 octeon_processor_sp = __KSTK_TOS(idle); 216 octeon_processor_gp = (unsigned long)(task_thread_info(idle)); 217 octeon_processor_boot = cpu_logical_map(cpu); 218 mb(); 219 220 count = 10000; 221 while (octeon_processor_sp && count) { 222 /* Waiting for processor to get the SP and GP */ 223 udelay(1); 224 count--; 225 } 226 if (count == 0) 227 pr_err("Secondary boot timeout\n"); 228 } 229 230 /** 231 * After we've done initial boot, this function is called to allow the 232 * board code to clean up state, if needed 233 */ 234 static void octeon_init_secondary(void) 235 { 236 unsigned int sr; 237 238 sr = set_c0_status(ST0_BEV); 239 write_c0_ebase((u32)ebase); 240 write_c0_status(sr); 241 242 octeon_check_cpu_bist(); 243 octeon_init_cvmcount(); 244 245 octeon_irq_setup_secondary(); 246 } 247 248 /** 249 * Callout to firmware before smp_init 250 * 251 */ 252 static void __init octeon_prepare_cpus(unsigned int max_cpus) 253 { 254 /* 255 * Only the low order mailbox bits are used for IPIs, leave 256 * the other bits alone. 257 */ 258 cvmx_write_csr(CVMX_CIU_MBOX_CLRX(cvmx_get_core_num()), 0xffff); 259 if (request_irq(OCTEON_IRQ_MBOX0, mailbox_interrupt, 260 IRQF_PERCPU | IRQF_NO_THREAD, "SMP-IPI", 261 mailbox_interrupt)) { 262 panic("Cannot request_irq(OCTEON_IRQ_MBOX0)"); 263 } 264 } 265 266 /** 267 * Last chance for the board code to finish SMP initialization before 268 * the CPU is "online". 269 */ 270 static void octeon_smp_finish(void) 271 { 272 octeon_user_io_init(); 273 274 /* to generate the first CPU timer interrupt */ 275 write_c0_compare(read_c0_count() + mips_hpt_frequency / HZ); 276 local_irq_enable(); 277 } 278 279 #ifdef CONFIG_HOTPLUG_CPU 280 281 /* State of each CPU. */ 282 DEFINE_PER_CPU(int, cpu_state); 283 284 static int octeon_cpu_disable(void) 285 { 286 unsigned int cpu = smp_processor_id(); 287 288 if (cpu == 0) 289 return -EBUSY; 290 291 if (!octeon_bootloader_entry_addr) 292 return -ENOTSUPP; 293 294 set_cpu_online(cpu, false); 295 calculate_cpu_foreign_map(); 296 octeon_fixup_irqs(); 297 298 __flush_cache_all(); 299 local_flush_tlb_all(); 300 301 return 0; 302 } 303 304 static void octeon_cpu_die(unsigned int cpu) 305 { 306 int coreid = cpu_logical_map(cpu); 307 uint32_t mask, new_mask; 308 const struct cvmx_bootmem_named_block_desc *block_desc; 309 310 while (per_cpu(cpu_state, cpu) != CPU_DEAD) 311 cpu_relax(); 312 313 /* 314 * This is a bit complicated strategics of getting/settig available 315 * cores mask, copied from bootloader 316 */ 317 318 mask = 1 << coreid; 319 /* LINUX_APP_BOOT_BLOCK is initialized in bootoct binary */ 320 block_desc = cvmx_bootmem_find_named_block(LINUX_APP_BOOT_BLOCK_NAME); 321 322 if (!block_desc) { 323 struct linux_app_boot_info *labi; 324 325 labi = (struct linux_app_boot_info *)PHYS_TO_XKSEG_CACHED(LABI_ADDR_IN_BOOTLOADER); 326 327 labi->avail_coremask |= mask; 328 new_mask = labi->avail_coremask; 329 } else { /* alternative, already initialized */ 330 uint32_t *p = (uint32_t *)PHYS_TO_XKSEG_CACHED(block_desc->base_addr + 331 AVAIL_COREMASK_OFFSET_IN_LINUX_APP_BOOT_BLOCK); 332 *p |= mask; 333 new_mask = *p; 334 } 335 336 pr_info("Reset core %d. Available Coremask = 0x%x \n", coreid, new_mask); 337 mb(); 338 cvmx_write_csr(CVMX_CIU_PP_RST, 1 << coreid); 339 cvmx_write_csr(CVMX_CIU_PP_RST, 0); 340 } 341 342 void play_dead(void) 343 { 344 int cpu = cpu_number_map(cvmx_get_core_num()); 345 346 idle_task_exit(); 347 octeon_processor_boot = 0xff; 348 per_cpu(cpu_state, cpu) = CPU_DEAD; 349 350 mb(); 351 352 while (1) /* core will be reset here */ 353 ; 354 } 355 356 static void start_after_reset(void) 357 { 358 kernel_entry(0, 0, 0); /* set a2 = 0 for secondary core */ 359 } 360 361 static int octeon_update_boot_vector(unsigned int cpu) 362 { 363 364 int coreid = cpu_logical_map(cpu); 365 uint32_t avail_coremask; 366 const struct cvmx_bootmem_named_block_desc *block_desc; 367 struct boot_init_vector *boot_vect = 368 (struct boot_init_vector *)PHYS_TO_XKSEG_CACHED(BOOTLOADER_BOOT_VECTOR); 369 370 block_desc = cvmx_bootmem_find_named_block(LINUX_APP_BOOT_BLOCK_NAME); 371 372 if (!block_desc) { 373 struct linux_app_boot_info *labi; 374 375 labi = (struct linux_app_boot_info *)PHYS_TO_XKSEG_CACHED(LABI_ADDR_IN_BOOTLOADER); 376 377 avail_coremask = labi->avail_coremask; 378 labi->avail_coremask &= ~(1 << coreid); 379 } else { /* alternative, already initialized */ 380 avail_coremask = *(uint32_t *)PHYS_TO_XKSEG_CACHED( 381 block_desc->base_addr + AVAIL_COREMASK_OFFSET_IN_LINUX_APP_BOOT_BLOCK); 382 } 383 384 if (!(avail_coremask & (1 << coreid))) { 385 /* core not available, assume, that caught by simple-executive */ 386 cvmx_write_csr(CVMX_CIU_PP_RST, 1 << coreid); 387 cvmx_write_csr(CVMX_CIU_PP_RST, 0); 388 } 389 390 boot_vect[coreid].app_start_func_addr = 391 (uint32_t) (unsigned long) start_after_reset; 392 boot_vect[coreid].code_addr = octeon_bootloader_entry_addr; 393 394 mb(); 395 396 cvmx_write_csr(CVMX_CIU_NMI, (1 << coreid) & avail_coremask); 397 398 return 0; 399 } 400 401 static int register_cavium_notifier(void) 402 { 403 return cpuhp_setup_state_nocalls(CPUHP_MIPS_SOC_PREPARE, 404 "mips/cavium:prepare", 405 octeon_update_boot_vector, NULL); 406 } 407 late_initcall(register_cavium_notifier); 408 409 #endif /* CONFIG_HOTPLUG_CPU */ 410 411 struct plat_smp_ops octeon_smp_ops = { 412 .send_ipi_single = octeon_send_ipi_single, 413 .send_ipi_mask = octeon_send_ipi_mask, 414 .init_secondary = octeon_init_secondary, 415 .smp_finish = octeon_smp_finish, 416 .boot_secondary = octeon_boot_secondary, 417 .smp_setup = octeon_smp_setup, 418 .prepare_cpus = octeon_prepare_cpus, 419 #ifdef CONFIG_HOTPLUG_CPU 420 .cpu_disable = octeon_cpu_disable, 421 .cpu_die = octeon_cpu_die, 422 #endif 423 }; 424 425 static irqreturn_t octeon_78xx_reched_interrupt(int irq, void *dev_id) 426 { 427 scheduler_ipi(); 428 return IRQ_HANDLED; 429 } 430 431 static irqreturn_t octeon_78xx_call_function_interrupt(int irq, void *dev_id) 432 { 433 generic_smp_call_function_interrupt(); 434 return IRQ_HANDLED; 435 } 436 437 static irqreturn_t octeon_78xx_icache_flush_interrupt(int irq, void *dev_id) 438 { 439 octeon_icache_flush(); 440 return IRQ_HANDLED; 441 } 442 443 /* 444 * Callout to firmware before smp_init 445 */ 446 static void octeon_78xx_prepare_cpus(unsigned int max_cpus) 447 { 448 if (request_irq(OCTEON_IRQ_MBOX0 + 0, 449 octeon_78xx_reched_interrupt, 450 IRQF_PERCPU | IRQF_NO_THREAD, "Scheduler", 451 octeon_78xx_reched_interrupt)) { 452 panic("Cannot request_irq for SchedulerIPI"); 453 } 454 if (request_irq(OCTEON_IRQ_MBOX0 + 1, 455 octeon_78xx_call_function_interrupt, 456 IRQF_PERCPU | IRQF_NO_THREAD, "SMP-Call", 457 octeon_78xx_call_function_interrupt)) { 458 panic("Cannot request_irq for SMP-Call"); 459 } 460 if (request_irq(OCTEON_IRQ_MBOX0 + 2, 461 octeon_78xx_icache_flush_interrupt, 462 IRQF_PERCPU | IRQF_NO_THREAD, "ICache-Flush", 463 octeon_78xx_icache_flush_interrupt)) { 464 panic("Cannot request_irq for ICache-Flush"); 465 } 466 } 467 468 static void octeon_78xx_send_ipi_single(int cpu, unsigned int action) 469 { 470 int i; 471 472 for (i = 0; i < 8; i++) { 473 if (action & 1) 474 octeon_ciu3_mbox_send(cpu, i); 475 action >>= 1; 476 } 477 } 478 479 static void octeon_78xx_send_ipi_mask(const struct cpumask *mask, 480 unsigned int action) 481 { 482 unsigned int cpu; 483 484 for_each_cpu(cpu, mask) 485 octeon_78xx_send_ipi_single(cpu, action); 486 } 487 488 static struct plat_smp_ops octeon_78xx_smp_ops = { 489 .send_ipi_single = octeon_78xx_send_ipi_single, 490 .send_ipi_mask = octeon_78xx_send_ipi_mask, 491 .init_secondary = octeon_init_secondary, 492 .smp_finish = octeon_smp_finish, 493 .boot_secondary = octeon_boot_secondary, 494 .smp_setup = octeon_smp_setup, 495 .prepare_cpus = octeon_78xx_prepare_cpus, 496 #ifdef CONFIG_HOTPLUG_CPU 497 .cpu_disable = octeon_cpu_disable, 498 .cpu_die = octeon_cpu_die, 499 #endif 500 }; 501 502 void __init octeon_setup_smp(void) 503 { 504 struct plat_smp_ops *ops; 505 506 if (octeon_has_feature(OCTEON_FEATURE_CIU3)) 507 ops = &octeon_78xx_smp_ops; 508 else 509 ops = &octeon_smp_ops; 510 511 register_smp_ops(ops); 512 } 513