blob: 7b4af70ffd18653de443977b6942401e2f61f614 [file] [log] [blame]
Vineet Gupta82fea5a2014-09-10 19:05:38 +05301/*
2 * ARC ARConnect (MultiCore IP) support (formerly known as MCIP)
3 *
4 * Copyright (C) 2013 Synopsys, Inc. (www.synopsys.com)
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
9 */
10
11#include <linux/smp.h>
12#include <linux/irq.h>
13#include <linux/spinlock.h>
Vineet Guptabb143f82016-02-23 11:55:16 +053014#include <asm/irqflags-arcv2.h>
Vineet Gupta82fea5a2014-09-10 19:05:38 +053015#include <asm/mcip.h>
Vineet Gupta964cf282015-10-02 19:20:27 +053016#include <asm/setup.h>
Vineet Gupta82fea5a2014-09-10 19:05:38 +053017
Vineet Gupta96817872016-02-23 13:35:12 +053018#define IPI_IRQ 19
Vineet Guptabb143f82016-02-23 11:55:16 +053019#define SOFTIRQ_IRQ 21
20
Vineet Gupta82fea5a2014-09-10 19:05:38 +053021static char smp_cpuinfo_buf[128];
Vineet Guptaeaf0ecc2015-03-09 14:03:10 +053022static int idu_detected;
Vineet Gupta82fea5a2014-09-10 19:05:38 +053023
24static DEFINE_RAW_SPINLOCK(mcip_lock);
25
Vineet Guptaaa0efcd2015-10-12 15:15:48 +053026static void mcip_setup_per_cpu(int cpu)
Vineet Gupta82fea5a2014-09-10 19:05:38 +053027{
28 smp_ipi_irq_setup(cpu, IPI_IRQ);
Vineet Guptabb143f82016-02-23 11:55:16 +053029 smp_ipi_irq_setup(cpu, SOFTIRQ_IRQ);
Vineet Gupta82fea5a2014-09-10 19:05:38 +053030}
31
32static void mcip_ipi_send(int cpu)
33{
34 unsigned long flags;
Vineet Guptaaa6083e2014-11-07 10:45:28 +053035 int ipi_was_pending;
Vineet Gupta82fea5a2014-09-10 19:05:38 +053036
Vineet Guptabb143f82016-02-23 11:55:16 +053037 /* ARConnect can only send IPI to others */
38 if (unlikely(cpu == raw_smp_processor_id())) {
39 arc_softirq_trigger(SOFTIRQ_IRQ);
40 return;
41 }
42
Vineet Gupta3dea30c2016-02-19 07:57:41 +053043 raw_spin_lock_irqsave(&mcip_lock, flags);
44
Vineet Guptaaa6083e2014-11-07 10:45:28 +053045 /*
Vineet Gupta3dea30c2016-02-19 07:57:41 +053046 * If receiver already has a pending interrupt, elide sending this one.
47 * Linux cross core calling works well with concurrent IPIs
48 * coalesced into one
49 * see arch/arc/kernel/smp.c: ipi_send_msg_one()
Vineet Guptaaa6083e2014-11-07 10:45:28 +053050 */
Vineet Gupta3dea30c2016-02-19 07:57:41 +053051 __mcip_cmd(CMD_INTRPT_READ_STATUS, cpu);
52 ipi_was_pending = read_aux_reg(ARC_REG_MCIP_READBACK);
53 if (!ipi_was_pending)
54 __mcip_cmd(CMD_INTRPT_GENERATE_IRQ, cpu);
Vineet Guptaaa6083e2014-11-07 10:45:28 +053055
Vineet Gupta82fea5a2014-09-10 19:05:38 +053056 raw_spin_unlock_irqrestore(&mcip_lock, flags);
Vineet Guptaaa6083e2014-11-07 10:45:28 +053057
58#ifdef CONFIG_ARC_IPI_DBG
59 if (ipi_was_pending)
60 pr_info("IPI ACK delayed from cpu %d\n", cpu);
61#endif
Vineet Gupta82fea5a2014-09-10 19:05:38 +053062}
63
64static void mcip_ipi_clear(int irq)
65{
Vineet Guptaaa6083e2014-11-07 10:45:28 +053066 unsigned int cpu, c;
Vineet Gupta82fea5a2014-09-10 19:05:38 +053067 unsigned long flags;
68
Vineet Guptabb143f82016-02-23 11:55:16 +053069 if (unlikely(irq == SOFTIRQ_IRQ)) {
70 arc_softirq_clear(irq);
71 return;
72 }
73
Vineet Gupta82fea5a2014-09-10 19:05:38 +053074 raw_spin_lock_irqsave(&mcip_lock, flags);
75
76 /* Who sent the IPI */
77 __mcip_cmd(CMD_INTRPT_CHECK_SOURCE, 0);
78
Vineet Guptad73b73f2016-02-19 08:18:11 +053079 cpu = read_aux_reg(ARC_REG_MCIP_READBACK); /* 1,2,4,8... */
Vineet Gupta82fea5a2014-09-10 19:05:38 +053080
Vineet Guptaaa6083e2014-11-07 10:45:28 +053081 /*
82 * In rare case, multiple concurrent IPIs sent to same target can
83 * possibly be coalesced by MCIP into 1 asserted IRQ, so @cpus can be
84 * "vectored" (multiple bits sets) as opposed to typical single bit
85 */
86 do {
87 c = __ffs(cpu); /* 0,1,2,3 */
88 __mcip_cmd(CMD_INTRPT_GENERATE_ACK, c);
89 cpu &= ~(1U << c);
90 } while (cpu);
Vineet Gupta82fea5a2014-09-10 19:05:38 +053091
92 raw_spin_unlock_irqrestore(&mcip_lock, flags);
Vineet Gupta82fea5a2014-09-10 19:05:38 +053093}
94
Vineet Gupta26b8f992015-10-12 16:38:07 +053095static void mcip_probe_n_setup(void)
Vineet Gupta82fea5a2014-09-10 19:05:38 +053096{
Vineet Gupta82fea5a2014-09-10 19:05:38 +053097 struct mcip_bcr {
98#ifdef CONFIG_CPU_BIG_ENDIAN
99 unsigned int pad3:8,
100 idu:1, llm:1, num_cores:6,
Vineet Guptad584f0f2016-01-22 14:27:50 +0530101 iocoh:1, gfrc:1, dbg:1, pad2:1,
Vineet Gupta82fea5a2014-09-10 19:05:38 +0530102 msg:1, sem:1, ipi:1, pad:1,
103 ver:8;
104#else
105 unsigned int ver:8,
106 pad:1, ipi:1, sem:1, msg:1,
Vineet Guptad584f0f2016-01-22 14:27:50 +0530107 pad2:1, dbg:1, gfrc:1, iocoh:1,
Vineet Gupta82fea5a2014-09-10 19:05:38 +0530108 num_cores:6, llm:1, idu:1,
109 pad3:8;
110#endif
111 } mp;
112
113 READ_BCR(ARC_REG_MCIP_BCR, mp);
114
115 sprintf(smp_cpuinfo_buf,
Vineet Gupta98341f72016-02-15 15:58:42 +0530116 "Extn [SMP]\t: ARConnect (v%d): %d cores with %s%s%s%s%s\n",
Vineet Gupta82fea5a2014-09-10 19:05:38 +0530117 mp.ver, mp.num_cores,
118 IS_AVAIL1(mp.ipi, "IPI "),
119 IS_AVAIL1(mp.idu, "IDU "),
Vineet Gupta98341f72016-02-15 15:58:42 +0530120 IS_AVAIL1(mp.llm, "LLM "),
Vineet Gupta82fea5a2014-09-10 19:05:38 +0530121 IS_AVAIL1(mp.dbg, "DEBUG "),
Vineet Guptad584f0f2016-01-22 14:27:50 +0530122 IS_AVAIL1(mp.gfrc, "GFRC"));
Vineet Gupta82fea5a2014-09-10 19:05:38 +0530123
Vineet Guptaeaf0ecc2015-03-09 14:03:10 +0530124 idu_detected = mp.idu;
125
Vineet Gupta82fea5a2014-09-10 19:05:38 +0530126 if (mp.dbg) {
127 __mcip_cmd_data(CMD_DEBUG_SET_SELECT, 0, 0xf);
128 __mcip_cmd_data(CMD_DEBUG_SET_MASK, 0xf, 0xf);
129 }
Vineet Gupta72d72882014-12-24 18:41:55 +0530130
Vineet Guptad584f0f2016-01-22 14:27:50 +0530131 if (IS_ENABLED(CONFIG_ARC_HAS_GFRC) && !mp.gfrc)
132 panic("kernel trying to use non-existent GFRC\n");
Vineet Gupta82fea5a2014-09-10 19:05:38 +0530133}
Vineet Guptaeaf0ecc2015-03-09 14:03:10 +0530134
Vineet Gupta26b8f992015-10-12 16:38:07 +0530135struct plat_smp_ops plat_smp_ops = {
136 .info = smp_cpuinfo_buf,
137 .init_early_smp = mcip_probe_n_setup,
Noam Camusb474a022015-12-16 03:10:27 +0200138 .init_per_cpu = mcip_setup_per_cpu,
Vineet Gupta26b8f992015-10-12 16:38:07 +0530139 .ipi_send = mcip_ipi_send,
140 .ipi_clear = mcip_ipi_clear,
141};
142
Vineet Guptaeaf0ecc2015-03-09 14:03:10 +0530143/***************************************************************************
144 * ARCv2 Interrupt Distribution Unit (IDU)
145 *
146 * Connects external "COMMON" IRQs to core intc, providing:
147 * -dynamic routing (IRQ affinity)
148 * -load balancing (Round Robin interrupt distribution)
149 * -1:N distribution
150 *
151 * It physically resides in the MCIP hw block
152 */
153
154#include <linux/irqchip.h>
155#include <linux/of.h>
156#include <linux/of_irq.h>
Vineet Guptaeaf0ecc2015-03-09 14:03:10 +0530157
158/*
159 * Set the DEST for @cmn_irq to @cpu_mask (1 bit per core)
160 */
161static void idu_set_dest(unsigned int cmn_irq, unsigned int cpu_mask)
162{
163 __mcip_cmd_data(CMD_IDU_SET_DEST, cmn_irq, cpu_mask);
164}
165
166static void idu_set_mode(unsigned int cmn_irq, unsigned int lvl,
167 unsigned int distr)
168{
169 union {
170 unsigned int word;
171 struct {
172 unsigned int distr:2, pad:2, lvl:1, pad2:27;
173 };
174 } data;
175
176 data.distr = distr;
177 data.lvl = lvl;
178 __mcip_cmd_data(CMD_IDU_SET_MODE, cmn_irq, data.word);
179}
180
181static void idu_irq_mask(struct irq_data *data)
182{
183 unsigned long flags;
184
185 raw_spin_lock_irqsave(&mcip_lock, flags);
186 __mcip_cmd_data(CMD_IDU_SET_MASK, data->hwirq, 1);
187 raw_spin_unlock_irqrestore(&mcip_lock, flags);
188}
189
190static void idu_irq_unmask(struct irq_data *data)
191{
192 unsigned long flags;
193
194 raw_spin_lock_irqsave(&mcip_lock, flags);
195 __mcip_cmd_data(CMD_IDU_SET_MASK, data->hwirq, 0);
196 raw_spin_unlock_irqrestore(&mcip_lock, flags);
197}
198
Vineet Gupta83ce3e62015-06-30 13:37:28 +0530199#ifdef CONFIG_SMP
Vineet Guptaeaf0ecc2015-03-09 14:03:10 +0530200static int
Vineet Gupta83ce3e62015-06-30 13:37:28 +0530201idu_irq_set_affinity(struct irq_data *data, const struct cpumask *cpumask,
202 bool force)
Vineet Guptaeaf0ecc2015-03-09 14:03:10 +0530203{
Vineet Gupta83ce3e62015-06-30 13:37:28 +0530204 unsigned long flags;
205 cpumask_t online;
206
207 /* errout if no online cpu per @cpumask */
208 if (!cpumask_and(&online, cpumask, cpu_online_mask))
209 return -EINVAL;
210
211 raw_spin_lock_irqsave(&mcip_lock, flags);
212
213 idu_set_dest(data->hwirq, cpumask_bits(&online)[0]);
214 idu_set_mode(data->hwirq, IDU_M_TRIG_LEVEL, IDU_M_DISTRI_RR);
215
216 raw_spin_unlock_irqrestore(&mcip_lock, flags);
217
Vineet Guptaeaf0ecc2015-03-09 14:03:10 +0530218 return IRQ_SET_MASK_OK;
219}
Vineet Gupta83ce3e62015-06-30 13:37:28 +0530220#endif
Vineet Guptaeaf0ecc2015-03-09 14:03:10 +0530221
222static struct irq_chip idu_irq_chip = {
223 .name = "MCIP IDU Intc",
224 .irq_mask = idu_irq_mask,
225 .irq_unmask = idu_irq_unmask,
226#ifdef CONFIG_SMP
227 .irq_set_affinity = idu_irq_set_affinity,
228#endif
229
230};
231
232static int idu_first_irq;
233
Thomas Gleixnerbd0b9ac2015-09-14 10:42:37 +0200234static void idu_cascade_isr(struct irq_desc *desc)
Vineet Guptaeaf0ecc2015-03-09 14:03:10 +0530235{
236 struct irq_domain *domain = irq_desc_get_handler_data(desc);
Thomas Gleixnerbadae6b2015-07-31 21:47:35 +0200237 unsigned int core_irq = irq_desc_get_irq(desc);
Vineet Guptaeaf0ecc2015-03-09 14:03:10 +0530238 unsigned int idu_irq;
239
240 idu_irq = core_irq - idu_first_irq;
241 generic_handle_irq(irq_find_mapping(domain, idu_irq));
242}
243
244static int idu_irq_map(struct irq_domain *d, unsigned int virq, irq_hw_number_t hwirq)
245{
246 irq_set_chip_and_handler(virq, &idu_irq_chip, handle_level_irq);
247 irq_set_status_flags(virq, IRQ_MOVE_PCNTXT);
248
249 return 0;
250}
251
252static int idu_irq_xlate(struct irq_domain *d, struct device_node *n,
253 const u32 *intspec, unsigned int intsize,
254 irq_hw_number_t *out_hwirq, unsigned int *out_type)
255{
256 irq_hw_number_t hwirq = *out_hwirq = intspec[0];
257 int distri = intspec[1];
258 unsigned long flags;
259
260 *out_type = IRQ_TYPE_NONE;
261
262 /* XXX: validate distribution scheme again online cpu mask */
263 if (distri == 0) {
264 /* 0 - Round Robin to all cpus, otherwise 1 bit per core */
265 raw_spin_lock_irqsave(&mcip_lock, flags);
266 idu_set_dest(hwirq, BIT(num_online_cpus()) - 1);
267 idu_set_mode(hwirq, IDU_M_TRIG_LEVEL, IDU_M_DISTRI_RR);
268 raw_spin_unlock_irqrestore(&mcip_lock, flags);
269 } else {
270 /*
271 * DEST based distribution for Level Triggered intr can only
272 * have 1 CPU, so generalize it to always contain 1 cpu
273 */
274 int cpu = ffs(distri);
275
276 if (cpu != fls(distri))
277 pr_warn("IDU irq %lx distri mode set to cpu %x\n",
278 hwirq, cpu);
279
280 raw_spin_lock_irqsave(&mcip_lock, flags);
281 idu_set_dest(hwirq, cpu);
282 idu_set_mode(hwirq, IDU_M_TRIG_LEVEL, IDU_M_DISTRI_DEST);
283 raw_spin_unlock_irqrestore(&mcip_lock, flags);
284 }
285
286 return 0;
287}
288
289static const struct irq_domain_ops idu_irq_ops = {
290 .xlate = idu_irq_xlate,
291 .map = idu_irq_map,
292};
293
294/*
295 * [16, 23]: Statically assigned always private-per-core (Timers, WDT, IPI)
296 * [24, 23+C]: If C > 0 then "C" common IRQs
297 * [24+C, N]: Not statically assigned, private-per-core
298 */
299
300
301static int __init
302idu_of_init(struct device_node *intc, struct device_node *parent)
303{
304 struct irq_domain *domain;
305 /* Read IDU BCR to confirm nr_irqs */
306 int nr_irqs = of_irq_count(intc);
307 int i, irq;
308
309 if (!idu_detected)
310 panic("IDU not detected, but DeviceTree using it");
311
312 pr_info("MCIP: IDU referenced from Devicetree %d irqs\n", nr_irqs);
313
314 domain = irq_domain_add_linear(intc, nr_irqs, &idu_irq_ops, NULL);
315
316 /* Parent interrupts (core-intc) are already mapped */
317
318 for (i = 0; i < nr_irqs; i++) {
319 /*
320 * Return parent uplink IRQs (towards core intc) 24,25,.....
321 * this step has been done before already
322 * however we need it to get the parent virq and set IDU handler
323 * as first level isr
324 */
325 irq = irq_of_parse_and_map(intc, i);
326 if (!i)
327 idu_first_irq = irq;
328
Vineet Gupta6b12ec12015-07-02 14:02:54 +0530329 irq_set_chained_handler_and_data(irq, idu_cascade_isr, domain);
Vineet Guptaeaf0ecc2015-03-09 14:03:10 +0530330 }
331
332 __mcip_cmd(CMD_IDU_ENABLE, 0);
333
334 return 0;
335}
336IRQCHIP_DECLARE(arcv2_idu_intc, "snps,archs-idu-intc", idu_of_init);