blob: 697494bc2de1ef360b47e811b740e48ae9fe7c55 [file] [log] [blame]
Mikael Starvik51533b62005-07-27 11:44:44 -07001#include <asm/delay.h>
2#include <asm/arch/irq.h>
3#include <asm/arch/hwregs/intr_vect.h>
4#include <asm/arch/hwregs/intr_vect_defs.h>
5#include <asm/tlbflush.h>
6#include <asm/mmu_context.h>
7#include <asm/arch/hwregs/mmu_defs_asm.h>
8#include <asm/arch/hwregs/supp_reg.h>
9#include <asm/atomic.h>
10
11#include <linux/err.h>
12#include <linux/init.h>
13#include <linux/timex.h>
14#include <linux/sched.h>
15#include <linux/kernel.h>
16#include <linux/cpumask.h>
17#include <linux/interrupt.h>
David S. Millerc8923c62005-10-13 14:41:23 -070018#include <linux/module.h>
Mikael Starvik51533b62005-07-27 11:44:44 -070019
20#define IPI_SCHEDULE 1
21#define IPI_CALL 2
22#define IPI_FLUSH_TLB 4
23
24#define FLUSH_ALL (void*)0xffffffff
25
26/* Vector of locks used for various atomic operations */
27spinlock_t cris_atomic_locks[] = { [0 ... LOCK_COUNT - 1] = SPIN_LOCK_UNLOCKED};
28
29/* CPU masks */
30cpumask_t cpu_online_map = CPU_MASK_NONE;
Greg Bankse16b38f2006-10-02 02:17:40 -070031EXPORT_SYMBOL(cpu_online_map);
Mikael Starvik51533b62005-07-27 11:44:44 -070032cpumask_t phys_cpu_present_map = CPU_MASK_NONE;
David S. Millerc8923c62005-10-13 14:41:23 -070033EXPORT_SYMBOL(phys_cpu_present_map);
Mikael Starvik51533b62005-07-27 11:44:44 -070034
35/* Variables used during SMP boot */
36volatile int cpu_now_booting = 0;
37volatile struct thread_info *smp_init_current_idle_thread;
38
39/* Variables used during IPI */
40static DEFINE_SPINLOCK(call_lock);
41static DEFINE_SPINLOCK(tlbstate_lock);
42
43struct call_data_struct {
44 void (*func) (void *info);
45 void *info;
46 int wait;
47};
48
49static struct call_data_struct * call_data;
50
51static struct mm_struct* flush_mm;
52static struct vm_area_struct* flush_vma;
53static unsigned long flush_addr;
54
55extern int setup_irq(int, struct irqaction *);
56
57/* Mode registers */
58static unsigned long irq_regs[NR_CPUS] =
59{
60 regi_irq,
61 regi_irq2
62};
63
64static irqreturn_t crisv32_ipi_interrupt(int irq, void *dev_id, struct pt_regs *regs);
65static int send_ipi(int vector, int wait, cpumask_t cpu_mask);
Thomas Gleixnere5f71782007-10-16 01:26:38 -070066static struct irqaction irq_ipi = {
67 .handler = crisv32_ipi_interrupt,
68 .flags = IRQF_DISABLED,
69 .mask = CPU_MASK_NONE,
70 .name = "ipi",
71};
Mikael Starvik51533b62005-07-27 11:44:44 -070072
73extern void cris_mmu_init(void);
74extern void cris_timer_init(void);
75
76/* SMP initialization */
77void __init smp_prepare_cpus(unsigned int max_cpus)
78{
79 int i;
80
81 /* From now on we can expect IPIs so set them up */
82 setup_irq(IPI_INTR_VECT, &irq_ipi);
83
84 /* Mark all possible CPUs as present */
85 for (i = 0; i < max_cpus; i++)
86 cpu_set(i, phys_cpu_present_map);
87}
88
89void __devinit smp_prepare_boot_cpu(void)
90{
91 /* PGD pointer has moved after per_cpu initialization so
92 * update the MMU.
93 */
94 pgd_t **pgd;
95 pgd = (pgd_t**)&per_cpu(current_pgd, smp_processor_id());
96
97 SUPP_BANK_SEL(1);
98 SUPP_REG_WR(RW_MM_TLB_PGD, pgd);
99 SUPP_BANK_SEL(2);
100 SUPP_REG_WR(RW_MM_TLB_PGD, pgd);
101
102 cpu_set(0, cpu_online_map);
103 cpu_set(0, phys_cpu_present_map);
104}
105
106void __init smp_cpus_done(unsigned int max_cpus)
107{
108}
109
110/* Bring one cpu online.*/
111static int __init
112smp_boot_one_cpu(int cpuid)
113{
114 unsigned timeout;
115 struct task_struct *idle;
116
117 idle = fork_idle(cpuid);
118 if (IS_ERR(idle))
119 panic("SMP: fork failed for CPU:%d", cpuid);
120
Al Viro718d6112006-01-12 01:06:04 -0800121 task_thread_info(idle)->cpu = cpuid;
Mikael Starvik51533b62005-07-27 11:44:44 -0700122
123 /* Information to the CPU that is about to boot */
Al Viro718d6112006-01-12 01:06:04 -0800124 smp_init_current_idle_thread = task_thread_info(idle);
Mikael Starvik51533b62005-07-27 11:44:44 -0700125 cpu_now_booting = cpuid;
126
127 /* Wait for CPU to come online */
128 for (timeout = 0; timeout < 10000; timeout++) {
129 if(cpu_online(cpuid)) {
130 cpu_now_booting = 0;
131 smp_init_current_idle_thread = NULL;
132 return 0; /* CPU online */
133 }
134 udelay(100);
135 barrier();
136 }
137
138 put_task_struct(idle);
139 idle = NULL;
140
141 printk(KERN_CRIT "SMP: CPU:%d is stuck.\n", cpuid);
142 return -1;
143}
144
145/* Secondary CPUs starts uing C here. Here we need to setup CPU
146 * specific stuff such as the local timer and the MMU. */
147void __init smp_callin(void)
148{
149 extern void cpu_idle(void);
150
151 int cpu = cpu_now_booting;
152 reg_intr_vect_rw_mask vect_mask = {0};
153
154 /* Initialise the idle task for this CPU */
155 atomic_inc(&init_mm.mm_count);
156 current->active_mm = &init_mm;
157
158 /* Set up MMU */
159 cris_mmu_init();
160 __flush_tlb_all();
161
162 /* Setup local timer. */
163 cris_timer_init();
164
165 /* Enable IRQ and idle */
166 REG_WR(intr_vect, irq_regs[cpu], rw_mask, vect_mask);
167 unmask_irq(IPI_INTR_VECT);
168 unmask_irq(TIMER_INTR_VECT);
Nick Piggin5bfb5d62005-11-08 21:39:01 -0800169 preempt_disable();
Mikael Starvik51533b62005-07-27 11:44:44 -0700170 local_irq_enable();
171
172 cpu_set(cpu, cpu_online_map);
173 cpu_idle();
174}
175
176/* Stop execution on this CPU.*/
177void stop_this_cpu(void* dummy)
178{
179 local_irq_disable();
180 asm volatile("halt");
181}
182
183/* Other calls */
184void smp_send_stop(void)
185{
186 smp_call_function(stop_this_cpu, NULL, 1, 0);
187}
188
189int setup_profiling_timer(unsigned int multiplier)
190{
191 return -EINVAL;
192}
193
194
195/* cache_decay_ticks is used by the scheduler to decide if a process
196 * is "hot" on one CPU. A higher value means a higher penalty to move
197 * a process to another CPU. Our cache is rather small so we report
198 * 1 tick.
199 */
200unsigned long cache_decay_ticks = 1;
201
Gautham R Shenoyb282b6f2007-01-10 23:15:34 -0800202int __cpuinit __cpu_up(unsigned int cpu)
Mikael Starvik51533b62005-07-27 11:44:44 -0700203{
204 smp_boot_one_cpu(cpu);
205 return cpu_online(cpu) ? 0 : -ENOSYS;
206}
207
208void smp_send_reschedule(int cpu)
209{
210 cpumask_t cpu_mask = CPU_MASK_NONE;
211 cpu_set(cpu, cpu_mask);
212 send_ipi(IPI_SCHEDULE, 0, cpu_mask);
213}
214
215/* TLB flushing
216 *
217 * Flush needs to be done on the local CPU and on any other CPU that
218 * may have the same mapping. The mm->cpu_vm_mask is used to keep track
219 * of which CPUs that a specific process has been executed on.
220 */
221void flush_tlb_common(struct mm_struct* mm, struct vm_area_struct* vma, unsigned long addr)
222{
223 unsigned long flags;
224 cpumask_t cpu_mask;
225
226 spin_lock_irqsave(&tlbstate_lock, flags);
227 cpu_mask = (mm == FLUSH_ALL ? CPU_MASK_ALL : mm->cpu_vm_mask);
228 cpu_clear(smp_processor_id(), cpu_mask);
229 flush_mm = mm;
230 flush_vma = vma;
231 flush_addr = addr;
232 send_ipi(IPI_FLUSH_TLB, 1, cpu_mask);
233 spin_unlock_irqrestore(&tlbstate_lock, flags);
234}
235
236void flush_tlb_all(void)
237{
238 __flush_tlb_all();
239 flush_tlb_common(FLUSH_ALL, FLUSH_ALL, 0);
240}
241
242void flush_tlb_mm(struct mm_struct *mm)
243{
244 __flush_tlb_mm(mm);
245 flush_tlb_common(mm, FLUSH_ALL, 0);
246 /* No more mappings in other CPUs */
247 cpus_clear(mm->cpu_vm_mask);
248 cpu_set(smp_processor_id(), mm->cpu_vm_mask);
249}
250
251void flush_tlb_page(struct vm_area_struct *vma,
252 unsigned long addr)
253{
254 __flush_tlb_page(vma, addr);
255 flush_tlb_common(vma->vm_mm, vma, addr);
256}
257
258/* Inter processor interrupts
259 *
260 * The IPIs are used for:
261 * * Force a schedule on a CPU
262 * * FLush TLB on other CPUs
263 * * Call a function on other CPUs
264 */
265
266int send_ipi(int vector, int wait, cpumask_t cpu_mask)
267{
268 int i = 0;
269 reg_intr_vect_rw_ipi ipi = REG_RD(intr_vect, irq_regs[i], rw_ipi);
270 int ret = 0;
271
272 /* Calculate CPUs to send to. */
273 cpus_and(cpu_mask, cpu_mask, cpu_online_map);
274
275 /* Send the IPI. */
276 for_each_cpu_mask(i, cpu_mask)
277 {
278 ipi.vector |= vector;
279 REG_WR(intr_vect, irq_regs[i], rw_ipi, ipi);
280 }
281
282 /* Wait for IPI to finish on other CPUS */
283 if (wait) {
284 for_each_cpu_mask(i, cpu_mask) {
285 int j;
286 for (j = 0 ; j < 1000; j++) {
287 ipi = REG_RD(intr_vect, irq_regs[i], rw_ipi);
288 if (!ipi.vector)
289 break;
290 udelay(100);
291 }
292
293 /* Timeout? */
294 if (ipi.vector) {
295 printk("SMP call timeout from %d to %d\n", smp_processor_id(), i);
296 ret = -ETIMEDOUT;
297 dump_stack();
298 }
299 }
300 }
301 return ret;
302}
303
304/*
305 * You must not call this function with disabled interrupts or from a
306 * hardware interrupt handler or from a bottom half handler.
307 */
308int smp_call_function(void (*func)(void *info), void *info,
309 int nonatomic, int wait)
310{
311 cpumask_t cpu_mask = CPU_MASK_ALL;
312 struct call_data_struct data;
313 int ret;
314
315 cpu_clear(smp_processor_id(), cpu_mask);
316
317 WARN_ON(irqs_disabled());
318
319 data.func = func;
320 data.info = info;
321 data.wait = wait;
322
323 spin_lock(&call_lock);
324 call_data = &data;
325 ret = send_ipi(IPI_CALL, wait, cpu_mask);
326 spin_unlock(&call_lock);
327
328 return ret;
329}
330
331irqreturn_t crisv32_ipi_interrupt(int irq, void *dev_id, struct pt_regs *regs)
332{
333 void (*func) (void *info) = call_data->func;
334 void *info = call_data->info;
335 reg_intr_vect_rw_ipi ipi;
336
337 ipi = REG_RD(intr_vect, irq_regs[smp_processor_id()], rw_ipi);
338
339 if (ipi.vector & IPI_CALL) {
340 func(info);
341 }
342 if (ipi.vector & IPI_FLUSH_TLB) {
343 if (flush_mm == FLUSH_ALL)
344 __flush_tlb_all();
345 else if (flush_vma == FLUSH_ALL)
346 __flush_tlb_mm(flush_mm);
347 else
348 __flush_tlb_page(flush_vma, flush_addr);
349 }
350
351 ipi.vector = 0;
352 REG_WR(intr_vect, irq_regs[smp_processor_id()], rw_ipi, ipi);
353
354 return IRQ_HANDLED;
355}
356