2018-01-15 17:00:23 +03:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
2017-06-06 14:22:50 +03:00
|
|
|
From: Wolfgang Bumiller <w.bumiller@proxmox.com>
|
|
|
|
Date: Mon, 4 Jul 2016 15:02:26 +0200
|
2018-08-30 16:00:07 +03:00
|
|
|
Subject: [PATCH] PVE: [Config] Revert "target-i386: disable LINT0 after reset"
|
2017-06-06 14:22:50 +03:00
|
|
|
|
|
|
|
This reverts commit b8eb5512fd8a115f164edbbe897cdf8884920ccb.
|
2019-06-06 13:58:15 +03:00
|
|
|
|
|
|
|
Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
|
2017-06-06 14:22:50 +03:00
|
|
|
---
|
|
|
|
hw/intc/apic_common.c | 9 +++++++++
|
|
|
|
1 file changed, 9 insertions(+)
|
|
|
|
|
|
|
|
diff --git a/hw/intc/apic_common.c b/hw/intc/apic_common.c
|
2019-11-20 17:45:35 +03:00
|
|
|
index e764a2bb03..f66ea72d78 100644
|
2017-06-06 14:22:50 +03:00
|
|
|
--- a/hw/intc/apic_common.c
|
|
|
|
+++ b/hw/intc/apic_common.c
|
2019-11-20 17:45:35 +03:00
|
|
|
@@ -258,6 +258,15 @@ static void apic_reset_common(DeviceState *dev)
|
2017-06-06 14:22:50 +03:00
|
|
|
info->vapic_base_update(s);
|
|
|
|
|
|
|
|
apic_init_reset(dev);
|
|
|
|
+
|
|
|
|
+ if (bsp) {
|
|
|
|
+ /*
|
|
|
|
+ * LINT0 delivery mode on CPU #0 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;
|
|
|
|
+ }
|
|
|
|
}
|
|
|
|
|
|
|
|
/* This function is only used for old state version 1 and 2 */
|