2 * Copyright (C) 2013 Imagination Technologies
6 * Copyright (C) 2007 MIPS Technologies, Inc.
9 * This program is free software; you can redistribute it and/or modify it
10 * under the terms of the GNU General Public License as published by the
11 * Free Software Foundation; either version 2 of the License, or (at your
12 * option) any later version.
15 #include <linux/irqchip/mips-gic.h>
16 #include <linux/printk.h>
18 #include <asm/mips-cpc.h>
19 #include <asm/smp-ops.h>
21 void gic_send_ipi_single(int cpu, unsigned int action)
25 unsigned int core = cpu_data[cpu].core;
27 pr_debug("CPU%d: %s cpu %d action %u status %08x\n",
28 smp_processor_id(), __func__, cpu, action, read_c0_status());
30 local_irq_save(flags);
33 case SMP_CALL_FUNCTION:
34 intr = plat_ipi_call_int_xlate(cpu);
37 case SMP_RESCHEDULE_YOURSELF:
38 intr = plat_ipi_resched_int_xlate(cpu);
47 if (mips_cpc_present() && (core != current_cpu_data.core)) {
48 while (!cpumask_test_cpu(cpu, &cpu_coherent_mask)) {
49 mips_cpc_lock_other(core);
50 write_cpc_co_cmd(CPC_Cx_CMD_PWRUP);
51 mips_cpc_unlock_other();
55 local_irq_restore(flags);
58 void gic_send_ipi_mask(const struct cpumask *mask, unsigned int action)
63 gic_send_ipi_single(i, action);