1 /*
2  * Cell Internal Interrupt Controller
3  *
4  * Copyright (C) 2006 Benjamin Herrenschmidt (benh@kernel.crashing.org)
5  *                    IBM, Corp.
6  *
7  * (C) Copyright IBM Deutschland Entwicklung GmbH 2005
8  *
9  * Author: Arnd Bergmann <arndb@de.ibm.com>
10  *
11  * This program is free software; you can redistribute it and/or modify
12  * it under the terms of the GNU General Public License as published by
13  * the Free Software Foundation; either version 2, or (at your option)
14  * any later version.
15  *
16  * This program is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19  * GNU General Public License for more details.
20  *
21  * You should have received a copy of the GNU General Public License
22  * along with this program; if not, write to the Free Software
23  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
24  *
25  * TODO:
26  * - Fix various assumptions related to HW CPU numbers vs. linux CPU numbers
27  *   vs node numbers in the setup code
28  * - Implement proper handling of maxcpus=1/2 (that is, routing of irqs from
29  *   a non-active node to the active node)
30  */
31 
32 #include <linux/interrupt.h>
33 #include <linux/irq.h>
34 #include <linux/module.h>
35 #include <linux/percpu.h>
36 #include <linux/types.h>
37 #include <linux/ioport.h>
38 #include <linux/kernel_stat.h>
39 
40 #include <asm/io.h>
41 #include <asm/pgtable.h>
42 #include <asm/prom.h>
43 #include <asm/ptrace.h>
44 #include <asm/machdep.h>
45 #include <asm/cell-regs.h>
46 
47 #include "interrupt.h"
48 
49 struct iic {
50 	struct cbe_iic_thread_regs __iomem *regs;
51 	u8 target_id;
52 	u8 eoi_stack[16];
53 	int eoi_ptr;
54 	struct device_node *node;
55 };
56 
57 static DEFINE_PER_CPU(struct iic, cpu_iic);
58 #define IIC_NODE_COUNT	2
59 static struct irq_host *iic_host;
60 
61 /* Convert between "pending" bits and hw irq number */
62 static irq_hw_number_t iic_pending_to_hwnum(struct cbe_iic_pending_bits bits)
63 {
64 	unsigned char unit = bits.source & 0xf;
65 	unsigned char node = bits.source >> 4;
66 	unsigned char class = bits.class & 3;
67 
68 	/* Decode IPIs */
69 	if (bits.flags & CBE_IIC_IRQ_IPI)
70 		return IIC_IRQ_TYPE_IPI | (bits.prio >> 4);
71 	else
72 		return (node << IIC_IRQ_NODE_SHIFT) | (class << 4) | unit;
73 }
74 
75 static void iic_mask(struct irq_data *d)
76 {
77 }
78 
79 static void iic_unmask(struct irq_data *d)
80 {
81 }
82 
83 static void iic_eoi(struct irq_data *d)
84 {
85 	struct iic *iic = &__get_cpu_var(cpu_iic);
86 	out_be64(&iic->regs->prio, iic->eoi_stack[--iic->eoi_ptr]);
87 	BUG_ON(iic->eoi_ptr < 0);
88 }
89 
90 static struct irq_chip iic_chip = {
91 	.name = "CELL-IIC",
92 	.irq_mask = iic_mask,
93 	.irq_unmask = iic_unmask,
94 	.irq_eoi = iic_eoi,
95 };
96 
97 
98 static void iic_ioexc_eoi(struct irq_data *d)
99 {
100 }
101 
102 static void iic_ioexc_cascade(unsigned int irq, struct irq_desc *desc)
103 {
104 	struct irq_chip *chip = irq_desc_get_chip(desc);
105 	struct cbe_iic_regs __iomem *node_iic =
106 		(void __iomem *)irq_desc_get_handler_data(desc);
107 	unsigned int base = (irq & 0xffffff00) | IIC_IRQ_TYPE_IOEXC;
108 	unsigned long bits, ack;
109 	int cascade;
110 
111 	for (;;) {
112 		bits = in_be64(&node_iic->iic_is);
113 		if (bits == 0)
114 			break;
115 		/* pre-ack edge interrupts */
116 		ack = bits & IIC_ISR_EDGE_MASK;
117 		if (ack)
118 			out_be64(&node_iic->iic_is, ack);
119 		/* handle them */
120 		for (cascade = 63; cascade >= 0; cascade--)
121 			if (bits & (0x8000000000000000UL >> cascade)) {
122 				unsigned int cirq =
123 					irq_linear_revmap(iic_host,
124 							  base | cascade);
125 				if (cirq != NO_IRQ)
126 					generic_handle_irq(cirq);
127 			}
128 		/* post-ack level interrupts */
129 		ack = bits & ~IIC_ISR_EDGE_MASK;
130 		if (ack)
131 			out_be64(&node_iic->iic_is, ack);
132 	}
133 	chip->irq_eoi(&desc->irq_data);
134 }
135 
136 
137 static struct irq_chip iic_ioexc_chip = {
138 	.name = "CELL-IOEX",
139 	.irq_mask = iic_mask,
140 	.irq_unmask = iic_unmask,
141 	.irq_eoi = iic_ioexc_eoi,
142 };
143 
144 /* Get an IRQ number from the pending state register of the IIC */
145 static unsigned int iic_get_irq(void)
146 {
147 	struct cbe_iic_pending_bits pending;
148 	struct iic *iic;
149 	unsigned int virq;
150 
151 	iic = &__get_cpu_var(cpu_iic);
152 	*(unsigned long *) &pending =
153 		in_be64((u64 __iomem *) &iic->regs->pending_destr);
154 	if (!(pending.flags & CBE_IIC_IRQ_VALID))
155 		return NO_IRQ;
156 	virq = irq_linear_revmap(iic_host, iic_pending_to_hwnum(pending));
157 	if (virq == NO_IRQ)
158 		return NO_IRQ;
159 	iic->eoi_stack[++iic->eoi_ptr] = pending.prio;
160 	BUG_ON(iic->eoi_ptr > 15);
161 	return virq;
162 }
163 
164 void iic_setup_cpu(void)
165 {
166 	out_be64(&__get_cpu_var(cpu_iic).regs->prio, 0xff);
167 }
168 
169 u8 iic_get_target_id(int cpu)
170 {
171 	return per_cpu(cpu_iic, cpu).target_id;
172 }
173 
174 EXPORT_SYMBOL_GPL(iic_get_target_id);
175 
176 #ifdef CONFIG_SMP
177 
178 /* Use the highest interrupt priorities for IPI */
179 static inline int iic_ipi_to_irq(int ipi)
180 {
181 	return IIC_IRQ_TYPE_IPI + 0xf - ipi;
182 }
183 
184 void iic_cause_IPI(int cpu, int mesg)
185 {
186 	out_be64(&per_cpu(cpu_iic, cpu).regs->generate, (0xf - mesg) << 4);
187 }
188 
189 struct irq_host *iic_get_irq_host(int node)
190 {
191 	return iic_host;
192 }
193 EXPORT_SYMBOL_GPL(iic_get_irq_host);
194 
195 static irqreturn_t iic_ipi_action(int irq, void *dev_id)
196 {
197 	int ipi = (int)(long)dev_id;
198 
199 	switch(ipi) {
200 	case PPC_MSG_CALL_FUNCTION:
201 		generic_smp_call_function_interrupt();
202 		break;
203 	case PPC_MSG_RESCHEDULE:
204 		/* Upcoming sched hook */
205 		break;
206 	case PPC_MSG_CALL_FUNC_SINGLE:
207 		generic_smp_call_function_single_interrupt();
208 		break;
209 	case PPC_MSG_DEBUGGER_BREAK:
210 		debug_ipi_action(0, NULL);
211 		break;
212 	}
213 	return IRQ_HANDLED;
214 }
215 static void iic_request_ipi(int ipi, const char *name)
216 {
217 	int virq;
218 
219 	virq = irq_create_mapping(iic_host, iic_ipi_to_irq(ipi));
220 	if (virq == NO_IRQ) {
221 		printk(KERN_ERR
222 		       "iic: failed to map IPI %s\n", name);
223 		return;
224 	}
225 	if (request_irq(virq, iic_ipi_action, IRQF_DISABLED, name,
226 			(void *)(long)ipi))
227 		printk(KERN_ERR
228 		       "iic: failed to request IPI %s\n", name);
229 }
230 
231 void iic_request_IPIs(void)
232 {
233 	iic_request_ipi(PPC_MSG_CALL_FUNCTION, "IPI-call");
234 	iic_request_ipi(PPC_MSG_RESCHEDULE, "IPI-resched");
235 	iic_request_ipi(PPC_MSG_CALL_FUNC_SINGLE, "IPI-call-single");
236 #ifdef CONFIG_DEBUGGER
237 	iic_request_ipi(PPC_MSG_DEBUGGER_BREAK, "IPI-debug");
238 #endif /* CONFIG_DEBUGGER */
239 }
240 
241 #endif /* CONFIG_SMP */
242 
243 
244 static int iic_host_match(struct irq_host *h, struct device_node *node)
245 {
246 	return of_device_is_compatible(node,
247 				    "IBM,CBEA-Internal-Interrupt-Controller");
248 }
249 
250 static int iic_host_map(struct irq_host *h, unsigned int virq,
251 			irq_hw_number_t hw)
252 {
253 	switch (hw & IIC_IRQ_TYPE_MASK) {
254 	case IIC_IRQ_TYPE_IPI:
255 		irq_set_chip_and_handler(virq, &iic_chip, handle_percpu_irq);
256 		break;
257 	case IIC_IRQ_TYPE_IOEXC:
258 		irq_set_chip_and_handler(virq, &iic_ioexc_chip,
259 					 handle_edge_eoi_irq);
260 		break;
261 	default:
262 		irq_set_chip_and_handler(virq, &iic_chip, handle_edge_eoi_irq);
263 	}
264 	return 0;
265 }
266 
267 static int iic_host_xlate(struct irq_host *h, struct device_node *ct,
268 			   const u32 *intspec, unsigned int intsize,
269 			   irq_hw_number_t *out_hwirq, unsigned int *out_flags)
270 
271 {
272 	unsigned int node, ext, unit, class;
273 	const u32 *val;
274 
275 	if (!of_device_is_compatible(ct,
276 				     "IBM,CBEA-Internal-Interrupt-Controller"))
277 		return -ENODEV;
278 	if (intsize != 1)
279 		return -ENODEV;
280 	val = of_get_property(ct, "#interrupt-cells", NULL);
281 	if (val == NULL || *val != 1)
282 		return -ENODEV;
283 
284 	node = intspec[0] >> 24;
285 	ext = (intspec[0] >> 16) & 0xff;
286 	class = (intspec[0] >> 8) & 0xff;
287 	unit = intspec[0] & 0xff;
288 
289 	/* Check if node is in supported range */
290 	if (node > 1)
291 		return -EINVAL;
292 
293 	/* Build up interrupt number, special case for IO exceptions */
294 	*out_hwirq = (node << IIC_IRQ_NODE_SHIFT);
295 	if (unit == IIC_UNIT_IIC && class == 1)
296 		*out_hwirq |= IIC_IRQ_TYPE_IOEXC | ext;
297 	else
298 		*out_hwirq |= IIC_IRQ_TYPE_NORMAL |
299 			(class << IIC_IRQ_CLASS_SHIFT) | unit;
300 
301 	/* Dummy flags, ignored by iic code */
302 	*out_flags = IRQ_TYPE_EDGE_RISING;
303 
304 	return 0;
305 }
306 
307 static struct irq_host_ops iic_host_ops = {
308 	.match = iic_host_match,
309 	.map = iic_host_map,
310 	.xlate = iic_host_xlate,
311 };
312 
313 static void __init init_one_iic(unsigned int hw_cpu, unsigned long addr,
314 				struct device_node *node)
315 {
316 	/* XXX FIXME: should locate the linux CPU number from the HW cpu
317 	 * number properly. We are lucky for now
318 	 */
319 	struct iic *iic = &per_cpu(cpu_iic, hw_cpu);
320 
321 	iic->regs = ioremap(addr, sizeof(struct cbe_iic_thread_regs));
322 	BUG_ON(iic->regs == NULL);
323 
324 	iic->target_id = ((hw_cpu & 2) << 3) | ((hw_cpu & 1) ? 0xf : 0xe);
325 	iic->eoi_stack[0] = 0xff;
326 	iic->node = of_node_get(node);
327 	out_be64(&iic->regs->prio, 0);
328 
329 	printk(KERN_INFO "IIC for CPU %d target id 0x%x : %s\n",
330 	       hw_cpu, iic->target_id, node->full_name);
331 }
332 
333 static int __init setup_iic(void)
334 {
335 	struct device_node *dn;
336 	struct resource r0, r1;
337 	unsigned int node, cascade, found = 0;
338 	struct cbe_iic_regs __iomem *node_iic;
339 	const u32 *np;
340 
341 	for (dn = NULL;
342 	     (dn = of_find_node_by_name(dn,"interrupt-controller")) != NULL;) {
343 		if (!of_device_is_compatible(dn,
344 				     "IBM,CBEA-Internal-Interrupt-Controller"))
345 			continue;
346 		np = of_get_property(dn, "ibm,interrupt-server-ranges", NULL);
347 		if (np == NULL) {
348 			printk(KERN_WARNING "IIC: CPU association not found\n");
349 			of_node_put(dn);
350 			return -ENODEV;
351 		}
352 		if (of_address_to_resource(dn, 0, &r0) ||
353 		    of_address_to_resource(dn, 1, &r1)) {
354 			printk(KERN_WARNING "IIC: Can't resolve addresses\n");
355 			of_node_put(dn);
356 			return -ENODEV;
357 		}
358 		found++;
359 		init_one_iic(np[0], r0.start, dn);
360 		init_one_iic(np[1], r1.start, dn);
361 
362 		/* Setup cascade for IO exceptions. XXX cleanup tricks to get
363 		 * node vs CPU etc...
364 		 * Note that we configure the IIC_IRR here with a hard coded
365 		 * priority of 1. We might want to improve that later.
366 		 */
367 		node = np[0] >> 1;
368 		node_iic = cbe_get_cpu_iic_regs(np[0]);
369 		cascade = node << IIC_IRQ_NODE_SHIFT;
370 		cascade |= 1 << IIC_IRQ_CLASS_SHIFT;
371 		cascade |= IIC_UNIT_IIC;
372 		cascade = irq_create_mapping(iic_host, cascade);
373 		if (cascade == NO_IRQ)
374 			continue;
375 		/*
376 		 * irq_data is a generic pointer that gets passed back
377 		 * to us later, so the forced cast is fine.
378 		 */
379 		irq_set_handler_data(cascade, (void __force *)node_iic);
380 		irq_set_chained_handler(cascade, iic_ioexc_cascade);
381 		out_be64(&node_iic->iic_ir,
382 			 (1 << 12)		/* priority */ |
383 			 (node << 4)		/* dest node */ |
384 			 IIC_UNIT_THREAD_0	/* route them to thread 0 */);
385 		/* Flush pending (make sure it triggers if there is
386 		 * anything pending
387 		 */
388 		out_be64(&node_iic->iic_is, 0xfffffffffffffffful);
389 	}
390 
391 	if (found)
392 		return 0;
393 	else
394 		return -ENODEV;
395 }
396 
397 void __init iic_init_IRQ(void)
398 {
399 	/* Setup an irq host data structure */
400 	iic_host = irq_alloc_host(NULL, IRQ_HOST_MAP_LINEAR, IIC_SOURCE_COUNT,
401 				  &iic_host_ops, IIC_IRQ_INVALID);
402 	BUG_ON(iic_host == NULL);
403 	irq_set_default_host(iic_host);
404 
405 	/* Discover and initialize iics */
406 	if (setup_iic() < 0)
407 		panic("IIC: Failed to initialize !\n");
408 
409 	/* Set master interrupt handling function */
410 	ppc_md.get_irq = iic_get_irq;
411 
412 	/* Enable on current CPU */
413 	iic_setup_cpu();
414 }
415 
416 void iic_set_interrupt_routing(int cpu, int thread, int priority)
417 {
418 	struct cbe_iic_regs __iomem *iic_regs = cbe_get_cpu_iic_regs(cpu);
419 	u64 iic_ir = 0;
420 	int node = cpu >> 1;
421 
422 	/* Set which node and thread will handle the next interrupt */
423 	iic_ir |= CBE_IIC_IR_PRIO(priority) |
424 		  CBE_IIC_IR_DEST_NODE(node);
425 	if (thread == 0)
426 		iic_ir |= CBE_IIC_IR_DEST_UNIT(CBE_IIC_IR_PT_0);
427 	else
428 		iic_ir |= CBE_IIC_IR_DEST_UNIT(CBE_IIC_IR_PT_1);
429 	out_be64(&iic_regs->iic_ir, iic_ir);
430 }
431