blob: 59e49b18252c47ff49e3b4790c0c0a7ab8a9a883 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * arch/sh/kernel/smp.c
3 *
4 * SMP support for the SuperH processors.
5 *
6 * Copyright (C) 2002, 2003 Paul Mundt
7 *
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms of the GNU General Public License as published by the
10 * Free Software Foundation; either version 2 of the License, or (at your
11 * option) any later version.
12 */
13#include <linux/config.h>
14#include <linux/cache.h>
15#include <linux/cpumask.h>
16#include <linux/delay.h>
17#include <linux/init.h>
18#include <linux/interrupt.h>
19#include <linux/spinlock.h>
20#include <linux/threads.h>
21#include <linux/module.h>
22#include <linux/time.h>
23#include <linux/timex.h>
24#include <linux/sched.h>
David S. Millerc8923c62005-10-13 14:41:23 -070025#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026
27#include <asm/atomic.h>
28#include <asm/processor.h>
29#include <asm/system.h>
30#include <asm/mmu_context.h>
31#include <asm/smp.h>
32
33/*
34 * This was written with the Sega Saturn (SMP SH-2 7604) in mind,
35 * but is designed to be usable regardless if there's an MMU
36 * present or not.
37 */
38struct sh_cpuinfo cpu_data[NR_CPUS];
39
40extern void per_cpu_trap_init(void);
41
42cpumask_t cpu_possible_map;
David S. Millerc8923c62005-10-13 14:41:23 -070043EXPORT_SYMBOL(cpu_possible_map);
44
Linus Torvalds1da177e2005-04-16 15:20:36 -070045cpumask_t cpu_online_map;
46static atomic_t cpus_booted = ATOMIC_INIT(0);
47
48/* These are defined by the board-specific code. */
49
50/*
51 * Cause the function described by call_data to be executed on the passed
52 * cpu. When the function has finished, increment the finished field of
53 * call_data.
54 */
55void __smp_send_ipi(unsigned int cpu, unsigned int action);
56
57/*
58 * Find the number of available processors
59 */
60unsigned int __smp_probe_cpus(void);
61
62/*
63 * Start a particular processor
64 */
65void __smp_slave_init(unsigned int cpu);
66
67/*
68 * Run specified function on a particular processor.
69 */
70void __smp_call_function(unsigned int cpu);
71
72static inline void __init smp_store_cpu_info(unsigned int cpu)
73{
74 cpu_data[cpu].loops_per_jiffy = loops_per_jiffy;
75}
76
77void __init smp_prepare_cpus(unsigned int max_cpus)
78{
79 unsigned int cpu = smp_processor_id();
80 int i;
81
82 atomic_set(&cpus_booted, 1);
83 smp_store_cpu_info(cpu);
84
85 for (i = 0; i < __smp_probe_cpus(); i++)
86 cpu_set(i, cpu_possible_map);
87}
88
89void __devinit smp_prepare_boot_cpu(void)
90{
91 unsigned int cpu = smp_processor_id();
92
93 cpu_set(cpu, cpu_online_map);
94 cpu_set(cpu, cpu_possible_map);
95}
96
97int __cpu_up(unsigned int cpu)
98{
99 struct task_struct *tsk;
100
101 tsk = fork_idle(cpu);
102
103 if (IS_ERR(tsk))
104 panic("Failed forking idle task for cpu %d\n", cpu);
105
106 tsk->thread_info->cpu = cpu;
107
108 cpu_set(cpu, cpu_online_map);
109
110 return 0;
111}
112
113int start_secondary(void *unused)
114{
Nick Piggin5bfb5d62005-11-08 21:39:01 -0800115 unsigned int cpu;
116
117 cpu = smp_processor_id();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118
119 atomic_inc(&init_mm.mm_count);
120 current->active_mm = &init_mm;
121
122 smp_store_cpu_info(cpu);
123
124 __smp_slave_init(cpu);
Nick Piggin5bfb5d62005-11-08 21:39:01 -0800125 preempt_disable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 per_cpu_trap_init();
127
128 atomic_inc(&cpus_booted);
129
130 cpu_idle();
131 return 0;
132}
133
134void __init smp_cpus_done(unsigned int max_cpus)
135{
136 smp_mb();
137}
138
139void smp_send_reschedule(int cpu)
140{
141 __smp_send_ipi(cpu, SMP_MSG_RESCHEDULE);
142}
143
144static void stop_this_cpu(void *unused)
145{
146 cpu_clear(smp_processor_id(), cpu_online_map);
147 local_irq_disable();
148
149 for (;;)
150 cpu_relax();
151}
152
153void smp_send_stop(void)
154{
155 smp_call_function(stop_this_cpu, 0, 1, 0);
156}
157
158
159struct smp_fn_call_struct smp_fn_call = {
160 .lock = SPIN_LOCK_UNLOCKED,
161 .finished = ATOMIC_INIT(0),
162};
163
164/*
165 * The caller of this wants the passed function to run on every cpu. If wait
166 * is set, wait until all cpus have finished the function before returning.
167 * The lock is here to protect the call structure.
168 * You must not call this function with disabled interrupts or from a
169 * hardware interrupt handler or from a bottom half handler.
170 */
171int smp_call_function(void (*func)(void *info), void *info, int retry, int wait)
172{
173 unsigned int nr_cpus = atomic_read(&cpus_booted);
174 int i;
175
176 if (nr_cpus < 2)
177 return 0;
178
179 /* Can deadlock when called with interrupts disabled */
180 WARN_ON(irqs_disabled());
181
182 spin_lock(&smp_fn_call.lock);
183
184 atomic_set(&smp_fn_call.finished, 0);
185 smp_fn_call.fn = func;
186 smp_fn_call.data = info;
187
188 for (i = 0; i < nr_cpus; i++)
189 if (i != smp_processor_id())
190 __smp_call_function(i);
191
192 if (wait)
193 while (atomic_read(&smp_fn_call.finished) != (nr_cpus - 1));
194
195 spin_unlock(&smp_fn_call.lock);
196
197 return 0;
198}
199
200/* Not really SMP stuff ... */
201int setup_profiling_timer(unsigned int multiplier)
202{
203 return 0;
204}
205