1 #ifndef __KVM_IO_APIC_H
2 #define __KVM_IO_APIC_H
4 #include <linux/kvm_host.h>
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
16 #define IOAPIC_DEFAULT_BASE_ADDRESS 0xfec00000
17 #define IOAPIC_MEM_LENGTH 0x100
19 /* Direct registers. */
20 #define IOAPIC_REG_SELECT 0x00
21 #define IOAPIC_REG_WINDOW 0x10
22 #define IOAPIC_REG_EOI 0x40 /* IA64 IOSAPIC only */
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 */
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
43 union ioapic_redir_entry
{
58 } redirtbl
[IOAPIC_NUM_PINS
];
59 struct kvm_io_device dev
;
67 printk(KERN_EMERG "assertion failed %s: %d: %s\n", \
68 __FILE__, __LINE__, #x); \
73 #define ASSERT(x) do { } while (0)
76 static inline struct kvm_ioapic
*ioapic_irqchip(struct kvm
*kvm
)
78 return kvm
->arch
.vioapic
;
82 static inline int irqchip_in_kernel(struct kvm
*kvm
)
88 struct kvm_vcpu
*kvm_get_lowest_prio_vcpu(struct kvm
*kvm
, u8 vector
,
89 unsigned long bitmap
);
90 void kvm_ioapic_update_eoi(struct kvm
*kvm
, int vector
);
91 int kvm_ioapic_init(struct kvm
*kvm
);
92 void kvm_ioapic_set_irq(struct kvm_ioapic
*ioapic
, int irq
, int level
);
93 void kvm_ioapic_reset(struct kvm_ioapic
*ioapic
);