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 struct kvm_irq_routing_table
{
35 int chip
[KVM_NR_IRQCHIPS
][KVM_IRQCHIP_NUM_PINS
];
36 struct kvm_kernel_irq_routing_entry
*rt_entries
;
39 * Array indexed by gsi. Each entry contains list of irq chips
40 * the gsi is connected to.
42 struct hlist_head map
[0];
45 int kvm_irq_map_gsi(struct kvm
*kvm
,
46 struct kvm_kernel_irq_routing_entry
*entries
, int gsi
)
48 struct kvm_irq_routing_table
*irq_rt
;
49 struct kvm_kernel_irq_routing_entry
*e
;
52 irq_rt
= srcu_dereference_check(kvm
->irq_routing
, &kvm
->irq_srcu
,
53 lockdep_is_held(&kvm
->irq_lock
));
54 if (gsi
< irq_rt
->nr_rt_entries
) {
55 hlist_for_each_entry(e
, &irq_rt
->map
[gsi
], link
) {
64 int kvm_irq_map_chip_pin(struct kvm
*kvm
, unsigned irqchip
, unsigned pin
)
66 struct kvm_irq_routing_table
*irq_rt
;
68 irq_rt
= srcu_dereference(kvm
->irq_routing
, &kvm
->irq_srcu
);
69 return irq_rt
->chip
[irqchip
][pin
];
72 int kvm_send_userspace_msi(struct kvm
*kvm
, struct kvm_msi
*msi
)
74 struct kvm_kernel_irq_routing_entry route
;
76 if (!irqchip_in_kernel(kvm
) || msi
->flags
!= 0)
79 route
.msi
.address_lo
= msi
->address_lo
;
80 route
.msi
.address_hi
= msi
->address_hi
;
81 route
.msi
.data
= msi
->data
;
83 return kvm_set_msi(&route
, kvm
, KVM_USERSPACE_IRQ_SOURCE_ID
, 1, false);
88 * < 0 Interrupt was ignored (masked or not delivered for other reasons)
89 * = 0 Interrupt was coalesced (previous irq is still pending)
90 * > 0 Number of CPUs interrupt was delivered to
92 int kvm_set_irq(struct kvm
*kvm
, int irq_source_id
, u32 irq
, int level
,
95 struct kvm_kernel_irq_routing_entry irq_set
[KVM_NR_IRQCHIPS
];
98 trace_kvm_set_irq(irq
, level
, irq_source_id
);
100 /* Not possible to detect if the guest uses the PIC or the
101 * IOAPIC. So set the bit in both. The guest will ignore
102 * writes to the unused one.
104 idx
= srcu_read_lock(&kvm
->irq_srcu
);
105 i
= kvm_irq_map_gsi(kvm
, irq_set
, irq
);
106 srcu_read_unlock(&kvm
->irq_srcu
, idx
);
110 r
= irq_set
[i
].set(&irq_set
[i
], kvm
, irq_source_id
, level
,
115 ret
= r
+ ((ret
< 0) ? 0 : ret
);
121 void kvm_free_irq_routing(struct kvm
*kvm
)
123 /* Called only during vm destruction. Nobody can use the pointer
125 kfree(kvm
->irq_routing
);
128 static int setup_routing_entry(struct kvm_irq_routing_table
*rt
,
129 struct kvm_kernel_irq_routing_entry
*e
,
130 const struct kvm_irq_routing_entry
*ue
)
133 struct kvm_kernel_irq_routing_entry
*ei
;
136 * Do not allow GSI to be mapped to the same irqchip more than once.
137 * Allow only one to one mapping between GSI and MSI.
139 hlist_for_each_entry(ei
, &rt
->map
[ue
->gsi
], link
)
140 if (ei
->type
== KVM_IRQ_ROUTING_MSI
||
141 ue
->type
== KVM_IRQ_ROUTING_MSI
||
142 ue
->u
.irqchip
.irqchip
== ei
->irqchip
.irqchip
)
147 r
= kvm_set_routing_entry(e
, ue
);
150 if (e
->type
== KVM_IRQ_ROUTING_IRQCHIP
)
151 rt
->chip
[e
->irqchip
.irqchip
][e
->irqchip
.pin
] = e
->gsi
;
153 hlist_add_head(&e
->link
, &rt
->map
[e
->gsi
]);
159 int kvm_set_irq_routing(struct kvm
*kvm
,
160 const struct kvm_irq_routing_entry
*ue
,
164 struct kvm_irq_routing_table
*new, *old
;
165 u32 i
, j
, nr_rt_entries
= 0;
168 for (i
= 0; i
< nr
; ++i
) {
169 if (ue
[i
].gsi
>= KVM_MAX_IRQ_ROUTES
)
171 nr_rt_entries
= max(nr_rt_entries
, ue
[i
].gsi
);
176 new = kzalloc(sizeof(*new) + (nr_rt_entries
* sizeof(struct hlist_head
))
177 + (nr
* sizeof(struct kvm_kernel_irq_routing_entry
)),
183 new->rt_entries
= (void *)&new->map
[nr_rt_entries
];
185 new->nr_rt_entries
= nr_rt_entries
;
186 for (i
= 0; i
< KVM_NR_IRQCHIPS
; i
++)
187 for (j
= 0; j
< KVM_IRQCHIP_NUM_PINS
; j
++)
188 new->chip
[i
][j
] = -1;
190 for (i
= 0; i
< nr
; ++i
) {
194 r
= setup_routing_entry(new, &new->rt_entries
[i
], ue
);
200 mutex_lock(&kvm
->irq_lock
);
201 old
= kvm
->irq_routing
;
202 rcu_assign_pointer(kvm
->irq_routing
, new);
203 kvm_irq_routing_update(kvm
);
204 mutex_unlock(&kvm
->irq_lock
);
206 synchronize_srcu_expedited(&kvm
->irq_srcu
);