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>
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>
19 #define IPI_SCHEDULE 1
21 #define IPI_FLUSH_TLB 4
23 #define FLUSH_ALL (void*)0xffffffff
25 /* Vector of locks used for various atomic operations */
26 spinlock_t cris_atomic_locks
[] = { [0 ... LOCK_COUNT
- 1] = SPIN_LOCK_UNLOCKED
};
29 cpumask_t cpu_online_map
= CPU_MASK_NONE
;
30 cpumask_t phys_cpu_present_map
= CPU_MASK_NONE
;
32 /* Variables used during SMP boot */
33 volatile int cpu_now_booting
= 0;
34 volatile struct thread_info
*smp_init_current_idle_thread
;
36 /* Variables used during IPI */
37 static DEFINE_SPINLOCK(call_lock
);
38 static DEFINE_SPINLOCK(tlbstate_lock
);
40 struct call_data_struct
{
41 void (*func
) (void *info
);
46 static struct call_data_struct
* call_data
;
48 static struct mm_struct
* flush_mm
;
49 static struct vm_area_struct
* flush_vma
;
50 static unsigned long flush_addr
;
52 extern int setup_irq(int, struct irqaction
*);
55 static unsigned long irq_regs
[NR_CPUS
] =
61 static irqreturn_t
crisv32_ipi_interrupt(int irq
, void *dev_id
, struct pt_regs
*regs
);
62 static int send_ipi(int vector
, int wait
, cpumask_t cpu_mask
);
63 static struct irqaction irq_ipi
= { crisv32_ipi_interrupt
, SA_INTERRUPT
,
64 CPU_MASK_NONE
, "ipi", NULL
, NULL
};
66 extern void cris_mmu_init(void);
67 extern void cris_timer_init(void);
69 /* SMP initialization */
70 void __init
smp_prepare_cpus(unsigned int max_cpus
)
74 /* From now on we can expect IPIs so set them up */
75 setup_irq(IPI_INTR_VECT
, &irq_ipi
);
77 /* Mark all possible CPUs as present */
78 for (i
= 0; i
< max_cpus
; i
++)
79 cpu_set(i
, phys_cpu_present_map
);
82 void __devinit
smp_prepare_boot_cpu(void)
84 /* PGD pointer has moved after per_cpu initialization so
88 pgd
= (pgd_t
**)&per_cpu(current_pgd
, smp_processor_id());
91 SUPP_REG_WR(RW_MM_TLB_PGD
, pgd
);
93 SUPP_REG_WR(RW_MM_TLB_PGD
, pgd
);
95 cpu_set(0, cpu_online_map
);
96 cpu_set(0, phys_cpu_present_map
);
99 void __init
smp_cpus_done(unsigned int max_cpus
)
103 /* Bring one cpu online.*/
105 smp_boot_one_cpu(int cpuid
)
108 struct task_struct
*idle
;
110 idle
= fork_idle(cpuid
);
112 panic("SMP: fork failed for CPU:%d", cpuid
);
114 idle
->thread_info
->cpu
= cpuid
;
116 /* Information to the CPU that is about to boot */
117 smp_init_current_idle_thread
= idle
->thread_info
;
118 cpu_now_booting
= cpuid
;
120 /* Wait for CPU to come online */
121 for (timeout
= 0; timeout
< 10000; timeout
++) {
122 if(cpu_online(cpuid
)) {
124 smp_init_current_idle_thread
= NULL
;
125 return 0; /* CPU online */
131 put_task_struct(idle
);
134 printk(KERN_CRIT
"SMP: CPU:%d is stuck.\n", cpuid
);
138 /* Secondary CPUs starts uing C here. Here we need to setup CPU
139 * specific stuff such as the local timer and the MMU. */
140 void __init
smp_callin(void)
142 extern void cpu_idle(void);
144 int cpu
= cpu_now_booting
;
145 reg_intr_vect_rw_mask vect_mask
= {0};
147 /* Initialise the idle task for this CPU */
148 atomic_inc(&init_mm
.mm_count
);
149 current
->active_mm
= &init_mm
;
155 /* Setup local timer. */
158 /* Enable IRQ and idle */
159 REG_WR(intr_vect
, irq_regs
[cpu
], rw_mask
, vect_mask
);
160 unmask_irq(IPI_INTR_VECT
);
161 unmask_irq(TIMER_INTR_VECT
);
164 cpu_set(cpu
, cpu_online_map
);
168 /* Stop execution on this CPU.*/
169 void stop_this_cpu(void* dummy
)
172 asm volatile("halt");
176 void smp_send_stop(void)
178 smp_call_function(stop_this_cpu
, NULL
, 1, 0);
181 int setup_profiling_timer(unsigned int multiplier
)
187 /* cache_decay_ticks is used by the scheduler to decide if a process
188 * is "hot" on one CPU. A higher value means a higher penalty to move
189 * a process to another CPU. Our cache is rather small so we report
192 unsigned long cache_decay_ticks
= 1;
194 int __devinit
__cpu_up(unsigned int cpu
)
196 smp_boot_one_cpu(cpu
);
197 return cpu_online(cpu
) ? 0 : -ENOSYS
;
200 void smp_send_reschedule(int cpu
)
202 cpumask_t cpu_mask
= CPU_MASK_NONE
;
203 cpu_set(cpu
, cpu_mask
);
204 send_ipi(IPI_SCHEDULE
, 0, cpu_mask
);
209 * Flush needs to be done on the local CPU and on any other CPU that
210 * may have the same mapping. The mm->cpu_vm_mask is used to keep track
211 * of which CPUs that a specific process has been executed on.
213 void flush_tlb_common(struct mm_struct
* mm
, struct vm_area_struct
* vma
, unsigned long addr
)
218 spin_lock_irqsave(&tlbstate_lock
, flags
);
219 cpu_mask
= (mm
== FLUSH_ALL
? CPU_MASK_ALL
: mm
->cpu_vm_mask
);
220 cpu_clear(smp_processor_id(), cpu_mask
);
224 send_ipi(IPI_FLUSH_TLB
, 1, cpu_mask
);
225 spin_unlock_irqrestore(&tlbstate_lock
, flags
);
228 void flush_tlb_all(void)
231 flush_tlb_common(FLUSH_ALL
, FLUSH_ALL
, 0);
234 void flush_tlb_mm(struct mm_struct
*mm
)
237 flush_tlb_common(mm
, FLUSH_ALL
, 0);
238 /* No more mappings in other CPUs */
239 cpus_clear(mm
->cpu_vm_mask
);
240 cpu_set(smp_processor_id(), mm
->cpu_vm_mask
);
243 void flush_tlb_page(struct vm_area_struct
*vma
,
246 __flush_tlb_page(vma
, addr
);
247 flush_tlb_common(vma
->vm_mm
, vma
, addr
);
250 /* Inter processor interrupts
252 * The IPIs are used for:
253 * * Force a schedule on a CPU
254 * * FLush TLB on other CPUs
255 * * Call a function on other CPUs
258 int send_ipi(int vector
, int wait
, cpumask_t cpu_mask
)
261 reg_intr_vect_rw_ipi ipi
= REG_RD(intr_vect
, irq_regs
[i
], rw_ipi
);
264 /* Calculate CPUs to send to. */
265 cpus_and(cpu_mask
, cpu_mask
, cpu_online_map
);
268 for_each_cpu_mask(i
, cpu_mask
)
270 ipi
.vector
|= vector
;
271 REG_WR(intr_vect
, irq_regs
[i
], rw_ipi
, ipi
);
274 /* Wait for IPI to finish on other CPUS */
276 for_each_cpu_mask(i
, cpu_mask
) {
278 for (j
= 0 ; j
< 1000; j
++) {
279 ipi
= REG_RD(intr_vect
, irq_regs
[i
], rw_ipi
);
287 printk("SMP call timeout from %d to %d\n", smp_processor_id(), i
);
297 * You must not call this function with disabled interrupts or from a
298 * hardware interrupt handler or from a bottom half handler.
300 int smp_call_function(void (*func
)(void *info
), void *info
,
301 int nonatomic
, int wait
)
303 cpumask_t cpu_mask
= CPU_MASK_ALL
;
304 struct call_data_struct data
;
307 cpu_clear(smp_processor_id(), cpu_mask
);
309 WARN_ON(irqs_disabled());
315 spin_lock(&call_lock
);
317 ret
= send_ipi(IPI_CALL
, wait
, cpu_mask
);
318 spin_unlock(&call_lock
);
323 irqreturn_t
crisv32_ipi_interrupt(int irq
, void *dev_id
, struct pt_regs
*regs
)
325 void (*func
) (void *info
) = call_data
->func
;
326 void *info
= call_data
->info
;
327 reg_intr_vect_rw_ipi ipi
;
329 ipi
= REG_RD(intr_vect
, irq_regs
[smp_processor_id()], rw_ipi
);
331 if (ipi
.vector
& IPI_CALL
) {
334 if (ipi
.vector
& IPI_FLUSH_TLB
) {
335 if (flush_mm
== FLUSH_ALL
)
337 else if (flush_vma
== FLUSH_ALL
)
338 __flush_tlb_mm(flush_mm
);
340 __flush_tlb_page(flush_vma
, flush_addr
);
344 REG_WR(intr_vect
, irq_regs
[smp_processor_id()], rw_ipi
, ipi
);