2
0

ich9_timer.h 557 B

1234567891011121314151617181920212223
  1. /*
  2. * QEMU ICH9 Timer emulation
  3. *
  4. * Copyright (c) 2024 Dominic Prinz <git@dprinz.de>
  5. *
  6. * This work is licensed under the terms of the GNU GPL, version 2 or later.
  7. * See the COPYING file in the top-level directory.
  8. */
  9. #ifndef HW_ACPI_ICH9_TIMER_H
  10. #define HW_ACPI_ICH9_TIMER_H
  11. #include "hw/acpi/ich9.h"
  12. void ich9_pm_update_swsmi_timer(ICH9LPCPMRegs *pm, bool enable);
  13. void ich9_pm_swsmi_timer_init(ICH9LPCPMRegs *pm);
  14. void ich9_pm_update_periodic_timer(ICH9LPCPMRegs *pm, bool enable);
  15. void ich9_pm_periodic_timer_init(ICH9LPCPMRegs *pm);
  16. #endif