]> git.proxmox.com Git - pve-qemu.git/blob - debian/patches/pve/0020-PVE-Config-Revert-target-i386-disable-LINT0-after-re.patch
754d5ab5ee4e3c2c386ab8785e582a67bb7bf40e
[pve-qemu.git] / debian / patches / pve / 0020-PVE-Config-Revert-target-i386-disable-LINT0-after-re.patch
1 From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
2 From: Wolfgang Bumiller <w.bumiller@proxmox.com>
3 Date: Mon, 6 Apr 2020 12:16:49 +0200
4 Subject: [PATCH] PVE: [Config] Revert "target-i386: disable LINT0 after reset"
5
6 This reverts commit b8eb5512fd8a115f164edbbe897cdf8884920ccb.
7
8 Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
9 ---
10 hw/intc/apic_common.c | 9 +++++++++
11 1 file changed, 9 insertions(+)
12
13 diff --git a/hw/intc/apic_common.c b/hw/intc/apic_common.c
14 index 97dd96dffa..15e5acd238 100644
15 --- a/hw/intc/apic_common.c
16 +++ b/hw/intc/apic_common.c
17 @@ -279,6 +279,15 @@ static void apic_reset_common(DeviceState *dev)
18 info->vapic_base_update(s);
19
20 apic_init_reset(dev);
21 +
22 + if (bsp) {
23 + /*
24 + * LINT0 delivery mode on CPU #0 is set to ExtInt at initialization
25 + * time typically by BIOS, so PIC interrupt can be delivered to the
26 + * processor when local APIC is enabled.
27 + */
28 + s->lvt[APIC_LVT_LINT0] = 0x700;
29 + }
30 }
31
32 static const VMStateDescription vmstate_apic_common;