i8259.c 12.3 KB
Newer Older
1 2 3 4 5
/*
 * 8259 interrupt controller emulation
 *
 * Copyright (c) 2003-2004 Fabrice Bellard
 * Copyright (c) 2007 Intel Corporation
N
Nicolas Kaiser 已提交
6
 * Copyright 2009 Red Hat, Inc. and/or its affiliates.
7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 * THE SOFTWARE.
 * Authors:
 *   Yaozu (Eddie) Dong <Eddie.dong@intel.com>
 *   Port from Qemu.
 */
#include <linux/mm.h>
30
#include <linux/slab.h>
31
#include <linux/bitops.h>
32
#include "irq.h"
33 34

#include <linux/kvm_host.h>
35
#include "trace.h"
36

37 38
static void pic_irq_request(struct kvm *kvm, int level);

39 40 41
static void pic_lock(struct kvm_pic *s)
	__acquires(&s->lock)
{
42
	spin_lock(&s->lock);
43 44 45 46 47 48
}

static void pic_unlock(struct kvm_pic *s)
	__releases(&s->lock)
{
	bool wakeup = s->wakeup_needed;
49 50
	struct kvm_vcpu *vcpu, *found = NULL;
	int i;
51 52 53

	s->wakeup_needed = false;

54
	spin_unlock(&s->lock);
55 56

	if (wakeup) {
57 58 59 60 61 62 63
		kvm_for_each_vcpu(i, vcpu, s->kvm) {
			if (kvm_apic_accept_pic_intr(vcpu)) {
				found = vcpu;
				break;
			}
		}

64 65 66
		if (!found)
			return;

67
		kvm_make_request(KVM_REQ_EVENT, found);
68
		kvm_vcpu_kick(found);
69 70 71
	}
}

72 73 74
static void pic_clear_isr(struct kvm_kpic_state *s, int irq)
{
	s->isr &= ~(1 << irq);
75 76
	if (s != &s->pics_state->pics[0])
		irq += 8;
G
Gleb Natapov 已提交
77 78 79 80 81 82
	/*
	 * We are dropping lock while calling ack notifiers since ack
	 * notifier callbacks for assigned devices call into PIC recursively.
	 * Other interrupt may be delivered to PIC while lock is dropped but
	 * it should be safe since PIC state is already updated at this stage.
	 */
83
	pic_unlock(s->pics_state);
84
	kvm_notify_acked_irq(s->pics_state->kvm, SELECT_PIC(irq), irq);
85
	pic_lock(s->pics_state);
M
Marcelo Tosatti 已提交
86 87
}

88 89 90
/*
 * set irq level. If an edge is detected, then the IRR is set to 1
 */
91
static inline int pic_set_irq1(struct kvm_kpic_state *s, int irq, int level)
92
{
93
	int mask, ret = 1;
94 95 96
	mask = 1 << irq;
	if (s->elcr & mask)	/* level triggered */
		if (level) {
97
			ret = !(s->irr & mask);
98 99 100 101 102 103 104 105
			s->irr |= mask;
			s->last_irr |= mask;
		} else {
			s->irr &= ~mask;
			s->last_irr &= ~mask;
		}
	else	/* edge triggered */
		if (level) {
106 107
			if ((s->last_irr & mask) == 0) {
				ret = !(s->irr & mask);
108
				s->irr |= mask;
109
			}
110 111 112
			s->last_irr |= mask;
		} else
			s->last_irr &= ~mask;
113 114

	return (s->imr & mask) ? -1 : ret;
115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177
}

/*
 * return the highest priority found in mask (highest = smallest
 * number). Return 8 if no irq
 */
static inline int get_priority(struct kvm_kpic_state *s, int mask)
{
	int priority;
	if (mask == 0)
		return 8;
	priority = 0;
	while ((mask & (1 << ((priority + s->priority_add) & 7))) == 0)
		priority++;
	return priority;
}

/*
 * return the pic wanted interrupt. return -1 if none
 */
static int pic_get_irq(struct kvm_kpic_state *s)
{
	int mask, cur_priority, priority;

	mask = s->irr & ~s->imr;
	priority = get_priority(s, mask);
	if (priority == 8)
		return -1;
	/*
	 * compute current priority. If special fully nested mode on the
	 * master, the IRQ coming from the slave is not taken into account
	 * for the priority computation.
	 */
	mask = s->isr;
	if (s->special_fully_nested_mode && s == &s->pics_state->pics[0])
		mask &= ~(1 << 2);
	cur_priority = get_priority(s, mask);
	if (priority < cur_priority)
		/*
		 * higher priority found: an irq should be generated
		 */
		return (priority + s->priority_add) & 7;
	else
		return -1;
}

/*
 * raise irq to CPU if necessary. must be called every time the active
 * irq may change
 */
static void pic_update_irq(struct kvm_pic *s)
{
	int irq2, irq;

	irq2 = pic_get_irq(&s->pics[1]);
	if (irq2 >= 0) {
		/*
		 * if irq request by slave pic, signal master PIC
		 */
		pic_set_irq1(&s->pics[0], 2, 1);
		pic_set_irq1(&s->pics[0], 2, 0);
	}
	irq = pic_get_irq(&s->pics[0]);
178
	pic_irq_request(s->kvm, irq >= 0);
179 180
}

181 182
void kvm_pic_update_irq(struct kvm_pic *s)
{
183
	pic_lock(s);
184
	pic_update_irq(s);
185
	pic_unlock(s);
186 187
}

188
int kvm_pic_set_irq(void *opaque, int irq, int level)
189 190
{
	struct kvm_pic *s = opaque;
191
	int ret = -1;
192

193
	pic_lock(s);
194
	if (irq >= 0 && irq < PIC_NUM_PINS) {
195
		ret = pic_set_irq1(&s->pics[irq >> 3], irq & 7, level);
196
		pic_update_irq(s);
197 198
		trace_kvm_pic_set_irq(irq >> 3, irq & 7, s->pics[irq >> 3].elcr,
				      s->pics[irq >> 3].imr, ret == 0);
199
	}
200
	pic_unlock(s);
201 202

	return ret;
203 204 205 206 207 208 209
}

/*
 * acknowledge interrupt 'irq'
 */
static inline void pic_intack(struct kvm_kpic_state *s, int irq)
{
210
	s->isr |= 1 << irq;
211 212 213 214 215
	/*
	 * We don't clear a level sensitive interrupt here
	 */
	if (!(s->elcr & (1 << irq)))
		s->irr &= ~(1 << irq);
G
Gleb Natapov 已提交
216 217 218 219 220 221 222

	if (s->auto_eoi) {
		if (s->rotate_on_auto_eoi)
			s->priority_add = (irq + 1) & 7;
		pic_clear_isr(s, irq);
	}

223 224
}

M
Marcelo Tosatti 已提交
225
int kvm_pic_read_irq(struct kvm *kvm)
226 227
{
	int irq, irq2, intno;
M
Marcelo Tosatti 已提交
228
	struct kvm_pic *s = pic_irqchip(kvm);
229

230
	pic_lock(s);
231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254
	irq = pic_get_irq(&s->pics[0]);
	if (irq >= 0) {
		pic_intack(&s->pics[0], irq);
		if (irq == 2) {
			irq2 = pic_get_irq(&s->pics[1]);
			if (irq2 >= 0)
				pic_intack(&s->pics[1], irq2);
			else
				/*
				 * spurious IRQ on slave controller
				 */
				irq2 = 7;
			intno = s->pics[1].irq_base + irq2;
			irq = irq2 + 8;
		} else
			intno = s->pics[0].irq_base + irq;
	} else {
		/*
		 * spurious IRQ on host controller
		 */
		irq = 7;
		intno = s->pics[0].irq_base + irq;
	}
	pic_update_irq(s);
255
	pic_unlock(s);
256 257 258 259

	return intno;
}

260
void kvm_pic_reset(struct kvm_kpic_state *s)
261
{
262
	int irq;
263
	struct kvm_vcpu *vcpu0 = s->pics_state->kvm->bsp_vcpu;
264
	u8 irr = s->irr, isr = s->imr;
M
Marcelo Tosatti 已提交
265

266 267 268 269 270 271 272 273 274 275 276 277 278 279
	s->last_irr = 0;
	s->irr = 0;
	s->imr = 0;
	s->isr = 0;
	s->priority_add = 0;
	s->irq_base = 0;
	s->read_reg_select = 0;
	s->poll = 0;
	s->special_mask = 0;
	s->init_state = 0;
	s->auto_eoi = 0;
	s->rotate_on_auto_eoi = 0;
	s->special_fully_nested_mode = 0;
	s->init4 = 0;
280 281 282 283 284 285 286

	for (irq = 0; irq < PIC_NUM_PINS/2; irq++) {
		if (vcpu0 && kvm_apic_accept_pic_intr(vcpu0))
			if (irr & (1 << irq) || isr & (1 << irq)) {
				pic_clear_isr(s, irq);
			}
	}
287 288 289 290 291 292 293 294 295 296 297
}

static void pic_ioport_write(void *opaque, u32 addr, u32 val)
{
	struct kvm_kpic_state *s = opaque;
	int priority, cmd, irq;

	addr &= 1;
	if (addr == 0) {
		if (val & 0x10) {
			s->init4 = val & 1;
A
Avi Kivity 已提交
298 299 300 301 302 303 304 305 306 307
			s->last_irr = 0;
			s->imr = 0;
			s->priority_add = 0;
			s->special_mask = 0;
			s->read_reg_select = 0;
			if (!s->init4) {
				s->special_fully_nested_mode = 0;
				s->auto_eoi = 0;
			}
			s->init_state = 1;
308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333
			if (val & 0x02)
				printk(KERN_ERR "single mode not supported");
			if (val & 0x08)
				printk(KERN_ERR
				       "level sensitive irq not supported");
		} else if (val & 0x08) {
			if (val & 0x04)
				s->poll = 1;
			if (val & 0x02)
				s->read_reg_select = val & 1;
			if (val & 0x40)
				s->special_mask = (val >> 5) & 1;
		} else {
			cmd = val >> 5;
			switch (cmd) {
			case 0:
			case 4:
				s->rotate_on_auto_eoi = cmd >> 2;
				break;
			case 1:	/* end of interrupt */
			case 5:
				priority = get_priority(s, s->isr);
				if (priority != 8) {
					irq = (priority + s->priority_add) & 7;
					if (cmd == 5)
						s->priority_add = (irq + 1) & 7;
G
Gleb Natapov 已提交
334
					pic_clear_isr(s, irq);
335 336 337 338 339
					pic_update_irq(s->pics_state);
				}
				break;
			case 3:
				irq = val & 7;
340
				pic_clear_isr(s, irq);
341 342 343 344 345 346 347 348 349
				pic_update_irq(s->pics_state);
				break;
			case 6:
				s->priority_add = (val + 1) & 7;
				pic_update_irq(s->pics_state);
				break;
			case 7:
				irq = val & 7;
				s->priority_add = (irq + 1) & 7;
350
				pic_clear_isr(s, irq);
351 352 353 354 355 356 357 358
				pic_update_irq(s->pics_state);
				break;
			default:
				break;	/* no operation */
			}
		}
	} else
		switch (s->init_state) {
359 360 361
		case 0: { /* normal mode */
			u8 imr_diff = s->imr ^ val,
				off = (s == &s->pics_state->pics[0]) ? 0 : 8;
362
			s->imr = val;
363 364 365 366 367 368 369
			for (irq = 0; irq < PIC_NUM_PINS/2; irq++)
				if (imr_diff & (1 << irq))
					kvm_fire_mask_notifiers(
						s->pics_state->kvm,
						SELECT_PIC(irq + off),
						irq + off,
						!!(s->imr & (1 << irq)));
370 371
			pic_update_irq(s->pics_state);
			break;
372
		}
373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401
		case 1:
			s->irq_base = val & 0xf8;
			s->init_state = 2;
			break;
		case 2:
			if (s->init4)
				s->init_state = 3;
			else
				s->init_state = 0;
			break;
		case 3:
			s->special_fully_nested_mode = (val >> 4) & 1;
			s->auto_eoi = (val >> 1) & 1;
			s->init_state = 0;
			break;
		}
}

static u32 pic_poll_read(struct kvm_kpic_state *s, u32 addr1)
{
	int ret;

	ret = pic_get_irq(s);
	if (ret >= 0) {
		if (addr1 >> 7) {
			s->pics_state->pics[0].isr &= ~(1 << 2);
			s->pics_state->pics[0].irr &= ~(1 << 2);
		}
		s->irr &= ~(1 << ret);
402
		pic_clear_isr(s, ret);
403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446
		if (addr1 >> 7 || ret != 2)
			pic_update_irq(s->pics_state);
	} else {
		ret = 0x07;
		pic_update_irq(s->pics_state);
	}

	return ret;
}

static u32 pic_ioport_read(void *opaque, u32 addr1)
{
	struct kvm_kpic_state *s = opaque;
	unsigned int addr;
	int ret;

	addr = addr1;
	addr &= 1;
	if (s->poll) {
		ret = pic_poll_read(s, addr1);
		s->poll = 0;
	} else
		if (addr == 0)
			if (s->read_reg_select)
				ret = s->isr;
			else
				ret = s->irr;
		else
			ret = s->imr;
	return ret;
}

static void elcr_ioport_write(void *opaque, u32 addr, u32 val)
{
	struct kvm_kpic_state *s = opaque;
	s->elcr = val & s->elcr_mask;
}

static u32 elcr_ioport_read(void *opaque, u32 addr1)
{
	struct kvm_kpic_state *s = opaque;
	return s->elcr;
}

447
static int picdev_in_range(gpa_t addr)
448 449 450 451 452 453 454 455 456 457 458 459 460 461
{
	switch (addr) {
	case 0x20:
	case 0x21:
	case 0xa0:
	case 0xa1:
	case 0x4d0:
	case 0x4d1:
		return 1;
	default:
		return 0;
	}
}

G
Gregory Haskins 已提交
462 463 464 465 466
static inline struct kvm_pic *to_pic(struct kvm_io_device *dev)
{
	return container_of(dev, struct kvm_pic, dev);
}

467
static int picdev_write(struct kvm_io_device *this,
468 469
			 gpa_t addr, int len, const void *val)
{
G
Gregory Haskins 已提交
470
	struct kvm_pic *s = to_pic(this);
471
	unsigned char data = *(unsigned char *)val;
472 473
	if (!picdev_in_range(addr))
		return -EOPNOTSUPP;
474 475 476 477

	if (len != 1) {
		if (printk_ratelimit())
			printk(KERN_ERR "PIC: non byte write\n");
478
		return 0;
479
	}
480
	pic_lock(s);
481 482 483 484 485 486 487 488 489 490 491 492
	switch (addr) {
	case 0x20:
	case 0x21:
	case 0xa0:
	case 0xa1:
		pic_ioport_write(&s->pics[addr >> 7], addr, data);
		break;
	case 0x4d0:
	case 0x4d1:
		elcr_ioport_write(&s->pics[addr & 1], addr, data);
		break;
	}
493
	pic_unlock(s);
494
	return 0;
495 496
}

497 498
static int picdev_read(struct kvm_io_device *this,
		       gpa_t addr, int len, void *val)
499
{
G
Gregory Haskins 已提交
500
	struct kvm_pic *s = to_pic(this);
501
	unsigned char data = 0;
502 503
	if (!picdev_in_range(addr))
		return -EOPNOTSUPP;
504 505 506 507

	if (len != 1) {
		if (printk_ratelimit())
			printk(KERN_ERR "PIC: non byte read\n");
508
		return 0;
509
	}
510
	pic_lock(s);
511 512 513 514 515 516 517 518 519 520 521 522 523
	switch (addr) {
	case 0x20:
	case 0x21:
	case 0xa0:
	case 0xa1:
		data = pic_ioport_read(&s->pics[addr >> 7], addr);
		break;
	case 0x4d0:
	case 0x4d1:
		data = elcr_ioport_read(&s->pics[addr & 1], addr);
		break;
	}
	*(unsigned char *)val = data;
524
	pic_unlock(s);
525
	return 0;
526 527 528 529 530
}

/*
 * callback when PIC0 irq status changed
 */
531
static void pic_irq_request(struct kvm *kvm, int level)
532
{
M
Marcelo Tosatti 已提交
533
	struct kvm_pic *s = pic_irqchip(kvm);
534

535
	if (!s->output)
536
		s->wakeup_needed = true;
537
	s->output = level;
538 539
}

G
Gregory Haskins 已提交
540 541 542 543 544
static const struct kvm_io_device_ops picdev_ops = {
	.read     = picdev_read,
	.write    = picdev_write,
};

545 546 547
struct kvm_pic *kvm_create_pic(struct kvm *kvm)
{
	struct kvm_pic *s;
548 549
	int ret;

550 551 552
	s = kzalloc(sizeof(struct kvm_pic), GFP_KERNEL);
	if (!s)
		return NULL;
553
	spin_lock_init(&s->lock);
554
	s->kvm = kvm;
555 556 557 558 559 560 561 562
	s->pics[0].elcr_mask = 0xf8;
	s->pics[1].elcr_mask = 0xde;
	s->pics[0].pics_state = s;
	s->pics[1].pics_state = s;

	/*
	 * Initialize PIO device
	 */
G
Gregory Haskins 已提交
563
	kvm_iodevice_init(&s->dev, &picdev_ops);
564
	mutex_lock(&kvm->slots_lock);
M
Marcelo Tosatti 已提交
565
	ret = kvm_io_bus_register_dev(kvm, KVM_PIO_BUS, &s->dev);
566
	mutex_unlock(&kvm->slots_lock);
567 568 569 570 571
	if (ret < 0) {
		kfree(s);
		return NULL;
	}

572 573
	return s;
}
574 575 576 577 578 579 580 581 582 583 584

void kvm_destroy_pic(struct kvm *kvm)
{
	struct kvm_pic *vpic = kvm->arch.vpic;

	if (vpic) {
		kvm_io_bus_unregister_dev(kvm, KVM_PIO_BUS, &vpic->dev);
		kvm->arch.vpic = NULL;
		kfree(vpic);
	}
}