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/srcu.h>
30 #include <linux/export.h>
31 #include <trace/events/kvm.h>
34 int kvm_irq_map_gsi(struct kvm
*kvm
,
35 struct kvm_kernel_irq_routing_entry
*entries
, int gsi
)
37 struct kvm_irq_routing_table
*irq_rt
;
38 struct kvm_kernel_irq_routing_entry
*e
;
41 irq_rt
= srcu_dereference_check(kvm
->irq_routing
, &kvm
->irq_srcu
,
42 lockdep_is_held(&kvm
->irq_lock
));
43 if (irq_rt
&& gsi
< irq_rt
->nr_rt_entries
) {
44 hlist_for_each_entry(e
, &irq_rt
->map
[gsi
], link
) {
53 int kvm_irq_map_chip_pin(struct kvm
*kvm
, unsigned irqchip
, unsigned pin
)
55 struct kvm_irq_routing_table
*irq_rt
;
57 irq_rt
= srcu_dereference(kvm
->irq_routing
, &kvm
->irq_srcu
);
58 return irq_rt
->chip
[irqchip
][pin
];
61 int kvm_send_userspace_msi(struct kvm
*kvm
, struct kvm_msi
*msi
)
63 struct kvm_kernel_irq_routing_entry route
;
65 if (!irqchip_in_kernel(kvm
) || (msi
->flags
& ~KVM_MSI_VALID_DEVID
))
68 route
.msi
.address_lo
= msi
->address_lo
;
69 route
.msi
.address_hi
= msi
->address_hi
;
70 route
.msi
.data
= msi
->data
;
71 route
.msi
.flags
= msi
->flags
;
72 route
.msi
.devid
= msi
->devid
;
74 return kvm_set_msi(&route
, kvm
, KVM_USERSPACE_IRQ_SOURCE_ID
, 1, false);
79 * < 0 Interrupt was ignored (masked or not delivered for other reasons)
80 * = 0 Interrupt was coalesced (previous irq is still pending)
81 * > 0 Number of CPUs interrupt was delivered to
83 int kvm_set_irq(struct kvm
*kvm
, int irq_source_id
, u32 irq
, int level
,
86 struct kvm_kernel_irq_routing_entry irq_set
[KVM_NR_IRQCHIPS
];
89 trace_kvm_set_irq(irq
, level
, irq_source_id
);
91 /* Not possible to detect if the guest uses the PIC or the
92 * IOAPIC. So set the bit in both. The guest will ignore
93 * writes to the unused one.
95 idx
= srcu_read_lock(&kvm
->irq_srcu
);
96 i
= kvm_irq_map_gsi(kvm
, irq_set
, irq
);
97 srcu_read_unlock(&kvm
->irq_srcu
, idx
);
101 r
= irq_set
[i
].set(&irq_set
[i
], kvm
, irq_source_id
, level
,
106 ret
= r
+ ((ret
< 0) ? 0 : ret
);
112 static void free_irq_routing_table(struct kvm_irq_routing_table
*rt
)
119 for (i
= 0; i
< rt
->nr_rt_entries
; ++i
) {
120 struct kvm_kernel_irq_routing_entry
*e
;
121 struct hlist_node
*n
;
123 hlist_for_each_entry_safe(e
, n
, &rt
->map
[i
], link
) {
132 void kvm_free_irq_routing(struct kvm
*kvm
)
134 /* Called only during vm destruction. Nobody can use the pointer
136 struct kvm_irq_routing_table
*rt
= rcu_access_pointer(kvm
->irq_routing
);
137 free_irq_routing_table(rt
);
140 static int setup_routing_entry(struct kvm
*kvm
,
141 struct kvm_irq_routing_table
*rt
,
142 struct kvm_kernel_irq_routing_entry
*e
,
143 const struct kvm_irq_routing_entry
*ue
)
145 struct kvm_kernel_irq_routing_entry
*ei
;
149 * Do not allow GSI to be mapped to the same irqchip more than once.
150 * Allow only one to one mapping between GSI and non-irqchip routing.
152 hlist_for_each_entry(ei
, &rt
->map
[ue
->gsi
], link
)
153 if (ei
->type
!= KVM_IRQ_ROUTING_IRQCHIP
||
154 ue
->type
!= KVM_IRQ_ROUTING_IRQCHIP
||
155 ue
->u
.irqchip
.irqchip
== ei
->irqchip
.irqchip
)
160 r
= kvm_set_routing_entry(kvm
, e
, ue
);
163 if (e
->type
== KVM_IRQ_ROUTING_IRQCHIP
)
164 rt
->chip
[e
->irqchip
.irqchip
][e
->irqchip
.pin
] = e
->gsi
;
166 hlist_add_head(&e
->link
, &rt
->map
[e
->gsi
]);
171 void __attribute__((weak
)) kvm_arch_irq_routing_update(struct kvm
*kvm
)
175 bool __weak
kvm_arch_can_set_irq_routing(struct kvm
*kvm
)
180 int kvm_set_irq_routing(struct kvm
*kvm
,
181 const struct kvm_irq_routing_entry
*ue
,
185 struct kvm_irq_routing_table
*new, *old
;
186 struct kvm_kernel_irq_routing_entry
*e
;
187 u32 i
, j
, nr_rt_entries
= 0;
190 for (i
= 0; i
< nr
; ++i
) {
191 if (ue
[i
].gsi
>= KVM_MAX_IRQ_ROUTES
)
193 nr_rt_entries
= max(nr_rt_entries
, ue
[i
].gsi
);
198 new = kzalloc(sizeof(*new) + (nr_rt_entries
* sizeof(struct hlist_head
)),
204 new->nr_rt_entries
= nr_rt_entries
;
205 for (i
= 0; i
< KVM_NR_IRQCHIPS
; i
++)
206 for (j
= 0; j
< KVM_IRQCHIP_NUM_PINS
; j
++)
207 new->chip
[i
][j
] = -1;
209 for (i
= 0; i
< nr
; ++i
) {
211 e
= kzalloc(sizeof(*e
), GFP_KERNEL
);
217 case KVM_IRQ_ROUTING_MSI
:
218 if (ue
->flags
& ~KVM_MSI_VALID_DEVID
)
226 r
= setup_routing_entry(kvm
, new, e
, ue
);
232 mutex_lock(&kvm
->irq_lock
);
233 old
= rcu_dereference_protected(kvm
->irq_routing
, 1);
234 rcu_assign_pointer(kvm
->irq_routing
, new);
235 kvm_irq_routing_update(kvm
);
236 kvm_arch_irq_routing_update(kvm
);
237 mutex_unlock(&kvm
->irq_lock
);
239 kvm_arch_post_irq_routing_update(kvm
);
241 synchronize_srcu_expedited(&kvm
->irq_srcu
);
250 free_irq_routing_table(new);