2007-12-17 13:59:56 +08:00
|
|
|
#ifndef __KVM_X86_LAPIC_H
|
|
|
|
#define __KVM_X86_LAPIC_H
|
|
|
|
|
2015-03-26 22:39:29 +08:00
|
|
|
#include <kvm/iodev.h>
|
2007-12-17 13:59:56 +08:00
|
|
|
|
|
|
|
#include <linux/kvm_host.h>
|
|
|
|
|
2013-03-13 19:42:34 +08:00
|
|
|
#define KVM_APIC_INIT 0
|
|
|
|
#define KVM_APIC_SIPI 1
|
|
|
|
|
2012-07-26 23:01:50 +08:00
|
|
|
struct kvm_timer {
|
|
|
|
struct hrtimer timer;
|
|
|
|
s64 period; /* unit: ns */
|
2014-10-30 22:06:46 +08:00
|
|
|
u32 timer_mode;
|
2012-07-26 23:01:50 +08:00
|
|
|
u32 timer_mode_mask;
|
|
|
|
u64 tscdeadline;
|
2014-12-16 22:08:15 +08:00
|
|
|
u64 expired_tscdeadline;
|
2012-07-26 23:01:50 +08:00
|
|
|
atomic_t pending; /* accumulated triggered timers */
|
|
|
|
};
|
|
|
|
|
2007-12-17 13:59:56 +08:00
|
|
|
struct kvm_lapic {
|
|
|
|
unsigned long base_address;
|
|
|
|
struct kvm_io_device dev;
|
2009-02-23 21:57:41 +08:00
|
|
|
struct kvm_timer lapic_timer;
|
|
|
|
u32 divide_count;
|
2007-12-17 13:59:56 +08:00
|
|
|
struct kvm_vcpu *vcpu;
|
2014-10-30 22:06:45 +08:00
|
|
|
bool sw_enabled;
|
2009-06-11 16:06:51 +08:00
|
|
|
bool irr_pending;
|
2012-06-25 00:24:26 +08:00
|
|
|
/* 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;
|
2012-06-25 00:24:19 +08:00
|
|
|
/**
|
|
|
|
* 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.
|
|
|
|
*/
|
2007-12-17 13:59:56 +08:00
|
|
|
void *regs;
|
2007-10-25 22:52:32 +08:00
|
|
|
gpa_t vapic_addr;
|
2013-11-21 02:23:22 +08:00
|
|
|
struct gfn_to_hva_cache vapic_cache;
|
2013-03-13 19:42:34 +08:00
|
|
|
unsigned long pending_events;
|
|
|
|
unsigned int sipi_vector;
|
2007-12-17 13:59:56 +08:00
|
|
|
};
|
|
|
|
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);
|
2013-03-13 19:42:34 +08:00
|
|
|
void kvm_apic_accept_events(struct kvm_vcpu *vcpu);
|
KVM: x86: INIT and reset sequences are different
x86 architecture defines differences between the reset and INIT sequences.
INIT does not initialize the FPU (including MMX, XMM, YMM, etc.), TSC, PMU,
MSRs (in general), MTRRs machine-check, APIC ID, APIC arbitration ID and BSP.
References (from Intel SDM):
"If the MP protocol has completed and a BSP is chosen, subsequent INITs (either
to a specific processor or system wide) do not cause the MP protocol to be
repeated." [8.4.2: MP Initialization Protocol Requirements and Restrictions]
[Table 9-1. IA-32 Processor States Following Power-up, Reset, or INIT]
"If the processor is reset by asserting the INIT# pin, the x87 FPU state is not
changed." [9.2: X87 FPU INITIALIZATION]
"The state of the local APIC following an INIT reset is the same as it is after
a power-up or hardware reset, except that the APIC ID and arbitration ID
registers are not affected." [10.4.7.3: Local APIC State After an INIT Reset
("Wait-for-SIPI" State)]
Signed-off-by: Nadav Amit <namit@cs.technion.ac.il>
Message-Id: <1428924848-28212-1-git-send-email-namit@cs.technion.ac.il>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
2015-04-13 19:34:08 +08:00
|
|
|
void kvm_lapic_reset(struct kvm_vcpu *vcpu, bool init_event);
|
2007-12-17 13:59:56 +08:00
|
|
|
u64 kvm_lapic_get_cr8(struct kvm_vcpu *vcpu);
|
|
|
|
void kvm_lapic_set_tpr(struct kvm_vcpu *vcpu, unsigned long cr8);
|
2011-08-30 18:56:17 +08:00
|
|
|
void kvm_lapic_set_eoi(struct kvm_vcpu *vcpu);
|
2007-12-17 13:59:56 +08:00
|
|
|
void kvm_lapic_set_base(struct kvm_vcpu *vcpu, u64 value);
|
2008-04-28 03:14:13 +08:00
|
|
|
u64 kvm_lapic_get_base(struct kvm_vcpu *vcpu);
|
2009-07-05 22:39:35 +08:00
|
|
|
void kvm_apic_set_version(struct kvm_vcpu *vcpu);
|
2007-12-17 13:59:56 +08:00
|
|
|
|
2013-04-11 19:25:14 +08:00
|
|
|
void kvm_apic_update_tmr(struct kvm_vcpu *vcpu, u32 *tmr);
|
2015-02-03 23:58:17 +08:00
|
|
|
void __kvm_apic_update_irr(u32 *pir, void *regs);
|
2013-04-11 19:25:15 +08:00
|
|
|
void kvm_apic_update_irr(struct kvm_vcpu *vcpu, u32 *pir);
|
2013-04-11 19:21:37 +08:00
|
|
|
int kvm_apic_set_irq(struct kvm_vcpu *vcpu, struct kvm_lapic_irq *irq,
|
|
|
|
unsigned long *dest_map);
|
2011-11-10 20:57:21 +08:00
|
|
|
int kvm_apic_local_deliver(struct kvm_lapic *apic, int lvt_type);
|
2007-12-17 13:59:56 +08:00
|
|
|
|
2012-09-13 22:19:24 +08:00
|
|
|
bool kvm_irq_delivery_to_apic_fast(struct kvm *kvm, struct kvm_lapic *src,
|
2013-04-11 19:21:37 +08:00
|
|
|
struct kvm_lapic_irq *irq, int *r, unsigned long *dest_map);
|
2012-09-13 22:19:24 +08:00
|
|
|
|
2007-12-17 13:59:56 +08:00
|
|
|
u64 kvm_get_apic_base(struct kvm_vcpu *vcpu);
|
2014-01-24 23:48:44 +08:00
|
|
|
int kvm_set_apic_base(struct kvm_vcpu *vcpu, struct msr_data *msr_info);
|
2012-08-08 20:24:36 +08:00
|
|
|
void kvm_apic_post_state_restore(struct kvm_vcpu *vcpu,
|
|
|
|
struct kvm_lapic_state *s);
|
2007-12-17 13:59:56 +08:00
|
|
|
int kvm_lapic_find_highest_irr(struct kvm_vcpu *vcpu);
|
|
|
|
|
2011-09-22 16:55:52 +08:00
|
|
|
u64 kvm_get_lapic_tscdeadline_msr(struct kvm_vcpu *vcpu);
|
|
|
|
void kvm_set_lapic_tscdeadline_msr(struct kvm_vcpu *vcpu, u64 data);
|
|
|
|
|
2013-01-25 10:18:49 +08:00
|
|
|
void kvm_apic_write_nodecode(struct kvm_vcpu *vcpu, u32 offset);
|
2013-01-25 10:18:51 +08:00
|
|
|
void kvm_apic_set_eoi_accelerated(struct kvm_vcpu *vcpu, int vector);
|
2013-01-25 10:18:49 +08:00
|
|
|
|
2013-11-21 02:23:22 +08:00
|
|
|
int kvm_lapic_set_vapic_addr(struct kvm_vcpu *vcpu, gpa_t vapic_addr);
|
2007-10-25 22:52:32 +08:00
|
|
|
void kvm_lapic_sync_from_vapic(struct kvm_vcpu *vcpu);
|
|
|
|
void kvm_lapic_sync_to_vapic(struct kvm_vcpu *vcpu);
|
|
|
|
|
2009-07-05 22:39:36 +08:00
|
|
|
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);
|
2010-01-17 21:51:23 +08:00
|
|
|
|
|
|
|
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)
|
|
|
|
{
|
|
|
|
return vcpu->arch.hv_vapic & HV_X64_MSR_APIC_ASSIST_PAGE_ENABLE;
|
|
|
|
}
|
2012-06-25 00:25:07 +08:00
|
|
|
|
|
|
|
int kvm_lapic_enable_pv_eoi(struct kvm_vcpu *vcpu, u64 data);
|
2012-08-05 20:58:30 +08:00
|
|
|
void kvm_lapic_init(void);
|
2012-08-05 20:58:33 +08:00
|
|
|
|
|
|
|
static inline u32 kvm_apic_get_reg(struct kvm_lapic *apic, int reg_off)
|
|
|
|
{
|
|
|
|
return *((u32 *) (apic->regs + reg_off));
|
|
|
|
}
|
|
|
|
|
|
|
|
extern struct static_key kvm_no_apic_vcpu;
|
|
|
|
|
|
|
|
static inline bool kvm_vcpu_has_lapic(struct kvm_vcpu *vcpu)
|
|
|
|
{
|
|
|
|
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;
|
|
|
|
|
2014-10-30 22:06:47 +08:00
|
|
|
static inline bool kvm_apic_sw_enabled(struct kvm_lapic *apic)
|
2012-08-05 20:58:33 +08:00
|
|
|
{
|
|
|
|
if (static_key_false(&apic_sw_disabled.key))
|
2014-10-30 22:06:47 +08:00
|
|
|
return apic->sw_enabled;
|
|
|
|
return true;
|
2012-08-05 20:58:33 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline bool kvm_apic_present(struct kvm_vcpu *vcpu)
|
|
|
|
{
|
|
|
|
return kvm_vcpu_has_lapic(vcpu) && kvm_apic_hw_enabled(vcpu->arch.apic);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline int kvm_lapic_enabled(struct kvm_vcpu *vcpu)
|
|
|
|
{
|
|
|
|
return kvm_apic_present(vcpu) && kvm_apic_sw_enabled(vcpu->arch.apic);
|
|
|
|
}
|
|
|
|
|
2013-01-25 10:18:50 +08:00
|
|
|
static inline int apic_x2apic_mode(struct kvm_lapic *apic)
|
|
|
|
{
|
|
|
|
return apic->vcpu->arch.apic_base & X2APIC_ENABLE;
|
|
|
|
}
|
|
|
|
|
2013-01-25 10:18:51 +08:00
|
|
|
static inline bool kvm_apic_vid_enabled(struct kvm *kvm)
|
|
|
|
{
|
|
|
|
return kvm_x86_ops->vm_has_apicv(kvm);
|
|
|
|
}
|
|
|
|
|
2013-03-13 19:42:34 +08:00
|
|
|
static inline bool kvm_apic_has_events(struct kvm_vcpu *vcpu)
|
|
|
|
{
|
2015-05-30 20:31:24 +08:00
|
|
|
return kvm_vcpu_has_lapic(vcpu) && vcpu->arch.apic->pending_events;
|
2013-03-13 19:42:34 +08:00
|
|
|
}
|
|
|
|
|
2015-03-19 09:26:04 +08:00
|
|
|
static inline bool kvm_lowest_prio_delivery(struct kvm_lapic_irq *irq)
|
|
|
|
{
|
|
|
|
return (irq->delivery_mode == APIC_DM_LOWEST ||
|
|
|
|
irq->msi_redir_hint);
|
|
|
|
}
|
|
|
|
|
2015-04-01 21:06:40 +08:00
|
|
|
static inline int kvm_lapic_latched_init(struct kvm_vcpu *vcpu)
|
|
|
|
{
|
|
|
|
return kvm_vcpu_has_lapic(vcpu) && test_bit(KVM_APIC_INIT, &vcpu->arch.apic->pending_events);
|
|
|
|
}
|
|
|
|
|
2013-04-11 19:21:38 +08:00
|
|
|
bool kvm_apic_pending_eoi(struct kvm_vcpu *vcpu, int vector);
|
|
|
|
|
2014-12-16 22:08:15 +08:00
|
|
|
void wait_lapic_expire(struct kvm_vcpu *vcpu);
|
|
|
|
|
2007-12-17 13:59:56 +08:00
|
|
|
#endif
|