]>
Commit | Line | Data |
---|---|---|
3de42dc0 XZ |
1 | /* |
2 | * irq_comm.c: Common API for in kernel interrupt controller | |
3 | * Copyright (c) 2007, Intel Corporation. | |
4 | * | |
5 | * This program is free software; you can redistribute it and/or modify it | |
6 | * under the terms and conditions of the GNU General Public License, | |
7 | * version 2, as published by the Free Software Foundation. | |
8 | * | |
9 | * This program is distributed in the hope it will be useful, but WITHOUT | |
10 | * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | |
11 | * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for | |
12 | * more details. | |
13 | * | |
14 | * You should have received a copy of the GNU General Public License along with | |
15 | * this program; if not, write to the Free Software Foundation, Inc., 59 Temple | |
16 | * Place - Suite 330, Boston, MA 02111-1307 USA. | |
17 | * Authors: | |
18 | * Yaozu (Eddie) Dong <[email protected]> | |
19 | * | |
9611c187 | 20 | * Copyright 2010 Red Hat, Inc. and/or its affiliates. |
3de42dc0 XZ |
21 | */ |
22 | ||
23 | #include <linux/kvm_host.h> | |
5a0e3ad6 | 24 | #include <linux/slab.h> |
c7c9c56c | 25 | #include <linux/export.h> |
229456fc | 26 | #include <trace/events/kvm.h> |
79950e10 | 27 | |
79950e10 | 28 | #include <asm/msidef.h> |
58c2dde1 GN |
29 | #ifdef CONFIG_IA64 |
30 | #include <asm/iosapic.h> | |
31 | #endif | |
79950e10 | 32 | |
3de42dc0 XZ |
33 | #include "irq.h" |
34 | ||
35 | #include "ioapic.h" | |
36 | ||
4925663a | 37 | static int kvm_set_pic_irq(struct kvm_kernel_irq_routing_entry *e, |
aa2fbe6d YZ |
38 | struct kvm *kvm, int irq_source_id, int level, |
39 | bool line_status) | |
399ec807 AK |
40 | { |
41 | #ifdef CONFIG_X86 | |
1a6e4a8c | 42 | struct kvm_pic *pic = pic_irqchip(kvm); |
1a577b72 | 43 | return kvm_pic_set_irq(pic, e->irqchip.pin, irq_source_id, level); |
4925663a GN |
44 | #else |
45 | return -1; | |
399ec807 AK |
46 | #endif |
47 | } | |
48 | ||
4925663a | 49 | static int kvm_set_ioapic_irq(struct kvm_kernel_irq_routing_entry *e, |
aa2fbe6d YZ |
50 | struct kvm *kvm, int irq_source_id, int level, |
51 | bool line_status) | |
399ec807 | 52 | { |
1a6e4a8c | 53 | struct kvm_ioapic *ioapic = kvm->arch.vioapic; |
aa2fbe6d YZ |
54 | return kvm_ioapic_set_irq(ioapic, e->irqchip.pin, irq_source_id, level, |
55 | line_status); | |
399ec807 AK |
56 | } |
57 | ||
58c2dde1 | 58 | inline static bool kvm_is_dm_lowest_prio(struct kvm_lapic_irq *irq) |
116191b6 | 59 | { |
58c2dde1 GN |
60 | #ifdef CONFIG_IA64 |
61 | return irq->delivery_mode == | |
62 | (IOSAPIC_LOWEST_PRIORITY << IOSAPIC_DELIVERY_SHIFT); | |
63 | #else | |
64 | return irq->delivery_mode == APIC_DM_LOWEST; | |
65 | #endif | |
66 | } | |
116191b6 | 67 | |
58c2dde1 | 68 | int kvm_irq_delivery_to_apic(struct kvm *kvm, struct kvm_lapic *src, |
b4f2225c | 69 | struct kvm_lapic_irq *irq, unsigned long *dest_map) |
58c2dde1 GN |
70 | { |
71 | int i, r = -1; | |
72 | struct kvm_vcpu *vcpu, *lowest = NULL; | |
73 | ||
74 | if (irq->dest_mode == 0 && irq->dest_id == 0xff && | |
1e08ec4a | 75 | kvm_is_dm_lowest_prio(irq)) { |
343f94fe | 76 | printk(KERN_INFO "kvm: apic: phys broadcast and lowest prio\n"); |
1e08ec4a GN |
77 | irq->delivery_mode = APIC_DM_FIXED; |
78 | } | |
79 | ||
b4f2225c | 80 | if (kvm_irq_delivery_to_apic_fast(kvm, src, irq, &r, dest_map)) |
1e08ec4a | 81 | return r; |
343f94fe | 82 | |
988a2cae GN |
83 | kvm_for_each_vcpu(i, vcpu, kvm) { |
84 | if (!kvm_apic_present(vcpu)) | |
343f94fe GN |
85 | continue; |
86 | ||
58c2dde1 GN |
87 | if (!kvm_apic_match_dest(vcpu, src, irq->shorthand, |
88 | irq->dest_id, irq->dest_mode)) | |
343f94fe GN |
89 | continue; |
90 | ||
58c2dde1 GN |
91 | if (!kvm_is_dm_lowest_prio(irq)) { |
92 | if (r < 0) | |
93 | r = 0; | |
b4f2225c | 94 | r += kvm_apic_set_irq(vcpu, irq, dest_map); |
aefd18f0 | 95 | } else if (kvm_lapic_enabled(vcpu)) { |
58c2dde1 GN |
96 | if (!lowest) |
97 | lowest = vcpu; | |
98 | else if (kvm_apic_compare_prio(vcpu, lowest) < 0) | |
99 | lowest = vcpu; | |
e1035715 | 100 | } |
343f94fe GN |
101 | } |
102 | ||
58c2dde1 | 103 | if (lowest) |
b4f2225c | 104 | r = kvm_apic_set_irq(lowest, irq, dest_map); |
58c2dde1 GN |
105 | |
106 | return r; | |
116191b6 SY |
107 | } |
108 | ||
01f21880 MT |
109 | static inline void kvm_set_msi_irq(struct kvm_kernel_irq_routing_entry *e, |
110 | struct kvm_lapic_irq *irq) | |
111 | { | |
112 | trace_kvm_msi_set_irq(e->msi.address_lo, e->msi.data); | |
113 | ||
114 | irq->dest_id = (e->msi.address_lo & | |
115 | MSI_ADDR_DEST_ID_MASK) >> MSI_ADDR_DEST_ID_SHIFT; | |
116 | irq->vector = (e->msi.data & | |
117 | MSI_DATA_VECTOR_MASK) >> MSI_DATA_VECTOR_SHIFT; | |
118 | irq->dest_mode = (1 << MSI_ADDR_DEST_MODE_SHIFT) & e->msi.address_lo; | |
119 | irq->trig_mode = (1 << MSI_DATA_TRIGGER_SHIFT) & e->msi.data; | |
120 | irq->delivery_mode = e->msi.data & 0x700; | |
121 | irq->level = 1; | |
122 | irq->shorthand = 0; | |
123 | /* TODO Deal with RH bit of MSI message address */ | |
124 | } | |
125 | ||
bd2b53b2 | 126 | int kvm_set_msi(struct kvm_kernel_irq_routing_entry *e, |
aa2fbe6d | 127 | struct kvm *kvm, int irq_source_id, int level, bool line_status) |
79950e10 | 128 | { |
58c2dde1 | 129 | struct kvm_lapic_irq irq; |
79950e10 | 130 | |
1a6e4a8c GN |
131 | if (!level) |
132 | return -1; | |
133 | ||
01f21880 | 134 | kvm_set_msi_irq(e, &irq); |
116191b6 | 135 | |
b4f2225c | 136 | return kvm_irq_delivery_to_apic(kvm, NULL, &irq, NULL); |
79950e10 SY |
137 | } |
138 | ||
01f21880 MT |
139 | |
140 | static int kvm_set_msi_inatomic(struct kvm_kernel_irq_routing_entry *e, | |
141 | struct kvm *kvm) | |
142 | { | |
143 | struct kvm_lapic_irq irq; | |
144 | int r; | |
145 | ||
146 | kvm_set_msi_irq(e, &irq); | |
147 | ||
b4f2225c | 148 | if (kvm_irq_delivery_to_apic_fast(kvm, NULL, &irq, &r, NULL)) |
01f21880 MT |
149 | return r; |
150 | else | |
151 | return -EWOULDBLOCK; | |
152 | } | |
153 | ||
01f21880 MT |
154 | /* |
155 | * Deliver an IRQ in an atomic context if we can, or return a failure, | |
156 | * user can retry in a process context. | |
157 | * Return value: | |
158 | * -EWOULDBLOCK - Can't deliver in atomic context: retry in a process context. | |
159 | * Other values - No need to retry. | |
160 | */ | |
161 | int kvm_set_irq_inatomic(struct kvm *kvm, int irq_source_id, u32 irq, int level) | |
162 | { | |
163 | struct kvm_kernel_irq_routing_entry *e; | |
164 | int ret = -EINVAL; | |
165 | struct kvm_irq_routing_table *irq_rt; | |
01f21880 MT |
166 | |
167 | trace_kvm_set_irq(irq, level, irq_source_id); | |
168 | ||
169 | /* | |
170 | * Injection into either PIC or IOAPIC might need to scan all CPUs, | |
171 | * which would need to be retried from thread context; when same GSI | |
172 | * is connected to both PIC and IOAPIC, we'd have to report a | |
173 | * partial failure here. | |
174 | * Since there's no easy way to do this, we only support injecting MSI | |
175 | * which is limited to 1:1 GSI mapping. | |
176 | */ | |
177 | rcu_read_lock(); | |
178 | irq_rt = rcu_dereference(kvm->irq_routing); | |
179 | if (irq < irq_rt->nr_rt_entries) | |
b67bfe0d | 180 | hlist_for_each_entry(e, &irq_rt->map[irq], link) { |
01f21880 MT |
181 | if (likely(e->type == KVM_IRQ_ROUTING_MSI)) |
182 | ret = kvm_set_msi_inatomic(e, kvm); | |
183 | else | |
184 | ret = -EWOULDBLOCK; | |
185 | break; | |
186 | } | |
187 | rcu_read_unlock(); | |
188 | return ret; | |
189 | } | |
190 | ||
5550af4d SY |
191 | int kvm_request_irq_source_id(struct kvm *kvm) |
192 | { | |
193 | unsigned long *bitmap = &kvm->arch.irq_sources_bitmap; | |
fa40a821 MT |
194 | int irq_source_id; |
195 | ||
196 | mutex_lock(&kvm->irq_lock); | |
cd5a2685 | 197 | irq_source_id = find_first_zero_bit(bitmap, BITS_PER_LONG); |
61552367 | 198 | |
cd5a2685 | 199 | if (irq_source_id >= BITS_PER_LONG) { |
5550af4d | 200 | printk(KERN_WARNING "kvm: exhaust allocatable IRQ sources!\n"); |
0c6ddceb JS |
201 | irq_source_id = -EFAULT; |
202 | goto unlock; | |
61552367 MM |
203 | } |
204 | ||
205 | ASSERT(irq_source_id != KVM_USERSPACE_IRQ_SOURCE_ID); | |
7a84428a AW |
206 | #ifdef CONFIG_X86 |
207 | ASSERT(irq_source_id != KVM_IRQFD_RESAMPLE_IRQ_SOURCE_ID); | |
208 | #endif | |
61552367 | 209 | set_bit(irq_source_id, bitmap); |
0c6ddceb | 210 | unlock: |
fa40a821 | 211 | mutex_unlock(&kvm->irq_lock); |
61552367 | 212 | |
5550af4d SY |
213 | return irq_source_id; |
214 | } | |
215 | ||
216 | void kvm_free_irq_source_id(struct kvm *kvm, int irq_source_id) | |
217 | { | |
61552367 | 218 | ASSERT(irq_source_id != KVM_USERSPACE_IRQ_SOURCE_ID); |
7a84428a AW |
219 | #ifdef CONFIG_X86 |
220 | ASSERT(irq_source_id != KVM_IRQFD_RESAMPLE_IRQ_SOURCE_ID); | |
221 | #endif | |
61552367 | 222 | |
fa40a821 | 223 | mutex_lock(&kvm->irq_lock); |
61552367 | 224 | if (irq_source_id < 0 || |
cd5a2685 | 225 | irq_source_id >= BITS_PER_LONG) { |
5550af4d | 226 | printk(KERN_ERR "kvm: IRQ source ID out of range!\n"); |
0c6ddceb | 227 | goto unlock; |
5550af4d | 228 | } |
e50212bb MT |
229 | clear_bit(irq_source_id, &kvm->arch.irq_sources_bitmap); |
230 | if (!irqchip_in_kernel(kvm)) | |
231 | goto unlock; | |
232 | ||
1a577b72 | 233 | kvm_ioapic_clear_all(kvm->arch.vioapic, irq_source_id); |
1a6e4a8c | 234 | #ifdef CONFIG_X86 |
1a577b72 | 235 | kvm_pic_clear_all(pic_irqchip(kvm), irq_source_id); |
1a6e4a8c | 236 | #endif |
0c6ddceb | 237 | unlock: |
fa40a821 | 238 | mutex_unlock(&kvm->irq_lock); |
5550af4d | 239 | } |
75858a84 AK |
240 | |
241 | void kvm_register_irq_mask_notifier(struct kvm *kvm, int irq, | |
242 | struct kvm_irq_mask_notifier *kimn) | |
243 | { | |
fa40a821 | 244 | mutex_lock(&kvm->irq_lock); |
75858a84 | 245 | kimn->irq = irq; |
280aa177 | 246 | hlist_add_head_rcu(&kimn->link, &kvm->mask_notifier_list); |
fa40a821 | 247 | mutex_unlock(&kvm->irq_lock); |
75858a84 AK |
248 | } |
249 | ||
250 | void kvm_unregister_irq_mask_notifier(struct kvm *kvm, int irq, | |
251 | struct kvm_irq_mask_notifier *kimn) | |
252 | { | |
fa40a821 | 253 | mutex_lock(&kvm->irq_lock); |
280aa177 | 254 | hlist_del_rcu(&kimn->link); |
fa40a821 | 255 | mutex_unlock(&kvm->irq_lock); |
280aa177 | 256 | synchronize_rcu(); |
75858a84 AK |
257 | } |
258 | ||
4a994358 GN |
259 | void kvm_fire_mask_notifiers(struct kvm *kvm, unsigned irqchip, unsigned pin, |
260 | bool mask) | |
75858a84 AK |
261 | { |
262 | struct kvm_irq_mask_notifier *kimn; | |
4a994358 | 263 | int gsi; |
75858a84 | 264 | |
280aa177 | 265 | rcu_read_lock(); |
4a994358 GN |
266 | gsi = rcu_dereference(kvm->irq_routing)->chip[irqchip][pin]; |
267 | if (gsi != -1) | |
b67bfe0d | 268 | hlist_for_each_entry_rcu(kimn, &kvm->mask_notifier_list, link) |
4a994358 GN |
269 | if (kimn->irq == gsi) |
270 | kimn->func(kimn, mask); | |
280aa177 | 271 | rcu_read_unlock(); |
75858a84 AK |
272 | } |
273 | ||
e8cde093 AG |
274 | int kvm_set_routing_entry(struct kvm_irq_routing_table *rt, |
275 | struct kvm_kernel_irq_routing_entry *e, | |
276 | const struct kvm_irq_routing_entry *ue) | |
399ec807 AK |
277 | { |
278 | int r = -EINVAL; | |
279 | int delta; | |
d72118ce | 280 | unsigned max_pin; |
46e624b9 | 281 | |
399ec807 AK |
282 | switch (ue->type) { |
283 | case KVM_IRQ_ROUTING_IRQCHIP: | |
284 | delta = 0; | |
285 | switch (ue->u.irqchip.irqchip) { | |
286 | case KVM_IRQCHIP_PIC_MASTER: | |
287 | e->set = kvm_set_pic_irq; | |
93b6547e | 288 | max_pin = PIC_NUM_PINS; |
399ec807 AK |
289 | break; |
290 | case KVM_IRQCHIP_PIC_SLAVE: | |
4925663a | 291 | e->set = kvm_set_pic_irq; |
93b6547e | 292 | max_pin = PIC_NUM_PINS; |
399ec807 AK |
293 | delta = 8; |
294 | break; | |
295 | case KVM_IRQCHIP_IOAPIC: | |
d72118ce | 296 | max_pin = KVM_IOAPIC_NUM_PINS; |
efbc100c | 297 | e->set = kvm_set_ioapic_irq; |
399ec807 AK |
298 | break; |
299 | default: | |
300 | goto out; | |
301 | } | |
302 | e->irqchip.irqchip = ue->u.irqchip.irqchip; | |
303 | e->irqchip.pin = ue->u.irqchip.pin + delta; | |
d72118ce | 304 | if (e->irqchip.pin >= max_pin) |
3e71f88b GN |
305 | goto out; |
306 | rt->chip[ue->u.irqchip.irqchip][e->irqchip.pin] = ue->gsi; | |
399ec807 | 307 | break; |
79950e10 SY |
308 | case KVM_IRQ_ROUTING_MSI: |
309 | e->set = kvm_set_msi; | |
310 | e->msi.address_lo = ue->u.msi.address_lo; | |
311 | e->msi.address_hi = ue->u.msi.address_hi; | |
312 | e->msi.data = ue->u.msi.data; | |
313 | break; | |
399ec807 AK |
314 | default: |
315 | goto out; | |
316 | } | |
46e624b9 | 317 | |
399ec807 AK |
318 | r = 0; |
319 | out: | |
320 | return r; | |
321 | } | |
322 | ||
399ec807 AK |
323 | #define IOAPIC_ROUTING_ENTRY(irq) \ |
324 | { .gsi = irq, .type = KVM_IRQ_ROUTING_IRQCHIP, \ | |
325 | .u.irqchip.irqchip = KVM_IRQCHIP_IOAPIC, .u.irqchip.pin = (irq) } | |
326 | #define ROUTING_ENTRY1(irq) IOAPIC_ROUTING_ENTRY(irq) | |
327 | ||
328 | #ifdef CONFIG_X86 | |
399ec807 AK |
329 | # define PIC_ROUTING_ENTRY(irq) \ |
330 | { .gsi = irq, .type = KVM_IRQ_ROUTING_IRQCHIP, \ | |
331 | .u.irqchip.irqchip = SELECT_PIC(irq), .u.irqchip.pin = (irq) % 8 } | |
332 | # define ROUTING_ENTRY2(irq) \ | |
333 | IOAPIC_ROUTING_ENTRY(irq), PIC_ROUTING_ENTRY(irq) | |
334 | #else | |
335 | # define ROUTING_ENTRY2(irq) \ | |
336 | IOAPIC_ROUTING_ENTRY(irq) | |
337 | #endif | |
338 | ||
339 | static const struct kvm_irq_routing_entry default_routing[] = { | |
340 | ROUTING_ENTRY2(0), ROUTING_ENTRY2(1), | |
341 | ROUTING_ENTRY2(2), ROUTING_ENTRY2(3), | |
342 | ROUTING_ENTRY2(4), ROUTING_ENTRY2(5), | |
343 | ROUTING_ENTRY2(6), ROUTING_ENTRY2(7), | |
344 | ROUTING_ENTRY2(8), ROUTING_ENTRY2(9), | |
345 | ROUTING_ENTRY2(10), ROUTING_ENTRY2(11), | |
346 | ROUTING_ENTRY2(12), ROUTING_ENTRY2(13), | |
347 | ROUTING_ENTRY2(14), ROUTING_ENTRY2(15), | |
348 | ROUTING_ENTRY1(16), ROUTING_ENTRY1(17), | |
349 | ROUTING_ENTRY1(18), ROUTING_ENTRY1(19), | |
350 | ROUTING_ENTRY1(20), ROUTING_ENTRY1(21), | |
351 | ROUTING_ENTRY1(22), ROUTING_ENTRY1(23), | |
352 | #ifdef CONFIG_IA64 | |
353 | ROUTING_ENTRY1(24), ROUTING_ENTRY1(25), | |
354 | ROUTING_ENTRY1(26), ROUTING_ENTRY1(27), | |
355 | ROUTING_ENTRY1(28), ROUTING_ENTRY1(29), | |
356 | ROUTING_ENTRY1(30), ROUTING_ENTRY1(31), | |
357 | ROUTING_ENTRY1(32), ROUTING_ENTRY1(33), | |
358 | ROUTING_ENTRY1(34), ROUTING_ENTRY1(35), | |
359 | ROUTING_ENTRY1(36), ROUTING_ENTRY1(37), | |
360 | ROUTING_ENTRY1(38), ROUTING_ENTRY1(39), | |
361 | ROUTING_ENTRY1(40), ROUTING_ENTRY1(41), | |
362 | ROUTING_ENTRY1(42), ROUTING_ENTRY1(43), | |
363 | ROUTING_ENTRY1(44), ROUTING_ENTRY1(45), | |
364 | ROUTING_ENTRY1(46), ROUTING_ENTRY1(47), | |
365 | #endif | |
366 | }; | |
367 | ||
368 | int kvm_setup_default_irq_routing(struct kvm *kvm) | |
369 | { | |
370 | return kvm_set_irq_routing(kvm, default_routing, | |
371 | ARRAY_SIZE(default_routing), 0); | |
372 | } |