mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-04 00:03:54 -06:00
hw/acpi/ich9: Add periodic and swsmi timer
This patch implements the periodic and the swsmi ICH9 chipset timers. They are especially useful when prototyping UEFI firmware (e.g. with EDK2's OVMF) using QEMU. For backwards compatibility, the compat properties "x-smi-swsmi-timer", and "x-smi-periodic-timer" are introduced. Additionally, writes to the SMI_STS register are enabled for the corresponding two bits using a write mask to make future work easier. Signed-off-by: Dominic Prinz <git@dprinz.de> Message-Id: <1d90ea69e01ab71a0f2ced116801dc78e04f4448.1725991505.git.git@dprinz.de> Reviewed-by: Michael S. Tsirkin <mst@redhat.com> Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
This commit is contained in:
parent
95b717a815
commit
6e3c2d58e9
8 changed files with 168 additions and 2 deletions
|
@ -43,6 +43,7 @@
|
|||
#include "hw/southbridge/ich9.h"
|
||||
#include "hw/acpi/acpi.h"
|
||||
#include "hw/acpi/ich9.h"
|
||||
#include "hw/acpi/ich9_timer.h"
|
||||
#include "hw/pci/pci_bus.h"
|
||||
#include "hw/qdev-properties.h"
|
||||
#include "sysemu/runstate.h"
|
||||
|
@ -531,6 +532,15 @@ ich9_lpc_pmcon_update(ICH9LPCState *lpc)
|
|||
uint16_t gen_pmcon_1 = pci_get_word(lpc->d.config + ICH9_LPC_GEN_PMCON_1);
|
||||
uint16_t wmask;
|
||||
|
||||
if (lpc->pm.swsmi_timer_enabled) {
|
||||
ich9_pm_update_swsmi_timer(
|
||||
&lpc->pm, lpc->pm.smi_en & ICH9_PMIO_SMI_EN_SWSMI_EN);
|
||||
}
|
||||
if (lpc->pm.periodic_timer_enabled) {
|
||||
ich9_pm_update_periodic_timer(
|
||||
&lpc->pm, lpc->pm.smi_en & ICH9_PMIO_SMI_EN_PERIODIC_EN);
|
||||
}
|
||||
|
||||
if (gen_pmcon_1 & ICH9_LPC_GEN_PMCON_1_SMI_LOCK) {
|
||||
wmask = pci_get_word(lpc->d.wmask + ICH9_LPC_GEN_PMCON_1);
|
||||
wmask &= ~ICH9_LPC_GEN_PMCON_1_SMI_LOCK;
|
||||
|
@ -826,6 +836,10 @@ static Property ich9_lpc_properties[] = {
|
|||
ICH9_LPC_SMI_F_CPU_HOTPLUG_BIT, true),
|
||||
DEFINE_PROP_BIT64("x-smi-cpu-hotunplug", ICH9LPCState, smi_host_features,
|
||||
ICH9_LPC_SMI_F_CPU_HOT_UNPLUG_BIT, true),
|
||||
DEFINE_PROP_BOOL("x-smi-swsmi-timer", ICH9LPCState,
|
||||
pm.swsmi_timer_enabled, true),
|
||||
DEFINE_PROP_BOOL("x-smi-periodic-timer", ICH9LPCState,
|
||||
pm.periodic_timer_enabled, true),
|
||||
DEFINE_PROP_END_OF_LIST(),
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue