ResetSystemAcpiGed.h 503 B

1234567891011121314151617181920212223
  1. /** @file
  2. ResetSystem lib head file.
  3. Copyright (c) 2022 Loongson Technology Corporation Limited. All rights reserved.<BR>
  4. SPDX-License-Identifier: BSD-2-Clause-Patent
  5. **/
  6. #ifndef RESET_SYSTEM_ACPI_GED_H_
  7. #define RESET_SYSTEM_ACPI_GED_H_
  8. #include <Base.h>
  9. typedef struct {
  10. UINT64 SleepControlRegAddr;
  11. UINT64 SleepStatusRegAddr;
  12. UINT64 ResetRegAddr;
  13. UINT8 ResetValue;
  14. } POWER_MANAGER;
  15. extern POWER_MANAGER mPowerManager;
  16. #endif // RESET_SYSTEM_ACPI_GED_H_