blob: 9d5da7896892701baa4fd85ea2b0a27b8be26c0c [file] [log] [blame]
Arnd Bergmanncebf5892005-06-23 09:43:43 +10001/*
Arnd Bergmannf3f66f52005-10-31 20:08:37 -05002 * Cell Internal Interrupt Controller
Arnd Bergmanncebf5892005-06-23 09:43:43 +10003 *
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +10004 * Copyright (C) 2006 Benjamin Herrenschmidt (benh@kernel.crashing.org)
5 * IBM, Corp.
6 *
Arnd Bergmanncebf5892005-06-23 09:43:43 +10007 * (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
Arnd Bergmanncebf5892005-06-23 09:43:43 +100026#include <linux/interrupt.h>
27#include <linux/irq.h>
Arnd Bergmann2fb9d202006-01-05 14:05:29 +000028#include <linux/module.h>
Arnd Bergmanncebf5892005-06-23 09:43:43 +100029#include <linux/percpu.h>
30#include <linux/types.h>
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +100031#include <linux/ioport.h>
Arnd Bergmanncebf5892005-06-23 09:43:43 +100032
33#include <asm/io.h>
34#include <asm/pgtable.h>
35#include <asm/prom.h>
36#include <asm/ptrace.h>
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +100037#include <asm/machdep.h>
Arnd Bergmanncebf5892005-06-23 09:43:43 +100038
Arnd Bergmannf3f66f52005-10-31 20:08:37 -050039#include "interrupt.h"
Benjamin Herrenschmidtacf7d762006-06-19 20:33:16 +020040#include "cbe_regs.h"
Arnd Bergmanncebf5892005-06-23 09:43:43 +100041
42struct iic {
Benjamin Herrenschmidtacf7d762006-06-19 20:33:16 +020043 struct cbe_iic_thread_regs __iomem *regs;
Arnd Bergmann2fb9d202006-01-05 14:05:29 +000044 u8 target_id;
Benjamin Herrenschmidtb9e5b4e2006-07-03 19:32:51 +100045 u8 eoi_stack[16];
46 int eoi_ptr;
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +100047 struct irq_host *host;
Arnd Bergmanncebf5892005-06-23 09:43:43 +100048};
49
50static DEFINE_PER_CPU(struct iic, iic);
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +100051#define IIC_NODE_COUNT 2
52static struct irq_host *iic_hosts[IIC_NODE_COUNT];
53
54/* Convert between "pending" bits and hw irq number */
55static irq_hw_number_t iic_pending_to_hwnum(struct cbe_iic_pending_bits bits)
56{
57 unsigned char unit = bits.source & 0xf;
58
59 if (bits.flags & CBE_IIC_IRQ_IPI)
60 return IIC_IRQ_IPI0 | (bits.prio >> 4);
61 else if (bits.class <= 3)
62 return (bits.class << 4) | unit;
63 else
64 return IIC_IRQ_INVALID;
65}
Arnd Bergmanncebf5892005-06-23 09:43:43 +100066
Benjamin Herrenschmidtb9e5b4e2006-07-03 19:32:51 +100067static void iic_mask(unsigned int irq)
68{
69}
70
71static void iic_unmask(unsigned int irq)
72{
73}
74
75static void iic_eoi(unsigned int irq)
Arnd Bergmanncebf5892005-06-23 09:43:43 +100076{
Arnd Bergmann55364082006-03-23 00:00:07 +010077 struct iic *iic = &__get_cpu_var(iic);
Benjamin Herrenschmidtb9e5b4e2006-07-03 19:32:51 +100078 out_be64(&iic->regs->prio, iic->eoi_stack[--iic->eoi_ptr]);
79 BUG_ON(iic->eoi_ptr < 0);
Arnd Bergmanncebf5892005-06-23 09:43:43 +100080}
81
Benjamin Herrenschmidtb9e5b4e2006-07-03 19:32:51 +100082static struct irq_chip iic_chip = {
Arnd Bergmannf3f66f52005-10-31 20:08:37 -050083 .typename = " CELL-IIC ",
Benjamin Herrenschmidtb9e5b4e2006-07-03 19:32:51 +100084 .mask = iic_mask,
85 .unmask = iic_unmask,
86 .eoi = iic_eoi,
Arnd Bergmanncebf5892005-06-23 09:43:43 +100087};
88
Arnd Bergmanncebf5892005-06-23 09:43:43 +100089/* Get an IRQ number from the pending state register of the IIC */
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +100090static unsigned int iic_get_irq(struct pt_regs *regs)
Arnd Bergmanncebf5892005-06-23 09:43:43 +100091{
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +100092 struct cbe_iic_pending_bits pending;
93 struct iic *iic;
Arnd Bergmanncebf5892005-06-23 09:43:43 +100094
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +100095 iic = &__get_cpu_var(iic);
96 *(unsigned long *) &pending =
97 in_be64((unsigned long __iomem *) &iic->regs->pending_destr);
98 iic->eoi_stack[++iic->eoi_ptr] = pending.prio;
99 BUG_ON(iic->eoi_ptr > 15);
100 if (pending.flags & CBE_IIC_IRQ_VALID)
101 return irq_linear_revmap(iic->host,
102 iic_pending_to_hwnum(pending));
103 return NO_IRQ;
Jens Osterkampd0e57c62006-03-23 00:00:06 +0100104}
105
Arnd Bergmanncebf5892005-06-23 09:43:43 +1000106#ifdef CONFIG_SMP
Arnd Bergmanna84195f2005-08-18 19:35:21 +0200107
108/* Use the highest interrupt priorities for IPI */
109static inline int iic_ipi_to_irq(int ipi)
110{
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000111 return IIC_IRQ_IPI0 + IIC_NUM_IPIS - 1 - ipi;
Arnd Bergmanna84195f2005-08-18 19:35:21 +0200112}
113
114static inline int iic_irq_to_ipi(int irq)
115{
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000116 return IIC_NUM_IPIS - 1 - (irq - IIC_IRQ_IPI0);
Arnd Bergmanna84195f2005-08-18 19:35:21 +0200117}
118
Arnd Bergmanncebf5892005-06-23 09:43:43 +1000119void iic_setup_cpu(void)
120{
121 out_be64(&__get_cpu_var(iic).regs->prio, 0xff);
122}
123
124void iic_cause_IPI(int cpu, int mesg)
125{
Arnd Bergmanna84195f2005-08-18 19:35:21 +0200126 out_be64(&per_cpu(iic, cpu).regs->generate, (IIC_NUM_IPIS - 1 - mesg) << 4);
Arnd Bergmanncebf5892005-06-23 09:43:43 +1000127}
128
Arnd Bergmann2fb9d202006-01-05 14:05:29 +0000129u8 iic_get_target_id(int cpu)
130{
131 return per_cpu(iic, cpu).target_id;
132}
133EXPORT_SYMBOL_GPL(iic_get_target_id);
134
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000135struct irq_host *iic_get_irq_host(int node)
136{
137 if (node < 0 || node >= IIC_NODE_COUNT)
138 return NULL;
139 return iic_hosts[node];
140}
141EXPORT_SYMBOL_GPL(iic_get_irq_host);
142
143
Arnd Bergmanncebf5892005-06-23 09:43:43 +1000144static irqreturn_t iic_ipi_action(int irq, void *dev_id, struct pt_regs *regs)
145{
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000146 int ipi = (int)(long)dev_id;
147
148 smp_message_recv(ipi, regs);
149
Arnd Bergmanncebf5892005-06-23 09:43:43 +1000150 return IRQ_HANDLED;
151}
152
Arnd Bergmanna84195f2005-08-18 19:35:21 +0200153static void iic_request_ipi(int ipi, const char *name)
Arnd Bergmanncebf5892005-06-23 09:43:43 +1000154{
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000155 int node, virq;
Arnd Bergmanna84195f2005-08-18 19:35:21 +0200156
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000157 for (node = 0; node < IIC_NODE_COUNT; node++) {
158 char *rname;
159 if (iic_hosts[node] == NULL)
160 continue;
161 virq = irq_create_mapping(iic_hosts[node],
162 iic_ipi_to_irq(ipi), 0);
163 if (virq == NO_IRQ) {
164 printk(KERN_ERR
165 "iic: failed to map IPI %s on node %d\n",
166 name, node);
167 continue;
168 }
169 rname = kzalloc(strlen(name) + 16, GFP_KERNEL);
170 if (rname)
171 sprintf(rname, "%s node %d", name, node);
172 else
173 rname = (char *)name;
174 if (request_irq(virq, iic_ipi_action, IRQF_DISABLED,
175 rname, (void *)(long)ipi))
176 printk(KERN_ERR
177 "iic: failed to request IPI %s on node %d\n",
178 name, node);
179 }
Arnd Bergmanncebf5892005-06-23 09:43:43 +1000180}
181
182void iic_request_IPIs(void)
183{
Arnd Bergmanna84195f2005-08-18 19:35:21 +0200184 iic_request_ipi(PPC_MSG_CALL_FUNCTION, "IPI-call");
185 iic_request_ipi(PPC_MSG_RESCHEDULE, "IPI-resched");
Arnd Bergmanncebf5892005-06-23 09:43:43 +1000186#ifdef CONFIG_DEBUGGER
Arnd Bergmanna84195f2005-08-18 19:35:21 +0200187 iic_request_ipi(PPC_MSG_DEBUGGER_BREAK, "IPI-debug");
Arnd Bergmanncebf5892005-06-23 09:43:43 +1000188#endif /* CONFIG_DEBUGGER */
189}
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000190
Arnd Bergmanncebf5892005-06-23 09:43:43 +1000191#endif /* CONFIG_SMP */
192
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000193
194static int iic_host_match(struct irq_host *h, struct device_node *node)
Arnd Bergmanncebf5892005-06-23 09:43:43 +1000195{
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000196 return h->host_data != NULL && node == h->host_data;
197}
Arnd Bergmanncebf5892005-06-23 09:43:43 +1000198
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000199static int iic_host_map(struct irq_host *h, unsigned int virq,
200 irq_hw_number_t hw, unsigned int flags)
201{
202 if (hw < IIC_IRQ_IPI0)
203 set_irq_chip_and_handler(virq, &iic_chip, handle_fasteoi_irq);
204 else
205 set_irq_chip_and_handler(virq, &iic_chip, handle_percpu_irq);
206 return 0;
207}
Benjamin Herrenschmidtb9e5b4e2006-07-03 19:32:51 +1000208
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000209static int iic_host_xlate(struct irq_host *h, struct device_node *ct,
210 u32 *intspec, unsigned int intsize,
211 irq_hw_number_t *out_hwirq, unsigned int *out_flags)
212
213{
214 /* Currently, we don't translate anything. That needs to be fixed as
215 * we get better defined device-trees. iic interrupts have to be
216 * explicitely mapped by whoever needs them
217 */
218 return -ENODEV;
219}
220
221static struct irq_host_ops iic_host_ops = {
222 .match = iic_host_match,
223 .map = iic_host_map,
224 .xlate = iic_host_xlate,
225};
226
227static void __init init_one_iic(unsigned int hw_cpu, unsigned long addr,
228 struct irq_host *host)
229{
230 /* XXX FIXME: should locate the linux CPU number from the HW cpu
231 * number properly. We are lucky for now
232 */
233 struct iic *iic = &per_cpu(iic, hw_cpu);
234
235 iic->regs = ioremap(addr, sizeof(struct cbe_iic_thread_regs));
236 BUG_ON(iic->regs == NULL);
237
238 iic->target_id = ((hw_cpu & 2) << 3) | ((hw_cpu & 1) ? 0xf : 0xe);
239 iic->eoi_stack[0] = 0xff;
240 iic->host = host;
241 out_be64(&iic->regs->prio, 0);
242
243 printk(KERN_INFO "IIC for CPU %d at %lx mapped to %p, target id 0x%x\n",
244 hw_cpu, addr, iic->regs, iic->target_id);
245}
246
247static int __init setup_iic(void)
248{
249 struct device_node *dn;
250 struct resource r0, r1;
251 struct irq_host *host;
252 int found = 0;
253 u32 *np;
254
255 for (dn = NULL;
256 (dn = of_find_node_by_name(dn,"interrupt-controller")) != NULL;) {
257 if (!device_is_compatible(dn,
258 "IBM,CBEA-Internal-Interrupt-Controller"))
259 continue;
260 np = (u32 *)get_property(dn, "ibm,interrupt-server-ranges",
261 NULL);
262 if (np == NULL) {
263 printk(KERN_WARNING "IIC: CPU association not found\n");
264 of_node_put(dn);
265 return -ENODEV;
Arnd Bergmanncebf5892005-06-23 09:43:43 +1000266 }
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000267 if (of_address_to_resource(dn, 0, &r0) ||
268 of_address_to_resource(dn, 1, &r1)) {
269 printk(KERN_WARNING "IIC: Can't resolve addresses\n");
270 of_node_put(dn);
271 return -ENODEV;
272 }
273 host = NULL;
274 if (found < IIC_NODE_COUNT) {
275 host = irq_alloc_host(IRQ_HOST_MAP_LINEAR,
276 IIC_SOURCE_COUNT,
277 &iic_host_ops,
278 IIC_IRQ_INVALID);
279 iic_hosts[found] = host;
280 BUG_ON(iic_hosts[found] == NULL);
281 iic_hosts[found]->host_data = of_node_get(dn);
282 found++;
283 }
284 init_one_iic(np[0], r0.start, host);
285 init_one_iic(np[1], r1.start, host);
Arnd Bergmanncebf5892005-06-23 09:43:43 +1000286 }
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000287
288 if (found)
289 return 0;
290 else
291 return -ENODEV;
Arnd Bergmanncebf5892005-06-23 09:43:43 +1000292}
293
Benjamin Herrenschmidtb9e5b4e2006-07-03 19:32:51 +1000294void __init iic_init_IRQ(void)
Arnd Bergmanncebf5892005-06-23 09:43:43 +1000295{
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000296 /* Discover and initialize iics */
Jens Osterkampd0e57c62006-03-23 00:00:06 +0100297 if (setup_iic() < 0)
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000298 panic("IIC: Failed to initialize !\n");
Jens Osterkampd0e57c62006-03-23 00:00:06 +0100299
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000300 /* Set master interrupt handling function */
301 ppc_md.get_irq = iic_get_irq;
Benjamin Herrenschmidtb9e5b4e2006-07-03 19:32:51 +1000302
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000303 /* Enable on current CPU */
304 iic_setup_cpu();
Arnd Bergmanncebf5892005-06-23 09:43:43 +1000305}