lapic.h 6.4 KB
Newer Older
1 2 3
#ifndef __KVM_X86_LAPIC_H
#define __KVM_X86_LAPIC_H

4
#include <kvm/iodev.h>
5 6 7

#include <linux/kvm_host.h>

8 9
#define KVM_APIC_INIT		0
#define KVM_APIC_SIPI		1
10
#define KVM_APIC_LVT_NUM	6
11

12 13 14
struct kvm_timer {
	struct hrtimer timer;
	s64 period; 				/* unit: ns */
15
	u32 timer_mode;
16 17
	u32 timer_mode_mask;
	u64 tscdeadline;
18
	u64 expired_tscdeadline;
19 20 21
	atomic_t pending;			/* accumulated triggered timers */
};

22 23 24
struct kvm_lapic {
	unsigned long base_address;
	struct kvm_io_device dev;
25 26
	struct kvm_timer lapic_timer;
	u32 divide_count;
27
	struct kvm_vcpu *vcpu;
28
	bool sw_enabled;
29
	bool irr_pending;
30
	bool lvt0_in_nmi_mode;
M
Michael S. Tsirkin 已提交
31 32 33 34
	/* Number of bits set in ISR. */
	s16 isr_count;
	/* The highest vector set in ISR; if -1 - invalid, must scan ISR. */
	int highest_isr_cache;
35 36 37 38 39
	/**
	 * APIC register page.  The layout matches the register layout seen by
	 * the guest 1:1, because it is accessed by the vmx microcode.
	 * Note: Only one register, the TPR, is used by the microcode.
	 */
40
	void *regs;
A
Avi Kivity 已提交
41
	gpa_t vapic_addr;
42
	struct gfn_to_hva_cache vapic_cache;
43 44
	unsigned long pending_events;
	unsigned int sipi_vector;
45
};
46 47 48

struct dest_map;

49 50 51 52 53 54
int kvm_create_lapic(struct kvm_vcpu *vcpu);
void kvm_free_lapic(struct kvm_vcpu *vcpu);

int kvm_apic_has_interrupt(struct kvm_vcpu *vcpu);
int kvm_apic_accept_pic_intr(struct kvm_vcpu *vcpu);
int kvm_get_apic_interrupt(struct kvm_vcpu *vcpu);
55
void kvm_apic_accept_events(struct kvm_vcpu *vcpu);
56
void kvm_lapic_reset(struct kvm_vcpu *vcpu, bool init_event);
57 58
u64 kvm_lapic_get_cr8(struct kvm_vcpu *vcpu);
void kvm_lapic_set_tpr(struct kvm_vcpu *vcpu, unsigned long cr8);
59
void kvm_lapic_set_eoi(struct kvm_vcpu *vcpu);
60
void kvm_lapic_set_base(struct kvm_vcpu *vcpu, u64 value);
61
u64 kvm_lapic_get_base(struct kvm_vcpu *vcpu);
62
void kvm_apic_set_version(struct kvm_vcpu *vcpu);
63 64 65 66 67
int kvm_lapic_reg_write(struct kvm_lapic *apic, u32 reg, u32 val);
int kvm_lapic_reg_read(struct kvm_lapic *apic, u32 offset, int len,
		       void *data);
bool kvm_apic_match_dest(struct kvm_vcpu *vcpu, struct kvm_lapic *source,
			   int short_hand, unsigned int dest, int dest_mode);
68

69
void __kvm_apic_update_irr(u32 *pir, void *regs);
70
void kvm_apic_update_irr(struct kvm_vcpu *vcpu, u32 *pir);
71
int kvm_apic_set_irq(struct kvm_vcpu *vcpu, struct kvm_lapic_irq *irq,
72
		     struct dest_map *dest_map);
A
Avi Kivity 已提交
73
int kvm_apic_local_deliver(struct kvm_lapic *apic, int lvt_type);
74

75
bool kvm_irq_delivery_to_apic_fast(struct kvm *kvm, struct kvm_lapic *src,
76
		struct kvm_lapic_irq *irq, int *r, struct dest_map *dest_map);
77

78
u64 kvm_get_apic_base(struct kvm_vcpu *vcpu);
79
int kvm_set_apic_base(struct kvm_vcpu *vcpu, struct msr_data *msr_info);
80 81
void kvm_apic_post_state_restore(struct kvm_vcpu *vcpu,
		struct kvm_lapic_state *s);
82 83
int kvm_lapic_find_highest_irr(struct kvm_vcpu *vcpu);

84 85 86
u64 kvm_get_lapic_tscdeadline_msr(struct kvm_vcpu *vcpu);
void kvm_set_lapic_tscdeadline_msr(struct kvm_vcpu *vcpu, u64 data);

87
void kvm_apic_write_nodecode(struct kvm_vcpu *vcpu, u32 offset);
88
void kvm_apic_set_eoi_accelerated(struct kvm_vcpu *vcpu, int vector);
89

90
int kvm_lapic_set_vapic_addr(struct kvm_vcpu *vcpu, gpa_t vapic_addr);
A
Avi Kivity 已提交
91 92 93
void kvm_lapic_sync_from_vapic(struct kvm_vcpu *vcpu);
void kvm_lapic_sync_to_vapic(struct kvm_vcpu *vcpu);

G
Gleb Natapov 已提交
94 95
int kvm_x2apic_msr_write(struct kvm_vcpu *vcpu, u32 msr, u64 data);
int kvm_x2apic_msr_read(struct kvm_vcpu *vcpu, u32 msr, u64 *data);
G
Gleb Natapov 已提交
96 97 98 99 100 101

int kvm_hv_vapic_msr_write(struct kvm_vcpu *vcpu, u32 msr, u64 data);
int kvm_hv_vapic_msr_read(struct kvm_vcpu *vcpu, u32 msr, u64 *data);

static inline bool kvm_hv_vapic_assist_page_enabled(struct kvm_vcpu *vcpu)
{
102
	return vcpu->arch.hyperv.hv_vapic & HV_X64_MSR_APIC_ASSIST_PAGE_ENABLE;
G
Gleb Natapov 已提交
103
}
104 105

int kvm_lapic_enable_pv_eoi(struct kvm_vcpu *vcpu, u64 data);
106
void kvm_lapic_init(void);
107

108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125
#define VEC_POS(v) ((v) & (32 - 1))
#define REG_POS(v) (((v) >> 5) << 4)

static inline void kvm_lapic_set_vector(int vec, void *bitmap)
{
	set_bit(VEC_POS(vec), (bitmap) + REG_POS(vec));
}

static inline void kvm_lapic_set_irr(int vec, struct kvm_lapic *apic)
{
	kvm_lapic_set_vector(vec, apic->regs + APIC_IRR);
	/*
	 * irr_pending must be true if any interrupt is pending; set it after
	 * APIC_IRR to avoid race with apic_clear_irr
	 */
	apic->irr_pending = true;
}

126
static inline u32 kvm_lapic_get_reg(struct kvm_lapic *apic, int reg_off)
127
{
128
	return *((u32 *) (apic->regs + reg_off));
129 130
}

131 132 133 134 135
static inline void kvm_lapic_set_reg(struct kvm_lapic *apic, int reg_off, u32 val)
{
	*((u32 *) (apic->regs + reg_off)) = val;
}

136 137
extern struct static_key kvm_no_apic_vcpu;

138
static inline bool lapic_in_kernel(struct kvm_vcpu *vcpu)
139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155
{
	if (static_key_false(&kvm_no_apic_vcpu))
		return vcpu->arch.apic;
	return true;
}

extern struct static_key_deferred apic_hw_disabled;

static inline int kvm_apic_hw_enabled(struct kvm_lapic *apic)
{
	if (static_key_false(&apic_hw_disabled.key))
		return apic->vcpu->arch.apic_base & MSR_IA32_APICBASE_ENABLE;
	return MSR_IA32_APICBASE_ENABLE;
}

extern struct static_key_deferred apic_sw_disabled;

156
static inline bool kvm_apic_sw_enabled(struct kvm_lapic *apic)
157 158
{
	if (static_key_false(&apic_sw_disabled.key))
159 160
		return apic->sw_enabled;
	return true;
161 162 163 164
}

static inline bool kvm_apic_present(struct kvm_vcpu *vcpu)
{
165
	return lapic_in_kernel(vcpu) && kvm_apic_hw_enabled(vcpu->arch.apic);
166 167 168 169 170 171 172
}

static inline int kvm_lapic_enabled(struct kvm_vcpu *vcpu)
{
	return kvm_apic_present(vcpu) && kvm_apic_sw_enabled(vcpu->arch.apic);
}

173 174 175 176 177
static inline int apic_x2apic_mode(struct kvm_lapic *apic)
{
	return apic->vcpu->arch.apic_base & X2APIC_ENABLE;
}

178
static inline bool kvm_vcpu_apicv_active(struct kvm_vcpu *vcpu)
179
{
180
	return vcpu->arch.apic && vcpu->arch.apicv_active;
181 182
}

183 184
static inline bool kvm_apic_has_events(struct kvm_vcpu *vcpu)
{
185
	return lapic_in_kernel(vcpu) && vcpu->arch.apic->pending_events;
186 187
}

188 189 190 191 192 193
static inline bool kvm_lowest_prio_delivery(struct kvm_lapic_irq *irq)
{
	return (irq->delivery_mode == APIC_DM_LOWEST ||
			irq->msi_redir_hint);
}

194 195
static inline int kvm_lapic_latched_init(struct kvm_vcpu *vcpu)
{
196
	return lapic_in_kernel(vcpu) && test_bit(KVM_APIC_INIT, &vcpu->arch.apic->pending_events);
197 198
}

199 200
static inline int kvm_apic_id(struct kvm_lapic *apic)
{
201
	return (kvm_lapic_get_reg(apic, APIC_ID) >> 24) & 0xff;
202 203
}

204 205
bool kvm_apic_pending_eoi(struct kvm_vcpu *vcpu, int vector);

206 207
void wait_lapic_expire(struct kvm_vcpu *vcpu);

208 209
bool kvm_intr_is_single_vcpu_fast(struct kvm *kvm, struct kvm_lapic_irq *irq,
			struct kvm_vcpu **dest_vcpu);
210 211
int kvm_vector_to_index(u32 vector, u32 dest_vcpus,
			const unsigned long *bitmap, u32 bitmap_size);
212
#endif