2 * Smp support for CHRP machines.
4 * Written by Cort Dougan (cort@cs.nmt.edu) borrowing a great
5 * deal of code from the sparc and intel versions.
7 * Copyright (C) 1999 Cort Dougan <cort@cs.nmt.edu>
11 #include <linux/kernel.h>
12 #include <linux/sched.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/delay.h>
18 #include <linux/init.h>
19 #include <linux/spinlock.h>
21 #include <asm/ptrace.h>
22 #include <asm/atomic.h>
25 #include <asm/pgtable.h>
26 #include <asm/sections.h>
30 #include <asm/residual.h>
32 #include <asm/machdep.h>
37 static void __devinit
smp_chrp_kick_cpu(int nr
)
39 *(unsigned long *)KERNELBASE
= nr
;
40 asm volatile("dcbf 0,%0"::"r"(KERNELBASE
):"memory");
43 static void __devinit
smp_chrp_setup_cpu(int cpu_nr
)
45 mpic_setup_this_cpu();
48 static DEFINE_SPINLOCK(timebase_lock
);
49 static unsigned int timebase_upper
= 0, timebase_lower
= 0;
51 void __devinit
smp_chrp_give_timebase(void)
53 spin_lock(&timebase_lock
);
54 rtas_call(rtas_token("freeze-time-base"), 0, 1, NULL
);
55 timebase_upper
= get_tbu();
56 timebase_lower
= get_tbl();
57 spin_unlock(&timebase_lock
);
59 while (timebase_upper
|| timebase_lower
)
61 rtas_call(rtas_token("thaw-time-base"), 0, 1, NULL
);
64 void __devinit
smp_chrp_take_timebase(void)
66 while (!(timebase_upper
|| timebase_lower
))
68 spin_lock(&timebase_lock
);
69 set_tb(timebase_upper
, timebase_lower
);
72 spin_unlock(&timebase_lock
);
73 printk("CPU %i taken timebase\n", smp_processor_id());
76 /* CHRP with openpic */
77 struct smp_ops_t chrp_smp_ops
= {
78 .message_pass
= smp_mpic_message_pass
,
79 .probe
= smp_mpic_probe
,
80 .kick_cpu
= smp_chrp_kick_cpu
,
81 .setup_cpu
= smp_chrp_setup_cpu
,
82 .give_timebase
= smp_chrp_give_timebase
,
83 .take_timebase
= smp_chrp_take_timebase
,