CpuS3DataDxe.inf 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  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) 2013-2016, Intel Corporation. All rights reserved.<BR>
  13. # Copyright (c) 2015, Red Hat, Inc.
  14. #
  15. # SPDX-License-Identifier: BSD-2-Clause-Patent
  16. #
  17. ##
  18. [Defines]
  19. INF_VERSION = 0x00010005
  20. BASE_NAME = CpuS3DataDxe
  21. MODULE_UNI_FILE = CpuS3DataDxe.uni
  22. FILE_GUID = 4D2E57EE-0E3F-44DD-93C4-D3B57E96945D
  23. MODULE_TYPE = DXE_DRIVER
  24. VERSION_STRING = 1.0
  25. ENTRY_POINT = CpuS3DataInitialize
  26. # The following information is for reference only and not required by the build
  27. # tools.
  28. #
  29. # VALID_ARCHITECTURES = IA32 X64
  30. [Sources]
  31. CpuS3Data.c
  32. [Packages]
  33. MdePkg/MdePkg.dec
  34. MdeModulePkg/MdeModulePkg.dec
  35. UefiCpuPkg/UefiCpuPkg.dec
  36. [LibraryClasses]
  37. UefiDriverEntryPoint
  38. UefiBootServicesTableLib
  39. BaseMemoryLib
  40. DebugLib
  41. BaseLib
  42. MtrrLib
  43. MemoryAllocationLib
  44. [Guids]
  45. gEfiEndOfDxeEventGroupGuid ## CONSUMES ## Event
  46. [Protocols]
  47. gEfiMpServiceProtocolGuid ## CONSUMES
  48. [Pcd]
  49. gUefiCpuPkgTokenSpaceGuid.PcdCpuApStackSize ## CONSUMES
  50. gUefiCpuPkgTokenSpaceGuid.PcdCpuS3DataAddress ## PRODUCES
  51. gEfiMdeModulePkgTokenSpaceGuid.PcdAcpiS3Enable ## CONSUMES
  52. [Depex]
  53. gEfiMpServiceProtocolGuid
  54. [UserExtensions.TianoCore."ExtraFiles"]
  55. CpuS3DataDxeExtra.uni