4 ** Copyright (C) 1999 Walt Drummond <drummond@valinux.com>
5 ** Copyright (C) 1999 David Mosberger-Tang <davidm@hpl.hp.com>
6 ** Copyright (C) 2001,2004 Grant Grundler <grundler@parisc-linux.org>
8 ** Lots of stuff stolen from arch/alpha/kernel/smp.c
9 ** ...and then parisc stole from arch/ia64/kernel/smp.c. Thanks David! :^)
11 ** Thanks to John Curry and Ullas Ponnadi. I learned alot from their work.
14 ** This program is free software; you can redistribute it and/or modify
15 ** it under the terms of the GNU General Public License as published by
16 ** the Free Software Foundation; either version 2 of the License, or
17 ** (at your option) any later version.
19 #undef ENTRY_SYS_CPUS /* syscall support for iCOD-like functionality */
21 #include <linux/autoconf.h>
23 #include <linux/types.h>
24 #include <linux/spinlock.h>
25 #include <linux/slab.h>
27 #include <linux/kernel.h>
28 #include <linux/module.h>
29 #include <linux/sched.h>
30 #include <linux/init.h>
31 #include <linux/interrupt.h>
32 #include <linux/smp.h>
33 #include <linux/kernel_stat.h>
35 #include <linux/delay.h>
36 #include <linux/bitops.h>
38 #include <asm/system.h>
39 #include <asm/atomic.h>
40 #include <asm/current.h>
41 #include <asm/delay.h>
42 #include <asm/pgalloc.h> /* for flush_tlb_all() proto/macro */
45 #include <asm/irq.h> /* for CPU_IRQ_REGION and friends */
46 #include <asm/mmu_context.h>
48 #include <asm/pgtable.h>
49 #include <asm/pgalloc.h>
50 #include <asm/processor.h>
51 #include <asm/ptrace.h>
52 #include <asm/unistd.h>
53 #include <asm/cacheflush.h>
57 DEFINE_SPINLOCK(smp_lock
);
59 volatile struct task_struct
*smp_init_current_idle_task
;
61 static volatile int cpu_now_booting
= 0; /* track which CPU is booting */
63 static int parisc_max_cpus
= 1;
65 /* online cpus are ones that we've managed to bring up completely
66 * possible cpus are all valid cpu
67 * present cpus are all detected cpu
69 * On startup we bring up the "possible" cpus. Since we discover
70 * CPUs later, we add them as hotplug, so the possible cpu mask is
71 * empty in the beginning.
74 cpumask_t cpu_online_map
= CPU_MASK_NONE
; /* Bitmap of online CPUs */
75 cpumask_t cpu_possible_map
= CPU_MASK_ALL
; /* Bitmap of Present CPUs */
77 EXPORT_SYMBOL(cpu_online_map
);
78 EXPORT_SYMBOL(cpu_possible_map
);
81 struct smp_call_struct
{
82 void (*func
) (void *info
);
85 atomic_t unstarted_count
;
86 atomic_t unfinished_count
;
88 static volatile struct smp_call_struct
*smp_call_function_data
;
90 enum ipi_message_type
{
100 /********** SMP inter processor interrupt and communication routines */
102 #undef PER_CPU_IRQ_REGION
103 #ifdef PER_CPU_IRQ_REGION
104 /* XXX REVISIT Ignore for now.
105 ** *May* need this "hook" to register IPI handler
106 ** once we have perCPU ExtIntr switch tables.
112 /* If CPU is present ... */
113 #ifdef ENTRY_SYS_CPUS
114 /* *and* running (not stopped) ... */
115 #error iCOD support wants state checked here.
118 #error verify IRQ_OFFSET(IPI_IRQ) is ipi_interrupt() in new IRQ region
120 if(cpu_online(cpuid
) )
122 switch_to_idle_task(current
);
131 ** Yoink this CPU from the runnable list...
137 #ifdef ENTRY_SYS_CPUS
138 #error halt_processor() needs rework
140 ** o migrate I/O interrupts off this CPU.
141 ** o leave IPI enabled - __cli() will disable IPI.
142 ** o leave CPU in online map - just change the state
144 cpu_data
[this_cpu
].state
= STATE_STOPPED
;
147 /* REVISIT : redirect I/O Interrupts to another CPU? */
148 /* REVISIT : does PM *know* this CPU isn't available? */
149 cpu_clear(smp_processor_id(), cpu_online_map
);
158 ipi_interrupt(int irq
, void *dev_id
, struct pt_regs
*regs
)
160 int this_cpu
= smp_processor_id();
161 struct cpuinfo_parisc
*p
= &cpu_data
[this_cpu
];
165 /* Count this now; we may make a call that never returns. */
168 mb(); /* Order interrupt and bit testing. */
171 spin_lock_irqsave(&(p
->lock
),flags
);
172 ops
= p
->pending_ipi
;
174 spin_unlock_irqrestore(&(p
->lock
),flags
);
176 mb(); /* Order bit clearing and data access. */
182 unsigned long which
= ffz(~ops
);
187 printk(KERN_DEBUG
"CPU%d IPI_RESCHEDULE\n",this_cpu
);
189 ops
&= ~(1 << IPI_RESCHEDULE
);
191 * Reschedule callback. Everything to be
192 * done is done by the interrupt return path.
198 printk(KERN_DEBUG
"CPU%d IPI_CALL_FUNC\n",this_cpu
);
200 ops
&= ~(1 << IPI_CALL_FUNC
);
202 volatile struct smp_call_struct
*data
;
203 void (*func
)(void *info
);
207 data
= smp_call_function_data
;
213 atomic_dec ((atomic_t
*)&data
->unstarted_count
);
215 /* At this point, *data can't
221 /* Notify the sending CPU that the
226 atomic_dec ((atomic_t
*)&data
->unfinished_count
);
232 printk(KERN_DEBUG
"CPU%d IPI_CPU_START\n",this_cpu
);
234 ops
&= ~(1 << IPI_CPU_START
);
235 #ifdef ENTRY_SYS_CPUS
236 p
->state
= STATE_RUNNING
;
242 printk(KERN_DEBUG
"CPU%d IPI_CPU_STOP\n",this_cpu
);
244 ops
&= ~(1 << IPI_CPU_STOP
);
245 #ifdef ENTRY_SYS_CPUS
253 printk(KERN_DEBUG
"CPU%d is alive!\n",this_cpu
);
255 ops
&= ~(1 << IPI_CPU_TEST
);
259 printk(KERN_CRIT
"Unknown IPI num on CPU%d: %lu\n",
261 ops
&= ~(1 << which
);
271 ipi_send(int cpu
, enum ipi_message_type op
)
273 struct cpuinfo_parisc
*p
= &cpu_data
[cpu
];
276 spin_lock_irqsave(&(p
->lock
),flags
);
277 p
->pending_ipi
|= 1 << op
;
278 gsc_writel(IPI_IRQ
- CPU_IRQ_BASE
, cpu_data
[cpu
].hpa
);
279 spin_unlock_irqrestore(&(p
->lock
),flags
);
284 send_IPI_single(int dest_cpu
, enum ipi_message_type op
)
286 if (dest_cpu
== NO_PROC_ID
) {
291 ipi_send(dest_cpu
, op
);
295 send_IPI_allbutself(enum ipi_message_type op
)
299 for (i
= 0; i
< NR_CPUS
; i
++) {
300 if (cpu_online(i
) && i
!= smp_processor_id())
301 send_IPI_single(i
, op
);
307 smp_send_stop(void) { send_IPI_allbutself(IPI_CPU_STOP
); }
310 smp_send_start(void) { send_IPI_allbutself(IPI_CPU_START
); }
313 smp_send_reschedule(int cpu
) { send_IPI_single(cpu
, IPI_RESCHEDULE
); }
317 * Run a function on all other CPUs.
318 * <func> The function to run. This must be fast and non-blocking.
319 * <info> An arbitrary pointer to pass to the function.
320 * <retry> If true, keep retrying until ready.
321 * <wait> If true, wait until function has completed on other CPUs.
322 * [RETURNS] 0 on success, else a negative status code.
324 * Does not return until remote CPUs are nearly ready to execute <func>
329 smp_call_function (void (*func
) (void *info
), void *info
, int retry
, int wait
)
331 struct smp_call_struct data
;
332 unsigned long timeout
;
333 static DEFINE_SPINLOCK(lock
);
336 if (num_online_cpus() < 2)
339 /* Can deadlock when called with interrupts disabled */
340 WARN_ON(irqs_disabled());
345 atomic_set(&data
.unstarted_count
, num_online_cpus() - 1);
346 atomic_set(&data
.unfinished_count
, num_online_cpus() - 1);
350 while (smp_call_function_data
!= 0)
355 if (smp_call_function_data
) {
361 smp_call_function_data
= &data
;
364 /* Send a message to all other CPUs and wait for them to respond */
365 send_IPI_allbutself(IPI_CALL_FUNC
);
368 /* Wait for response */
369 timeout
= jiffies
+ HZ
;
370 while ( (atomic_read (&data
.unstarted_count
) > 0) &&
371 time_before (jiffies
, timeout
) )
374 if (atomic_read (&data
.unstarted_count
) > 0) {
375 printk(KERN_CRIT
"SMP CALL FUNCTION TIMED OUT! (cpu=%d), try %d\n",
376 smp_processor_id(), ++retries
);
379 /* We either got one or timed out. Release the lock */
382 smp_call_function_data
= NULL
;
384 while (wait
&& atomic_read (&data
.unfinished_count
) > 0)
390 EXPORT_SYMBOL(smp_call_function
);
393 * Flush all other CPU's tlb and then mine. Do this with on_each_cpu()
394 * as we want to ensure all TLB's flushed before proceeding.
397 extern void flush_tlb_all_local(void);
400 smp_flush_tlb_all(void)
402 on_each_cpu((void (*)(void *))flush_tlb_all_local
, NULL
, 1, 1);
407 smp_do_timer(struct pt_regs
*regs
)
409 int cpu
= smp_processor_id();
410 struct cpuinfo_parisc
*data
= &cpu_data
[cpu
];
412 if (!--data
->prof_counter
) {
413 data
->prof_counter
= data
->prof_multiplier
;
414 update_process_times(user_mode(regs
));
419 * Called by secondaries to update state and initialize CPU registers.
422 smp_cpu_init(int cpunum
)
424 extern int init_per_cpu(int); /* arch/parisc/kernel/setup.c */
425 extern void init_IRQ(void); /* arch/parisc/kernel/irq.c */
427 /* Set modes and Enable floating point coprocessor */
428 (void) init_per_cpu(cpunum
);
430 disable_sr_hashing();
434 /* Well, support 2.4 linux scheme as well. */
435 if (cpu_test_and_set(cpunum
, cpu_online_map
))
437 extern void machine_halt(void); /* arch/parisc.../process.c */
439 printk(KERN_CRIT
"CPU#%d already initialized!\n", cpunum
);
443 /* Initialise the idle task for this CPU */
444 atomic_inc(&init_mm
.mm_count
);
445 current
->active_mm
= &init_mm
;
448 enter_lazy_tlb(&init_mm
, current
);
450 init_IRQ(); /* make sure no IRQ's are enabled or pending */
455 * Slaves start using C here. Indirectly called from smp_slave_stext.
456 * Do what start_kernel() and main() do for boot strap processor (aka monarch)
458 void __init
smp_callin(void)
460 int slave_id
= cpu_now_booting
;
465 smp_cpu_init(slave_id
);
467 #if 0 /* NOT WORKING YET - see entry.S */
468 istack
= (void *)__get_free_pages(GFP_KERNEL
,ISTACK_ORDER
);
469 if (istack
== NULL
) {
470 printk(KERN_CRIT
"Failed to allocate interrupt stack for cpu %d\n",slave_id
);
476 flush_cache_all_local(); /* start with known state */
477 flush_tlb_all_local();
479 local_irq_enable(); /* Interrupts have been off until now */
481 cpu_idle(); /* Wait for timer to schedule some work */
484 panic("smp_callin() AAAAaaaaahhhh....\n");
488 * Bring one cpu online.
490 int __init
smp_boot_one_cpu(int cpuid
)
492 struct task_struct
*idle
;
496 * Create an idle task for this CPU. Note the address wed* give
497 * to kernel_thread is irrelevant -- it's going to start
498 * where OS_BOOT_RENDEVZ vector in SAL says to start. But
499 * this gets all the other task-y sort of data structures set
500 * up like we wish. We need to pull the just created idle task
501 * off the run queue and stuff it into the init_tasks[] array.
505 idle
= fork_idle(cpuid
);
507 panic("SMP: fork failed for CPU:%d", cpuid
);
509 idle
->thread_info
->cpu
= cpuid
;
511 /* Let _start know what logical CPU we're booting
512 ** (offset into init_tasks[],cpu_data[])
514 cpu_now_booting
= cpuid
;
517 ** boot strap code needs to know the task address since
518 ** it also contains the process stack.
520 smp_init_current_idle_task
= idle
;
523 printk("Releasing cpu %d now, hpa=%lx\n", cpuid
, cpu_data
[cpuid
].hpa
);
526 ** This gets PDC to release the CPU from a very tight loop.
528 ** From the PA-RISC 2.0 Firmware Architecture Reference Specification:
529 ** "The MEM_RENDEZ vector specifies the location of OS_RENDEZ which
530 ** is executed after receiving the rendezvous signal (an interrupt to
531 ** EIR{0}). MEM_RENDEZ is valid only when it is nonzero and the
532 ** contents of memory are valid."
534 gsc_writel(TIMER_IRQ
- CPU_IRQ_BASE
, cpu_data
[cpuid
].hpa
);
538 * OK, wait a bit for that CPU to finish staggering about.
539 * Slave will set a bit when it reaches smp_cpu_init().
540 * Once the "monarch CPU" sees the bit change, it can move on.
542 for (timeout
= 0; timeout
< 10000; timeout
++) {
543 if(cpu_online(cpuid
)) {
544 /* Which implies Slave has started up */
546 smp_init_current_idle_task
= NULL
;
553 put_task_struct(idle
);
556 printk(KERN_CRIT
"SMP: CPU:%d is stuck.\n", cpuid
);
560 /* Remember the Slave data */
562 printk(KERN_DEBUG
"SMP: CPU:%d came alive after %ld _us\n",
563 cpuid
, timeout
* 100);
565 #ifdef ENTRY_SYS_CPUS
566 cpu_data
[cpuid
].state
= STATE_RUNNING
;
571 void __devinit
smp_prepare_boot_cpu(void)
573 int bootstrap_processor
=cpu_data
[0].cpuid
; /* CPU ID of BSP */
575 #ifdef ENTRY_SYS_CPUS
576 cpu_data
[0].state
= STATE_RUNNING
;
579 /* Setup BSP mappings */
580 printk("SMP: bootstrap CPU ID is %d\n",bootstrap_processor
);
582 cpu_set(bootstrap_processor
, cpu_online_map
);
583 cpu_set(bootstrap_processor
, cpu_present_map
);
589 ** inventory.c:do_inventory() hasn't yet been run and thus we
590 ** don't 'discover' the additional CPU's until later.
592 void __init
smp_prepare_cpus(unsigned int max_cpus
)
594 cpus_clear(cpu_present_map
);
595 cpu_set(0, cpu_present_map
);
597 parisc_max_cpus
= max_cpus
;
599 printk(KERN_INFO
"SMP mode deactivated.\n");
603 void smp_cpus_done(unsigned int cpu_max
)
609 int __devinit
__cpu_up(unsigned int cpu
)
611 if (cpu
!= 0 && cpu
< parisc_max_cpus
)
612 smp_boot_one_cpu(cpu
);
614 return cpu_online(cpu
) ? 0 : -ENOSYS
;
619 #ifdef ENTRY_SYS_CPUS
620 /* Code goes along with:
621 ** entry.s: ENTRY_NAME(sys_cpus) / * 215, for cpu stat * /
623 int sys_cpus(int argc
, char **argv
)
626 extern int current_pid(int cpu
);
629 printk("sys_cpus:Only one argument supported\n");
634 #ifdef DUMP_MORE_STATE
635 for(i
=0; i
<NR_CPUS
; i
++) {
636 int cpus_per_line
= 4;
638 if (j
++ % cpus_per_line
)
648 } else if((argc
==2) && !(strcmp(argv
[1],"-l"))) {
649 printk("\nCPUSTATE TASK CPUNUM CPUID HARDCPU(HPA)\n");
650 #ifdef DUMP_MORE_STATE
651 for(i
=0;i
<NR_CPUS
;i
++) {
654 if (cpu_data
[i
].cpuid
!= NO_PROC_ID
) {
655 switch(cpu_data
[i
].state
) {
656 case STATE_RENDEZVOUS
:
660 printk((current_pid(i
)!=0) ? "RUNNING " : "IDLING ");
669 printk("%08x?", cpu_data
[i
].state
);
673 printk(" %4d",current_pid(i
));
675 printk(" %6d",cpu_number_map(i
));
677 printk(" 0x%lx\n",cpu_data
[i
].hpa
);
681 printk("\n%s %4d 0 0 --------",
682 (current
->pid
)?"RUNNING ": "IDLING ",current
->pid
);
684 } else if ((argc
==2) && !(strcmp(argv
[1],"-s"))) {
685 #ifdef DUMP_MORE_STATE
686 printk("\nCPUSTATE CPUID\n");
687 for (i
=0;i
<NR_CPUS
;i
++) {
690 if (cpu_data
[i
].cpuid
!= NO_PROC_ID
) {
691 switch(cpu_data
[i
].state
) {
692 case STATE_RENDEZVOUS
:
693 printk("RENDEZVS");break;
695 printk((current_pid(i
)!=0) ? "RUNNING " : "IDLING");
698 printk("STOPPED ");break;
700 printk("HALTED ");break;
707 printk("\n%s CPU0",(current
->pid
==0)?"RUNNING ":"IDLING ");
710 printk("sys_cpus:Unknown request\n");
715 #endif /* ENTRY_SYS_CPUS */
717 #ifdef CONFIG_PROC_FS
719 setup_profiling_timer(unsigned int multiplier
)