]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - arch/x86/kvm/irq.h
KVM: x86: decouple irqchip_in_kernel() and pic_irqchip()
[mirror_ubuntu-artful-kernel.git] / arch / x86 / kvm / irq.h
CommitLineData
85f455f7
ED
1/*
2 * irq.h: in kernel interrupt controller related definitions
3 * Copyright (c) 2007, Intel Corporation.
4 *
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms and conditions of the GNU General Public License,
7 * version 2, as published by the Free Software Foundation.
8 *
9 * This program is distributed in the hope it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
12 * more details.
13 *
14 * You should have received a copy of the GNU General Public License along with
15 * this program; if not, write to the Free Software Foundation, Inc., 59 Temple
16 * Place - Suite 330, Boston, MA 02111-1307 USA.
17 * Authors:
18 * Yaozu (Eddie) Dong <Eddie.dong@intel.com>
19 *
20 */
21
22#ifndef __IRQ_H
23#define __IRQ_H
24
e01a1b57
HB
25#include <linux/mm_types.h>
26#include <linux/hrtimer.h>
edf88417 27#include <linux/kvm_host.h>
3f353858 28#include <linux/spinlock.h>
82470196 29
af669ac6 30#include <kvm/iodev.h>
82470196
ZX
31#include "ioapic.h"
32#include "lapic.h"
85f455f7 33
c65bbfa1 34#define PIC_NUM_PINS 16
44882eed
MT
35#define SELECT_PIC(irq) \
36 ((irq) < 8 ? KVM_IRQCHIP_PIC_MASTER : KVM_IRQCHIP_PIC_SLAVE)
c65bbfa1 37
e01a1b57
HB
38struct kvm;
39struct kvm_vcpu;
40
85f455f7
ED
41struct kvm_kpic_state {
42 u8 last_irr; /* edge detection */
43 u8 irr; /* interrupt request register */
44 u8 imr; /* interrupt mask register */
45 u8 isr; /* interrupt service register */
46 u8 priority_add; /* highest irq priority */
47 u8 irq_base;
48 u8 read_reg_select;
49 u8 poll;
50 u8 special_mask;
51 u8 init_state;
52 u8 auto_eoi;
53 u8 rotate_on_auto_eoi;
54 u8 special_fully_nested_mode;
55 u8 init4; /* true if 4 byte init */
56 u8 elcr; /* PIIX edge/trigger selection */
57 u8 elcr_mask;
eebb5f31 58 u8 isr_ack; /* interrupt ack detection */
85f455f7
ED
59 struct kvm_pic *pics_state;
60};
61
62struct kvm_pic {
f4f51050 63 spinlock_t lock;
50a085bd 64 bool wakeup_needed;
3f353858
AK
65 unsigned pending_acks;
66 struct kvm *kvm;
85f455f7 67 struct kvm_kpic_state pics[2]; /* 0 is master pic, 1 is slave pic */
85f455f7 68 int output; /* intr from master PIC */
743eeb0b
SL
69 struct kvm_io_device dev_master;
70 struct kvm_io_device dev_slave;
71 struct kvm_io_device dev_eclr;
f5244726 72 void (*ack_notifier)(void *opaque, int irq);
93b6547e 73 unsigned long irq_states[PIC_NUM_PINS];
85f455f7
ED
74};
75
76struct kvm_pic *kvm_create_pic(struct kvm *kvm);
71ba994c 77void kvm_destroy_pic(struct kvm_pic *vpic);
f5244726 78int kvm_pic_read_irq(struct kvm *kvm);
6ceb9d79 79void kvm_pic_update_irq(struct kvm_pic *s);
85f455f7 80
682c59a3
ZX
81static inline struct kvm_pic *pic_irqchip(struct kvm *kvm)
82{
d7deeeb0 83 return kvm->arch.vpic;
682c59a3
ZX
84}
85
1c1a9ce9
SR
86static inline int pic_in_kernel(struct kvm *kvm)
87{
88 int ret;
89
90 ret = (pic_irqchip(kvm) != NULL);
91 return ret;
92}
93
49df6397
SR
94static inline int irqchip_split(struct kvm *kvm)
95{
49776faf 96 return kvm->arch.irqchip_mode == KVM_IRQCHIP_SPLIT;
49df6397
SR
97}
98
49776faf 99static inline int irqchip_kernel(struct kvm *kvm)
682c59a3 100{
49776faf
RK
101 return kvm->arch.irqchip_mode == KVM_IRQCHIP_KERNEL;
102}
49df6397 103
49776faf
RK
104static inline int irqchip_in_kernel(struct kvm *kvm)
105{
106 bool ret = kvm->arch.irqchip_mode != KVM_IRQCHIP_NONE;
3ddea128 107
49776faf 108 /* Matches with wmb after initializing kvm->irq_routing. */
3ddea128 109 smp_rmb();
49df6397 110 return ret;
682c59a3
ZX
111}
112
2fcceae1 113void kvm_pic_reset(struct kvm_kpic_state *s);
8be5453f 114
1b9778da
ED
115void kvm_inject_pending_timer_irqs(struct kvm_vcpu *vcpu);
116void kvm_inject_apic_timer_irqs(struct kvm_vcpu *vcpu);
8fdb2351 117void kvm_apic_nmi_wd_deliver(struct kvm_vcpu *vcpu);
2f52d58c 118void __kvm_migrate_apic_timer(struct kvm_vcpu *vcpu);
2f599714
MT
119void __kvm_migrate_pit_timer(struct kvm_vcpu *vcpu);
120void __kvm_migrate_timers(struct kvm_vcpu *vcpu);
97222cc8 121
3d80840d
MT
122int apic_has_pending_timer(struct kvm_vcpu *vcpu);
123
d9565a73
EA
124int kvm_setup_default_irq_routing(struct kvm *kvm);
125int kvm_setup_empty_irq_routing(struct kvm *kvm);
126
85f455f7 127#endif