blob: 7080b713c160310788f6f61baa446fda9bf29a23 [file] [log] [blame]
Zhang Xiantao82470192007-12-17 13:59:56 +08001#ifndef __KVM_IO_APIC_H
2#define __KVM_IO_APIC_H
3
4#include <linux/kvm_host.h>
5
6#include "iodev.h"
7
8struct kvm;
9struct kvm_vcpu;
10
11#define IOAPIC_NUM_PINS KVM_IOAPIC_NUM_PINS
12#define IOAPIC_VERSION_ID 0x11 /* IOAPIC version */
13#define IOAPIC_EDGE_TRIG 0
14#define IOAPIC_LEVEL_TRIG 1
15
16#define IOAPIC_DEFAULT_BASE_ADDRESS 0xfec00000
17#define IOAPIC_MEM_LENGTH 0x100
18
19/* Direct registers. */
20#define IOAPIC_REG_SELECT 0x00
21#define IOAPIC_REG_WINDOW 0x10
22#define IOAPIC_REG_EOI 0x40 /* IA64 IOSAPIC only */
23
24/* Indirect registers. */
25#define IOAPIC_REG_APIC_ID 0x00 /* x86 IOAPIC only */
26#define IOAPIC_REG_VERSION 0x01
27#define IOAPIC_REG_ARB_ID 0x02 /* x86 IOAPIC only */
28
29/*ioapic delivery mode*/
30#define IOAPIC_FIXED 0x0
31#define IOAPIC_LOWEST_PRIORITY 0x1
32#define IOAPIC_PMI 0x2
33#define IOAPIC_NMI 0x4
34#define IOAPIC_INIT 0x5
35#define IOAPIC_EXTINT 0x7
36
37struct kvm_ioapic {
38 u64 base_address;
39 u32 ioregsel;
40 u32 id;
41 u32 irr;
42 u32 pad;
Sheng Yangcf9e4e12009-02-11 16:03:36 +080043 union kvm_ioapic_redirect_entry redirtbl[IOAPIC_NUM_PINS];
Zhang Xiantao82470192007-12-17 13:59:56 +080044 struct kvm_io_device dev;
45 struct kvm *kvm;
Marcelo Tosattif5244722008-07-26 17:01:00 -030046 void (*ack_notifier)(void *opaque, int irq);
Zhang Xiantao82470192007-12-17 13:59:56 +080047};
48
49#ifdef DEBUG
50#define ASSERT(x) \
51do { \
52 if (!(x)) { \
53 printk(KERN_EMERG "assertion failed %s: %d: %s\n", \
54 __FILE__, __LINE__, #x); \
55 BUG(); \
56 } \
57} while (0)
58#else
59#define ASSERT(x) do { } while (0)
60#endif
61
62static inline struct kvm_ioapic *ioapic_irqchip(struct kvm *kvm)
63{
64 return kvm->arch.vioapic;
65}
66
Gleb Natapov343f94f2009-03-05 16:34:54 +020067int kvm_apic_match_dest(struct kvm_vcpu *vcpu, struct kvm_lapic *source,
68 int short_hand, int dest, int dest_mode);
Gleb Natapove1035712009-03-05 16:34:59 +020069int kvm_apic_compare_prio(struct kvm_vcpu *vcpu1, struct kvm_vcpu *vcpu2);
Marcelo Tosattif5244722008-07-26 17:01:00 -030070void kvm_ioapic_update_eoi(struct kvm *kvm, int vector, int trigger_mode);
Zhang Xiantao82470192007-12-17 13:59:56 +080071int kvm_ioapic_init(struct kvm *kvm);
Gleb Natapov49256632009-02-04 17:28:14 +020072int kvm_ioapic_set_irq(struct kvm_ioapic *ioapic, int irq, int level);
Zhang Xiantao82470192007-12-17 13:59:56 +080073void kvm_ioapic_reset(struct kvm_ioapic *ioapic);
Gleb Natapov58c2dde2009-03-05 16:35:04 +020074int kvm_irq_delivery_to_apic(struct kvm *kvm, struct kvm_lapic *src,
75 struct kvm_lapic_irq *irq);
Zhang Xiantao82470192007-12-17 13:59:56 +080076#endif