2 * irqchip.c: Common API for in kernel interrupt controllers
3 * Copyright (c) 2007, Intel Corporation.
4 * Copyright 2010 Red Hat, Inc. and/or its affiliates.
5 * Copyright (c) 2013, Alexander Graf <agraf@suse.de>
7 * This program is free software; you can redistribute it and/or modify it
8 * under the terms and conditions of the GNU General Public License,
9 * version 2, as published by the Free Software Foundation.
11 * This program is distributed in the hope it will be useful, but WITHOUT
12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
16 * You should have received a copy of the GNU General Public License along with
17 * this program; if not, write to the Free Software Foundation, Inc., 59 Temple
18 * Place - Suite 330, Boston, MA 02111-1307 USA.
20 * This file is derived from virt/kvm/irq_comm.c.
23 * Yaozu (Eddie) Dong <Eddie.dong@intel.com>
24 * Alexander Graf <agraf@suse.de>
27 #include <linux/kvm_host.h>
28 #include <linux/slab.h>
29 #include <linux/export.h>
30 #include <trace/events/kvm.h>
33 bool kvm_irq_has_notifier(struct kvm *kvm, unsigned irqchip, unsigned pin)
35 struct kvm_irq_ack_notifier *kian;
39 gsi = rcu_dereference(kvm->irq_routing)->chip[irqchip][pin];
41 hlist_for_each_entry_rcu(kian, &kvm->irq_ack_notifier_list,
43 if (kian->gsi == gsi) {
52 EXPORT_SYMBOL_GPL(kvm_irq_has_notifier);
54 void kvm_notify_acked_irq(struct kvm *kvm, unsigned irqchip, unsigned pin)
56 struct kvm_irq_ack_notifier *kian;
59 trace_kvm_ack_irq(irqchip, pin);
62 gsi = rcu_dereference(kvm->irq_routing)->chip[irqchip][pin];
64 hlist_for_each_entry_rcu(kian, &kvm->irq_ack_notifier_list,
67 kian->irq_acked(kian);
71 void kvm_register_irq_ack_notifier(struct kvm *kvm,
72 struct kvm_irq_ack_notifier *kian)
74 mutex_lock(&kvm->irq_lock);
75 hlist_add_head_rcu(&kian->link, &kvm->irq_ack_notifier_list);
76 mutex_unlock(&kvm->irq_lock);
77 #ifdef __KVM_HAVE_IOAPIC
78 kvm_vcpu_request_scan_ioapic(kvm);
82 void kvm_unregister_irq_ack_notifier(struct kvm *kvm,
83 struct kvm_irq_ack_notifier *kian)
85 mutex_lock(&kvm->irq_lock);
86 hlist_del_init_rcu(&kian->link);
87 mutex_unlock(&kvm->irq_lock);
89 #ifdef __KVM_HAVE_IOAPIC
90 kvm_vcpu_request_scan_ioapic(kvm);
94 int kvm_send_userspace_msi(struct kvm *kvm, struct kvm_msi *msi)
96 struct kvm_kernel_irq_routing_entry route;
98 if (!irqchip_in_kernel(kvm) || msi->flags != 0)
101 route.msi.address_lo = msi->address_lo;
102 route.msi.address_hi = msi->address_hi;
103 route.msi.data = msi->data;
105 return kvm_set_msi(&route, kvm, KVM_USERSPACE_IRQ_SOURCE_ID, 1, false);
110 * < 0 Interrupt was ignored (masked or not delivered for other reasons)
111 * = 0 Interrupt was coalesced (previous irq is still pending)
112 * > 0 Number of CPUs interrupt was delivered to
114 int kvm_set_irq(struct kvm *kvm, int irq_source_id, u32 irq, int level,
117 struct kvm_kernel_irq_routing_entry *e, irq_set[KVM_NR_IRQCHIPS];
119 struct kvm_irq_routing_table *irq_rt;
121 trace_kvm_set_irq(irq, level, irq_source_id);
123 /* Not possible to detect if the guest uses the PIC or the
124 * IOAPIC. So set the bit in both. The guest will ignore
125 * writes to the unused one.
128 irq_rt = rcu_dereference(kvm->irq_routing);
129 if (irq < irq_rt->nr_rt_entries)
130 hlist_for_each_entry(e, &irq_rt->map[irq], link)
136 r = irq_set[i].set(&irq_set[i], kvm, irq_source_id, level,
141 ret = r + ((ret < 0) ? 0 : ret);
147 void kvm_free_irq_routing(struct kvm *kvm)
149 /* Called only during vm destruction. Nobody can use the pointer
151 kfree(kvm->irq_routing);
154 static int setup_routing_entry(struct kvm_irq_routing_table *rt,
155 struct kvm_kernel_irq_routing_entry *e,
156 const struct kvm_irq_routing_entry *ue)
159 struct kvm_kernel_irq_routing_entry *ei;
162 * Do not allow GSI to be mapped to the same irqchip more than once.
163 * Allow only one to one mapping between GSI and MSI.
165 hlist_for_each_entry(ei, &rt->map[ue->gsi], link)
166 if (ei->type == KVM_IRQ_ROUTING_MSI ||
167 ue->type == KVM_IRQ_ROUTING_MSI ||
168 ue->u.irqchip.irqchip == ei->irqchip.irqchip)
173 r = kvm_set_routing_entry(rt, e, ue);
177 hlist_add_head(&e->link, &rt->map[e->gsi]);
183 int kvm_set_irq_routing(struct kvm *kvm,
184 const struct kvm_irq_routing_entry *ue,
188 struct kvm_irq_routing_table *new, *old;
189 u32 i, j, nr_rt_entries = 0;
192 for (i = 0; i < nr; ++i) {
193 if (ue[i].gsi >= KVM_MAX_IRQ_ROUTES)
195 nr_rt_entries = max(nr_rt_entries, ue[i].gsi);
200 new = kzalloc(sizeof(*new) + (nr_rt_entries * sizeof(struct hlist_head))
201 + (nr * sizeof(struct kvm_kernel_irq_routing_entry)),
207 new->rt_entries = (void *)&new->map[nr_rt_entries];
209 new->nr_rt_entries = nr_rt_entries;
210 for (i = 0; i < KVM_NR_IRQCHIPS; i++)
211 for (j = 0; j < KVM_IRQCHIP_NUM_PINS; j++)
212 new->chip[i][j] = -1;
214 for (i = 0; i < nr; ++i) {
218 r = setup_routing_entry(new, &new->rt_entries[i], ue);
224 mutex_lock(&kvm->irq_lock);
225 old = kvm->irq_routing;
226 kvm_irq_routing_update(kvm, new);
227 mutex_unlock(&kvm->irq_lock);