Searched refs:mp_ops (Results 1 – 7 of 7) sorted by relevance
/linux-4.4.14/arch/mips/include/asm/ |
D | smp.h | 63 extern struct plat_smp_ops *mp_ops; /* private */ in smp_send_reschedule() 65 mp_ops->send_ipi_single(cpu, SMP_RESCHEDULE_YOURSELF); in smp_send_reschedule() 71 extern struct plat_smp_ops *mp_ops; /* private */ in __cpu_disable() 73 return mp_ops->cpu_disable(); in __cpu_disable() 78 extern struct plat_smp_ops *mp_ops; /* private */ in __cpu_die() 80 mp_ops->cpu_die(cpu); in __cpu_die() 88 extern struct plat_smp_ops *mp_ops; /* private */ in arch_send_call_function_single_ipi() 90 mp_ops->send_ipi_mask(cpumask_of(cpu), SMP_CALL_FUNCTION); in arch_send_call_function_single_ipi() 95 extern struct plat_smp_ops *mp_ops; /* private */ in arch_send_call_function_ipi_mask() 97 mp_ops->send_ipi_mask(mask, SMP_CALL_FUNCTION); in arch_send_call_function_ipi_mask()
|
D | smp-ops.h | 42 extern struct plat_smp_ops *mp_ops; /* private */ in plat_smp_setup() 44 mp_ops->smp_setup(); in plat_smp_setup()
|
/linux-4.4.14/arch/sh/include/asm/ |
D | smp.h | 56 extern struct plat_smp_ops *mp_ops; /* private */ in __cpu_die() 58 mp_ops->cpu_die(cpu); in __cpu_die() 64 extern struct plat_smp_ops *mp_ops; /* private */ in hard_smp_processor_id() 66 if (!mp_ops) in hard_smp_processor_id() 69 return mp_ops->smp_processor_id(); in hard_smp_processor_id()
|
D | smp-ops.h | 15 extern struct plat_smp_ops *mp_ops; 22 BUG_ON(!mp_ops); in plat_smp_setup() 23 mp_ops->smp_setup(); in plat_smp_setup() 28 mp_ops->play_dead(); in play_dead()
|
/linux-4.4.14/arch/sh/kernel/ |
D | smp.c | 35 struct plat_smp_ops *mp_ops = NULL; variable 42 if (mp_ops) in register_smp_ops() 45 mp_ops = ops; in register_smp_ops() 63 mp_ops->prepare_cpus(max_cpus); in smp_prepare_cpus() 128 ret = mp_ops->cpu_disable(cpu); in __cpu_disable() 234 mp_ops->start_cpu(cpu, (unsigned long)_stext); in __cpu_up() 267 mp_ops->send_ipi(cpu, SMP_MSG_RESCHEDULE); in smp_send_reschedule() 280 mp_ops->send_ipi(cpu, SMP_MSG_FUNCTION); in arch_send_call_function_ipi_mask() 285 mp_ops->send_ipi(cpu, SMP_MSG_FUNCTION_SINGLE); in arch_send_call_function_single_ipi() 293 mp_ops->send_ipi(cpu, SMP_MSG_TIMER); in smp_timer_broadcast()
|
/linux-4.4.14/arch/mips/kernel/ |
D | smp.c | 138 struct plat_smp_ops *mp_ops; variable 139 EXPORT_SYMBOL(mp_ops); 143 if (mp_ops) in register_smp_ops() 146 mp_ops = ops; in register_smp_ops() 160 mp_ops->init_secondary(); in start_secondary() 193 mp_ops->smp_finish(); in start_secondary() 231 mp_ops->prepare_cpus(max_cpus); in smp_prepare_cpus() 251 mp_ops->boot_secondary(cpu, tidle); in __cpu_up() 451 mp_ops->send_ipi_single(i, SMP_DUMP); in dump_send_ipi()
|
D | smp-cps.c | 482 extern struct plat_smp_ops *mp_ops; in mips_cps_smp_in_use() 483 return mp_ops == &cps_smp_ops; in mips_cps_smp_in_use()
|