1 #include <linux/linkage.h>
2 #include <linux/sched.h>
6 #include <asm/titan_dep.h>
9 #define LAUNCHSTACK_SIZE 256
11 static __cpuinitdata arch_spinlock_t launch_lock
= __ARCH_SPIN_LOCK_UNLOCKED
;
13 static unsigned long secondary_sp __cpuinitdata
;
14 static unsigned long secondary_gp __cpuinitdata
;
16 static unsigned char launchstack
[LAUNCHSTACK_SIZE
] __initdata
17 __attribute__((aligned(2 * sizeof(long))));
19 static void __init
prom_smp_bootstrap(void)
23 while (arch_spin_is_locked(&launch_lock
));
30 : "r" (secondary_sp
), "r" (secondary_gp
));
34 * PMON is a fragile beast. It'll blow up once the mappings it's littering
35 * right into the middle of KSEG3 are blown away so we have to grab the slave
36 * core early and keep it in a waiting loop.
38 void __init
prom_grab_secondary(void)
40 arch_spin_lock(&launch_lock
);
42 pmon_cpustart(1, &prom_smp_bootstrap
,
43 launchstack
+ LAUNCHSTACK_SIZE
, 0);
46 void titan_mailbox_irq(void)
48 int cpu
= smp_processor_id();
53 status
= OCD_READ(RM9000x2_OCD_INTP0STATUS3
);
54 OCD_WRITE(RM9000x2_OCD_INTP0CLEAR3
, status
);
57 smp_call_function_interrupt();
61 status
= OCD_READ(RM9000x2_OCD_INTP1STATUS3
);
62 OCD_WRITE(RM9000x2_OCD_INTP1CLEAR3
, status
);
65 smp_call_function_interrupt();
71 * Send inter-processor interrupt
73 static void yos_send_ipi_single(int cpu
, unsigned int action
)
76 * Generate an INTMSG so that it can be sent over to the
77 * destination CPU. The INTMSG will put the STATUS bits
78 * based on the action desired. An alternative strategy
79 * is to write to the Interrupt Set register, read the
80 * Interrupt Status register and clear the Interrupt
81 * Clear register. The latter is preffered.
84 case SMP_RESCHEDULE_YOURSELF
:
86 OCD_WRITE(RM9000x2_OCD_INTP1SET3
, 4);
88 OCD_WRITE(RM9000x2_OCD_INTP0SET3
, 4);
91 case SMP_CALL_FUNCTION
:
93 OCD_WRITE(RM9000x2_OCD_INTP1SET3
, 2);
95 OCD_WRITE(RM9000x2_OCD_INTP0SET3
, 2);
100 static void yos_send_ipi_mask(const struct cpumask
*mask
, unsigned int action
)
104 for_each_cpu(i
, mask
)
105 yos_send_ipi_single(i
, action
);
109 * After we've done initial boot, this function is called to allow the
110 * board code to clean up state, if needed
112 static void __cpuinit
yos_init_secondary(void)
114 set_c0_status(ST0_CO
| ST0_IE
| ST0_IM
);
117 static void __cpuinit
yos_smp_finish(void)
121 /* Hook for after all CPUs are online */
122 static void yos_cpus_done(void)
127 * Firmware CPU startup hook
128 * Complicated by PMON's weird interface which tries to minimic the UNIX fork.
129 * It launches the next * available CPU and copies some information on the
130 * stack so the first thing we do is throw away that stuff and load useful
131 * values into the registers ...
133 static void __cpuinit
yos_boot_secondary(int cpu
, struct task_struct
*idle
)
135 unsigned long gp
= (unsigned long) task_thread_info(idle
);
136 unsigned long sp
= __KSTK_TOS(idle
);
141 arch_spin_unlock(&launch_lock
);
145 * Detect available CPUs, populate cpu_possible_map before smp_init
147 * We don't want to start the secondary CPU yet nor do we have a nice probing
148 * feature in PMON so we just assume presence of the secondary core.
150 static void __init
yos_smp_setup(void)
154 cpus_clear(cpu_possible_map
);
156 for (i
= 0; i
< 2; i
++) {
157 cpu_set(i
, cpu_possible_map
);
158 __cpu_number_map
[i
] = i
;
159 __cpu_logical_map
[i
] = i
;
163 static void __init
yos_prepare_cpus(unsigned int max_cpus
)
166 * Be paranoid. Enable the IPI only if we're really about to go SMP.
168 if (cpus_weight(cpu_possible_map
))
169 set_c0_status(STATUSF_IP5
);
172 struct plat_smp_ops yos_smp_ops
= {
173 .send_ipi_single
= yos_send_ipi_single
,
174 .send_ipi_mask
= yos_send_ipi_mask
,
175 .init_secondary
= yos_init_secondary
,
176 .smp_finish
= yos_smp_finish
,
177 .cpus_done
= yos_cpus_done
,
178 .boot_secondary
= yos_boot_secondary
,
179 .smp_setup
= yos_smp_setup
,
180 .prepare_cpus
= yos_prepare_cpus
,