2 * SMP support for Hexagon
4 * Copyright (c) 2010-2012, The Linux Foundation. All rights reserved.
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 and
8 * only version 2 as published by the Free Software Foundation.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
21 #include <linux/err.h>
22 #include <linux/errno.h>
23 #include <linux/kernel.h>
24 #include <linux/init.h>
25 #include <linux/interrupt.h>
26 #include <linux/module.h>
27 #include <linux/percpu.h>
28 #include <linux/sched/mm.h>
29 #include <linux/smp.h>
30 #include <linux/spinlock.h>
31 #include <linux/cpu.h>
32 #include <linux/mm_types.h>
34 #include <asm/time.h> /* timer_interrupt */
35 #include <asm/hexagon_vm.h>
37 #define BASE_IPI_IRQ 26
40 * cpu_possible_mask needs to be filled out prior to setup_per_cpu_areas
41 * (which is prior to any of our smp_prepare_cpu crap), in order to set
42 * up the... per_cpu areas.
49 static DEFINE_PER_CPU(struct ipi_data
, ipi_data
);
51 static inline void __handle_ipi(unsigned long *ops
, struct ipi_data
*ipi
,
54 unsigned long msg
= 0;
56 msg
= find_next_bit(ops
, BITS_PER_LONG
, msg
+1);
65 generic_smp_call_function_interrupt();
79 } while (msg
< BITS_PER_LONG
);
82 /* Used for IPI call from other CPU's to unmask int */
83 void smp_vm_unmask_irq(void *info
)
85 __vmintop_locen((long) info
);
90 * This is based on Alpha's IPI stuff.
91 * Supposed to take (int, void*) as args now.
92 * Specifically, first arg is irq, second is the irq_desc.
95 irqreturn_t
handle_ipi(int irq
, void *desc
)
97 int cpu
= smp_processor_id();
98 struct ipi_data
*ipi
= &per_cpu(ipi_data
, cpu
);
101 while ((ops
= xchg(&ipi
->bits
, 0)) != 0)
102 __handle_ipi(&ops
, ipi
, cpu
);
106 void send_ipi(const struct cpumask
*cpumask
, enum ipi_message_type msg
)
110 unsigned long retval
;
112 local_irq_save(flags
);
114 for_each_cpu(cpu
, cpumask
) {
115 struct ipi_data
*ipi
= &per_cpu(ipi_data
, cpu
);
117 set_bit(msg
, &ipi
->bits
);
118 /* Possible barrier here */
119 retval
= __vmintop_post(BASE_IPI_IRQ
+cpu
);
122 printk(KERN_ERR
"interrupt %ld not configured?\n",
127 local_irq_restore(flags
);
130 static struct irqaction ipi_intdesc
= {
131 .handler
= handle_ipi
,
132 .flags
= IRQF_TRIGGER_RISING
,
133 .name
= "ipi_handler"
136 void __init
smp_prepare_boot_cpu(void)
141 * interrupts should already be disabled from the VM
142 * SP should already be correct; need to set THREADINFO_REG
143 * to point to current thread info
146 void start_secondary(void)
149 unsigned long thread_ptr
;
151 /* Calculate thread_info pointer from stack pointer */
152 __asm__
__volatile__(
157 thread_ptr
= thread_ptr
& ~(THREAD_SIZE
-1);
159 __asm__
__volatile__(
160 QUOTED_THREADINFO_REG
" = %0;\n"
165 /* Set the memory struct */
167 current
->active_mm
= &init_mm
;
169 cpu
= smp_processor_id();
171 setup_irq(BASE_IPI_IRQ
+ cpu
, &ipi_intdesc
);
173 /* Register the clock_event dummy */
174 setup_percpu_clockdev();
176 printk(KERN_INFO
"%s cpu %d\n", __func__
, current_thread_info()->cpu
);
178 notify_cpu_starting(cpu
);
180 set_cpu_online(cpu
, true);
184 cpu_startup_entry(CPUHP_AP_ONLINE_IDLE
);
189 * called once for each present cpu
190 * apparently starts up the CPU and then
191 * maintains control until "cpu_online(cpu)" is set.
194 int __cpu_up(unsigned int cpu
, struct task_struct
*idle
)
196 struct thread_info
*thread
= (struct thread_info
*)idle
->stack
;
201 /* Boot to the head. */
202 stack_start
= ((void *) thread
) + THREAD_SIZE
;
203 __vmstart(start_secondary
, stack_start
);
205 while (!cpu_online(cpu
))
211 void __init
smp_cpus_done(unsigned int max_cpus
)
215 void __init
smp_prepare_cpus(unsigned int max_cpus
)
220 * should eventually have some sort of machine
221 * descriptor that has this stuff
224 /* Right now, let's just fake it. */
225 for (i
= 0; i
< max_cpus
; i
++)
226 set_cpu_present(i
, true);
228 /* Also need to register the interrupts for IPI */
230 setup_irq(BASE_IPI_IRQ
, &ipi_intdesc
);
233 void smp_send_reschedule(int cpu
)
235 send_ipi(cpumask_of(cpu
), IPI_RESCHEDULE
);
238 void smp_send_stop(void)
240 struct cpumask targets
;
241 cpumask_copy(&targets
, cpu_online_mask
);
242 cpumask_clear_cpu(smp_processor_id(), &targets
);
243 send_ipi(&targets
, IPI_CPU_STOP
);
246 void arch_send_call_function_single_ipi(int cpu
)
248 send_ipi(cpumask_of(cpu
), IPI_CALL_FUNC
);
251 void arch_send_call_function_ipi_mask(const struct cpumask
*mask
)
253 send_ipi(mask
, IPI_CALL_FUNC
);
256 int setup_profiling_timer(unsigned int multiplier
)
261 void smp_start_cpus(void)
265 for (i
= 0; i
< NR_CPUS
; i
++)
266 set_cpu_possible(i
, true);