2 * Copyright 2011 IBM Corporation.
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation; either version
7 * 2 of the License, or (at your option) any later version.
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>
21 #include <linux/slab.h>
22 #include <linux/spinlock.h>
27 #include <asm/machdep.h>
29 #include <asm/errno.h>
32 #include <asm/firmware.h>
34 /* Globals common to all ICP/ICS implementations */
35 const struct icp_ops
*icp_ops
;
37 unsigned int xics_default_server
= 0xff;
38 unsigned int xics_default_distrib_server
= 0;
39 unsigned int xics_interrupt_server_size
= 8;
41 DEFINE_PER_CPU(struct xics_cppr
, xics_cppr
);
43 struct irq_host
*xics_host
;
45 static LIST_HEAD(ics_list
);
47 void xics_update_irq_servers(void)
50 struct device_node
*np
;
55 /* Find the server numbers for the boot cpu. */
56 np
= of_get_cpu_node(boot_cpuid
, NULL
);
59 hcpuid
= get_hard_smp_processor_id(boot_cpuid
);
60 xics_default_server
= xics_default_distrib_server
= hcpuid
;
62 pr_devel("xics: xics_default_server = 0x%x\n", xics_default_server
);
64 ireg
= of_get_property(np
, "ibm,ppc-interrupt-gserver#s", &ilen
);
70 i
= ilen
/ sizeof(int);
72 /* Global interrupt distribution server is specified in the last
73 * entry of "ibm,ppc-interrupt-gserver#s" property. Get the last
74 * entry fom this property for current boot cpu id and use it as
75 * default distribution server
77 for (j
= 0; j
< i
; j
+= 2) {
78 if (ireg
[j
] == hcpuid
) {
79 xics_default_distrib_server
= ireg
[j
+1];
83 pr_devel("xics: xics_default_distrib_server = 0x%x\n",
84 xics_default_distrib_server
);
88 /* GIQ stuff, currently only supported on RTAS setups, will have
89 * to be sorted properly for bare metal
91 void xics_set_cpu_giq(unsigned int gserver
, unsigned int join
)
93 #ifdef CONFIG_PPC_RTAS
97 if (!rtas_indicator_present(GLOBAL_INTERRUPT_QUEUE
, NULL
))
100 index
= (1UL << xics_interrupt_server_size
) - 1 - gserver
;
102 status
= rtas_set_indicator_fast(GLOBAL_INTERRUPT_QUEUE
, index
, join
);
104 WARN(status
< 0, "set-indicator(%d, %d, %u) returned %d\n",
105 GLOBAL_INTERRUPT_QUEUE
, index
, join
, status
);
109 void xics_setup_cpu(void)
111 icp_ops
->set_priority(LOWEST_PRIORITY
);
113 xics_set_cpu_giq(xics_default_distrib_server
, 1);
116 void xics_mask_unknown_vec(unsigned int vec
)
120 pr_err("Interrupt 0x%x (real) is invalid, disabling it.\n", vec
);
122 list_for_each_entry(ics
, &ics_list
, link
)
123 ics
->mask_unknown(ics
, vec
);
129 static void xics_request_ipi(void)
133 ipi
= irq_create_mapping(xics_host
, XICS_IPI
);
134 BUG_ON(ipi
== NO_IRQ
);
137 * IPIs are marked IRQF_DISABLED as they must run with irqs
138 * disabled, and PERCPU. The handler was set in map.
140 BUG_ON(request_irq(ipi
, icp_ops
->ipi_action
,
141 IRQF_DISABLED
|IRQF_PERCPU
, "IPI", NULL
));
144 int __init
xics_smp_probe(void)
146 /* Setup cause_ipi callback based on which ICP is used */
147 smp_ops
->cause_ipi
= icp_ops
->cause_ipi
;
149 /* Register all the IPIs */
152 return cpumask_weight(cpu_possible_mask
);
155 #endif /* CONFIG_SMP */
157 void xics_teardown_cpu(void)
159 struct xics_cppr
*os_cppr
= &__get_cpu_var(xics_cppr
);
162 * we have to reset the cppr index to 0 because we're
163 * not going to return from the IPI
166 icp_ops
->set_priority(0);
167 icp_ops
->teardown_cpu();
170 void xics_kexec_teardown_cpu(int secondary
)
174 icp_ops
->flush_ipi();
177 * Some machines need to have at least one cpu in the GIQ,
178 * so leave the master cpu in the group.
181 xics_set_cpu_giq(xics_default_distrib_server
, 0);
185 #ifdef CONFIG_HOTPLUG_CPU
187 /* Interrupts are disabled. */
188 void xics_migrate_irqs_away(void)
190 int cpu
= smp_processor_id(), hw_cpu
= hard_smp_processor_id();
191 unsigned int irq
, virq
;
193 /* If we used to be the default server, move to the new "boot_cpuid" */
194 if (hw_cpu
== xics_default_server
)
195 xics_update_irq_servers();
197 /* Reject any interrupt that was queued to us... */
198 icp_ops
->set_priority(0);
200 /* Remove ourselves from the global interrupt queue */
201 xics_set_cpu_giq(xics_default_distrib_server
, 0);
203 /* Allow IPIs again... */
204 icp_ops
->set_priority(DEFAULT_PRIORITY
);
207 struct irq_desc
*desc
;
208 struct irq_chip
*chip
;
213 /* We can't set affinity on ISA interrupts */
214 if (virq
< NUM_ISA_INTERRUPTS
)
216 if (!virq_is_host(virq
, xics_host
))
218 irq
= (unsigned int)virq_to_hw(virq
);
219 /* We need to get IPIs still. */
220 if (irq
== XICS_IPI
|| irq
== XICS_IRQ_SPURIOUS
)
222 desc
= irq_to_desc(virq
);
223 /* We only need to migrate enabled IRQS */
224 if (!desc
|| !desc
->action
)
226 chip
= irq_desc_get_chip(desc
);
227 if (!chip
|| !chip
->irq_set_affinity
)
230 raw_spin_lock_irqsave(&desc
->lock
, flags
);
232 /* Locate interrupt server */
234 ics
= irq_get_chip_data(virq
);
236 server
= ics
->get_server(ics
, irq
);
238 printk(KERN_ERR
"%s: Can't find server for irq %d\n",
243 /* We only support delivery to all cpus or to one cpu.
244 * The irq has to be migrated only in the single cpu
247 if (server
!= hw_cpu
)
250 /* This is expected during cpu offline. */
252 pr_warning("IRQ %u affinity broken off cpu %u\n",
255 /* Reset affinity to all cpus */
256 raw_spin_unlock_irqrestore(&desc
->lock
, flags
);
257 irq_set_affinity(virq
, cpu_all_mask
);
260 raw_spin_unlock_irqrestore(&desc
->lock
, flags
);
263 #endif /* CONFIG_HOTPLUG_CPU */
267 * For the moment we only implement delivery to all cpus or one cpu.
269 * If the requested affinity is cpu_all_mask, we set global affinity.
270 * If not we set it to the first cpu in the mask, even if multiple cpus
271 * are set. This is so things like irqbalance (which set core and package
272 * wide affinities) do the right thing.
274 * We need to fix this to implement support for the links
276 int xics_get_irq_server(unsigned int virq
, const struct cpumask
*cpumask
,
277 unsigned int strict_check
)
280 if (!distribute_irqs
)
281 return xics_default_server
;
283 if (!cpumask_subset(cpu_possible_mask
, cpumask
)) {
284 int server
= cpumask_first_and(cpu_online_mask
, cpumask
);
286 if (server
< nr_cpu_ids
)
287 return get_hard_smp_processor_id(server
);
294 * Workaround issue with some versions of JS20 firmware that
295 * deliver interrupts to cpus which haven't been started. This
296 * happens when using the maxcpus= boot option.
298 if (cpumask_equal(cpu_online_mask
, cpu_present_mask
))
299 return xics_default_distrib_server
;
301 return xics_default_server
;
303 #endif /* CONFIG_SMP */
305 static int xics_host_match(struct irq_host
*h
, struct device_node
*node
)
309 list_for_each_entry(ics
, &ics_list
, link
)
310 if (ics
->host_match(ics
, node
))
317 static void xics_ipi_unmask(struct irq_data
*d
) { }
318 static void xics_ipi_mask(struct irq_data
*d
) { }
320 static struct irq_chip xics_ipi_chip
= {
322 .irq_eoi
= NULL
, /* Patched at init time */
323 .irq_mask
= xics_ipi_mask
,
324 .irq_unmask
= xics_ipi_unmask
,
327 static int xics_host_map(struct irq_host
*h
, unsigned int virq
,
332 pr_devel("xics: map virq %d, hwirq 0x%lx\n", virq
, hw
);
334 /* Insert the interrupt mapping into the radix tree for fast lookup */
335 irq_radix_revmap_insert(xics_host
, virq
, hw
);
337 /* They aren't all level sensitive but we just don't really know */
338 irq_set_status_flags(virq
, IRQ_LEVEL
);
340 /* Don't call into ICS for IPIs */
341 if (hw
== XICS_IPI
) {
342 irq_set_chip_and_handler(virq
, &xics_ipi_chip
,
347 /* Let the ICS setup the chip data */
348 list_for_each_entry(ics
, &ics_list
, link
)
349 if (ics
->map(ics
, virq
) == 0)
355 static int xics_host_xlate(struct irq_host
*h
, struct device_node
*ct
,
356 const u32
*intspec
, unsigned int intsize
,
357 irq_hw_number_t
*out_hwirq
, unsigned int *out_flags
)
360 /* Current xics implementation translates everything
361 * to level. It is not technically right for MSIs but this
362 * is irrelevant at this point. We might get smarter in the future
364 *out_hwirq
= intspec
[0];
365 *out_flags
= IRQ_TYPE_LEVEL_LOW
;
370 static struct irq_host_ops xics_host_ops
= {
371 .match
= xics_host_match
,
372 .map
= xics_host_map
,
373 .xlate
= xics_host_xlate
,
376 static void __init
xics_init_host(void)
378 xics_host
= irq_alloc_host(NULL
, IRQ_HOST_MAP_TREE
, 0, &xics_host_ops
,
380 BUG_ON(xics_host
== NULL
);
381 irq_set_default_host(xics_host
);
384 void __init
xics_register_ics(struct ics
*ics
)
386 list_add(&ics
->link
, &ics_list
);
389 static void __init
xics_get_server_size(void)
391 struct device_node
*np
;
394 /* We fetch the interrupt server size from the first ICS node
397 np
= of_find_compatible_node(NULL
, NULL
, "ibm,ppc-xics");
400 isize
= of_get_property(np
, "ibm,interrupt-server#-size", NULL
);
403 xics_interrupt_server_size
= *isize
;
407 void __init
xics_init(void)
411 /* Fist locate ICP */
412 #ifdef CONFIG_PPC_ICP_HV
413 if (firmware_has_feature(FW_FEATURE_LPAR
))
416 #ifdef CONFIG_PPC_ICP_NATIVE
418 rc
= icp_native_init();
421 pr_warning("XICS: Cannot find a Presentation Controller !\n");
425 /* Copy get_irq callback over to ppc_md */
426 ppc_md
.get_irq
= icp_ops
->get_irq
;
428 /* Patch up IPI chip EOI */
429 xics_ipi_chip
.irq_eoi
= icp_ops
->eoi
;
432 #ifdef CONFIG_PPC_ICS_RTAS
433 rc
= ics_rtas_init();
436 pr_warning("XICS: Cannot find a Source Controller !\n");
438 /* Initialize common bits */
439 xics_get_server_size();
440 xics_update_irq_servers();