smp.c 5.1 KB
Newer Older
1
/*
J
Jeff Dike 已提交
2
 * Copyright (C) 2000 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com)
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 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
 * Licensed under the GPL
 */

#include "linux/percpu.h"
#include "asm/pgalloc.h"
#include "asm/tlb.h"

/* For some reason, mmu_gathers are referenced when CONFIG_SMP is off. */
DEFINE_PER_CPU(struct mmu_gather, mmu_gathers);

#ifdef CONFIG_SMP

#include "linux/sched.h"
#include "linux/module.h"
#include "linux/threads.h"
#include "linux/interrupt.h"
#include "linux/err.h"
#include "linux/hardirq.h"
#include "asm/smp.h"
#include "asm/processor.h"
#include "asm/spinlock.h"
#include "kern.h"
#include "irq_user.h"
#include "os.h"

/* CPU online map, set by smp_boot_cpus */
cpumask_t cpu_online_map = CPU_MASK_NONE;
cpumask_t cpu_possible_map = CPU_MASK_NONE;

EXPORT_SYMBOL(cpu_online_map);
EXPORT_SYMBOL(cpu_possible_map);

/* Per CPU bogomips and other parameters
 * The only piece used here is the ipi pipe, which is set before SMP is
 * started and never changed.
 */
struct cpuinfo_um cpu_data[NR_CPUS];

/* A statistic, can be a little off */
int num_reschedules_sent = 0;

/* Not changed after boot */
struct task_struct *idle_threads[NR_CPUS];

void smp_send_reschedule(int cpu)
{
49
	os_write_file(cpu_data[cpu].ipi_pipe[1], "R", 1);
L
Linus Torvalds 已提交
50 51 52 53 54 55 56 57
	num_reschedules_sent++;
}

void smp_send_stop(void)
{
	int i;

	printk(KERN_INFO "Stopping all CPUs...");
J
Jeff Dike 已提交
58 59
	for (i = 0; i < num_online_cpus(); i++) {
		if (i == current_thread->cpu)
L
Linus Torvalds 已提交
60
			continue;
61
		os_write_file(cpu_data[i].ipi_pipe[1], "S", 1);
L
Linus Torvalds 已提交
62
	}
J
Jeff Dike 已提交
63
	printk(KERN_CONT "done\n");
L
Linus Torvalds 已提交
64 65 66 67 68 69 70 71 72 73
}

static cpumask_t smp_commenced_mask = CPU_MASK_NONE;
static cpumask_t cpu_callin_map = CPU_MASK_NONE;

static int idle_proc(void *cpup)
{
	int cpu = (int) cpup, err;

	err = os_pipe(cpu_data[cpu].ipi_pipe, 1, 1);
J
Jeff Dike 已提交
74
	if (err < 0)
L
Linus Torvalds 已提交
75 76
		panic("CPU#%d failed to create IPI pipe, err = %d", cpu, -err);

J
Jeff Dike 已提交
77
	os_set_fd_async(cpu_data[cpu].ipi_pipe[0]);
78

L
Linus Torvalds 已提交
79 80
	wmb();
	if (cpu_test_and_set(cpu, cpu_callin_map)) {
J
Jeff Dike 已提交
81
		printk(KERN_ERR "huh, CPU#%d already present??\n", cpu);
L
Linus Torvalds 已提交
82 83 84 85 86 87 88 89
		BUG();
	}

	while (!cpu_isset(cpu, smp_commenced_mask))
		cpu_relax();

	cpu_set(cpu, cpu_online_map);
	default_idle();
90
	return 0;
L
Linus Torvalds 已提交
91 92 93 94 95 96
}

static struct task_struct *idle_thread(int cpu)
{
	struct task_struct *new_task;

97 98
	current->thread.request.u.thread.proc = idle_proc;
	current->thread.request.u.thread.arg = (void *) cpu;
L
Linus Torvalds 已提交
99
	new_task = fork_idle(cpu);
J
Jeff Dike 已提交
100
	if (IS_ERR(new_task))
L
Linus Torvalds 已提交
101 102 103
		panic("copy_process failed in idle_thread, error = %ld",
		      PTR_ERR(new_task));

104
	cpu_tasks[cpu] = ((struct cpu_task)
L
Linus Torvalds 已提交
105 106 107
		          { .pid = 	new_task->thread.mode.tt.extern_pid,
			    .task = 	new_task } );
	idle_threads[cpu] = new_task;
J
Jeff Dike 已提交
108
	panic("skas mode doesn't support SMP");
109
	return new_task;
L
Linus Torvalds 已提交
110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126
}

void smp_prepare_cpus(unsigned int maxcpus)
{
	struct task_struct *idle;
	unsigned long waittime;
	int err, cpu, me = smp_processor_id();
	int i;

	for (i = 0; i < ncpus; ++i)
		cpu_set(i, cpu_possible_map);

	cpu_clear(me, cpu_online_map);
	cpu_set(me, cpu_online_map);
	cpu_set(me, cpu_callin_map);

	err = os_pipe(cpu_data[me].ipi_pipe, 1, 1);
J
Jeff Dike 已提交
127
	if (err < 0)
L
Linus Torvalds 已提交
128 129
		panic("CPU#0 failed to create IPI pipe, errno = %d", -err);

J
Jeff Dike 已提交
130
	os_set_fd_async(cpu_data[me].ipi_pipe[0]);
L
Linus Torvalds 已提交
131

J
Jeff Dike 已提交
132 133
	for (cpu = 1; cpu < ncpus; cpu++) {
		printk(KERN_INFO "Booting processor %d...\n", cpu);
134

L
Linus Torvalds 已提交
135 136 137 138 139 140 141 142
		idle = idle_thread(cpu);

		init_idle(idle, cpu);

		waittime = 200000000;
		while (waittime-- && !cpu_isset(cpu, cpu_callin_map))
			cpu_relax();

J
Jeff Dike 已提交
143 144
		printk(KERN_INFO "%s\n",
		       cpu_isset(cpu, cpu_calling_map) ? "done" : "failed");
L
Linus Torvalds 已提交
145 146 147 148 149 150 151 152 153 154 155 156 157
	}
}

void smp_prepare_boot_cpu(void)
{
	cpu_set(smp_processor_id(), cpu_online_map);
}

int __cpu_up(unsigned int cpu)
{
	cpu_set(cpu, smp_commenced_mask);
	while (!cpu_isset(cpu, cpu_online_map))
		mb();
158
	return 0;
L
Linus Torvalds 已提交
159 160 161 162 163
}

int setup_profiling_timer(unsigned int multiplier)
{
	printk(KERN_INFO "setup_profiling_timer\n");
164
	return 0;
L
Linus Torvalds 已提交
165 166 167 168 169 170 171 172 173 174
}

void smp_call_function_slave(int cpu);

void IPI_handler(int cpu)
{
	unsigned char c;
	int fd;

	fd = cpu_data[cpu].ipi_pipe[0];
175
	while (os_read_file(fd, &c, 1) == 1) {
L
Linus Torvalds 已提交
176 177 178 179 180 181 182 183 184 185
		switch (c) {
		case 'C':
			smp_call_function_slave(cpu);
			break;

		case 'R':
			set_tsk_need_resched(current);
			break;

		case 'S':
J
Jeff Dike 已提交
186 187
			printk(KERN_INFO "CPU#%d stopping\n", cpu);
			while (1)
L
Linus Torvalds 已提交
188 189 190 191
				pause();
			break;

		default:
J
Jeff Dike 已提交
192 193
			printk(KERN_ERR "CPU#%d received unknown IPI [%c]!\n",
			       cpu, c);
L
Linus Torvalds 已提交
194 195 196 197 198 199 200
			break;
		}
	}
}

int hard_smp_processor_id(void)
{
201
	return pid_to_processor_id(os_getpid());
L
Linus Torvalds 已提交
202 203 204 205 206 207 208 209 210 211 212 213 214 215 216
}

static DEFINE_SPINLOCK(call_lock);
static atomic_t scf_started;
static atomic_t scf_finished;
static void (*func)(void *info);
static void *info;

void smp_call_function_slave(int cpu)
{
	atomic_inc(&scf_started);
	(*func)(info);
	atomic_inc(&scf_finished);
}

217
int smp_call_function(void (*_func)(void *info), void *_info, int wait)
L
Linus Torvalds 已提交
218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234
{
	int cpus = num_online_cpus() - 1;
	int i;

	if (!cpus)
		return 0;

	/* Can deadlock when called with interrupts disabled */
	WARN_ON(irqs_disabled());

	spin_lock_bh(&call_lock);
	atomic_set(&scf_started, 0);
	atomic_set(&scf_finished, 0);
	func = _func;
	info = _info;

	for_each_online_cpu(i)
235
		os_write_file(cpu_data[i].ipi_pipe[1], "C", 1);
L
Linus Torvalds 已提交
236 237 238 239 240 241 242 243 244 245 246 247 248

	while (atomic_read(&scf_started) != cpus)
		barrier();

	if (wait)
		while (atomic_read(&scf_finished) != cpus)
			barrier();

	spin_unlock_bh(&call_lock);
	return 0;
}

#endif