irq_comm.c 11.5 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
/*
 * irq_comm.c: Common API for in kernel interrupt controller
 * Copyright (c) 2007, Intel Corporation.
 *
 * This program is free software; you can redistribute it and/or modify it
 * under the terms and conditions of the GNU General Public License,
 * version 2, as published by the Free Software Foundation.
 *
 * This program is distributed in the hope it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
 * more details.
 *
 * You should have received a copy of the GNU General Public License along with
 * this program; if not, write to the Free Software Foundation, Inc., 59 Temple
 * Place - Suite 330, Boston, MA 02111-1307 USA.
 * Authors:
 *   Yaozu (Eddie) Dong <Eddie.dong@intel.com>
 *
N
Nicolas Kaiser 已提交
20
 * Copyright 2010 Red Hat, Inc. and/or its affiliates.
21 22 23
 */

#include <linux/kvm_host.h>
24
#include <linux/slab.h>
25
#include <linux/export.h>
26
#include <trace/events/kvm.h>
S
Sheng Yang 已提交
27 28 29

#include <asm/msidef.h>

30 31 32 33
#include "irq.h"

#include "ioapic.h"

34 35
#include "lapic.h"

36
#include "hyperv.h"
37
#include "x86.h"
38

39
static int kvm_set_pic_irq(struct kvm_kernel_irq_routing_entry *e,
40 41
			   struct kvm *kvm, int irq_source_id, int level,
			   bool line_status)
42
{
43
	struct kvm_pic *pic = pic_irqchip(kvm);
44
	return kvm_pic_set_irq(pic, e->irqchip.pin, irq_source_id, level);
45 46
}

47
static int kvm_set_ioapic_irq(struct kvm_kernel_irq_routing_entry *e,
48 49
			      struct kvm *kvm, int irq_source_id, int level,
			      bool line_status)
50
{
51
	struct kvm_ioapic *ioapic = kvm->arch.vioapic;
52 53
	return kvm_ioapic_set_irq(ioapic, e->irqchip.pin, irq_source_id, level,
				line_status);
54 55
}

56
int kvm_irq_delivery_to_apic(struct kvm *kvm, struct kvm_lapic *src,
57
		struct kvm_lapic_irq *irq, struct dest_map *dest_map)
58 59 60
{
	int i, r = -1;
	struct kvm_vcpu *vcpu, *lowest = NULL;
61 62
	unsigned long dest_vcpu_bitmap[BITS_TO_LONGS(KVM_MAX_VCPUS)];
	unsigned int dest_vcpus = 0;
63 64

	if (irq->dest_mode == 0 && irq->dest_id == 0xff &&
65
			kvm_lowest_prio_delivery(irq)) {
66
		printk(KERN_INFO "kvm: apic: phys broadcast and lowest prio\n");
67 68 69
		irq->delivery_mode = APIC_DM_FIXED;
	}

70
	if (kvm_irq_delivery_to_apic_fast(kvm, src, irq, &r, dest_map))
71
		return r;
72

73 74
	memset(dest_vcpu_bitmap, 0, sizeof(dest_vcpu_bitmap));

75 76
	kvm_for_each_vcpu(i, vcpu, kvm) {
		if (!kvm_apic_present(vcpu))
77 78
			continue;

79 80
		if (!kvm_apic_match_dest(vcpu, src, irq->shorthand,
					irq->dest_id, irq->dest_mode))
81 82
			continue;

83
		if (!kvm_lowest_prio_delivery(irq)) {
84 85
			if (r < 0)
				r = 0;
86
			r += kvm_apic_set_irq(vcpu, irq, dest_map);
87
		} else if (kvm_lapic_enabled(vcpu)) {
88 89 90 91 92 93 94 95 96
			if (!kvm_vector_hashing_enabled()) {
				if (!lowest)
					lowest = vcpu;
				else if (kvm_apic_compare_prio(vcpu, lowest) < 0)
					lowest = vcpu;
			} else {
				__set_bit(i, dest_vcpu_bitmap);
				dest_vcpus++;
			}
97
		}
98 99
	}

100 101 102 103 104 105 106
	if (dest_vcpus != 0) {
		int idx = kvm_vector_to_index(irq->vector, dest_vcpus,
					dest_vcpu_bitmap, KVM_MAX_VCPUS);

		lowest = kvm_get_vcpu(kvm, idx);
	}

107
	if (lowest)
108
		r = kvm_apic_set_irq(lowest, irq, dest_map);
109 110

	return r;
111 112
}

113
void kvm_set_msi_irq(struct kvm *kvm, struct kvm_kernel_irq_routing_entry *e,
F
Feng Wu 已提交
114
		     struct kvm_lapic_irq *irq)
M
Michael S. Tsirkin 已提交
115
{
116 117 118
	trace_kvm_msi_set_irq(e->msi.address_lo | (kvm->arch.x2apic_format ?
	                                     (u64)e->msi.address_hi << 32 : 0),
	                      e->msi.data);
M
Michael S. Tsirkin 已提交
119 120 121

	irq->dest_id = (e->msi.address_lo &
			MSI_ADDR_DEST_ID_MASK) >> MSI_ADDR_DEST_ID_SHIFT;
122 123
	if (kvm->arch.x2apic_format)
		irq->dest_id |= MSI_ADDR_EXT_DEST_ID(e->msi.address_hi);
M
Michael S. Tsirkin 已提交
124 125 126 127 128
	irq->vector = (e->msi.data &
			MSI_DATA_VECTOR_MASK) >> MSI_DATA_VECTOR_SHIFT;
	irq->dest_mode = (1 << MSI_ADDR_DEST_MODE_SHIFT) & e->msi.address_lo;
	irq->trig_mode = (1 << MSI_DATA_TRIGGER_SHIFT) & e->msi.data;
	irq->delivery_mode = e->msi.data & 0x700;
129 130
	irq->msi_redir_hint = ((e->msi.address_lo
		& MSI_ADDR_REDIRECTION_LOWPRI) > 0);
M
Michael S. Tsirkin 已提交
131 132 133
	irq->level = 1;
	irq->shorthand = 0;
}
F
Feng Wu 已提交
134
EXPORT_SYMBOL_GPL(kvm_set_msi_irq);
M
Michael S. Tsirkin 已提交
135

136 137 138 139 140 141
static inline bool kvm_msi_route_invalid(struct kvm *kvm,
		struct kvm_kernel_irq_routing_entry *e)
{
	return kvm->arch.x2apic_format && (e->msi.address_hi & 0xff);
}

142
int kvm_set_msi(struct kvm_kernel_irq_routing_entry *e,
143
		struct kvm *kvm, int irq_source_id, int level, bool line_status)
S
Sheng Yang 已提交
144
{
145
	struct kvm_lapic_irq irq;
S
Sheng Yang 已提交
146

147 148 149
	if (kvm_msi_route_invalid(kvm, e))
		return -EINVAL;

150 151 152
	if (!level)
		return -1;

153
	kvm_set_msi_irq(kvm, e, &irq);
154

155
	return kvm_irq_delivery_to_apic(kvm, NULL, &irq, NULL);
S
Sheng Yang 已提交
156 157
}

M
Michael S. Tsirkin 已提交
158

159 160 161
int kvm_arch_set_irq_inatomic(struct kvm_kernel_irq_routing_entry *e,
			      struct kvm *kvm, int irq_source_id, int level,
			      bool line_status)
M
Michael S. Tsirkin 已提交
162 163 164 165
{
	struct kvm_lapic_irq irq;
	int r;

166 167 168
	if (unlikely(e->type != KVM_IRQ_ROUTING_MSI))
		return -EWOULDBLOCK;

169 170 171 172
	if (kvm_msi_route_invalid(kvm, e))
		return -EINVAL;

	kvm_set_msi_irq(kvm, e, &irq);
M
Michael S. Tsirkin 已提交
173

174
	if (kvm_irq_delivery_to_apic_fast(kvm, NULL, &irq, &r, NULL))
M
Michael S. Tsirkin 已提交
175 176 177 178 179
		return r;
	else
		return -EWOULDBLOCK;
}

180 181 182
int kvm_request_irq_source_id(struct kvm *kvm)
{
	unsigned long *bitmap = &kvm->arch.irq_sources_bitmap;
183 184 185
	int irq_source_id;

	mutex_lock(&kvm->irq_lock);
186
	irq_source_id = find_first_zero_bit(bitmap, BITS_PER_LONG);
187

188
	if (irq_source_id >= BITS_PER_LONG) {
189
		printk(KERN_WARNING "kvm: exhaust allocatable IRQ sources!\n");
190 191
		irq_source_id = -EFAULT;
		goto unlock;
192 193 194
	}

	ASSERT(irq_source_id != KVM_USERSPACE_IRQ_SOURCE_ID);
195
	ASSERT(irq_source_id != KVM_IRQFD_RESAMPLE_IRQ_SOURCE_ID);
196
	set_bit(irq_source_id, bitmap);
197
unlock:
198
	mutex_unlock(&kvm->irq_lock);
199

200 201 202 203 204
	return irq_source_id;
}

void kvm_free_irq_source_id(struct kvm *kvm, int irq_source_id)
{
205
	ASSERT(irq_source_id != KVM_USERSPACE_IRQ_SOURCE_ID);
206
	ASSERT(irq_source_id != KVM_IRQFD_RESAMPLE_IRQ_SOURCE_ID);
207

208
	mutex_lock(&kvm->irq_lock);
209
	if (irq_source_id < 0 ||
210
	    irq_source_id >= BITS_PER_LONG) {
211
		printk(KERN_ERR "kvm: IRQ source ID out of range!\n");
212
		goto unlock;
213
	}
214
	clear_bit(irq_source_id, &kvm->arch.irq_sources_bitmap);
215
	if (!ioapic_in_kernel(kvm))
216 217
		goto unlock;

218 219
	kvm_ioapic_clear_all(kvm->arch.vioapic, irq_source_id);
	kvm_pic_clear_all(pic_irqchip(kvm), irq_source_id);
220
unlock:
221
	mutex_unlock(&kvm->irq_lock);
222
}
223 224 225 226

void kvm_register_irq_mask_notifier(struct kvm *kvm, int irq,
				    struct kvm_irq_mask_notifier *kimn)
{
227
	mutex_lock(&kvm->irq_lock);
228
	kimn->irq = irq;
229
	hlist_add_head_rcu(&kimn->link, &kvm->arch.mask_notifier_list);
230
	mutex_unlock(&kvm->irq_lock);
231 232 233 234 235
}

void kvm_unregister_irq_mask_notifier(struct kvm *kvm, int irq,
				      struct kvm_irq_mask_notifier *kimn)
{
236
	mutex_lock(&kvm->irq_lock);
237
	hlist_del_rcu(&kimn->link);
238
	mutex_unlock(&kvm->irq_lock);
239
	synchronize_srcu(&kvm->irq_srcu);
240 241
}

242 243
void kvm_fire_mask_notifiers(struct kvm *kvm, unsigned irqchip, unsigned pin,
			     bool mask)
244 245
{
	struct kvm_irq_mask_notifier *kimn;
246
	int idx, gsi;
247

248
	idx = srcu_read_lock(&kvm->irq_srcu);
249
	gsi = kvm_irq_map_chip_pin(kvm, irqchip, pin);
250
	if (gsi != -1)
251
		hlist_for_each_entry_rcu(kimn, &kvm->arch.mask_notifier_list, link)
252 253
			if (kimn->irq == gsi)
				kimn->func(kimn, mask);
254
	srcu_read_unlock(&kvm->irq_srcu, idx);
255 256
}

257 258 259 260 261 262 263 264 265 266
static int kvm_hv_set_sint(struct kvm_kernel_irq_routing_entry *e,
		    struct kvm *kvm, int irq_source_id, int level,
		    bool line_status)
{
	if (!level)
		return -1;

	return kvm_hv_synic_set_irq(kvm, e->hv_sint.vcpu, e->hv_sint.sint);
}

267 268
int kvm_set_routing_entry(struct kvm *kvm,
			  struct kvm_kernel_irq_routing_entry *e,
269
			  const struct kvm_irq_routing_entry *ue)
270 271 272
{
	int r = -EINVAL;
	int delta;
273
	unsigned max_pin;
274

275 276 277 278 279 280
	switch (ue->type) {
	case KVM_IRQ_ROUTING_IRQCHIP:
		delta = 0;
		switch (ue->u.irqchip.irqchip) {
		case KVM_IRQCHIP_PIC_MASTER:
			e->set = kvm_set_pic_irq;
281
			max_pin = PIC_NUM_PINS;
282 283
			break;
		case KVM_IRQCHIP_PIC_SLAVE:
284
			e->set = kvm_set_pic_irq;
285
			max_pin = PIC_NUM_PINS;
286 287 288
			delta = 8;
			break;
		case KVM_IRQCHIP_IOAPIC:
289
			max_pin = KVM_IOAPIC_NUM_PINS;
290
			e->set = kvm_set_ioapic_irq;
291 292 293 294 295 296
			break;
		default:
			goto out;
		}
		e->irqchip.irqchip = ue->u.irqchip.irqchip;
		e->irqchip.pin = ue->u.irqchip.pin + delta;
297
		if (e->irqchip.pin >= max_pin)
298
			goto out;
299
		break;
S
Sheng Yang 已提交
300 301 302 303 304
	case KVM_IRQ_ROUTING_MSI:
		e->set = kvm_set_msi;
		e->msi.address_lo = ue->u.msi.address_lo;
		e->msi.address_hi = ue->u.msi.address_hi;
		e->msi.data = ue->u.msi.data;
305 306 307

		if (kvm_msi_route_invalid(kvm, e))
			goto out;
S
Sheng Yang 已提交
308
		break;
309 310 311 312 313
	case KVM_IRQ_ROUTING_HV_SINT:
		e->set = kvm_hv_set_sint;
		e->hv_sint.vcpu = ue->u.hv_sint.vcpu;
		e->hv_sint.sint = ue->u.hv_sint.sint;
		break;
314 315 316
	default:
		goto out;
	}
317

318 319 320 321 322
	r = 0;
out:
	return r;
}

323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349
bool kvm_intr_is_single_vcpu(struct kvm *kvm, struct kvm_lapic_irq *irq,
			     struct kvm_vcpu **dest_vcpu)
{
	int i, r = 0;
	struct kvm_vcpu *vcpu;

	if (kvm_intr_is_single_vcpu_fast(kvm, irq, dest_vcpu))
		return true;

	kvm_for_each_vcpu(i, vcpu, kvm) {
		if (!kvm_apic_present(vcpu))
			continue;

		if (!kvm_apic_match_dest(vcpu, NULL, irq->shorthand,
					irq->dest_id, irq->dest_mode))
			continue;

		if (++r == 2)
			return false;

		*dest_vcpu = vcpu;
	}

	return r == 1;
}
EXPORT_SYMBOL_GPL(kvm_intr_is_single_vcpu);

350 351
#define IOAPIC_ROUTING_ENTRY(irq) \
	{ .gsi = irq, .type = KVM_IRQ_ROUTING_IRQCHIP,	\
352
	  .u.irqchip = { .irqchip = KVM_IRQCHIP_IOAPIC, .pin = (irq) } }
353 354
#define ROUTING_ENTRY1(irq) IOAPIC_ROUTING_ENTRY(irq)

355
#define PIC_ROUTING_ENTRY(irq) \
356
	{ .gsi = irq, .type = KVM_IRQ_ROUTING_IRQCHIP,	\
357
	  .u.irqchip = { .irqchip = SELECT_PIC(irq), .pin = (irq) % 8 } }
358
#define ROUTING_ENTRY2(irq) \
359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380
	IOAPIC_ROUTING_ENTRY(irq), PIC_ROUTING_ENTRY(irq)

static const struct kvm_irq_routing_entry default_routing[] = {
	ROUTING_ENTRY2(0), ROUTING_ENTRY2(1),
	ROUTING_ENTRY2(2), ROUTING_ENTRY2(3),
	ROUTING_ENTRY2(4), ROUTING_ENTRY2(5),
	ROUTING_ENTRY2(6), ROUTING_ENTRY2(7),
	ROUTING_ENTRY2(8), ROUTING_ENTRY2(9),
	ROUTING_ENTRY2(10), ROUTING_ENTRY2(11),
	ROUTING_ENTRY2(12), ROUTING_ENTRY2(13),
	ROUTING_ENTRY2(14), ROUTING_ENTRY2(15),
	ROUTING_ENTRY1(16), ROUTING_ENTRY1(17),
	ROUTING_ENTRY1(18), ROUTING_ENTRY1(19),
	ROUTING_ENTRY1(20), ROUTING_ENTRY1(21),
	ROUTING_ENTRY1(22), ROUTING_ENTRY1(23),
};

int kvm_setup_default_irq_routing(struct kvm *kvm)
{
	return kvm_set_irq_routing(kvm, default_routing,
				   ARRAY_SIZE(default_routing), 0);
}
381 382 383 384 385 386 387

static const struct kvm_irq_routing_entry empty_routing[] = {};

int kvm_setup_empty_irq_routing(struct kvm *kvm)
{
	return kvm_set_irq_routing(kvm, empty_routing, 0, 0);
}
388

389
void kvm_arch_post_irq_routing_update(struct kvm *kvm)
390 391 392 393 394 395
{
	if (ioapic_in_kernel(kvm) || !irqchip_in_kernel(kvm))
		return;
	kvm_make_scan_ioapic_request(kvm);
}

396 397
void kvm_scan_ioapic_routes(struct kvm_vcpu *vcpu,
			    ulong *ioapic_handled_vectors)
398 399 400 401 402 403 404 405 406 407 408 409 410
{
	struct kvm *kvm = vcpu->kvm;
	struct kvm_kernel_irq_routing_entry *entry;
	struct kvm_irq_routing_table *table;
	u32 i, nr_ioapic_pins;
	int idx;

	idx = srcu_read_lock(&kvm->irq_srcu);
	table = srcu_dereference(kvm->irq_routing, &kvm->irq_srcu);
	nr_ioapic_pins = min_t(u32, table->nr_rt_entries,
			       kvm->arch.nr_reserved_ioapic_pins);
	for (i = 0; i < nr_ioapic_pins; ++i) {
		hlist_for_each_entry(entry, &table->map[i], link) {
411
			struct kvm_lapic_irq irq;
412 413 414

			if (entry->type != KVM_IRQ_ROUTING_MSI)
				continue;
415

416
			kvm_set_msi_irq(vcpu->kvm, entry, &irq);
417 418 419 420

			if (irq.level && kvm_apic_match_dest(vcpu, NULL, 0,
						irq.dest_id, irq.dest_mode))
				__set_bit(irq.vector, ioapic_handled_vectors);
421 422 423 424
		}
	}
	srcu_read_unlock(&kvm->irq_srcu, idx);
}
425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441

int kvm_arch_set_irq(struct kvm_kernel_irq_routing_entry *irq, struct kvm *kvm,
		     int irq_source_id, int level, bool line_status)
{
	switch (irq->type) {
	case KVM_IRQ_ROUTING_HV_SINT:
		return kvm_hv_set_sint(irq, kvm, irq_source_id, level,
				       line_status);
	default:
		return -EWOULDBLOCK;
	}
}

void kvm_arch_irq_routing_update(struct kvm *kvm)
{
	kvm_hv_irq_routing_update(kvm);
}