smp.c 6.2 KB
Newer Older
L
Linus Torvalds 已提交
1
/*
2
 * SMP support for pSeries machines.
L
Linus Torvalds 已提交
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
 *
 * Dave Engebretsen, Peter Bergner, and
 * Mike Corrigan {engebret|bergner|mikec}@us.ibm.com
 *
 * Plus various changes from other IBM teams...
 *
 *      This program is free software; you can redistribute it and/or
 *      modify it under the terms of the GNU General Public License
 *      as published by the Free Software Foundation; either version
 *      2 of the License, or (at your option) any later version.
 */


#include <linux/kernel.h>
#include <linux/sched.h>
#include <linux/smp.h>
#include <linux/interrupt.h>
#include <linux/delay.h>
#include <linux/init.h>
#include <linux/spinlock.h>
#include <linux/cache.h>
#include <linux/err.h>
K
Kay Sievers 已提交
25
#include <linux/device.h>
L
Linus Torvalds 已提交
26 27 28
#include <linux/cpu.h>

#include <asm/ptrace.h>
A
Arun Sharma 已提交
29
#include <linux/atomic.h>
L
Linus Torvalds 已提交
30 31 32 33 34 35 36 37 38
#include <asm/irq.h>
#include <asm/page.h>
#include <asm/pgtable.h>
#include <asm/io.h>
#include <asm/prom.h>
#include <asm/smp.h>
#include <asm/paca.h>
#include <asm/machdep.h>
#include <asm/cputable.h>
39
#include <asm/firmware.h>
L
Linus Torvalds 已提交
40
#include <asm/rtas.h>
41
#include <asm/mpic.h>
42
#include <asm/vdso_datapage.h>
43
#include <asm/cputhreads.h>
44
#include <asm/xics.h>
L
Linus Torvalds 已提交
45

46
#include "plpar_wrappers.h"
47
#include "pseries.h"
48
#include "offline_states.h"
49

L
Linus Torvalds 已提交
50 51

/*
52 53
 * The Primary thread of each non-boot processor was started from the OF client
 * interface by prom_hold_cpus and is spinning on secondary_hold_spinloop.
L
Linus Torvalds 已提交
54
 */
55
static cpumask_var_t of_spin_mask;
L
Linus Torvalds 已提交
56

57 58 59 60 61 62 63
/* Query where a cpu is now.  Return codes #defined in plpar_wrappers.h */
int smp_query_cpu_stopped(unsigned int pcpu)
{
	int cpu_status, status;
	int qcss_tok = rtas_token("query-cpu-stopped-state");

	if (qcss_tok == RTAS_UNKNOWN_SERVICE) {
64 65
		printk_once(KERN_INFO
			"Firmware doesn't support query-cpu-stopped-state\n");
66 67 68 69 70 71 72 73 74 75 76 77 78
		return QCSS_HARDWARE_ERROR;
	}

	status = rtas_call(qcss_tok, 1, 2, &cpu_status, pcpu);
	if (status != 0) {
		printk(KERN_ERR
		       "RTAS query-cpu-stopped-state failed: %i\n", status);
		return status;
	}

	return cpu_status;
}

L
Linus Torvalds 已提交
79 80 81 82 83 84 85 86 87 88 89 90 91 92 93
/**
 * smp_startup_cpu() - start the given cpu
 *
 * At boot time, there is nothing to do for primary threads which were
 * started from Open Firmware.  For anything else, call RTAS with the
 * appropriate start location.
 *
 * Returns:
 *	0	- failure
 *	1	- success
 */
static inline int __devinit smp_startup_cpu(unsigned int lcpu)
{
	int status;
	unsigned long start_here = __pa((u32)*((unsigned long *)
O
Olof Johansson 已提交
94
					       generic_secondary_smp_init));
L
Linus Torvalds 已提交
95
	unsigned int pcpu;
96
	int start_cpu;
L
Linus Torvalds 已提交
97

98
	if (cpumask_test_cpu(lcpu, of_spin_mask))
L
Linus Torvalds 已提交
99 100 101 102 103
		/* Already started by OF and sitting in spin loop */
		return 1;

	pcpu = get_hard_smp_processor_id(lcpu);

104 105
	/* Check to see if the CPU out of FW already for kexec */
	if (smp_query_cpu_stopped(pcpu) == QCSS_NOT_STOPPED){
106
		cpumask_set_cpu(lcpu, of_spin_mask);
107 108 109
		return 1;
	}

L
Linus Torvalds 已提交
110
	/* Fixup atomic count: it exited inside IRQ handler. */
A
Al Viro 已提交
111
	task_thread_info(paca[lcpu].__current)->preempt_count	= 0;
112
#ifdef CONFIG_HOTPLUG_CPU
113 114
	if (get_cpu_current_state(lcpu) == CPU_STATE_INACTIVE)
		goto out;
115
#endif
116 117 118 119 120 121 122 123
	/* 
	 * If the RTAS start-cpu token does not exist then presume the
	 * cpu is already spinning.
	 */
	start_cpu = rtas_token("start-cpu");
	if (start_cpu == RTAS_UNKNOWN_SERVICE)
		return 1;

124
	status = rtas_call(start_cpu, 3, 1, NULL, pcpu, start_here, pcpu);
L
Linus Torvalds 已提交
125 126 127 128
	if (status != 0) {
		printk(KERN_ERR "start-cpu failed: %i\n", status);
		return 0;
	}
129

130
#ifdef CONFIG_HOTPLUG_CPU
131
out:
132
#endif
L
Linus Torvalds 已提交
133 134 135 136 137 138 139 140
	return 1;
}

static void __devinit smp_xics_setup_cpu(int cpu)
{
	if (cpu != boot_cpuid)
		xics_setup_cpu();

141
	if (firmware_has_feature(FW_FEATURE_SPLPAR))
L
Linus Torvalds 已提交
142 143
		vpa_init(cpu);

144
	cpumask_clear_cpu(cpu, of_spin_mask);
145
#ifdef CONFIG_HOTPLUG_CPU
146 147
	set_cpu_current_state(cpu, CPU_STATE_ONLINE);
	set_default_offline_state(cpu);
148
#endif
L
Linus Torvalds 已提交
149 150
}

151
static int __devinit smp_pSeries_kick_cpu(int nr)
L
Linus Torvalds 已提交
152 153 154 155
{
	BUG_ON(nr < 0 || nr >= NR_CPUS);

	if (!smp_startup_cpu(nr))
156
		return -ENOENT;
L
Linus Torvalds 已提交
157 158 159 160 161 162 163

	/*
	 * The processor is currently spinning, waiting for the
	 * cpu_start field to become non-zero After we set cpu_start,
	 * the processor will continue on to secondary_start
	 */
	paca[nr].cpu_start = 1;
164
#ifdef CONFIG_HOTPLUG_CPU
165 166 167
	set_preferred_offline_state(nr, CPU_STATE_ONLINE);

	if (get_cpu_current_state(nr) == CPU_STATE_INACTIVE) {
168 169 170
		long rc;
		unsigned long hcpuid;

171 172 173
		hcpuid = get_hard_smp_processor_id(nr);
		rc = plpar_hcall_norets(H_PROD, hcpuid);
		if (rc != H_SUCCESS)
174 175
			printk(KERN_ERR "Error: Prod to wake up processor %d "
						"Ret= %ld\n", nr, rc);
176
	}
177
#endif
178 179

	return 0;
L
Linus Torvalds 已提交
180 181 182 183 184
}

static int smp_pSeries_cpu_bootable(unsigned int nr)
{
	/* Special case - we inhibit secondary thread startup
185
	 * during boot if the user requests it.
L
Linus Torvalds 已提交
186
	 */
187 188 189 190 191 192 193
	if (system_state < SYSTEM_RUNNING && cpu_has_feature(CPU_FTR_SMT)) {
		if (!smt_enabled_at_boot && cpu_thread_in_core(nr) != 0)
			return 0;
		if (smt_enabled_at_boot
		    && cpu_thread_in_core(nr) >= smt_enabled_at_boot)
			return 0;
	}
L
Linus Torvalds 已提交
194 195 196

	return 1;
}
197

L
Linus Torvalds 已提交
198 199 200 201 202 203
static struct smp_ops_t pSeries_mpic_smp_ops = {
	.message_pass	= smp_mpic_message_pass,
	.probe		= smp_mpic_probe,
	.kick_cpu	= smp_pSeries_kick_cpu,
	.setup_cpu	= smp_mpic_setup_cpu,
};
204

L
Linus Torvalds 已提交
205
static struct smp_ops_t pSeries_xics_smp_ops = {
206
	.message_pass	= NULL,	/* Use smp_muxed_ipi_message_pass */
207
	.cause_ipi	= NULL,	/* Filled at runtime by xics_smp_probe() */
208
	.probe		= xics_smp_probe,
L
Linus Torvalds 已提交
209 210 211 212 213 214
	.kick_cpu	= smp_pSeries_kick_cpu,
	.setup_cpu	= smp_xics_setup_cpu,
	.cpu_bootable	= smp_pSeries_cpu_bootable,
};

/* This is called very early */
215
static void __init smp_init_pseries(void)
L
Linus Torvalds 已提交
216 217 218
{
	int i;

219
	pr_debug(" -> smp_init_pSeries()\n");
L
Linus Torvalds 已提交
220

221 222
	alloc_bootmem_cpumask_var(&of_spin_mask);

L
Linus Torvalds 已提交
223
	/* Mark threads which are still spinning in hold loops. */
224 225
	if (cpu_has_feature(CPU_FTR_SMT)) {
		for_each_present_cpu(i) { 
226
			if (cpu_thread_in_core(i) == 0)
227
				cpumask_set_cpu(i, of_spin_mask);
L
Linus Torvalds 已提交
228
		}
229
	} else {
230
		cpumask_copy(of_spin_mask, cpu_present_mask);
231
	}
L
Linus Torvalds 已提交
232

233
	cpumask_clear_cpu(boot_cpuid, of_spin_mask);
L
Linus Torvalds 已提交
234 235 236

	/* Non-lpar has additional take/give timebase */
	if (rtas_token("freeze-time-base") != RTAS_UNKNOWN_SERVICE) {
237 238
		smp_ops->give_timebase = rtas_give_timebase;
		smp_ops->take_timebase = rtas_take_timebase;
L
Linus Torvalds 已提交
239 240
	}

241
	pr_debug(" <- smp_init_pSeries()\n");
L
Linus Torvalds 已提交
242 243
}

244 245 246 247 248 249 250 251 252 253 254 255 256
void __init smp_init_pseries_mpic(void)
{
	smp_ops = &pSeries_mpic_smp_ops;

	smp_init_pseries();
}

void __init smp_init_pseries_xics(void)
{
	smp_ops = &pSeries_xics_smp_ops;

	smp_init_pseries();
}