mirror of https://github.com/xqemu/xqemu.git
Don't route PIC interrupts through the local APIC if the local APIC
config says so. By Ari Kivity. git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3371 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
parent
aacb758b65
commit
0e21e12bb3
33
hw/apic.c
33
hw/apic.c
|
@ -484,6 +484,25 @@ int apic_get_interrupt(CPUState *env)
|
||||||
return intno;
|
return intno;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
int apic_accept_pic_intr(CPUState *env)
|
||||||
|
{
|
||||||
|
APICState *s = env->apic_state;
|
||||||
|
uint32_t lvt0;
|
||||||
|
|
||||||
|
if (!s)
|
||||||
|
return -1;
|
||||||
|
|
||||||
|
lvt0 = s->lvt[APIC_LVT_LINT0];
|
||||||
|
|
||||||
|
if (s->id == 0 &&
|
||||||
|
((s->apicbase & MSR_IA32_APICBASE_ENABLE) == 0 ||
|
||||||
|
((lvt0 & APIC_LVT_MASKED) == 0 &&
|
||||||
|
((lvt0 >> 8) & 0x7) == APIC_DM_EXTINT)))
|
||||||
|
return 1;
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
static uint32_t apic_get_current_count(APICState *s)
|
static uint32_t apic_get_current_count(APICState *s)
|
||||||
{
|
{
|
||||||
int64_t d;
|
int64_t d;
|
||||||
|
@ -790,6 +809,13 @@ static void apic_reset(void *opaque)
|
||||||
{
|
{
|
||||||
APICState *s = opaque;
|
APICState *s = opaque;
|
||||||
apic_init_ipi(s);
|
apic_init_ipi(s);
|
||||||
|
|
||||||
|
/*
|
||||||
|
* LINT0 delivery mode is set to ExtInt at initialization time
|
||||||
|
* typically by BIOS, so PIC interrupt can be delivered to the
|
||||||
|
* processor when local APIC is enabled.
|
||||||
|
*/
|
||||||
|
s->lvt[APIC_LVT_LINT0] = 0x700;
|
||||||
}
|
}
|
||||||
|
|
||||||
static CPUReadMemoryFunc *apic_mem_read[3] = {
|
static CPUReadMemoryFunc *apic_mem_read[3] = {
|
||||||
|
@ -821,6 +847,13 @@ int apic_init(CPUState *env)
|
||||||
s->apicbase = 0xfee00000 |
|
s->apicbase = 0xfee00000 |
|
||||||
(s->id ? 0 : MSR_IA32_APICBASE_BSP) | MSR_IA32_APICBASE_ENABLE;
|
(s->id ? 0 : MSR_IA32_APICBASE_BSP) | MSR_IA32_APICBASE_ENABLE;
|
||||||
|
|
||||||
|
/*
|
||||||
|
* LINT0 delivery mode is set to ExtInt at initialization time
|
||||||
|
* typically by BIOS, so PIC interrupt can be delivered to the
|
||||||
|
* processor when local APIC is enabled.
|
||||||
|
*/
|
||||||
|
s->lvt[APIC_LVT_LINT0] = 0x700;
|
||||||
|
|
||||||
/* XXX: mapping more APICs at the same memory location */
|
/* XXX: mapping more APICs at the same memory location */
|
||||||
if (apic_io_memory == 0) {
|
if (apic_io_memory == 0) {
|
||||||
/* NOTE: the APIC is directly connected to the CPU - it is not
|
/* NOTE: the APIC is directly connected to the CPU - it is not
|
||||||
|
|
7
hw/pc.c
7
hw/pc.c
|
@ -93,6 +93,9 @@ int cpu_get_pic_interrupt(CPUState *env)
|
||||||
return intno;
|
return intno;
|
||||||
}
|
}
|
||||||
/* read the irq from the PIC */
|
/* read the irq from the PIC */
|
||||||
|
if (!apic_accept_pic_intr(env))
|
||||||
|
return -1;
|
||||||
|
|
||||||
intno = pic_read_irq(isa_pic);
|
intno = pic_read_irq(isa_pic);
|
||||||
return intno;
|
return intno;
|
||||||
}
|
}
|
||||||
|
@ -100,10 +103,8 @@ int cpu_get_pic_interrupt(CPUState *env)
|
||||||
static void pic_irq_request(void *opaque, int irq, int level)
|
static void pic_irq_request(void *opaque, int irq, int level)
|
||||||
{
|
{
|
||||||
CPUState *env = opaque;
|
CPUState *env = opaque;
|
||||||
if (level)
|
if (level && apic_accept_pic_intr(env))
|
||||||
cpu_interrupt(env, CPU_INTERRUPT_HARD);
|
cpu_interrupt(env, CPU_INTERRUPT_HARD);
|
||||||
else
|
|
||||||
cpu_reset_interrupt(env, CPU_INTERRUPT_HARD);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* PC cmos mappings */
|
/* PC cmos mappings */
|
||||||
|
|
1
vl.h
1
vl.h
|
@ -1139,6 +1139,7 @@ void irq_info(void);
|
||||||
typedef struct IOAPICState IOAPICState;
|
typedef struct IOAPICState IOAPICState;
|
||||||
|
|
||||||
int apic_init(CPUState *env);
|
int apic_init(CPUState *env);
|
||||||
|
int apic_accept_pic_intr(CPUState *env);
|
||||||
int apic_get_interrupt(CPUState *env);
|
int apic_get_interrupt(CPUState *env);
|
||||||
IOAPICState *ioapic_init(void);
|
IOAPICState *ioapic_init(void);
|
||||||
void ioapic_set_irq(void *opaque, int vector, int level);
|
void ioapic_set_irq(void *opaque, int vector, int level);
|
||||||
|
|
Loading…
Reference in New Issue