1
2
3
4
5
6
7
8
9
10#include <linux/types.h>
11#include <linux/threads.h>
12#include <linux/kernel.h>
13#include <linux/irq.h>
14#include <linux/debugfs.h>
15#include <linux/smp.h>
16#include <linux/interrupt.h>
17#include <linux/seq_file.h>
18#include <linux/init.h>
19#include <linux/cpu.h>
20#include <linux/of.h>
21#include <linux/slab.h>
22#include <linux/spinlock.h>
23
24#include <asm/prom.h>
25#include <asm/io.h>
26#include <asm/smp.h>
27#include <asm/machdep.h>
28#include <asm/irq.h>
29#include <asm/errno.h>
30#include <asm/rtas.h>
31#include <asm/xics.h>
32#include <asm/firmware.h>
33
34
35const struct icp_ops *icp_ops;
36
37unsigned int xics_default_server = 0xff;
38unsigned int xics_default_distrib_server = 0;
39unsigned int xics_interrupt_server_size = 8;
40
41DEFINE_PER_CPU(struct xics_cppr, xics_cppr);
42
43struct irq_domain *xics_host;
44
45static LIST_HEAD(ics_list);
46
47void xics_update_irq_servers(void)
48{
49 int i, j;
50 struct device_node *np;
51 u32 ilen;
52 const __be32 *ireg;
53 u32 hcpuid;
54
55
56 np = of_get_cpu_node(boot_cpuid, NULL);
57 BUG_ON(!np);
58
59 hcpuid = get_hard_smp_processor_id(boot_cpuid);
60 xics_default_server = xics_default_distrib_server = hcpuid;
61
62 pr_devel("xics: xics_default_server = 0x%x\n", xics_default_server);
63
64 ireg = of_get_property(np, "ibm,ppc-interrupt-gserver#s", &ilen);
65 if (!ireg) {
66 of_node_put(np);
67 return;
68 }
69
70 i = ilen / sizeof(int);
71
72
73
74
75
76
77 for (j = 0; j < i; j += 2) {
78 if (be32_to_cpu(ireg[j]) == hcpuid) {
79 xics_default_distrib_server = be32_to_cpu(ireg[j+1]);
80 break;
81 }
82 }
83 pr_devel("xics: xics_default_distrib_server = 0x%x\n",
84 xics_default_distrib_server);
85 of_node_put(np);
86}
87
88
89
90
91void xics_set_cpu_giq(unsigned int gserver, unsigned int join)
92{
93#ifdef CONFIG_PPC_RTAS
94 int index;
95 int status;
96
97 if (!rtas_indicator_present(GLOBAL_INTERRUPT_QUEUE, NULL))
98 return;
99
100 index = (1UL << xics_interrupt_server_size) - 1 - gserver;
101
102 status = rtas_set_indicator_fast(GLOBAL_INTERRUPT_QUEUE, index, join);
103
104 WARN(status < 0, "set-indicator(%d, %d, %u) returned %d\n",
105 GLOBAL_INTERRUPT_QUEUE, index, join, status);
106#endif
107}
108
109void xics_setup_cpu(void)
110{
111 icp_ops->set_priority(LOWEST_PRIORITY);
112
113 xics_set_cpu_giq(xics_default_distrib_server, 1);
114}
115
116void xics_mask_unknown_vec(unsigned int vec)
117{
118 struct ics *ics;
119
120 pr_err("Interrupt 0x%x (real) is invalid, disabling it.\n", vec);
121
122 list_for_each_entry(ics, &ics_list, link)
123 ics->mask_unknown(ics, vec);
124}
125
126
127#ifdef CONFIG_SMP
128
129static void xics_request_ipi(void)
130{
131 unsigned int ipi;
132
133 ipi = irq_create_mapping(xics_host, XICS_IPI);
134 BUG_ON(!ipi);
135
136
137
138
139 BUG_ON(request_irq(ipi, icp_ops->ipi_action,
140 IRQF_PERCPU | IRQF_NO_THREAD, "IPI", NULL));
141}
142
143void __init xics_smp_probe(void)
144{
145
146 smp_ops->cause_ipi = icp_ops->cause_ipi;
147
148
149 xics_request_ipi();
150}
151
152#endif
153
154void xics_teardown_cpu(void)
155{
156 struct xics_cppr *os_cppr = this_cpu_ptr(&xics_cppr);
157
158
159
160
161
162 os_cppr->index = 0;
163 icp_ops->set_priority(0);
164 icp_ops->teardown_cpu();
165}
166
167void xics_kexec_teardown_cpu(int secondary)
168{
169 xics_teardown_cpu();
170
171 icp_ops->flush_ipi();
172
173
174
175
176
177 if (secondary)
178 xics_set_cpu_giq(xics_default_distrib_server, 0);
179}
180
181
182#ifdef CONFIG_HOTPLUG_CPU
183
184
185void xics_migrate_irqs_away(void)
186{
187 int cpu = smp_processor_id(), hw_cpu = hard_smp_processor_id();
188 unsigned int irq, virq;
189 struct irq_desc *desc;
190
191
192 if (hw_cpu == xics_default_server)
193 xics_update_irq_servers();
194
195
196 icp_ops->set_priority(0);
197
198
199 xics_set_cpu_giq(xics_default_distrib_server, 0);
200
201
202 icp_ops->set_priority(DEFAULT_PRIORITY);
203
204 for_each_irq_desc(virq, desc) {
205 struct irq_chip *chip;
206 long server;
207 unsigned long flags;
208 struct ics *ics;
209
210
211 if (virq < NUM_ISA_INTERRUPTS)
212 continue;
213
214 if (!desc->action)
215 continue;
216 if (desc->irq_data.domain != xics_host)
217 continue;
218 irq = desc->irq_data.hwirq;
219
220 if (irq == XICS_IPI || irq == XICS_IRQ_SPURIOUS)
221 continue;
222 chip = irq_desc_get_chip(desc);
223 if (!chip || !chip->irq_set_affinity)
224 continue;
225
226 raw_spin_lock_irqsave(&desc->lock, flags);
227
228
229 server = -1;
230 ics = irq_desc_get_chip_data(desc);
231 if (ics)
232 server = ics->get_server(ics, irq);
233 if (server < 0) {
234 printk(KERN_ERR "%s: Can't find server for irq %d\n",
235 __func__, irq);
236 goto unlock;
237 }
238
239
240
241
242
243 if (server != hw_cpu)
244 goto unlock;
245
246
247 if (cpu_online(cpu))
248 pr_warning("IRQ %u affinity broken off cpu %u\n",
249 virq, cpu);
250
251
252 raw_spin_unlock_irqrestore(&desc->lock, flags);
253 irq_set_affinity(virq, cpu_all_mask);
254 continue;
255unlock:
256 raw_spin_unlock_irqrestore(&desc->lock, flags);
257 }
258}
259#endif
260
261#ifdef CONFIG_SMP
262
263
264
265
266
267
268
269
270
271
272int xics_get_irq_server(unsigned int virq, const struct cpumask *cpumask,
273 unsigned int strict_check)
274{
275
276 if (!distribute_irqs)
277 return xics_default_server;
278
279 if (!cpumask_subset(cpu_possible_mask, cpumask)) {
280 int server = cpumask_first_and(cpu_online_mask, cpumask);
281
282 if (server < nr_cpu_ids)
283 return get_hard_smp_processor_id(server);
284
285 if (strict_check)
286 return -1;
287 }
288
289
290
291
292
293
294 if (cpumask_equal(cpu_online_mask, cpu_present_mask))
295 return xics_default_distrib_server;
296
297 return xics_default_server;
298}
299#endif
300
301static int xics_host_match(struct irq_domain *h, struct device_node *node,
302 enum irq_domain_bus_token bus_token)
303{
304 struct ics *ics;
305
306 list_for_each_entry(ics, &ics_list, link)
307 if (ics->host_match(ics, node))
308 return 1;
309
310 return 0;
311}
312
313
314static void xics_ipi_unmask(struct irq_data *d) { }
315static void xics_ipi_mask(struct irq_data *d) { }
316
317static struct irq_chip xics_ipi_chip = {
318 .name = "XICS",
319 .irq_eoi = NULL,
320 .irq_mask = xics_ipi_mask,
321 .irq_unmask = xics_ipi_unmask,
322};
323
324static int xics_host_map(struct irq_domain *h, unsigned int virq,
325 irq_hw_number_t hw)
326{
327 struct ics *ics;
328
329 pr_devel("xics: map virq %d, hwirq 0x%lx\n", virq, hw);
330
331
332
333
334
335
336 irq_clear_status_flags(virq, IRQ_LEVEL);
337
338
339 if (hw == XICS_IPI) {
340 irq_set_chip_and_handler(virq, &xics_ipi_chip,
341 handle_percpu_irq);
342 return 0;
343 }
344
345
346 list_for_each_entry(ics, &ics_list, link)
347 if (ics->map(ics, virq) == 0)
348 return 0;
349
350 return -EINVAL;
351}
352
353static int xics_host_xlate(struct irq_domain *h, struct device_node *ct,
354 const u32 *intspec, unsigned int intsize,
355 irq_hw_number_t *out_hwirq, unsigned int *out_flags)
356
357{
358 *out_hwirq = intspec[0];
359
360
361
362
363
364 if (intsize > 1) {
365 if (intspec[1] & 1)
366 *out_flags = IRQ_TYPE_LEVEL_LOW;
367 else
368 *out_flags = IRQ_TYPE_EDGE_RISING;
369 } else
370 *out_flags = IRQ_TYPE_LEVEL_LOW;
371
372 return 0;
373}
374
375int xics_set_irq_type(struct irq_data *d, unsigned int flow_type)
376{
377
378
379
380
381
382
383
384 if (flow_type == IRQ_TYPE_DEFAULT || flow_type == IRQ_TYPE_NONE)
385 flow_type = IRQ_TYPE_EDGE_RISING;
386
387 if (flow_type != IRQ_TYPE_EDGE_RISING &&
388 flow_type != IRQ_TYPE_LEVEL_LOW)
389 return -EINVAL;
390
391 irqd_set_trigger_type(d, flow_type);
392
393 return IRQ_SET_MASK_OK_NOCOPY;
394}
395
396int xics_retrigger(struct irq_data *data)
397{
398
399
400
401
402
403 xics_push_cppr(0);
404
405
406 return 0;
407}
408
409static const struct irq_domain_ops xics_host_ops = {
410 .match = xics_host_match,
411 .map = xics_host_map,
412 .xlate = xics_host_xlate,
413};
414
415static void __init xics_init_host(void)
416{
417 xics_host = irq_domain_add_tree(NULL, &xics_host_ops, NULL);
418 BUG_ON(xics_host == NULL);
419 irq_set_default_host(xics_host);
420}
421
422void __init xics_register_ics(struct ics *ics)
423{
424 list_add(&ics->link, &ics_list);
425}
426
427static void __init xics_get_server_size(void)
428{
429 struct device_node *np;
430 const __be32 *isize;
431
432
433
434
435 np = of_find_compatible_node(NULL, NULL, "ibm,ppc-xics");
436 if (!np)
437 return;
438 isize = of_get_property(np, "ibm,interrupt-server#-size", NULL);
439 if (!isize)
440 return;
441 xics_interrupt_server_size = be32_to_cpu(*isize);
442 of_node_put(np);
443}
444
445void __init xics_init(void)
446{
447 int rc = -1;
448
449
450 if (firmware_has_feature(FW_FEATURE_LPAR))
451 rc = icp_hv_init();
452 if (rc < 0) {
453 rc = icp_native_init();
454 if (rc == -ENODEV)
455 rc = icp_opal_init();
456 }
457 if (rc < 0) {
458 pr_warning("XICS: Cannot find a Presentation Controller !\n");
459 return;
460 }
461
462
463 ppc_md.get_irq = icp_ops->get_irq;
464
465
466 xics_ipi_chip.irq_eoi = icp_ops->eoi;
467
468
469 rc = ics_rtas_init();
470 if (rc < 0)
471 rc = ics_opal_init();
472 if (rc < 0)
473 pr_warning("XICS: Cannot find a Source Controller !\n");
474
475
476 xics_get_server_size();
477 xics_update_irq_servers();
478 xics_init_host();
479 xics_setup_cpu();
480}
481