CpuS3DataDxe.uni 1.4 KB

12345678910111213141516171819202122232425262728293031323334
  1. // /** @file
  2. // ACPI CPU Data initialization module
  3. //
  4. // This module initializes the ACPI_CPU_DATA structure and registers the address
  5. // of this structure in the PcdCpuS3DataAddress PCD. This is a generic/simple
  6. // version of this module. It does not provide a machine check handler or CPU
  7. // register initialization tables for ACPI S3 resume. It also only supports the
  8. // number of CPUs reported by the MP Services Protocol, so this module does not
  9. // support hot plug CPUs. This module can be copied into a CPU specific package
  10. // and customized if these additional features are required.
  11. //
  12. // Copyright (c) 2015, Intel Corporation. All rights reserved.<BR>
  13. //
  14. // Copyright (c) 2015, Red Hat, Inc.
  15. //
  16. // SPDX-License-Identifier: BSD-2-Clause-Patent
  17. //
  18. // **/
  19. #string STR_MODULE_ABSTRACT
  20. #language en-US
  21. "ACPI CPU Data initialization module"
  22. #string STR_MODULE_DESCRIPTION
  23. #language en-US
  24. "This module initializes the ACPI_CPU_DATA structure and registers the address "
  25. "of this structure in the PcdCpuS3DataAddress PCD. This is a generic/simple "
  26. "version of this module. It does not provide a machine check handler or CPU "
  27. "register initialization tables for ACPI S3 resume. It also only supports the "
  28. "number of CPUs reported by the MP Services Protocol, so this module does not "
  29. "support hot plug CPUs. This module can be copied into a CPU specific package "
  30. "and customized if these additional features are required."