1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * Copyright 2011 IBM Corporation.
5 #include <linux/types.h>
6 #include <linux/threads.h>
7 #include <linux/kernel.h>
9 #include <linux/debugfs.h>
10 #include <linux/smp.h>
11 #include <linux/interrupt.h>
12 #include <linux/seq_file.h>
13 #include <linux/init.h>
14 #include <linux/cpu.h>
16 #include <linux/slab.h>
17 #include <linux/spinlock.h>
18 #include <linux/delay.h>
23 #include <asm/machdep.h>
25 #include <asm/errno.h>
28 #include <asm/firmware.h>
30 /* Globals common to all ICP/ICS implementations */
31 const struct icp_ops
*icp_ops
;
33 unsigned int xics_default_server
= 0xff;
34 unsigned int xics_default_distrib_server
= 0;
35 unsigned int xics_interrupt_server_size
= 8;
37 DEFINE_PER_CPU(struct xics_cppr
, xics_cppr
);
39 struct irq_domain
*xics_host
;
41 static LIST_HEAD(ics_list
);
43 void xics_update_irq_servers(void)
46 struct device_node
*np
;
51 /* Find the server numbers for the boot cpu. */
52 np
= of_get_cpu_node(boot_cpuid
, NULL
);
55 hcpuid
= get_hard_smp_processor_id(boot_cpuid
);
56 xics_default_server
= xics_default_distrib_server
= hcpuid
;
58 pr_devel("xics: xics_default_server = 0x%x\n", xics_default_server
);
60 ireg
= of_get_property(np
, "ibm,ppc-interrupt-gserver#s", &ilen
);
66 i
= ilen
/ sizeof(int);
68 /* Global interrupt distribution server is specified in the last
69 * entry of "ibm,ppc-interrupt-gserver#s" property. Get the last
70 * entry fom this property for current boot cpu id and use it as
71 * default distribution server
73 for (j
= 0; j
< i
; j
+= 2) {
74 if (be32_to_cpu(ireg
[j
]) == hcpuid
) {
75 xics_default_distrib_server
= be32_to_cpu(ireg
[j
+1]);
79 pr_devel("xics: xics_default_distrib_server = 0x%x\n",
80 xics_default_distrib_server
);
84 /* GIQ stuff, currently only supported on RTAS setups, will have
85 * to be sorted properly for bare metal
87 void xics_set_cpu_giq(unsigned int gserver
, unsigned int join
)
89 #ifdef CONFIG_PPC_RTAS
93 if (!rtas_indicator_present(GLOBAL_INTERRUPT_QUEUE
, NULL
))
96 index
= (1UL << xics_interrupt_server_size
) - 1 - gserver
;
98 status
= rtas_set_indicator_fast(GLOBAL_INTERRUPT_QUEUE
, index
, join
);
100 WARN(status
< 0, "set-indicator(%d, %d, %u) returned %d\n",
101 GLOBAL_INTERRUPT_QUEUE
, index
, join
, status
);
105 void xics_setup_cpu(void)
107 icp_ops
->set_priority(LOWEST_PRIORITY
);
109 xics_set_cpu_giq(xics_default_distrib_server
, 1);
112 void xics_mask_unknown_vec(unsigned int vec
)
116 pr_err("Interrupt 0x%x (real) is invalid, disabling it.\n", vec
);
118 list_for_each_entry(ics
, &ics_list
, link
)
119 ics
->mask_unknown(ics
, vec
);
125 static void xics_request_ipi(void)
129 ipi
= irq_create_mapping(xics_host
, XICS_IPI
);
133 * IPIs are marked IRQF_PERCPU. The handler was set in map.
135 BUG_ON(request_irq(ipi
, icp_ops
->ipi_action
,
136 IRQF_PERCPU
| IRQF_NO_THREAD
, "IPI", NULL
));
139 void __init
xics_smp_probe(void)
141 /* Register all the IPIs */
144 /* Setup cause_ipi callback based on which ICP is used */
145 smp_ops
->cause_ipi
= icp_ops
->cause_ipi
;
148 #endif /* CONFIG_SMP */
150 void xics_teardown_cpu(void)
152 struct xics_cppr
*os_cppr
= this_cpu_ptr(&xics_cppr
);
155 * we have to reset the cppr index to 0 because we're
156 * not going to return from the IPI
159 icp_ops
->set_priority(0);
160 icp_ops
->teardown_cpu();
163 void xics_kexec_teardown_cpu(int secondary
)
167 icp_ops
->flush_ipi();
170 * Some machines need to have at least one cpu in the GIQ,
171 * so leave the master cpu in the group.
174 xics_set_cpu_giq(xics_default_distrib_server
, 0);
178 #ifdef CONFIG_HOTPLUG_CPU
180 /* Interrupts are disabled. */
181 void xics_migrate_irqs_away(void)
183 int cpu
= smp_processor_id(), hw_cpu
= hard_smp_processor_id();
184 unsigned int irq
, virq
;
185 struct irq_desc
*desc
;
187 /* If we used to be the default server, move to the new "boot_cpuid" */
188 if (hw_cpu
== xics_default_server
)
189 xics_update_irq_servers();
191 /* Reject any interrupt that was queued to us... */
192 icp_ops
->set_priority(0);
194 /* Remove ourselves from the global interrupt queue */
195 xics_set_cpu_giq(xics_default_distrib_server
, 0);
197 for_each_irq_desc(virq
, desc
) {
198 struct irq_chip
*chip
;
203 /* We can't set affinity on ISA interrupts */
204 if (virq
< NUM_ISA_INTERRUPTS
)
206 /* We only need to migrate enabled IRQS */
209 if (desc
->irq_data
.domain
!= xics_host
)
211 irq
= desc
->irq_data
.hwirq
;
212 /* We need to get IPIs still. */
213 if (irq
== XICS_IPI
|| irq
== XICS_IRQ_SPURIOUS
)
215 chip
= irq_desc_get_chip(desc
);
216 if (!chip
|| !chip
->irq_set_affinity
)
219 raw_spin_lock_irqsave(&desc
->lock
, flags
);
221 /* Locate interrupt server */
223 ics
= irq_desc_get_chip_data(desc
);
225 server
= ics
->get_server(ics
, irq
);
227 printk(KERN_ERR
"%s: Can't find server for irq %d\n",
232 /* We only support delivery to all cpus or to one cpu.
233 * The irq has to be migrated only in the single cpu
236 if (server
!= hw_cpu
)
239 /* This is expected during cpu offline. */
241 pr_warn("IRQ %u affinity broken off cpu %u\n",
244 /* Reset affinity to all cpus */
245 raw_spin_unlock_irqrestore(&desc
->lock
, flags
);
246 irq_set_affinity(virq
, cpu_all_mask
);
249 raw_spin_unlock_irqrestore(&desc
->lock
, flags
);
252 /* Allow "sufficient" time to drop any inflight IRQ's */
256 * Allow IPIs again. This is done at the very end, after migrating all
257 * interrupts, the expectation is that we'll only get woken up by an IPI
258 * interrupt beyond this point, but leave externals masked just to be
259 * safe. If we're using icp-opal this may actually allow all
260 * interrupts anyway, but that should be OK.
262 icp_ops
->set_priority(DEFAULT_PRIORITY
);
265 #endif /* CONFIG_HOTPLUG_CPU */
269 * For the moment we only implement delivery to all cpus or one cpu.
271 * If the requested affinity is cpu_all_mask, we set global affinity.
272 * If not we set it to the first cpu in the mask, even if multiple cpus
273 * are set. This is so things like irqbalance (which set core and package
274 * wide affinities) do the right thing.
276 * We need to fix this to implement support for the links
278 int xics_get_irq_server(unsigned int virq
, const struct cpumask
*cpumask
,
279 unsigned int strict_check
)
282 if (!distribute_irqs
)
283 return xics_default_server
;
285 if (!cpumask_subset(cpu_possible_mask
, cpumask
)) {
286 int server
= cpumask_first_and(cpu_online_mask
, cpumask
);
288 if (server
< nr_cpu_ids
)
289 return get_hard_smp_processor_id(server
);
296 * Workaround issue with some versions of JS20 firmware that
297 * deliver interrupts to cpus which haven't been started. This
298 * happens when using the maxcpus= boot option.
300 if (cpumask_equal(cpu_online_mask
, cpu_present_mask
))
301 return xics_default_distrib_server
;
303 return xics_default_server
;
305 #endif /* CONFIG_SMP */
307 static int xics_host_match(struct irq_domain
*h
, struct device_node
*node
,
308 enum irq_domain_bus_token bus_token
)
312 list_for_each_entry(ics
, &ics_list
, link
)
313 if (ics
->host_match(ics
, node
))
320 static void xics_ipi_unmask(struct irq_data
*d
) { }
321 static void xics_ipi_mask(struct irq_data
*d
) { }
323 static struct irq_chip xics_ipi_chip
= {
325 .irq_eoi
= NULL
, /* Patched at init time */
326 .irq_mask
= xics_ipi_mask
,
327 .irq_unmask
= xics_ipi_unmask
,
330 static int xics_host_map(struct irq_domain
*h
, unsigned int virq
,
335 pr_devel("xics: map virq %d, hwirq 0x%lx\n", virq
, hw
);
338 * Mark interrupts as edge sensitive by default so that resend
339 * actually works. The device-tree parsing will turn the LSIs
342 irq_clear_status_flags(virq
, IRQ_LEVEL
);
344 /* Don't call into ICS for IPIs */
345 if (hw
== XICS_IPI
) {
346 irq_set_chip_and_handler(virq
, &xics_ipi_chip
,
351 /* Let the ICS setup the chip data */
352 list_for_each_entry(ics
, &ics_list
, link
)
353 if (ics
->map(ics
, virq
) == 0)
359 static int xics_host_xlate(struct irq_domain
*h
, struct device_node
*ct
,
360 const u32
*intspec
, unsigned int intsize
,
361 irq_hw_number_t
*out_hwirq
, unsigned int *out_flags
)
364 *out_hwirq
= intspec
[0];
367 * If intsize is at least 2, we look for the type in the second cell,
368 * we assume the LSB indicates a level interrupt.
372 *out_flags
= IRQ_TYPE_LEVEL_LOW
;
374 *out_flags
= IRQ_TYPE_EDGE_RISING
;
376 *out_flags
= IRQ_TYPE_LEVEL_LOW
;
381 int xics_set_irq_type(struct irq_data
*d
, unsigned int flow_type
)
384 * We only support these. This has really no effect other than setting
385 * the corresponding descriptor bits mind you but those will in turn
386 * affect the resend function when re-enabling an edge interrupt.
388 * Set set the default to edge as explained in map().
390 if (flow_type
== IRQ_TYPE_DEFAULT
|| flow_type
== IRQ_TYPE_NONE
)
391 flow_type
= IRQ_TYPE_EDGE_RISING
;
393 if (flow_type
!= IRQ_TYPE_EDGE_RISING
&&
394 flow_type
!= IRQ_TYPE_LEVEL_LOW
)
397 irqd_set_trigger_type(d
, flow_type
);
399 return IRQ_SET_MASK_OK_NOCOPY
;
402 int xics_retrigger(struct irq_data
*data
)
405 * We need to push a dummy CPPR when retriggering, since the subsequent
406 * EOI will try to pop it. Passing 0 works, as the function hard codes
407 * the priority value anyway.
411 /* Tell the core to do a soft retrigger */
415 static const struct irq_domain_ops xics_host_ops
= {
416 .match
= xics_host_match
,
417 .map
= xics_host_map
,
418 .xlate
= xics_host_xlate
,
421 static void __init
xics_init_host(void)
423 xics_host
= irq_domain_add_tree(NULL
, &xics_host_ops
, NULL
);
424 BUG_ON(xics_host
== NULL
);
425 irq_set_default_host(xics_host
);
428 void __init
xics_register_ics(struct ics
*ics
)
430 list_add(&ics
->link
, &ics_list
);
433 static void __init
xics_get_server_size(void)
435 struct device_node
*np
;
438 /* We fetch the interrupt server size from the first ICS node
441 np
= of_find_compatible_node(NULL
, NULL
, "ibm,ppc-xics");
445 isize
= of_get_property(np
, "ibm,interrupt-server#-size", NULL
);
447 xics_interrupt_server_size
= be32_to_cpu(*isize
);
452 void __init
xics_init(void)
456 /* Fist locate ICP */
457 if (firmware_has_feature(FW_FEATURE_LPAR
))
460 rc
= icp_native_init();
462 rc
= icp_opal_init();
465 pr_warn("XICS: Cannot find a Presentation Controller !\n");
469 /* Copy get_irq callback over to ppc_md */
470 ppc_md
.get_irq
= icp_ops
->get_irq
;
472 /* Patch up IPI chip EOI */
473 xics_ipi_chip
.irq_eoi
= icp_ops
->eoi
;
476 rc
= ics_rtas_init();
478 rc
= ics_opal_init();
480 pr_warn("XICS: Cannot find a Source Controller !\n");
482 /* Initialize common bits */
483 xics_get_server_size();
484 xics_update_irq_servers();