3dc304e39832d304ece722b04c7899940fba5032
[linux-flexiantxendom0-3.2.10.git] / arch / ia64 / kernel / smp.c
1 /*
2  * SMP Support
3  *
4  * Copyright (C) 1999 Walt Drummond <drummond@valinux.com>
5  * Copyright (C) 1999, 2001 David Mosberger-Tang <davidm@hpl.hp.com>
6  *
7  * Lots of stuff stolen from arch/alpha/kernel/smp.c
8  *
9  * 01/05/16 Rohit Seth <rohit.seth@intel.com>  IA64-SMP functions. Reorganized
10  * the existing code (on the lines of x86 port).
11  * 00/09/11 David Mosberger <davidm@hpl.hp.com> Do loops_per_jiffy
12  * calibration on each CPU.
13  * 00/08/23 Asit Mallick <asit.k.mallick@intel.com> fixed logical processor id
14  * 00/03/31 Rohit Seth <rohit.seth@intel.com>   Fixes for Bootstrap Processor
15  * & cpu_online_map now gets done here (instead of setup.c)
16  * 99/10/05 davidm      Update to bring it in sync with new command-line processing
17  *  scheme.
18  * 10/13/00 Goutham Rao <goutham.rao@intel.com> Updated smp_call_function and
19  *              smp_call_function_single to resend IPI on timeouts
20  */
21 #define __KERNEL_SYSCALLS__
22
23 #include <linux/config.h>
24
25 #include <linux/kernel.h>
26 #include <linux/sched.h>
27 #include <linux/init.h>
28 #include <linux/interrupt.h>
29 #include <linux/smp.h>
30 #include <linux/kernel_stat.h>
31 #include <linux/mm.h>
32 #include <linux/cache.h>
33 #include <linux/delay.h>
34 #include <linux/cache.h>
35 #include <linux/efi.h>
36
37 #include <asm/atomic.h>
38 #include <asm/bitops.h>
39 #include <asm/current.h>
40 #include <asm/delay.h>
41 #include <asm/machvec.h>
42 #include <asm/io.h>
43 #include <asm/irq.h>
44 #include <asm/page.h>
45 #include <asm/pgalloc.h>
46 #include <asm/pgtable.h>
47 #include <asm/processor.h>
48 #include <asm/ptrace.h>
49 #include <asm/sal.h>
50 #include <asm/system.h>
51 #include <asm/tlbflush.h>
52 #include <asm/unistd.h>
53 #include <asm/mca.h>
54
55 /*
56  * Structure and data for smp_call_function(). This is designed to minimise static memory
57  * requirements. It also looks cleaner.
58  */
59 static spinlock_t call_lock __cacheline_aligned = SPIN_LOCK_UNLOCKED;
60
61 struct call_data_struct {
62         void (*func) (void *info);
63         void *info;
64         long wait;
65         atomic_t started;
66         atomic_t finished;
67 };
68
69 static volatile struct call_data_struct *call_data;
70
71 #define IPI_CALL_FUNC           0
72 #define IPI_CPU_STOP            1
73
74 /* This needs to be cacheline aligned because it is written to by *other* CPUs.  */
75 static DEFINE_PER_CPU(__u64, ipi_operation) ____cacheline_aligned;
76
77 static void
78 stop_this_cpu (void)
79 {
80         extern void cpu_halt (void);
81         /*
82          * Remove this CPU:
83          */
84         clear_bit(smp_processor_id(), &cpu_online_map);
85         max_xtp();
86         local_irq_disable();
87         cpu_halt();
88 }
89
90 void
91 handle_IPI (int irq, void *dev_id, struct pt_regs *regs)
92 {
93         int this_cpu = get_cpu();
94         unsigned long *pending_ipis = &__get_cpu_var(ipi_operation);
95         unsigned long ops;
96
97         /* Count this now; we may make a call that never returns. */
98         local_cpu_data->ipi_count++;
99
100         mb();   /* Order interrupt and bit testing. */
101         while ((ops = xchg(pending_ipis, 0)) != 0) {
102                 mb();   /* Order bit clearing and data access. */
103                 do {
104                         unsigned long which;
105
106                         which = ffz(~ops);
107                         ops &= ~(1 << which);
108
109                         switch (which) {
110                               case IPI_CALL_FUNC:
111                               {
112                                       struct call_data_struct *data;
113                                       void (*func)(void *info);
114                                       void *info;
115                                       int wait;
116
117                                       /* release the 'pointer lock' */
118                                       data = (struct call_data_struct *) call_data;
119                                       func = data->func;
120                                       info = data->info;
121                                       wait = data->wait;
122
123                                       mb();
124                                       atomic_inc(&data->started);
125                                       /*
126                                        * At this point the structure may be gone unless
127                                        * wait is true.
128                                        */
129                                       (*func)(info);
130
131                                       /* Notify the sending CPU that the task is done.  */
132                                       mb();
133                                       if (wait)
134                                               atomic_inc(&data->finished);
135                               }
136                               break;
137
138                               case IPI_CPU_STOP:
139                                 stop_this_cpu();
140                                 break;
141
142                               default:
143                                 printk(KERN_CRIT "Unknown IPI on CPU %d: %lu\n", this_cpu, which);
144                                 break;
145                         }
146                 } while (ops);
147                 mb();   /* Order data access and bit testing. */
148         }
149         put_cpu();
150 }
151
152 /*
153  * Called with preeemption disabled 
154  */
155 static inline void
156 send_IPI_single (int dest_cpu, int op)
157 {
158         set_bit(op, &per_cpu(ipi_operation, dest_cpu));
159         platform_send_ipi(dest_cpu, IA64_IPI_VECTOR, IA64_IPI_DM_INT, 0);
160 }
161
162 /*
163  * Called with preeemption disabled 
164  */
165 static inline void
166 send_IPI_allbutself (int op)
167 {
168         int i;
169
170         for (i = 0; i < NR_CPUS; i++) {
171                 if (cpu_online(i) && i != smp_processor_id())
172                         send_IPI_single(i, op);
173         }
174 }
175
176 /*
177  * Called with preeemption disabled 
178  */
179 static inline void
180 send_IPI_all (int op)
181 {
182         int i;
183
184         for (i = 0; i < NR_CPUS; i++)
185                 if (cpu_online(i))
186                         send_IPI_single(i, op);
187 }
188
189 /*
190  * Called with preeemption disabled 
191  */
192 static inline void
193 send_IPI_self (int op)
194 {
195         send_IPI_single(smp_processor_id(), op);
196 }
197
198 /*
199  * Called with preeemption disabled 
200  */
201 void
202 smp_send_reschedule (int cpu)
203 {
204         platform_send_ipi(cpu, IA64_IPI_RESCHEDULE, IA64_IPI_DM_INT, 0);
205 }
206
207 /*
208  * This function sends a reschedule IPI to all (other) CPUs.  This should only be used if
209  * some 'global' task became runnable, such as a RT task, that must be handled now. The
210  * first CPU that manages to grab the task will run it.
211  */
212 void
213 smp_send_reschedule_all (void)
214 {
215         int i;
216         int cpu = get_cpu(); /* disable preemption */
217
218         for (i = 0; i < NR_CPUS; i++)
219                 if (cpu_online(i) && i != cpu)
220                         smp_send_reschedule(i);
221         put_cpu();
222 }
223
224
225 void
226 smp_flush_tlb_all (void)
227 {
228         on_each_cpu((void (*)(void *))local_flush_tlb_all, 0, 1, 1);
229 }
230
231 void
232 smp_flush_tlb_mm (struct mm_struct *mm)
233 {
234         /* this happens for the common case of a single-threaded fork():  */
235         if (likely(mm == current->active_mm && atomic_read(&mm->mm_users) == 1))
236         {
237                 local_finish_flush_tlb_mm(mm);
238                 return;
239         }
240
241         /*
242          * We could optimize this further by using mm->cpu_vm_mask to track which CPUs
243          * have been running in the address space.  It's not clear that this is worth the
244          * trouble though: to avoid races, we have to raise the IPI on the target CPU
245          * anyhow, and once a CPU is interrupted, the cost of local_flush_tlb_all() is
246          * rather trivial.
247          */
248         on_each_cpu((void (*)(void *))local_finish_flush_tlb_mm, mm, 1, 1);
249 }
250
251 /*
252  * Run a function on another CPU
253  *  <func>      The function to run. This must be fast and non-blocking.
254  *  <info>      An arbitrary pointer to pass to the function.
255  *  <nonatomic> Currently unused.
256  *  <wait>      If true, wait until function has completed on other CPUs.
257  *  [RETURNS]   0 on success, else a negative status code.
258  *
259  * Does not return until the remote CPU is nearly ready to execute <func>
260  * or is or has executed.
261  */
262
263 int
264 smp_call_function_single (int cpuid, void (*func) (void *info), void *info, int nonatomic,
265                           int wait)
266 {
267         struct call_data_struct data;
268         int cpus = 1;
269         int me = get_cpu(); /* prevent preemption and reschedule on another processor */
270
271         if (cpuid == me) {
272                 printk("%s: trying to call self\n", __FUNCTION__);
273                 put_cpu();
274                 return -EBUSY;
275         }
276
277         data.func = func;
278         data.info = info;
279         atomic_set(&data.started, 0);
280         data.wait = wait;
281         if (wait)
282                 atomic_set(&data.finished, 0);
283
284         spin_lock_bh(&call_lock);
285
286         call_data = &data;
287         mb();   /* ensure store to call_data precedes setting of IPI_CALL_FUNC */
288         send_IPI_single(cpuid, IPI_CALL_FUNC);
289
290         /* Wait for response */
291         while (atomic_read(&data.started) != cpus)
292                 barrier();
293
294         if (wait)
295                 while (atomic_read(&data.finished) != cpus)
296                         barrier();
297         call_data = NULL;
298
299         spin_unlock_bh(&call_lock);
300         put_cpu();
301         return 0;
302 }
303
304 /*
305  * this function sends a 'generic call function' IPI to all other CPUs
306  * in the system.
307  */
308
309 /*
310  *  [SUMMARY]   Run a function on all other CPUs.
311  *  <func>      The function to run. This must be fast and non-blocking.
312  *  <info>      An arbitrary pointer to pass to the function.
313  *  <nonatomic> currently unused.
314  *  <wait>      If true, wait (atomically) until function has completed on other CPUs.
315  *  [RETURNS]   0 on success, else a negative status code.
316  *
317  * Does not return until remote CPUs are nearly ready to execute <func> or are or have
318  * executed.
319  *
320  * You must not call this function with disabled interrupts or from a
321  * hardware interrupt handler or from a bottom half handler.
322  */
323 int
324 smp_call_function (void (*func) (void *info), void *info, int nonatomic, int wait)
325 {
326         struct call_data_struct data;
327         int cpus = num_online_cpus()-1;
328
329         if (!cpus)
330                 return 0;
331
332         data.func = func;
333         data.info = info;
334         atomic_set(&data.started, 0);
335         data.wait = wait;
336         if (wait)
337                 atomic_set(&data.finished, 0);
338
339         spin_lock(&call_lock);
340
341         call_data = &data;
342         mb();   /* ensure store to call_data precedes setting of IPI_CALL_FUNC */
343         send_IPI_allbutself(IPI_CALL_FUNC);
344
345         /* Wait for response */
346         while (atomic_read(&data.started) != cpus)
347                 barrier();
348
349         if (wait)
350                 while (atomic_read(&data.finished) != cpus)
351                         barrier();
352         call_data = NULL;
353
354         spin_unlock(&call_lock);
355         return 0;
356 }
357
358 void
359 smp_do_timer (struct pt_regs *regs)
360 {
361         int user = user_mode(regs);
362
363         if (--local_cpu_data->prof_counter <= 0) {
364                 local_cpu_data->prof_counter = local_cpu_data->prof_multiplier;
365                 update_process_times(user);
366         }
367 }
368
369 /*
370  * this function calls the 'stop' function on all other CPUs in the system.
371  */
372 void
373 smp_send_stop (void)
374 {
375         send_IPI_allbutself(IPI_CPU_STOP);
376 }
377
378 int __init
379 setup_profiling_timer (unsigned int multiplier)
380 {
381         return -EINVAL;
382 }