blob: 5f0ab5bcd01edc5e454a3d534a996f6ed03697de [file] [log] [blame]
Paul Burton72e20142014-01-15 10:31:50 +00001/*
2 * Copyright (C) 2013 Imagination Technologies
3 * Author: Paul Burton <paul.burton@imgtec.com>
4 *
5 * Based on smp-cmp.c:
6 * Copyright (C) 2007 MIPS Technologies, Inc.
7 * Author: Chris Dearman (chris@mips.com)
8 *
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.
13 */
14
Andrew Bresticker4060bbe2014-10-20 12:03:53 -070015#include <linux/irqchip/mips-gic.h>
Paul Burton72e20142014-01-15 10:31:50 +000016#include <linux/printk.h>
17
Paul Burtond0508942014-04-14 16:25:29 +010018#include <asm/mips-cpc.h>
Paul Burton72e20142014-01-15 10:31:50 +000019#include <asm/smp-ops.h>
20
21void gic_send_ipi_single(int cpu, unsigned int action)
22{
23 unsigned long flags;
24 unsigned int intr;
Paul Burtond0508942014-04-14 16:25:29 +010025 unsigned int core = cpu_data[cpu].core;
Paul Burton72e20142014-01-15 10:31:50 +000026
27 pr_debug("CPU%d: %s cpu %d action %u status %08x\n",
28 smp_processor_id(), __func__, cpu, action, read_c0_status());
29
30 local_irq_save(flags);
31
32 switch (action) {
33 case SMP_CALL_FUNCTION:
34 intr = plat_ipi_call_int_xlate(cpu);
35 break;
36
37 case SMP_RESCHEDULE_YOURSELF:
38 intr = plat_ipi_resched_int_xlate(cpu);
39 break;
40
41 default:
42 BUG();
43 }
44
45 gic_send_ipi(intr);
Paul Burtond0508942014-04-14 16:25:29 +010046
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();
52 }
53 }
54
Paul Burton72e20142014-01-15 10:31:50 +000055 local_irq_restore(flags);
56}
57
58void gic_send_ipi_mask(const struct cpumask *mask, unsigned int action)
59{
60 unsigned int i;
61
62 for_each_cpu(i, mask)
63 gic_send_ipi_single(i, action);
64}