blob: 6b5f26b0fb75c5e716574a70122a79b675b62708 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* smp.c: Sparc SMP support.
2 *
3 * Copyright (C) 1996 David S. Miller (davem@caip.rutgers.edu)
4 * Copyright (C) 1998 Jakub Jelinek (jj@sunsite.mff.cuni.cz)
5 * Copyright (C) 2004 Keith M Wesolowski (wesolows@foobazco.org)
6 */
7
8#include <asm/head.h>
9
10#include <linux/kernel.h>
11#include <linux/sched.h>
12#include <linux/threads.h>
13#include <linux/smp.h>
14#include <linux/smp_lock.h>
15#include <linux/interrupt.h>
16#include <linux/kernel_stat.h>
17#include <linux/init.h>
18#include <linux/spinlock.h>
19#include <linux/mm.h>
20#include <linux/fs.h>
21#include <linux/seq_file.h>
22#include <linux/cache.h>
23#include <linux/delay.h>
24
25#include <asm/ptrace.h>
26#include <asm/atomic.h>
27
28#include <asm/irq.h>
29#include <asm/page.h>
30#include <asm/pgalloc.h>
31#include <asm/pgtable.h>
32#include <asm/oplib.h>
33#include <asm/cacheflush.h>
34#include <asm/tlbflush.h>
35#include <asm/cpudata.h>
36
Linus Torvalds1da177e2005-04-16 15:20:36 -070037int smp_num_cpus = 1;
38volatile unsigned long cpu_callin_map[NR_CPUS] __initdata = {0,};
39unsigned char boot_cpu_id = 0;
40unsigned char boot_cpu_id4 = 0; /* boot_cpu_id << 2 */
41int smp_activated = 0;
42volatile int __cpu_number_map[NR_CPUS];
43volatile int __cpu_logical_map[NR_CPUS];
44
45cpumask_t cpu_online_map = CPU_MASK_NONE;
46cpumask_t phys_cpu_present_map = CPU_MASK_NONE;
Bob Breuera54123e2006-03-23 22:36:19 -080047cpumask_t smp_commenced_mask = CPU_MASK_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
49/* The only guaranteed locking primitive available on all Sparc
50 * processors is 'ldstub [%reg + immediate], %dest_reg' which atomically
51 * places the current byte at the effective address into dest_reg and
52 * places 0xff there afterwards. Pretty lame locking primitive
53 * compared to the Alpha and the Intel no? Most Sparcs have 'swap'
54 * instruction which is much better...
55 */
56
57/* Used to make bitops atomic */
58unsigned char bitops_spinlock = 0;
59
Bob Breuer92d452f2006-06-20 00:36:10 -070060void __cpuinit smp_store_cpu_info(int id)
Linus Torvalds1da177e2005-04-16 15:20:36 -070061{
62 int cpu_node;
63
64 cpu_data(id).udelay_val = loops_per_jiffy;
65
66 cpu_find_by_mid(id, &cpu_node);
67 cpu_data(id).clock_tick = prom_getintdefault(cpu_node,
68 "clock-frequency", 0);
69 cpu_data(id).prom_node = cpu_node;
70 cpu_data(id).mid = cpu_get_hwmid(cpu_node);
Krzysztof Helt650fb832006-06-10 22:03:43 -070071
72 /* this is required to tune the scheduler correctly */
73 /* is it possible to have CPUs with different cache sizes? */
74 if (id == boot_cpu_id) {
75 int cache_line,cache_nlines;
76 cache_line = 0x20;
77 cache_line = prom_getintdefault(cpu_node, "ecache-line-size", cache_line);
78 cache_nlines = 0x8000;
79 cache_nlines = prom_getintdefault(cpu_node, "ecache-nlines", cache_nlines);
80 max_cache_size = cache_line * cache_nlines;
81 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 if (cpu_data(id).mid < 0)
83 panic("No MID found for CPU%d at node 0x%08d", id, cpu_node);
84}
85
86void __init smp_cpus_done(unsigned int max_cpus)
87{
Bob Breuera54123e2006-03-23 22:36:19 -080088 extern void smp4m_smp_done(void);
Raymond Burns8b3c8482006-07-17 21:57:09 -070089 extern void smp4d_smp_done(void);
Bob Breuera54123e2006-03-23 22:36:19 -080090 unsigned long bogosum = 0;
91 int cpu, num;
92
93 for (cpu = 0, num = 0; cpu < NR_CPUS; cpu++)
94 if (cpu_online(cpu)) {
95 num++;
96 bogosum += cpu_data(cpu).udelay_val;
97 }
98
99 printk("Total of %d processors activated (%lu.%02lu BogoMIPS).\n",
100 num, bogosum/(500000/HZ),
101 (bogosum/(5000/HZ))%100);
102
Raymond Burns8b3c8482006-07-17 21:57:09 -0700103 switch(sparc_cpu_model) {
104 case sun4:
105 printk("SUN4\n");
106 BUG();
107 break;
108 case sun4c:
109 printk("SUN4C\n");
110 BUG();
111 break;
112 case sun4m:
113 smp4m_smp_done();
114 break;
115 case sun4d:
116 smp4d_smp_done();
117 break;
118 case sun4e:
119 printk("SUN4E\n");
120 BUG();
121 break;
122 case sun4u:
123 printk("SUN4U\n");
124 BUG();
125 break;
126 default:
127 printk("UNKNOWN!\n");
128 BUG();
129 break;
130 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131}
132
133void cpu_panic(void)
134{
135 printk("CPU[%d]: Returns from cpu_idle!\n", smp_processor_id());
136 panic("SMP bolixed\n");
137}
138
139struct linux_prom_registers smp_penguin_ctable __initdata = { 0 };
140
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141void smp_send_reschedule(int cpu)
142{
143 /* See sparc64 */
144}
145
146void smp_send_stop(void)
147{
148}
149
150void smp_flush_cache_all(void)
151{
152 xc0((smpfunc_t) BTFIXUP_CALL(local_flush_cache_all));
153 local_flush_cache_all();
154}
155
156void smp_flush_tlb_all(void)
157{
158 xc0((smpfunc_t) BTFIXUP_CALL(local_flush_tlb_all));
159 local_flush_tlb_all();
160}
161
162void smp_flush_cache_mm(struct mm_struct *mm)
163{
164 if(mm->context != NO_CONTEXT) {
165 cpumask_t cpu_mask = mm->cpu_vm_mask;
166 cpu_clear(smp_processor_id(), cpu_mask);
167 if (!cpus_empty(cpu_mask))
168 xc1((smpfunc_t) BTFIXUP_CALL(local_flush_cache_mm), (unsigned long) mm);
169 local_flush_cache_mm(mm);
170 }
171}
172
173void smp_flush_tlb_mm(struct mm_struct *mm)
174{
175 if(mm->context != NO_CONTEXT) {
176 cpumask_t cpu_mask = mm->cpu_vm_mask;
177 cpu_clear(smp_processor_id(), cpu_mask);
178 if (!cpus_empty(cpu_mask)) {
179 xc1((smpfunc_t) BTFIXUP_CALL(local_flush_tlb_mm), (unsigned long) mm);
180 if(atomic_read(&mm->mm_users) == 1 && current->active_mm == mm)
181 mm->cpu_vm_mask = cpumask_of_cpu(smp_processor_id());
182 }
183 local_flush_tlb_mm(mm);
184 }
185}
186
187void smp_flush_cache_range(struct vm_area_struct *vma, unsigned long start,
188 unsigned long end)
189{
190 struct mm_struct *mm = vma->vm_mm;
191
192 if (mm->context != NO_CONTEXT) {
193 cpumask_t cpu_mask = mm->cpu_vm_mask;
194 cpu_clear(smp_processor_id(), cpu_mask);
195 if (!cpus_empty(cpu_mask))
196 xc3((smpfunc_t) BTFIXUP_CALL(local_flush_cache_range), (unsigned long) vma, start, end);
197 local_flush_cache_range(vma, start, end);
198 }
199}
200
201void smp_flush_tlb_range(struct vm_area_struct *vma, unsigned long start,
202 unsigned long end)
203{
204 struct mm_struct *mm = vma->vm_mm;
205
206 if (mm->context != NO_CONTEXT) {
207 cpumask_t cpu_mask = mm->cpu_vm_mask;
208 cpu_clear(smp_processor_id(), cpu_mask);
209 if (!cpus_empty(cpu_mask))
210 xc3((smpfunc_t) BTFIXUP_CALL(local_flush_tlb_range), (unsigned long) vma, start, end);
211 local_flush_tlb_range(vma, start, end);
212 }
213}
214
215void smp_flush_cache_page(struct vm_area_struct *vma, unsigned long page)
216{
217 struct mm_struct *mm = vma->vm_mm;
218
219 if(mm->context != NO_CONTEXT) {
220 cpumask_t cpu_mask = mm->cpu_vm_mask;
221 cpu_clear(smp_processor_id(), cpu_mask);
222 if (!cpus_empty(cpu_mask))
223 xc2((smpfunc_t) BTFIXUP_CALL(local_flush_cache_page), (unsigned long) vma, page);
224 local_flush_cache_page(vma, page);
225 }
226}
227
228void smp_flush_tlb_page(struct vm_area_struct *vma, unsigned long page)
229{
230 struct mm_struct *mm = vma->vm_mm;
231
232 if(mm->context != NO_CONTEXT) {
233 cpumask_t cpu_mask = mm->cpu_vm_mask;
234 cpu_clear(smp_processor_id(), cpu_mask);
235 if (!cpus_empty(cpu_mask))
236 xc2((smpfunc_t) BTFIXUP_CALL(local_flush_tlb_page), (unsigned long) vma, page);
237 local_flush_tlb_page(vma, page);
238 }
239}
240
241void smp_reschedule_irq(void)
242{
243 set_need_resched();
244}
245
246void smp_flush_page_to_ram(unsigned long page)
247{
248 /* Current theory is that those who call this are the one's
249 * who have just dirtied their cache with the pages contents
250 * in kernel space, therefore we only run this on local cpu.
251 *
252 * XXX This experiment failed, research further... -DaveM
253 */
254#if 1
255 xc1((smpfunc_t) BTFIXUP_CALL(local_flush_page_to_ram), page);
256#endif
257 local_flush_page_to_ram(page);
258}
259
260void smp_flush_sig_insns(struct mm_struct *mm, unsigned long insn_addr)
261{
262 cpumask_t cpu_mask = mm->cpu_vm_mask;
263 cpu_clear(smp_processor_id(), cpu_mask);
264 if (!cpus_empty(cpu_mask))
265 xc2((smpfunc_t) BTFIXUP_CALL(local_flush_sig_insns), (unsigned long) mm, insn_addr);
266 local_flush_sig_insns(mm, insn_addr);
267}
268
269extern unsigned int lvl14_resolution;
270
271/* /proc/profile writes can call this, don't __init it please. */
272static DEFINE_SPINLOCK(prof_setup_lock);
273
274int setup_profiling_timer(unsigned int multiplier)
275{
276 int i;
277 unsigned long flags;
278
279 /* Prevent level14 ticker IRQ flooding. */
280 if((!multiplier) || (lvl14_resolution / multiplier) < 500)
281 return -EINVAL;
282
283 spin_lock_irqsave(&prof_setup_lock, flags);
KAMEZAWA Hiroyukifff8efe2006-04-10 22:52:51 -0700284 for_each_possible_cpu(i) {
Andrew Morton394e3902006-03-23 03:01:05 -0800285 load_profile_irq(i, lvl14_resolution / multiplier);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 prof_multiplier(i) = multiplier;
287 }
288 spin_unlock_irqrestore(&prof_setup_lock, flags);
289
290 return 0;
291}
292
Bob Breuera54123e2006-03-23 22:36:19 -0800293void __init smp_prepare_cpus(unsigned int max_cpus)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294{
Al Virob4cff842007-02-01 13:52:33 +0000295 extern void __init smp4m_boot_cpus(void);
296 extern void __init smp4d_boot_cpus(void);
Bob Breuer7202fb42006-06-20 00:30:31 -0700297 int i, cpuid, extra;
Bob Breuera54123e2006-03-23 22:36:19 -0800298
Bob Breuera54123e2006-03-23 22:36:19 -0800299 printk("Entering SMP Mode...\n");
300
Bob Breuera54123e2006-03-23 22:36:19 -0800301 extra = 0;
302 for (i = 0; !cpu_find_by_instance(i, NULL, &cpuid); i++) {
Bob Breuer7202fb42006-06-20 00:30:31 -0700303 if (cpuid >= NR_CPUS)
Bob Breuera54123e2006-03-23 22:36:19 -0800304 extra++;
305 }
Bob Breuer7202fb42006-06-20 00:30:31 -0700306 /* i = number of cpus */
307 if (extra && max_cpus > i - extra)
Bob Breuera54123e2006-03-23 22:36:19 -0800308 printk("Warning: NR_CPUS is too low to start all cpus\n");
309
310 smp_store_cpu_info(boot_cpu_id);
311
Raymond Burns8b3c8482006-07-17 21:57:09 -0700312 switch(sparc_cpu_model) {
313 case sun4:
314 printk("SUN4\n");
315 BUG();
316 break;
317 case sun4c:
318 printk("SUN4C\n");
319 BUG();
320 break;
321 case sun4m:
322 smp4m_boot_cpus();
323 break;
324 case sun4d:
325 smp4d_boot_cpus();
326 break;
327 case sun4e:
328 printk("SUN4E\n");
329 BUG();
330 break;
331 case sun4u:
332 printk("SUN4U\n");
333 BUG();
334 break;
335 default:
336 printk("UNKNOWN!\n");
337 BUG();
338 break;
339 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340}
341
Bob Breuer7202fb42006-06-20 00:30:31 -0700342/* Set this up early so that things like the scheduler can init
343 * properly. We use the same cpu mask for both the present and
344 * possible cpu map.
345 */
346void __init smp_setup_cpu_possible_map(void)
347{
348 int instance, mid;
349
350 instance = 0;
351 while (!cpu_find_by_instance(instance, NULL, &mid)) {
352 if (mid < NR_CPUS) {
353 cpu_set(mid, phys_cpu_present_map);
354 cpu_set(mid, cpu_present_map);
355 }
356 instance++;
357 }
358}
359
Bob Breuer92d452f2006-06-20 00:36:10 -0700360void __init smp_prepare_boot_cpu(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361{
Bob Breuera54123e2006-03-23 22:36:19 -0800362 int cpuid = hard_smp_processor_id();
363
364 if (cpuid >= NR_CPUS) {
365 prom_printf("Serious problem, boot cpu id >= NR_CPUS\n");
366 prom_halt();
367 }
368 if (cpuid != 0)
369 printk("boot cpu id != 0, this could work but is untested\n");
370
371 current_thread_info()->cpu = cpuid;
372 cpu_set(cpuid, cpu_online_map);
373 cpu_set(cpuid, phys_cpu_present_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374}
375
Bob Breuer92d452f2006-06-20 00:36:10 -0700376int __cpuinit __cpu_up(unsigned int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377{
Al Virob4cff842007-02-01 13:52:33 +0000378 extern int __cpuinit smp4m_boot_one_cpu(int);
379 extern int __cpuinit smp4d_boot_one_cpu(int);
Raymond Burns8b3c8482006-07-17 21:57:09 -0700380 int ret=0;
Bob Breuera54123e2006-03-23 22:36:19 -0800381
Raymond Burns8b3c8482006-07-17 21:57:09 -0700382 switch(sparc_cpu_model) {
383 case sun4:
384 printk("SUN4\n");
385 BUG();
386 break;
387 case sun4c:
388 printk("SUN4C\n");
389 BUG();
390 break;
391 case sun4m:
392 ret = smp4m_boot_one_cpu(cpu);
393 break;
394 case sun4d:
395 ret = smp4d_boot_one_cpu(cpu);
396 break;
397 case sun4e:
398 printk("SUN4E\n");
399 BUG();
400 break;
401 case sun4u:
402 printk("SUN4U\n");
403 BUG();
404 break;
405 default:
406 printk("UNKNOWN!\n");
407 BUG();
408 break;
409 };
Bob Breuera54123e2006-03-23 22:36:19 -0800410
411 if (!ret) {
412 cpu_set(cpu, smp_commenced_mask);
413 while (!cpu_online(cpu))
414 mb();
415 }
416 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417}
418
419void smp_bogo(struct seq_file *m)
420{
421 int i;
422
Andrew Morton394e3902006-03-23 03:01:05 -0800423 for_each_online_cpu(i) {
424 seq_printf(m,
425 "Cpu%dBogo\t: %lu.%02lu\n",
426 i,
427 cpu_data(i).udelay_val/(500000/HZ),
428 (cpu_data(i).udelay_val/(5000/HZ))%100);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 }
430}
431
432void smp_info(struct seq_file *m)
433{
434 int i;
435
436 seq_printf(m, "State:\n");
Andrew Morton394e3902006-03-23 03:01:05 -0800437 for_each_online_cpu(i)
438 seq_printf(m, "CPU%d\t\t: online\n", i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439}