MiscResetCapabilitiesData.c 1016 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. /** @file
  2. Copyright (c) 2004 - 2014, Intel Corporation. All rights reserved.<BR>
  3. SPDX-License-Identifier: BSD-2-Clause-Patent
  4. Module Name:
  5. MiscResetCapabilitiesData.c
  6. Abstract:
  7. Static data of Reset Capabilities information.
  8. Reset Capabilities information is Misc. subclass type 17 and SMBIOS type 23.
  9. **/
  10. #include "CommonHeader.h"
  11. #include "MiscSubclassDriver.h"
  12. //
  13. // Static (possibly build generated) Bios Vendor data.
  14. //
  15. MISC_SMBIOS_TABLE_DATA(EFI_MISC_RESET_CAPABILITIES, MiscResetCapabilities)
  16. = {
  17. { // ResetCapabilities
  18. 0, // Status
  19. 0, // BootOption
  20. 0, // BootOptionOnLimit
  21. 0, // WatchdogTimerPresent
  22. 0 // Reserved
  23. },
  24. 0xFFFF, // ResetCount
  25. 0xFFFF, // ResetLimit
  26. 0xFFFF, // ResetTimerInterval
  27. 0xFFFF // ResetTimeout
  28. };