2 * ICS backend for OPAL managed interrupts.
4 * Copyright 2011 IBM Corp.
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
14 #include <linux/types.h>
15 #include <linux/kernel.h>
16 #include <linux/irq.h>
17 #include <linux/smp.h>
18 #include <linux/interrupt.h>
19 #include <linux/init.h>
20 #include <linux/cpu.h>
22 #include <linux/spinlock.h>
23 #include <linux/msi.h>
27 #include <asm/machdep.h>
29 #include <asm/errno.h>
32 #include <asm/firmware.h>
34 static int ics_opal_mangle_server(int server
)
40 static int ics_opal_unmangle_server(int server
)
46 static void ics_opal_unmask_irq(struct irq_data
*d
)
48 unsigned int hw_irq
= (unsigned int)irqd_to_hwirq(d
);
52 pr_devel("ics-hal: unmask virq %d [hw 0x%x]\n", d
->irq
, hw_irq
);
54 if (hw_irq
== XICS_IPI
|| hw_irq
== XICS_IRQ_SPURIOUS
)
57 server
= xics_get_irq_server(d
->irq
, irq_data_get_affinity_mask(d
), 0);
58 server
= ics_opal_mangle_server(server
);
60 rc
= opal_set_xive(hw_irq
, server
, DEFAULT_PRIORITY
);
61 if (rc
!= OPAL_SUCCESS
)
62 pr_err("%s: opal_set_xive(irq=%d [hw 0x%x] server=%x)"
64 __func__
, d
->irq
, hw_irq
, server
, rc
);
67 static unsigned int ics_opal_startup(struct irq_data
*d
)
71 * The generic MSI code returns with the interrupt disabled on the
72 * card, using the MSI mask bits. Firmware doesn't appear to unmask
73 * at that level, so we do it here by hand.
75 if (irq_data_get_msi_desc(d
))
76 pci_msi_unmask_irq(d
);
80 ics_opal_unmask_irq(d
);
84 static void ics_opal_mask_real_irq(unsigned int hw_irq
)
86 int server
= ics_opal_mangle_server(xics_default_server
);
89 if (hw_irq
== XICS_IPI
)
92 /* Have to set XIVE to 0xff to be able to remove a slot */
93 rc
= opal_set_xive(hw_irq
, server
, 0xff);
94 if (rc
!= OPAL_SUCCESS
)
95 pr_err("%s: opal_set_xive(0xff) irq=%u returned %lld\n",
96 __func__
, hw_irq
, rc
);
99 static void ics_opal_mask_irq(struct irq_data
*d
)
101 unsigned int hw_irq
= (unsigned int)irqd_to_hwirq(d
);
103 pr_devel("ics-hal: mask virq %d [hw 0x%x]\n", d
->irq
, hw_irq
);
105 if (hw_irq
== XICS_IPI
|| hw_irq
== XICS_IRQ_SPURIOUS
)
107 ics_opal_mask_real_irq(hw_irq
);
110 static int ics_opal_set_affinity(struct irq_data
*d
,
111 const struct cpumask
*cpumask
,
114 unsigned int hw_irq
= (unsigned int)irqd_to_hwirq(d
);
121 if (hw_irq
== XICS_IPI
|| hw_irq
== XICS_IRQ_SPURIOUS
)
124 rc
= opal_get_xive(hw_irq
, &oserver
, &priority
);
125 if (rc
!= OPAL_SUCCESS
) {
126 pr_err("%s: opal_get_xive(irq=%d [hw 0x%x]) error %lld\n",
127 __func__
, d
->irq
, hw_irq
, rc
);
130 server
= be16_to_cpu(oserver
);
132 wanted_server
= xics_get_irq_server(d
->irq
, cpumask
, 1);
133 if (wanted_server
< 0) {
134 pr_warn("%s: No online cpus in the mask %*pb for irq %d\n",
135 __func__
, cpumask_pr_args(cpumask
), d
->irq
);
138 server
= ics_opal_mangle_server(wanted_server
);
140 pr_devel("ics-hal: set-affinity irq %d [hw 0x%x] server: 0x%x/0x%x\n",
141 d
->irq
, hw_irq
, wanted_server
, server
);
143 rc
= opal_set_xive(hw_irq
, server
, priority
);
144 if (rc
!= OPAL_SUCCESS
) {
145 pr_err("%s: opal_set_xive(irq=%d [hw 0x%x] server=%x)"
147 __func__
, d
->irq
, hw_irq
, server
, rc
);
150 return IRQ_SET_MASK_OK
;
153 static struct irq_chip ics_opal_irq_chip
= {
155 .irq_startup
= ics_opal_startup
,
156 .irq_mask
= ics_opal_mask_irq
,
157 .irq_unmask
= ics_opal_unmask_irq
,
158 .irq_eoi
= NULL
, /* Patched at init time */
159 .irq_set_affinity
= ics_opal_set_affinity
,
160 .irq_set_type
= xics_set_irq_type
,
161 .irq_retrigger
= xics_retrigger
,
164 static int ics_opal_map(struct ics
*ics
, unsigned int virq
);
165 static void ics_opal_mask_unknown(struct ics
*ics
, unsigned long vec
);
166 static long ics_opal_get_server(struct ics
*ics
, unsigned long vec
);
168 static int ics_opal_host_match(struct ics
*ics
, struct device_node
*node
)
173 /* Only one global & state struct ics */
174 static struct ics ics_hal
= {
176 .mask_unknown
= ics_opal_mask_unknown
,
177 .get_server
= ics_opal_get_server
,
178 .host_match
= ics_opal_host_match
,
181 static int ics_opal_map(struct ics
*ics
, unsigned int virq
)
183 unsigned int hw_irq
= (unsigned int)virq_to_hw(virq
);
188 if (WARN_ON(hw_irq
== XICS_IPI
|| hw_irq
== XICS_IRQ_SPURIOUS
))
191 /* Check if HAL knows about this interrupt */
192 rc
= opal_get_xive(hw_irq
, &server
, &priority
);
193 if (rc
!= OPAL_SUCCESS
)
196 irq_set_chip_and_handler(virq
, &ics_opal_irq_chip
, handle_fasteoi_irq
);
197 irq_set_chip_data(virq
, &ics_hal
);
202 static void ics_opal_mask_unknown(struct ics
*ics
, unsigned long vec
)
208 /* Check if HAL knows about this interrupt */
209 rc
= opal_get_xive(vec
, &server
, &priority
);
210 if (rc
!= OPAL_SUCCESS
)
213 ics_opal_mask_real_irq(vec
);
216 static long ics_opal_get_server(struct ics
*ics
, unsigned long vec
)
222 /* Check if HAL knows about this interrupt */
223 rc
= opal_get_xive(vec
, &server
, &priority
);
224 if (rc
!= OPAL_SUCCESS
)
226 return ics_opal_unmangle_server(be16_to_cpu(server
));
229 int __init
ics_opal_init(void)
231 if (!firmware_has_feature(FW_FEATURE_OPAL
))
234 /* We need to patch our irq chip's EOI to point to the
237 ics_opal_irq_chip
.irq_eoi
= icp_ops
->eoi
;
239 /* Register ourselves */
240 xics_register_ics(&ics_hal
);
242 pr_info("ICS OPAL backend registered\n");