David Daney | 5b3b168 | 2009-01-08 16:46:40 -0800 | [diff] [blame] | 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 | * |
David Daney | edfcbb8 | 2010-07-23 10:57:49 -0700 | [diff] [blame] | 6 | * Copyright (C) 2004-2008, 2009, 2010 Cavium Networks |
David Daney | 5b3b168 | 2009-01-08 16:46:40 -0800 | [diff] [blame] | 7 | */ |
Ralf Baechle | 773cb77 | 2009-06-23 10:36:38 +0100 | [diff] [blame] | 8 | #include <linux/cpu.h> |
David Daney | 5b3b168 | 2009-01-08 16:46:40 -0800 | [diff] [blame] | 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/module.h> |
| 15 | |
| 16 | #include <asm/mmu_context.h> |
David Daney | 5b3b168 | 2009-01-08 16:46:40 -0800 | [diff] [blame] | 17 | #include <asm/time.h> |
David Howells | b81947c | 2012-03-28 18:30:02 +0100 | [diff] [blame] | 18 | #include <asm/setup.h> |
David Daney | 5b3b168 | 2009-01-08 16:46:40 -0800 | [diff] [blame] | 19 | |
| 20 | #include <asm/octeon/octeon.h> |
| 21 | |
Ralf Baechle | 773cb77 | 2009-06-23 10:36:38 +0100 | [diff] [blame] | 22 | #include "octeon_boot.h" |
| 23 | |
David Daney | 5b3b168 | 2009-01-08 16:46:40 -0800 | [diff] [blame] | 24 | volatile unsigned long octeon_processor_boot = 0xff; |
| 25 | volatile unsigned long octeon_processor_sp; |
| 26 | volatile unsigned long octeon_processor_gp; |
| 27 | |
Ralf Baechle | 773cb77 | 2009-06-23 10:36:38 +0100 | [diff] [blame] | 28 | #ifdef CONFIG_HOTPLUG_CPU |
David Daney | babba4f | 2010-07-23 10:57:51 -0700 | [diff] [blame] | 29 | uint64_t octeon_bootloader_entry_addr; |
| 30 | EXPORT_SYMBOL(octeon_bootloader_entry_addr); |
Ralf Baechle | 773cb77 | 2009-06-23 10:36:38 +0100 | [diff] [blame] | 31 | #endif |
| 32 | |
David Daney | 5b3b168 | 2009-01-08 16:46:40 -0800 | [diff] [blame] | 33 | static irqreturn_t mailbox_interrupt(int irq, void *dev_id) |
| 34 | { |
| 35 | const int coreid = cvmx_get_core_num(); |
| 36 | uint64_t action; |
| 37 | |
| 38 | /* Load the mailbox register to figure out what we're supposed to do */ |
David Daney | e650ce0 | 2011-02-17 14:47:52 -0800 | [diff] [blame] | 39 | action = cvmx_read_csr(CVMX_CIU_MBOX_CLRX(coreid)) & 0xffff; |
David Daney | 5b3b168 | 2009-01-08 16:46:40 -0800 | [diff] [blame] | 40 | |
| 41 | /* Clear the mailbox to clear the interrupt */ |
| 42 | cvmx_write_csr(CVMX_CIU_MBOX_CLRX(coreid), action); |
| 43 | |
| 44 | if (action & SMP_CALL_FUNCTION) |
| 45 | smp_call_function_interrupt(); |
Peter Zijlstra | 184748c | 2011-04-05 17:23:39 +0200 | [diff] [blame] | 46 | if (action & SMP_RESCHEDULE_YOURSELF) |
| 47 | scheduler_ipi(); |
David Daney | 5b3b168 | 2009-01-08 16:46:40 -0800 | [diff] [blame] | 48 | |
| 49 | /* Check if we've been told to flush the icache */ |
| 50 | if (action & SMP_ICACHE_FLUSH) |
| 51 | asm volatile ("synci 0($0)\n"); |
| 52 | return IRQ_HANDLED; |
| 53 | } |
| 54 | |
| 55 | /** |
| 56 | * Cause the function described by call_data to be executed on the passed |
Ralf Baechle | 7034228 | 2013-01-22 12:59:30 +0100 | [diff] [blame] | 57 | * cpu. When the function has finished, increment the finished field of |
David Daney | 5b3b168 | 2009-01-08 16:46:40 -0800 | [diff] [blame] | 58 | * call_data. |
| 59 | */ |
| 60 | void octeon_send_ipi_single(int cpu, unsigned int action) |
| 61 | { |
| 62 | int coreid = cpu_logical_map(cpu); |
| 63 | /* |
| 64 | pr_info("SMP: Mailbox send cpu=%d, coreid=%d, action=%u\n", cpu, |
| 65 | coreid, action); |
| 66 | */ |
| 67 | cvmx_write_csr(CVMX_CIU_MBOX_SETX(coreid), action); |
| 68 | } |
| 69 | |
David Daney | 067f329 | 2009-10-01 16:47:38 -0700 | [diff] [blame] | 70 | static inline void octeon_send_ipi_mask(const struct cpumask *mask, |
| 71 | unsigned int action) |
David Daney | 5b3b168 | 2009-01-08 16:46:40 -0800 | [diff] [blame] | 72 | { |
| 73 | unsigned int i; |
| 74 | |
Rusty Russell | 8dd9289 | 2015-03-05 10:49:17 +1030 | [diff] [blame] | 75 | for_each_cpu(i, mask) |
David Daney | 5b3b168 | 2009-01-08 16:46:40 -0800 | [diff] [blame] | 76 | octeon_send_ipi_single(i, action); |
| 77 | } |
| 78 | |
| 79 | /** |
Rusty Russell | 5f054e3 | 2012-03-29 15:38:31 +1030 | [diff] [blame] | 80 | * Detect available CPUs, populate cpu_possible_mask |
David Daney | 5b3b168 | 2009-01-08 16:46:40 -0800 | [diff] [blame] | 81 | */ |
Ralf Baechle | 773cb77 | 2009-06-23 10:36:38 +0100 | [diff] [blame] | 82 | static void octeon_smp_hotplug_setup(void) |
| 83 | { |
| 84 | #ifdef CONFIG_HOTPLUG_CPU |
David Daney | babba4f | 2010-07-23 10:57:51 -0700 | [diff] [blame] | 85 | struct linux_app_boot_info *labi; |
Ralf Baechle | 773cb77 | 2009-06-23 10:36:38 +0100 | [diff] [blame] | 86 | |
Aaro Koskinen | 5ca0e37 | 2014-06-28 00:59:51 +0300 | [diff] [blame] | 87 | if (!setup_max_cpus) |
| 88 | return; |
| 89 | |
David Daney | babba4f | 2010-07-23 10:57:51 -0700 | [diff] [blame] | 90 | labi = (struct linux_app_boot_info *)PHYS_TO_XKSEG_CACHED(LABI_ADDR_IN_BOOTLOADER); |
Aaro Koskinen | eac44d9 | 2014-06-28 00:59:52 +0300 | [diff] [blame] | 91 | if (labi->labi_signature != LABI_SIGNATURE) { |
| 92 | pr_info("The bootloader on this board does not support HOTPLUG_CPU."); |
| 93 | return; |
| 94 | } |
David Daney | babba4f | 2010-07-23 10:57:51 -0700 | [diff] [blame] | 95 | |
| 96 | octeon_bootloader_entry_addr = labi->InitTLBStart_addr; |
Ralf Baechle | 773cb77 | 2009-06-23 10:36:38 +0100 | [diff] [blame] | 97 | #endif |
| 98 | } |
| 99 | |
David Daney | 5b3b168 | 2009-01-08 16:46:40 -0800 | [diff] [blame] | 100 | static void octeon_smp_setup(void) |
| 101 | { |
| 102 | const int coreid = cvmx_get_core_num(); |
| 103 | int cpus; |
| 104 | int id; |
David Daney | 5b3b168 | 2009-01-08 16:46:40 -0800 | [diff] [blame] | 105 | int core_mask = octeon_get_boot_coremask(); |
David Daney | edfcbb8 | 2010-07-23 10:57:49 -0700 | [diff] [blame] | 106 | #ifdef CONFIG_HOTPLUG_CPU |
| 107 | unsigned int num_cores = cvmx_octeon_num_cores(); |
| 108 | #endif |
David Daney | 5b3b168 | 2009-01-08 16:46:40 -0800 | [diff] [blame] | 109 | |
David Daney | edfcbb8 | 2010-07-23 10:57:49 -0700 | [diff] [blame] | 110 | /* The present CPUs are initially just the boot cpu (CPU 0). */ |
| 111 | for (id = 0; id < NR_CPUS; id++) { |
| 112 | set_cpu_possible(id, id == 0); |
| 113 | set_cpu_present(id, id == 0); |
| 114 | } |
| 115 | |
David Daney | 5b3b168 | 2009-01-08 16:46:40 -0800 | [diff] [blame] | 116 | __cpu_number_map[coreid] = 0; |
| 117 | __cpu_logical_map[0] = coreid; |
David Daney | 5b3b168 | 2009-01-08 16:46:40 -0800 | [diff] [blame] | 118 | |
David Daney | edfcbb8 | 2010-07-23 10:57:49 -0700 | [diff] [blame] | 119 | /* The present CPUs get the lowest CPU numbers. */ |
David Daney | 5b3b168 | 2009-01-08 16:46:40 -0800 | [diff] [blame] | 120 | cpus = 1; |
David Daney | edfcbb8 | 2010-07-23 10:57:49 -0700 | [diff] [blame] | 121 | for (id = 0; id < NR_CPUS; id++) { |
David Daney | 5b3b168 | 2009-01-08 16:46:40 -0800 | [diff] [blame] | 122 | if ((id != coreid) && (core_mask & (1 << id))) { |
David Daney | edfcbb8 | 2010-07-23 10:57:49 -0700 | [diff] [blame] | 123 | set_cpu_possible(cpus, true); |
| 124 | set_cpu_present(cpus, true); |
David Daney | 5b3b168 | 2009-01-08 16:46:40 -0800 | [diff] [blame] | 125 | __cpu_number_map[id] = cpus; |
| 126 | __cpu_logical_map[cpus] = id; |
| 127 | cpus++; |
| 128 | } |
| 129 | } |
David Daney | edfcbb8 | 2010-07-23 10:57:49 -0700 | [diff] [blame] | 130 | |
| 131 | #ifdef CONFIG_HOTPLUG_CPU |
| 132 | /* |
Ralf Baechle | 7034228 | 2013-01-22 12:59:30 +0100 | [diff] [blame] | 133 | * The possible CPUs are all those present on the chip. We |
| 134 | * will assign CPU numbers for possible cores as well. Cores |
David Daney | edfcbb8 | 2010-07-23 10:57:49 -0700 | [diff] [blame] | 135 | * are always consecutively numberd from 0. |
| 136 | */ |
Aaro Koskinen | eac44d9 | 2014-06-28 00:59:52 +0300 | [diff] [blame] | 137 | for (id = 0; setup_max_cpus && octeon_bootloader_entry_addr && |
| 138 | id < num_cores && id < NR_CPUS; id++) { |
David Daney | edfcbb8 | 2010-07-23 10:57:49 -0700 | [diff] [blame] | 139 | if (!(core_mask & (1 << id))) { |
| 140 | set_cpu_possible(cpus, true); |
| 141 | __cpu_number_map[id] = cpus; |
| 142 | __cpu_logical_map[cpus] = id; |
| 143 | cpus++; |
| 144 | } |
| 145 | } |
| 146 | #endif |
Ralf Baechle | 773cb77 | 2009-06-23 10:36:38 +0100 | [diff] [blame] | 147 | |
| 148 | octeon_smp_hotplug_setup(); |
David Daney | 5b3b168 | 2009-01-08 16:46:40 -0800 | [diff] [blame] | 149 | } |
| 150 | |
| 151 | /** |
| 152 | * Firmware CPU startup hook |
| 153 | * |
| 154 | */ |
| 155 | static void octeon_boot_secondary(int cpu, struct task_struct *idle) |
| 156 | { |
| 157 | int count; |
| 158 | |
| 159 | pr_info("SMP: Booting CPU%02d (CoreId %2d)...\n", cpu, |
| 160 | cpu_logical_map(cpu)); |
| 161 | |
| 162 | octeon_processor_sp = __KSTK_TOS(idle); |
| 163 | octeon_processor_gp = (unsigned long)(task_thread_info(idle)); |
| 164 | octeon_processor_boot = cpu_logical_map(cpu); |
| 165 | mb(); |
| 166 | |
| 167 | count = 10000; |
| 168 | while (octeon_processor_sp && count) { |
| 169 | /* Waiting for processor to get the SP and GP */ |
| 170 | udelay(1); |
| 171 | count--; |
| 172 | } |
| 173 | if (count == 0) |
| 174 | pr_err("Secondary boot timeout\n"); |
| 175 | } |
| 176 | |
| 177 | /** |
| 178 | * After we've done initial boot, this function is called to allow the |
| 179 | * board code to clean up state, if needed |
| 180 | */ |
Paul Gortmaker | 078a55f | 2013-06-18 13:38:59 +0000 | [diff] [blame] | 181 | static void octeon_init_secondary(void) |
David Daney | 5b3b168 | 2009-01-08 16:46:40 -0800 | [diff] [blame] | 182 | { |
David Daney | babba4f | 2010-07-23 10:57:51 -0700 | [diff] [blame] | 183 | unsigned int sr; |
David Daney | 5b3b168 | 2009-01-08 16:46:40 -0800 | [diff] [blame] | 184 | |
David Daney | 0c32638 | 2011-03-25 12:38:51 -0700 | [diff] [blame] | 185 | sr = set_c0_status(ST0_BEV); |
| 186 | write_c0_ebase((u32)ebase); |
| 187 | write_c0_status(sr); |
| 188 | |
| 189 | octeon_check_cpu_bist(); |
| 190 | octeon_init_cvmcount(); |
| 191 | |
| 192 | octeon_irq_setup_secondary(); |
David Daney | 0c32638 | 2011-03-25 12:38:51 -0700 | [diff] [blame] | 193 | } |
| 194 | |
| 195 | /** |
| 196 | * Callout to firmware before smp_init |
| 197 | * |
| 198 | */ |
| 199 | void octeon_prepare_cpus(unsigned int max_cpus) |
| 200 | { |
David Daney | e650ce0 | 2011-02-17 14:47:52 -0800 | [diff] [blame] | 201 | /* |
| 202 | * Only the low order mailbox bits are used for IPIs, leave |
| 203 | * the other bits alone. |
| 204 | */ |
| 205 | cvmx_write_csr(CVMX_CIU_MBOX_CLRX(cvmx_get_core_num()), 0xffff); |
Venkat Subbiah | e63fb7a | 2011-10-03 13:31:10 -0700 | [diff] [blame] | 206 | if (request_irq(OCTEON_IRQ_MBOX0, mailbox_interrupt, |
| 207 | IRQF_PERCPU | IRQF_NO_THREAD, "SMP-IPI", |
| 208 | mailbox_interrupt)) { |
Ralf Baechle | ab75dc0 | 2011-11-17 15:07:31 +0000 | [diff] [blame] | 209 | panic("Cannot request_irq(OCTEON_IRQ_MBOX0)"); |
David Daney | 5b3b168 | 2009-01-08 16:46:40 -0800 | [diff] [blame] | 210 | } |
David Daney | 5b3b168 | 2009-01-08 16:46:40 -0800 | [diff] [blame] | 211 | } |
| 212 | |
| 213 | /** |
| 214 | * Last chance for the board code to finish SMP initialization before |
| 215 | * the CPU is "online". |
| 216 | */ |
| 217 | static void octeon_smp_finish(void) |
| 218 | { |
David Daney | 5b3b168 | 2009-01-08 16:46:40 -0800 | [diff] [blame] | 219 | octeon_user_io_init(); |
| 220 | |
| 221 | /* to generate the first CPU timer interrupt */ |
| 222 | write_c0_compare(read_c0_count() + mips_hpt_frequency / HZ); |
Yong Zhang | 1bcfecc | 2012-07-19 09:13:53 +0200 | [diff] [blame] | 223 | local_irq_enable(); |
David Daney | 5b3b168 | 2009-01-08 16:46:40 -0800 | [diff] [blame] | 224 | } |
| 225 | |
Ralf Baechle | 773cb77 | 2009-06-23 10:36:38 +0100 | [diff] [blame] | 226 | #ifdef CONFIG_HOTPLUG_CPU |
| 227 | |
| 228 | /* State of each CPU. */ |
| 229 | DEFINE_PER_CPU(int, cpu_state); |
| 230 | |
Ralf Baechle | 773cb77 | 2009-06-23 10:36:38 +0100 | [diff] [blame] | 231 | static int octeon_cpu_disable(void) |
| 232 | { |
| 233 | unsigned int cpu = smp_processor_id(); |
| 234 | |
| 235 | if (cpu == 0) |
| 236 | return -EBUSY; |
| 237 | |
Aaro Koskinen | eac44d9 | 2014-06-28 00:59:52 +0300 | [diff] [blame] | 238 | if (!octeon_bootloader_entry_addr) |
| 239 | return -ENOTSUPP; |
| 240 | |
Rusty Russell | 0b5f9c0 | 2012-03-29 15:38:30 +1030 | [diff] [blame] | 241 | set_cpu_online(cpu, false); |
Rusty Russell | 8dd9289 | 2015-03-05 10:49:17 +1030 | [diff] [blame] | 242 | cpumask_clear_cpu(cpu, &cpu_callin_map); |
Ralf Baechle | 17efb59 | 2013-09-03 18:19:28 +0200 | [diff] [blame] | 243 | octeon_fixup_irqs(); |
Ralf Baechle | 773cb77 | 2009-06-23 10:36:38 +0100 | [diff] [blame] | 244 | |
| 245 | flush_cache_all(); |
| 246 | local_flush_tlb_all(); |
| 247 | |
Ralf Baechle | 773cb77 | 2009-06-23 10:36:38 +0100 | [diff] [blame] | 248 | return 0; |
| 249 | } |
| 250 | |
| 251 | static void octeon_cpu_die(unsigned int cpu) |
| 252 | { |
| 253 | int coreid = cpu_logical_map(cpu); |
David Daney | babba4f | 2010-07-23 10:57:51 -0700 | [diff] [blame] | 254 | uint32_t mask, new_mask; |
| 255 | const struct cvmx_bootmem_named_block_desc *block_desc; |
Ralf Baechle | 773cb77 | 2009-06-23 10:36:38 +0100 | [diff] [blame] | 256 | |
Ralf Baechle | 773cb77 | 2009-06-23 10:36:38 +0100 | [diff] [blame] | 257 | while (per_cpu(cpu_state, cpu) != CPU_DEAD) |
| 258 | cpu_relax(); |
| 259 | |
| 260 | /* |
| 261 | * This is a bit complicated strategics of getting/settig available |
| 262 | * cores mask, copied from bootloader |
| 263 | */ |
David Daney | babba4f | 2010-07-23 10:57:51 -0700 | [diff] [blame] | 264 | |
| 265 | mask = 1 << coreid; |
Ralf Baechle | 773cb77 | 2009-06-23 10:36:38 +0100 | [diff] [blame] | 266 | /* LINUX_APP_BOOT_BLOCK is initialized in bootoct binary */ |
| 267 | block_desc = cvmx_bootmem_find_named_block(LINUX_APP_BOOT_BLOCK_NAME); |
| 268 | |
| 269 | if (!block_desc) { |
David Daney | babba4f | 2010-07-23 10:57:51 -0700 | [diff] [blame] | 270 | struct linux_app_boot_info *labi; |
| 271 | |
| 272 | labi = (struct linux_app_boot_info *)PHYS_TO_XKSEG_CACHED(LABI_ADDR_IN_BOOTLOADER); |
| 273 | |
| 274 | labi->avail_coremask |= mask; |
| 275 | new_mask = labi->avail_coremask; |
Ralf Baechle | 773cb77 | 2009-06-23 10:36:38 +0100 | [diff] [blame] | 276 | } else { /* alternative, already initialized */ |
David Daney | babba4f | 2010-07-23 10:57:51 -0700 | [diff] [blame] | 277 | uint32_t *p = (uint32_t *)PHYS_TO_XKSEG_CACHED(block_desc->base_addr + |
| 278 | AVAIL_COREMASK_OFFSET_IN_LINUX_APP_BOOT_BLOCK); |
| 279 | *p |= mask; |
| 280 | new_mask = *p; |
Ralf Baechle | 773cb77 | 2009-06-23 10:36:38 +0100 | [diff] [blame] | 281 | } |
| 282 | |
David Daney | babba4f | 2010-07-23 10:57:51 -0700 | [diff] [blame] | 283 | pr_info("Reset core %d. Available Coremask = 0x%x \n", coreid, new_mask); |
| 284 | mb(); |
Ralf Baechle | 773cb77 | 2009-06-23 10:36:38 +0100 | [diff] [blame] | 285 | cvmx_write_csr(CVMX_CIU_PP_RST, 1 << coreid); |
| 286 | cvmx_write_csr(CVMX_CIU_PP_RST, 0); |
| 287 | } |
| 288 | |
| 289 | void play_dead(void) |
| 290 | { |
David Daney | babba4f | 2010-07-23 10:57:51 -0700 | [diff] [blame] | 291 | int cpu = cpu_number_map(cvmx_get_core_num()); |
Ralf Baechle | 773cb77 | 2009-06-23 10:36:38 +0100 | [diff] [blame] | 292 | |
| 293 | idle_task_exit(); |
| 294 | octeon_processor_boot = 0xff; |
David Daney | babba4f | 2010-07-23 10:57:51 -0700 | [diff] [blame] | 295 | per_cpu(cpu_state, cpu) = CPU_DEAD; |
| 296 | |
| 297 | mb(); |
Ralf Baechle | 773cb77 | 2009-06-23 10:36:38 +0100 | [diff] [blame] | 298 | |
| 299 | while (1) /* core will be reset here */ |
| 300 | ; |
| 301 | } |
| 302 | |
| 303 | extern void kernel_entry(unsigned long arg1, ...); |
| 304 | |
| 305 | static void start_after_reset(void) |
| 306 | { |
Ralf Baechle | 7034228 | 2013-01-22 12:59:30 +0100 | [diff] [blame] | 307 | kernel_entry(0, 0, 0); /* set a2 = 0 for secondary core */ |
Ralf Baechle | 773cb77 | 2009-06-23 10:36:38 +0100 | [diff] [blame] | 308 | } |
| 309 | |
David Daney | babba4f | 2010-07-23 10:57:51 -0700 | [diff] [blame] | 310 | static int octeon_update_boot_vector(unsigned int cpu) |
Ralf Baechle | 773cb77 | 2009-06-23 10:36:38 +0100 | [diff] [blame] | 311 | { |
| 312 | |
| 313 | int coreid = cpu_logical_map(cpu); |
David Daney | babba4f | 2010-07-23 10:57:51 -0700 | [diff] [blame] | 314 | uint32_t avail_coremask; |
| 315 | const struct cvmx_bootmem_named_block_desc *block_desc; |
Ralf Baechle | 773cb77 | 2009-06-23 10:36:38 +0100 | [diff] [blame] | 316 | struct boot_init_vector *boot_vect = |
David Daney | babba4f | 2010-07-23 10:57:51 -0700 | [diff] [blame] | 317 | (struct boot_init_vector *)PHYS_TO_XKSEG_CACHED(BOOTLOADER_BOOT_VECTOR); |
Ralf Baechle | 773cb77 | 2009-06-23 10:36:38 +0100 | [diff] [blame] | 318 | |
| 319 | block_desc = cvmx_bootmem_find_named_block(LINUX_APP_BOOT_BLOCK_NAME); |
| 320 | |
| 321 | if (!block_desc) { |
David Daney | babba4f | 2010-07-23 10:57:51 -0700 | [diff] [blame] | 322 | struct linux_app_boot_info *labi; |
| 323 | |
| 324 | labi = (struct linux_app_boot_info *)PHYS_TO_XKSEG_CACHED(LABI_ADDR_IN_BOOTLOADER); |
| 325 | |
| 326 | avail_coremask = labi->avail_coremask; |
| 327 | labi->avail_coremask &= ~(1 << coreid); |
Ralf Baechle | 773cb77 | 2009-06-23 10:36:38 +0100 | [diff] [blame] | 328 | } else { /* alternative, already initialized */ |
David Daney | babba4f | 2010-07-23 10:57:51 -0700 | [diff] [blame] | 329 | avail_coremask = *(uint32_t *)PHYS_TO_XKSEG_CACHED( |
| 330 | block_desc->base_addr + AVAIL_COREMASK_OFFSET_IN_LINUX_APP_BOOT_BLOCK); |
Ralf Baechle | 773cb77 | 2009-06-23 10:36:38 +0100 | [diff] [blame] | 331 | } |
| 332 | |
| 333 | if (!(avail_coremask & (1 << coreid))) { |
| 334 | /* core not available, assume, that catched by simple-executive */ |
| 335 | cvmx_write_csr(CVMX_CIU_PP_RST, 1 << coreid); |
| 336 | cvmx_write_csr(CVMX_CIU_PP_RST, 0); |
| 337 | } |
| 338 | |
| 339 | boot_vect[coreid].app_start_func_addr = |
| 340 | (uint32_t) (unsigned long) start_after_reset; |
David Daney | babba4f | 2010-07-23 10:57:51 -0700 | [diff] [blame] | 341 | boot_vect[coreid].code_addr = octeon_bootloader_entry_addr; |
Ralf Baechle | 773cb77 | 2009-06-23 10:36:38 +0100 | [diff] [blame] | 342 | |
David Daney | babba4f | 2010-07-23 10:57:51 -0700 | [diff] [blame] | 343 | mb(); |
Ralf Baechle | 773cb77 | 2009-06-23 10:36:38 +0100 | [diff] [blame] | 344 | |
| 345 | cvmx_write_csr(CVMX_CIU_NMI, (1 << coreid) & avail_coremask); |
| 346 | |
| 347 | return 0; |
| 348 | } |
| 349 | |
Paul Gortmaker | 078a55f | 2013-06-18 13:38:59 +0000 | [diff] [blame] | 350 | static int octeon_cpu_callback(struct notifier_block *nfb, |
Ralf Baechle | 773cb77 | 2009-06-23 10:36:38 +0100 | [diff] [blame] | 351 | unsigned long action, void *hcpu) |
| 352 | { |
| 353 | unsigned int cpu = (unsigned long)hcpu; |
| 354 | |
| 355 | switch (action) { |
| 356 | case CPU_UP_PREPARE: |
| 357 | octeon_update_boot_vector(cpu); |
| 358 | break; |
| 359 | case CPU_ONLINE: |
| 360 | pr_info("Cpu %d online\n", cpu); |
| 361 | break; |
| 362 | case CPU_DEAD: |
| 363 | break; |
| 364 | } |
| 365 | |
| 366 | return NOTIFY_OK; |
| 367 | } |
| 368 | |
Paul Gortmaker | 078a55f | 2013-06-18 13:38:59 +0000 | [diff] [blame] | 369 | static int register_cavium_notifier(void) |
Ralf Baechle | 773cb77 | 2009-06-23 10:36:38 +0100 | [diff] [blame] | 370 | { |
David Daney | 442f2012 | 2010-07-23 10:57:50 -0700 | [diff] [blame] | 371 | hotcpu_notifier(octeon_cpu_callback, 0); |
Ralf Baechle | 773cb77 | 2009-06-23 10:36:38 +0100 | [diff] [blame] | 372 | return 0; |
| 373 | } |
Ralf Baechle | 773cb77 | 2009-06-23 10:36:38 +0100 | [diff] [blame] | 374 | late_initcall(register_cavium_notifier); |
| 375 | |
Ralf Baechle | 7034228 | 2013-01-22 12:59:30 +0100 | [diff] [blame] | 376 | #endif /* CONFIG_HOTPLUG_CPU */ |
Ralf Baechle | 773cb77 | 2009-06-23 10:36:38 +0100 | [diff] [blame] | 377 | |
David Daney | 5b3b168 | 2009-01-08 16:46:40 -0800 | [diff] [blame] | 378 | struct plat_smp_ops octeon_smp_ops = { |
| 379 | .send_ipi_single = octeon_send_ipi_single, |
| 380 | .send_ipi_mask = octeon_send_ipi_mask, |
| 381 | .init_secondary = octeon_init_secondary, |
| 382 | .smp_finish = octeon_smp_finish, |
David Daney | 5b3b168 | 2009-01-08 16:46:40 -0800 | [diff] [blame] | 383 | .boot_secondary = octeon_boot_secondary, |
| 384 | .smp_setup = octeon_smp_setup, |
| 385 | .prepare_cpus = octeon_prepare_cpus, |
Ralf Baechle | 773cb77 | 2009-06-23 10:36:38 +0100 | [diff] [blame] | 386 | #ifdef CONFIG_HOTPLUG_CPU |
| 387 | .cpu_disable = octeon_cpu_disable, |
| 388 | .cpu_die = octeon_cpu_die, |
| 389 | #endif |
David Daney | 5b3b168 | 2009-01-08 16:46:40 -0800 | [diff] [blame] | 390 | }; |