1 #include <linux/linkage.h>
2 #include <linux/sched.h>
5 #include <asm/titan_dep.h>
8 #define LAUNCHSTACK_SIZE 256
10 static __initdata
DEFINE_SPINLOCK(launch_lock
);
12 static unsigned long secondary_sp __initdata
;
13 static unsigned long secondary_gp __initdata
;
15 static unsigned char launchstack
[LAUNCHSTACK_SIZE
] __initdata
16 __attribute__((aligned(2 * sizeof(long))));
18 static void __init
prom_smp_bootstrap(void)
22 while (spin_is_locked(&launch_lock
));
29 : "r" (secondary_sp
), "r" (secondary_gp
));
33 * PMON is a fragile beast. It'll blow up once the mappings it's littering
34 * right into the middle of KSEG3 are blown away so we have to grab the slave
35 * core early and keep it in a waiting loop.
37 void __init
prom_grab_secondary(void)
39 spin_lock(&launch_lock
);
41 pmon_cpustart(1, &prom_smp_bootstrap
,
42 launchstack
+ LAUNCHSTACK_SIZE
, 0);
45 void titan_mailbox_irq(void)
47 int cpu
= smp_processor_id();
52 status
= OCD_READ(RM9000x2_OCD_INTP0STATUS3
);
53 OCD_WRITE(RM9000x2_OCD_INTP0CLEAR3
, status
);
56 smp_call_function_interrupt();
60 status
= OCD_READ(RM9000x2_OCD_INTP1STATUS3
);
61 OCD_WRITE(RM9000x2_OCD_INTP1CLEAR3
, status
);
64 smp_call_function_interrupt();
70 * Send inter-processor interrupt
72 static void yos_send_ipi_single(int cpu
, unsigned int action
)
75 * Generate an INTMSG so that it can be sent over to the
76 * destination CPU. The INTMSG will put the STATUS bits
77 * based on the action desired. An alternative strategy
78 * is to write to the Interrupt Set register, read the
79 * Interrupt Status register and clear the Interrupt
80 * Clear register. The latter is preffered.
83 case SMP_RESCHEDULE_YOURSELF
:
85 OCD_WRITE(RM9000x2_OCD_INTP1SET3
, 4);
87 OCD_WRITE(RM9000x2_OCD_INTP0SET3
, 4);
90 case SMP_CALL_FUNCTION
:
92 OCD_WRITE(RM9000x2_OCD_INTP1SET3
, 2);
94 OCD_WRITE(RM9000x2_OCD_INTP0SET3
, 2);
99 static void yos_send_ipi_mask(cpumask_t mask
, unsigned int action
)
103 for_each_cpu_mask(i
, mask
)
104 yos_send_ipi_single(i
, action
);
108 * After we've done initial boot, this function is called to allow the
109 * board code to clean up state, if needed
111 static void __cpuinit
yos_init_secondary(void)
113 set_c0_status(ST0_CO
| ST0_IE
| ST0_IM
);
116 static void __cpuinit
yos_smp_finish(void)
120 /* Hook for after all CPUs are online */
121 static void yos_cpus_done(void)
126 * Firmware CPU startup hook
127 * Complicated by PMON's weird interface which tries to minimic the UNIX fork.
128 * It launches the next * available CPU and copies some information on the
129 * stack so the first thing we do is throw away that stuff and load useful
130 * values into the registers ...
132 static void __cpuinit
yos_boot_secondary(int cpu
, struct task_struct
*idle
)
134 unsigned long gp
= (unsigned long) task_thread_info(idle
);
135 unsigned long sp
= __KSTK_TOS(idle
);
140 spin_unlock(&launch_lock
);
144 * Detect available CPUs, populate phys_cpu_present_map before smp_init
146 * We don't want to start the secondary CPU yet nor do we have a nice probing
147 * feature in PMON so we just assume presence of the secondary core.
149 static void __init
yos_smp_setup(void)
153 cpus_clear(phys_cpu_present_map
);
155 for (i
= 0; i
< 2; i
++) {
156 cpu_set(i
, phys_cpu_present_map
);
157 __cpu_number_map
[i
] = i
;
158 __cpu_logical_map
[i
] = i
;
162 static void __init
yos_prepare_cpus(unsigned int max_cpus
)
165 * Be paranoid. Enable the IPI only if we're really about to go SMP.
167 if (cpus_weight(cpu_possible_map
))
168 set_c0_status(STATUSF_IP5
);
171 struct plat_smp_ops yos_smp_ops
= {
172 .send_ipi_single
= yos_send_ipi_single
,
173 .send_ipi_mask
= yos_send_ipi_mask
,
174 .init_secondary
= yos_init_secondary
,
175 .smp_finish
= yos_smp_finish
,
176 .cpus_done
= yos_cpus_done
,
177 .boot_secondary
= yos_boot_secondary
,
178 .smp_setup
= yos_smp_setup
,
179 .prepare_cpus
= yos_prepare_cpus
,