2 * This program is free software; you can distribute it and/or modify it
3 * under the terms of the GNU General Public License (Version 2) as
4 * published by the Free Software Foundation.
6 * This program is distributed in the hope it will be useful, but WITHOUT
7 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
8 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
11 * You should have received a copy of the GNU General Public License along
12 * with this program; if not, write to the Free Software Foundation, Inc.,
13 * 59 Temple Place - Suite 330, Boston MA 02111-1307, USA.
15 * Copyright (C) 2007 MIPS Technologies, Inc.
16 * Chris Dearman (chris@mips.com)
21 #include <linux/kernel.h>
22 #include <linux/sched.h>
23 #include <linux/smp.h>
24 #include <linux/cpumask.h>
25 #include <linux/interrupt.h>
26 #include <linux/compiler.h>
28 #include <linux/atomic.h>
29 #include <asm/cacheflush.h>
31 #include <asm/processor.h>
32 #include <asm/hardirq.h>
33 #include <asm/mmu_context.h>
36 #include <asm/mipsregs.h>
37 #include <asm/mipsmtregs.h>
38 #include <asm/mips_mt.h>
42 static void ipi_call_function(unsigned int cpu
)
44 pr_debug("CPU%d: %s cpu %d status %08x\n",
45 smp_processor_id(), __func__
, cpu
, read_c0_status());
47 gic_send_ipi(plat_ipi_call_int_xlate(cpu
));
51 static void ipi_resched(unsigned int cpu
)
53 pr_debug("CPU%d: %s cpu %d status %08x\n",
54 smp_processor_id(), __func__
, cpu
, read_c0_status());
56 gic_send_ipi(plat_ipi_resched_int_xlate(cpu
));
60 * FIXME: This isn't restricted to CMP
61 * The SMVP kernel could use GIC interrupts if available
63 void cmp_send_ipi_single(int cpu
, unsigned int action
)
67 local_irq_save(flags
);
70 case SMP_CALL_FUNCTION
:
71 ipi_call_function(cpu
);
74 case SMP_RESCHEDULE_YOURSELF
:
79 local_irq_restore(flags
);
82 static void cmp_send_ipi_mask(const struct cpumask
*mask
, unsigned int action
)
87 cmp_send_ipi_single(i
, action
);
90 static void cmp_init_secondary(void)
92 struct cpuinfo_mips
*c
= ¤t_cpu_data
;
94 /* Assume GIC is present */
95 change_c0_status(ST0_IM
, STATUSF_IP3
| STATUSF_IP4
| STATUSF_IP6
|
98 /* Enable per-cpu interrupts: platform specific */
100 c
->core
= (read_c0_ebase() >> 1) & 0x1ff;
101 #if defined(CONFIG_MIPS_MT_SMP) || defined(CONFIG_MIPS_MT_SMTC)
103 c
->vpe_id
= (read_c0_tcbind() >> TCBIND_CURVPE_SHIFT
) &
106 #ifdef CONFIG_MIPS_MT_SMTC
107 c
->tc_id
= (read_c0_tcbind() & TCBIND_CURTC
) >> TCBIND_CURTC_SHIFT
;
111 static void cmp_smp_finish(void)
113 pr_debug("SMPCMP: CPU%d: %s\n", smp_processor_id(), __func__
);
115 /* CDFIXME: remove this? */
116 write_c0_compare(read_c0_count() + (8 * mips_hpt_frequency
/ HZ
));
118 #ifdef CONFIG_MIPS_MT_FPAFF
119 /* If we have an FPU, enroll ourselves in the FPU-full mask */
121 cpu_set(smp_processor_id(), mt_fpu_cpumask
);
122 #endif /* CONFIG_MIPS_MT_FPAFF */
127 static void cmp_cpus_done(void)
129 pr_debug("SMPCMP: CPU%d: %s\n", smp_processor_id(), __func__
);
133 * Setup the PC, SP, and GP of a secondary processor and start it running
134 * smp_bootstrap is the place to resume from
135 * __KSTK_TOS(idle) is apparently the stack pointer
136 * (unsigned long)idle->thread_info the gp
138 static void cmp_boot_secondary(int cpu
, struct task_struct
*idle
)
140 struct thread_info
*gp
= task_thread_info(idle
);
141 unsigned long sp
= __KSTK_TOS(idle
);
142 unsigned long pc
= (unsigned long)&smp_bootstrap
;
143 unsigned long a0
= 0;
145 pr_debug("SMPCMP: CPU%d: %s cpu %d\n", smp_processor_id(),
150 flush_icache_range((unsigned long)gp
,
151 (unsigned long)(gp
+ sizeof(struct thread_info
)));
154 amon_cpu_start(cpu
, pc
, sp
, (unsigned long)gp
, a0
);
158 * Common setup before any secondaries are started
160 void __init
cmp_smp_setup(void)
165 pr_debug("SMPCMP: CPU%d: %s\n", smp_processor_id(), __func__
);
167 #ifdef CONFIG_MIPS_MT_FPAFF
168 /* If we have an FPU, enroll ourselves in the FPU-full mask */
170 cpu_set(0, mt_fpu_cpumask
);
171 #endif /* CONFIG_MIPS_MT_FPAFF */
173 for (i
= 1; i
< NR_CPUS
; i
++) {
174 if (amon_cpu_avail(i
)) {
175 set_cpu_possible(i
, true);
176 __cpu_number_map
[i
] = ++ncpu
;
177 __cpu_logical_map
[ncpu
] = i
;
181 if (cpu_has_mipsmt
) {
182 unsigned int nvpe
= 1;
183 #ifdef CONFIG_MIPS_MT_SMP
184 unsigned int mvpconf0
= read_c0_mvpconf0();
186 nvpe
= ((mvpconf0
& MVPCONF0_PVPE
) >> MVPCONF0_PVPE_SHIFT
) + 1;
187 #elif defined(CONFIG_MIPS_MT_SMTC)
188 unsigned int mvpconf0
= read_c0_mvpconf0();
190 nvpe
= ((mvpconf0
& MVPCONF0_PTC
) >> MVPCONF0_PTC_SHIFT
) + 1;
192 smp_num_siblings
= nvpe
;
194 pr_info("Detected %i available secondary CPU(s)\n", ncpu
);
197 void __init
cmp_prepare_cpus(unsigned int max_cpus
)
199 pr_debug("SMPCMP: CPU%d: %s max_cpus=%d\n",
200 smp_processor_id(), __func__
, max_cpus
);
202 #ifdef CONFIG_MIPS_MT
204 * FIXME: some of these options are per-system, some per-core and
207 mips_mt_set_cpuoptions();
212 struct plat_smp_ops cmp_smp_ops
= {
213 .send_ipi_single
= cmp_send_ipi_single
,
214 .send_ipi_mask
= cmp_send_ipi_mask
,
215 .init_secondary
= cmp_init_secondary
,
216 .smp_finish
= cmp_smp_finish
,
217 .cpus_done
= cmp_cpus_done
,
218 .boot_secondary
= cmp_boot_secondary
,
219 .smp_setup
= cmp_smp_setup
,
220 .prepare_cpus
= cmp_prepare_cpus
,