2 * SMP support for pSeries machines.
4 * Dave Engebretsen, Peter Bergner, and
5 * Mike Corrigan {engebret|bergner|mikec}@us.ibm.com
7 * Plus various changes from other IBM teams...
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License
11 * as published by the Free Software Foundation; either version
12 * 2 of the License, or (at your option) any later version.
17 #include <linux/kernel.h>
18 #include <linux/module.h>
19 #include <linux/sched.h>
20 #include <linux/smp.h>
21 #include <linux/interrupt.h>
22 #include <linux/delay.h>
23 #include <linux/init.h>
24 #include <linux/spinlock.h>
25 #include <linux/cache.h>
26 #include <linux/err.h>
27 #include <linux/sysdev.h>
28 #include <linux/cpu.h>
30 #include <asm/ptrace.h>
31 #include <asm/atomic.h>
34 #include <asm/pgtable.h>
40 #include <asm/machdep.h>
42 #include <asm/cputable.h>
43 #include <asm/firmware.h>
44 #include <asm/system.h>
46 #include <asm/pSeries_reconfig.h>
48 #include <asm/vdso_datapage.h>
49 #include <asm/cputhreads.h>
51 #include "plpar_wrappers.h"
56 #define DBG(fmt...) udbg_printf(fmt)
62 * The primary thread of each non-boot processor is recorded here before
65 static cpumask_t of_spin_map;
67 extern void generic_secondary_smp_init(unsigned long);
70 * smp_startup_cpu() - start the given cpu
72 * At boot time, there is nothing to do for primary threads which were
73 * started from Open Firmware. For anything else, call RTAS with the
74 * appropriate start location.
80 static inline int __devinit smp_startup_cpu(unsigned int lcpu)
83 unsigned long start_here = __pa((u32)*((unsigned long *)
84 generic_secondary_smp_init));
88 if (cpu_isset(lcpu, of_spin_map))
89 /* Already started by OF and sitting in spin loop */
92 pcpu = get_hard_smp_processor_id(lcpu);
94 /* Fixup atomic count: it exited inside IRQ handler. */
95 task_thread_info(paca[lcpu].__current)->preempt_count = 0;
98 * If the RTAS start-cpu token does not exist then presume the
99 * cpu is already spinning.
101 start_cpu = rtas_token("start-cpu");
102 if (start_cpu == RTAS_UNKNOWN_SERVICE)
105 status = rtas_call(start_cpu, 3, 1, NULL, pcpu, start_here, pcpu);
107 printk(KERN_ERR "start-cpu failed: %i\n", status);
115 static inline void smp_xics_do_message(int cpu, int msg)
117 set_bit(msg, &xics_ipi_message[cpu].value);
122 static void smp_xics_message_pass(int target, int msg)
126 if (target < NR_CPUS) {
127 smp_xics_do_message(target, msg);
129 for_each_online_cpu(i) {
130 if (target == MSG_ALL_BUT_SELF
131 && i == smp_processor_id())
133 smp_xics_do_message(i, msg);
138 static int __init smp_xics_probe(void)
142 return cpus_weight(cpu_possible_map);
145 static void __devinit smp_xics_setup_cpu(int cpu)
147 if (cpu != boot_cpuid)
150 if (firmware_has_feature(FW_FEATURE_SPLPAR))
153 cpu_clear(cpu, of_spin_map);
156 #endif /* CONFIG_XICS */
158 static DEFINE_SPINLOCK(timebase_lock);
159 static unsigned long timebase = 0;
161 static void __devinit pSeries_give_timebase(void)
163 spin_lock(&timebase_lock);
164 rtas_call(rtas_token("freeze-time-base"), 0, 1, NULL);
166 spin_unlock(&timebase_lock);
170 rtas_call(rtas_token("thaw-time-base"), 0, 1, NULL);
173 static void __devinit pSeries_take_timebase(void)
177 spin_lock(&timebase_lock);
178 set_tb(timebase >> 32, timebase & 0xffffffff);
180 spin_unlock(&timebase_lock);
183 static void __devinit smp_pSeries_kick_cpu(int nr)
185 BUG_ON(nr < 0 || nr >= NR_CPUS);
187 if (!smp_startup_cpu(nr))
191 * The processor is currently spinning, waiting for the
192 * cpu_start field to become non-zero After we set cpu_start,
193 * the processor will continue on to secondary_start
195 paca[nr].cpu_start = 1;
198 static int smp_pSeries_cpu_bootable(unsigned int nr)
200 /* Special case - we inhibit secondary thread startup
201 * during boot if the user requests it. Odd-numbered
202 * cpus are assumed to be secondary threads.
204 if (system_state < SYSTEM_RUNNING &&
205 cpu_has_feature(CPU_FTR_SMT) &&
206 !smt_enabled_at_boot && cpu_thread_in_core(nr) != 0)
212 static struct smp_ops_t pSeries_mpic_smp_ops = {
213 .message_pass = smp_mpic_message_pass,
214 .probe = smp_mpic_probe,
215 .kick_cpu = smp_pSeries_kick_cpu,
216 .setup_cpu = smp_mpic_setup_cpu,
220 static struct smp_ops_t pSeries_xics_smp_ops = {
221 .message_pass = smp_xics_message_pass,
222 .probe = smp_xics_probe,
223 .kick_cpu = smp_pSeries_kick_cpu,
224 .setup_cpu = smp_xics_setup_cpu,
225 .cpu_bootable = smp_pSeries_cpu_bootable,
229 /* This is called very early */
230 static void __init smp_init_pseries(void)
234 DBG(" -> smp_init_pSeries()\n");
236 /* Mark threads which are still spinning in hold loops. */
237 if (cpu_has_feature(CPU_FTR_SMT)) {
238 for_each_present_cpu(i) {
241 * Even-numbered logical cpus correspond to
244 cpu_set(i, of_spin_map);
247 of_spin_map = cpu_present_map;
250 cpu_clear(boot_cpuid, of_spin_map);
252 /* Non-lpar has additional take/give timebase */
253 if (rtas_token("freeze-time-base") != RTAS_UNKNOWN_SERVICE) {
254 smp_ops->give_timebase = pSeries_give_timebase;
255 smp_ops->take_timebase = pSeries_take_timebase;
258 DBG(" <- smp_init_pSeries()\n");
262 void __init smp_init_pseries_mpic(void)
264 smp_ops = &pSeries_mpic_smp_ops;
270 void __init smp_init_pseries_xics(void)
272 smp_ops = &pSeries_xics_smp_ops;