2 * Copyright (C) 2000 - 2003 Jeff Dike (jdike@addtoit.com)
3 * Licensed under the GPL
6 #include "linux/config.h"
7 #include "linux/percpu.h"
8 #include "asm/pgalloc.h"
11 /* For some reason, mmu_gathers are referenced when CONFIG_SMP is off. */
12 DEFINE_PER_CPU(struct mmu_gather
, mmu_gathers
);
16 #include "linux/sched.h"
17 #include "linux/module.h"
18 #include "linux/threads.h"
19 #include "linux/interrupt.h"
20 #include "linux/err.h"
21 #include "linux/hardirq.h"
23 #include "asm/processor.h"
24 #include "asm/spinlock.h"
25 #include "user_util.h"
26 #include "kern_util.h"
31 /* CPU online map, set by smp_boot_cpus */
32 cpumask_t cpu_online_map
= CPU_MASK_NONE
;
33 cpumask_t cpu_possible_map
= CPU_MASK_NONE
;
35 EXPORT_SYMBOL(cpu_online_map
);
36 EXPORT_SYMBOL(cpu_possible_map
);
38 /* Per CPU bogomips and other parameters
39 * The only piece used here is the ipi pipe, which is set before SMP is
40 * started and never changed.
42 struct cpuinfo_um cpu_data
[NR_CPUS
];
44 /* Set when the idlers are all forked */
45 int smp_threads_ready
= 0;
47 /* A statistic, can be a little off */
48 int num_reschedules_sent
= 0;
50 /* Small, random number, never changed */
51 unsigned long cache_decay_ticks
= 5;
53 /* Not changed after boot */
54 struct task_struct
*idle_threads
[NR_CPUS
];
56 void smp_send_reschedule(int cpu
)
58 os_write_file(cpu_data
[cpu
].ipi_pipe
[1], "R", 1);
59 num_reschedules_sent
++;
62 void smp_send_stop(void)
66 printk(KERN_INFO
"Stopping all CPUs...");
67 for(i
= 0; i
< num_online_cpus(); i
++){
68 if(i
== current_thread
->cpu
)
70 os_write_file(cpu_data
[i
].ipi_pipe
[1], "S", 1);
75 static cpumask_t smp_commenced_mask
= CPU_MASK_NONE
;
76 static cpumask_t cpu_callin_map
= CPU_MASK_NONE
;
78 static int idle_proc(void *cpup
)
80 int cpu
= (int) cpup
, err
;
82 err
= os_pipe(cpu_data
[cpu
].ipi_pipe
, 1, 1);
84 panic("CPU#%d failed to create IPI pipe, err = %d", cpu
, -err
);
86 activate_ipi(cpu_data
[cpu
].ipi_pipe
[0],
87 current
->thread
.mode
.tt
.extern_pid
);
90 if (cpu_test_and_set(cpu
, cpu_callin_map
)) {
91 printk("huh, CPU#%d already present??\n", cpu
);
95 while (!cpu_isset(cpu
, smp_commenced_mask
))
98 cpu_set(cpu
, cpu_online_map
);
103 static struct task_struct
*idle_thread(int cpu
)
105 struct task_struct
*new_task
;
108 current
->thread
.request
.u
.thread
.proc
= idle_proc
;
109 current
->thread
.request
.u
.thread
.arg
= (void *) cpu
;
110 new_task
= fork_idle(cpu
);
112 panic("copy_process failed in idle_thread, error = %ld",
115 cpu_tasks
[cpu
] = ((struct cpu_task
)
116 { .pid
= new_task
->thread
.mode
.tt
.extern_pid
,
117 .task
= new_task
} );
118 idle_threads
[cpu
] = new_task
;
119 CHOOSE_MODE(os_write_file(new_task
->thread
.mode
.tt
.switch_pipe
[1], &c
,
121 ({ panic("skas mode doesn't support SMP"); }));
125 void smp_prepare_cpus(unsigned int maxcpus
)
127 struct task_struct
*idle
;
128 unsigned long waittime
;
129 int err
, cpu
, me
= smp_processor_id();
132 for (i
= 0; i
< ncpus
; ++i
)
133 cpu_set(i
, cpu_possible_map
);
135 cpu_clear(me
, cpu_online_map
);
136 cpu_set(me
, cpu_online_map
);
137 cpu_set(me
, cpu_callin_map
);
139 err
= os_pipe(cpu_data
[me
].ipi_pipe
, 1, 1);
141 panic("CPU#0 failed to create IPI pipe, errno = %d", -err
);
143 activate_ipi(cpu_data
[me
].ipi_pipe
[0],
144 current
->thread
.mode
.tt
.extern_pid
);
146 for(cpu
= 1; cpu
< ncpus
; cpu
++){
147 printk("Booting processor %d...\n", cpu
);
149 idle
= idle_thread(cpu
);
151 init_idle(idle
, cpu
);
152 unhash_process(idle
);
154 waittime
= 200000000;
155 while (waittime
-- && !cpu_isset(cpu
, cpu_callin_map
))
158 if (cpu_isset(cpu
, cpu_callin_map
))
160 else printk("failed\n");
164 void smp_prepare_boot_cpu(void)
166 cpu_set(smp_processor_id(), cpu_online_map
);
169 int __cpu_up(unsigned int cpu
)
171 cpu_set(cpu
, smp_commenced_mask
);
172 while (!cpu_isset(cpu
, cpu_online_map
))
177 int setup_profiling_timer(unsigned int multiplier
)
179 printk(KERN_INFO
"setup_profiling_timer\n");
183 void smp_call_function_slave(int cpu
);
185 void IPI_handler(int cpu
)
190 fd
= cpu_data
[cpu
].ipi_pipe
[0];
191 while (os_read_file(fd
, &c
, 1) == 1) {
194 smp_call_function_slave(cpu
);
198 set_tsk_need_resched(current
);
202 printk("CPU#%d stopping\n", cpu
);
208 printk("CPU#%d received unknown IPI [%c]!\n", cpu
, c
);
214 int hard_smp_processor_id(void)
216 return(pid_to_processor_id(os_getpid()));
219 static spinlock_t call_lock
= SPIN_LOCK_UNLOCKED
;
220 static atomic_t scf_started
;
221 static atomic_t scf_finished
;
222 static void (*func
)(void *info
);
225 void smp_call_function_slave(int cpu
)
227 atomic_inc(&scf_started
);
229 atomic_inc(&scf_finished
);
232 int smp_call_function(void (*_func
)(void *info
), void *_info
, int nonatomic
,
235 int cpus
= num_online_cpus() - 1;
241 /* Can deadlock when called with interrupts disabled */
242 WARN_ON(irqs_disabled());
244 spin_lock_bh(&call_lock
);
245 atomic_set(&scf_started
, 0);
246 atomic_set(&scf_finished
, 0);
250 for (i
=0;i
<NR_CPUS
;i
++)
251 if((i
!= current_thread
->cpu
) &&
252 cpu_isset(i
, cpu_online_map
))
253 os_write_file(cpu_data
[i
].ipi_pipe
[1], "C", 1);
255 while (atomic_read(&scf_started
) != cpus
)
259 while (atomic_read(&scf_finished
) != cpus
)
262 spin_unlock_bh(&call_lock
);
269 * Overrides for Emacs so that we follow Linus's tabbing style.
270 * Emacs will notice this stuff at the end of the file and automatically
271 * adjust the settings for this buffer only. This must remain at the end
273 * ---------------------------------------------------------------------------
275 * c-file-style: "linux"