mp_ops             46 arch/mips/include/asm/smp-ops.h 	extern const struct plat_smp_ops *mp_ops;	/* private */
mp_ops             48 arch/mips/include/asm/smp-ops.h 	mp_ops->smp_setup();
mp_ops             71 arch/mips/include/asm/smp.h 	extern const struct plat_smp_ops *mp_ops;	/* private */
mp_ops             73 arch/mips/include/asm/smp.h 	mp_ops->send_ipi_single(cpu, SMP_RESCHEDULE_YOURSELF);
mp_ops             79 arch/mips/include/asm/smp.h 	extern const struct plat_smp_ops *mp_ops;	/* private */
mp_ops             81 arch/mips/include/asm/smp.h 	return mp_ops->cpu_disable();
mp_ops             86 arch/mips/include/asm/smp.h 	extern const struct plat_smp_ops *mp_ops;	/* private */
mp_ops             88 arch/mips/include/asm/smp.h 	mp_ops->cpu_die(cpu);
mp_ops             97 arch/mips/include/asm/smp.h 	extern const struct plat_smp_ops *mp_ops;	/* private */
mp_ops             99 arch/mips/include/asm/smp.h 	return mp_ops->kexec_nonboot_cpu();
mp_ops            104 arch/mips/include/asm/smp.h 	extern const struct plat_smp_ops *mp_ops;	/* private */
mp_ops            106 arch/mips/include/asm/smp.h 	return mp_ops->kexec_nonboot_cpu;
mp_ops            126 arch/mips/include/asm/smp.h 	extern const struct plat_smp_ops *mp_ops;	/* private */
mp_ops            128 arch/mips/include/asm/smp.h 	mp_ops->send_ipi_mask(cpumask_of(cpu), SMP_CALL_FUNCTION);
mp_ops            133 arch/mips/include/asm/smp.h 	extern const struct plat_smp_ops *mp_ops;	/* private */
mp_ops            135 arch/mips/include/asm/smp.h 	mp_ops->send_ipi_mask(mask, SMP_CALL_FUNCTION);
mp_ops            626 arch/mips/kernel/smp-cps.c 	extern const struct plat_smp_ops *mp_ops;
mp_ops            627 arch/mips/kernel/smp-cps.c 	return mp_ops == &cps_smp_ops;
mp_ops            137 arch/mips/kernel/smp.c const struct plat_smp_ops *mp_ops;
mp_ops            138 arch/mips/kernel/smp.c EXPORT_SYMBOL(mp_ops);
mp_ops            142 arch/mips/kernel/smp.c 	if (mp_ops)
mp_ops            145 arch/mips/kernel/smp.c 	mp_ops = ops;
mp_ops            350 arch/mips/kernel/smp.c 	mp_ops->init_secondary();
mp_ops            391 arch/mips/kernel/smp.c 	mp_ops->smp_finish();
mp_ops            422 arch/mips/kernel/smp.c 	mp_ops->prepare_cpus(max_cpus);
mp_ops            435 arch/mips/kernel/smp.c 	if (mp_ops->prepare_boot_cpu)
mp_ops            436 arch/mips/kernel/smp.c 		mp_ops->prepare_boot_cpu();
mp_ops            445 arch/mips/kernel/smp.c 	err = mp_ops->boot_secondary(cpu, tidle);
mp_ops             16 arch/sh/include/asm/smp-ops.h extern struct plat_smp_ops *mp_ops;
mp_ops             23 arch/sh/include/asm/smp-ops.h 	BUG_ON(!mp_ops);
mp_ops             24 arch/sh/include/asm/smp-ops.h 	mp_ops->smp_setup();
mp_ops             29 arch/sh/include/asm/smp-ops.h 	mp_ops->play_dead();
mp_ops             52 arch/sh/include/asm/smp.h 	extern struct plat_smp_ops *mp_ops;     /* private */
mp_ops             54 arch/sh/include/asm/smp.h 	mp_ops->cpu_die(cpu);
mp_ops             60 arch/sh/include/asm/smp.h 	extern struct plat_smp_ops *mp_ops;	/* private */
mp_ops             62 arch/sh/include/asm/smp.h 	if (!mp_ops)
mp_ops             65 arch/sh/include/asm/smp.h 	return mp_ops->smp_processor_id();
mp_ops             34 arch/sh/kernel/smp.c struct plat_smp_ops *mp_ops = NULL;
mp_ops             41 arch/sh/kernel/smp.c 	if (mp_ops)
mp_ops             44 arch/sh/kernel/smp.c 	mp_ops = ops;
mp_ops             62 arch/sh/kernel/smp.c 	mp_ops->prepare_cpus(max_cpus);
mp_ops            127 arch/sh/kernel/smp.c 	ret = mp_ops->cpu_disable(cpu);
mp_ops            230 arch/sh/kernel/smp.c 	mp_ops->start_cpu(cpu, (unsigned long)_stext);
mp_ops            263 arch/sh/kernel/smp.c 	mp_ops->send_ipi(cpu, SMP_MSG_RESCHEDULE);
mp_ops            276 arch/sh/kernel/smp.c 		mp_ops->send_ipi(cpu, SMP_MSG_FUNCTION);
mp_ops            281 arch/sh/kernel/smp.c 	mp_ops->send_ipi(cpu, SMP_MSG_FUNCTION_SINGLE);
mp_ops            290 arch/sh/kernel/smp.c 		mp_ops->send_ipi(cpu, SMP_MSG_TIMER);