Add RedfishPlatformConfigDxe debug capability that aligns with edk2 Redfish debug mechanism. - PcdRedfishPlatformConfigDebugProperty, add PCD to control RedfishPlatformConfigDxe subordinate of Redfish debug capabilities. - PcdRedfishPlatformConfigFeatureProperty, add PCD to manage RedfishPlatformConfigDxe features. Signed-off-by: Abner Chang <abner.chang@amd.com> Co-authored-by: Nickle Wang <nicklew@nvidia.com> Cc: Igor Kulchytskyy <igork@ami.com> Reviewed-by: Nickle Wang <nicklew@nvidia.com> Reviewed-by: Igor Kulchytskyy <igork@ami.com>
		
			
				
	
	
		
			64 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			INI
		
	
	
	
	
	
			
		
		
	
	
			64 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			INI
		
	
	
	
	
	
## @file
 | 
						|
#  Implementation of EDKII_REDFISH_PLATFORM_CONFIG_PROTOCOL interfaces.
 | 
						|
#
 | 
						|
#  (C) Copyright 2021 Hewlett Packard Enterprise Development LP<BR>
 | 
						|
#  Copyright (c) 2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
 | 
						|
#  Copyright (C) 2024 Advanced Micro Devices, Inc. All rights reserved.<BR>
 | 
						|
#
 | 
						|
#  SPDX-License-Identifier: BSD-2-Clause-Patent
 | 
						|
#
 | 
						|
##
 | 
						|
 | 
						|
[Defines]
 | 
						|
  INF_VERSION               = 0x00010005
 | 
						|
  BASE_NAME                 = RedfishPlatformConfigDxe
 | 
						|
  FILE_GUID                 = BEAEFFE1-0633-41B5-913C-9389339C2927
 | 
						|
  MODULE_TYPE               = DXE_DRIVER
 | 
						|
  VERSION_STRING            = 1.0
 | 
						|
  ENTRY_POINT               = RedfishPlatformConfigDxeEntryPoint
 | 
						|
  UNLOAD_IMAGE              = RedfishPlatformConfigDxeUnload
 | 
						|
 | 
						|
[Packages]
 | 
						|
  MdePkg/MdePkg.dec
 | 
						|
  MdeModulePkg/MdeModulePkg.dec
 | 
						|
  RedfishPkg/RedfishPkg.dec
 | 
						|
 | 
						|
[Sources]
 | 
						|
  RedfishPlatformConfigCapability.c
 | 
						|
  RedfishPlatformConfigDxe.h
 | 
						|
  RedfishPlatformConfigDxe.c
 | 
						|
  RedfishPlatformConfigImpl.h
 | 
						|
  RedfishPlatformConfigImpl.c
 | 
						|
 | 
						|
[LibraryClasses]
 | 
						|
  BaseLib
 | 
						|
  BaseMemoryLib
 | 
						|
  DebugLib
 | 
						|
  DevicePathLib
 | 
						|
  HiiLib
 | 
						|
  HiiUtilityLib
 | 
						|
  MemoryAllocationLib
 | 
						|
  PcdLib
 | 
						|
  PrintLib
 | 
						|
  RedfishDebugLib
 | 
						|
  UefiLib
 | 
						|
  UefiBootServicesTableLib
 | 
						|
  UefiRuntimeServicesTableLib
 | 
						|
  UefiDriverEntryPoint
 | 
						|
 | 
						|
[Protocols]
 | 
						|
  gEdkIIRedfishPlatformConfigProtocolGuid ## PRODUCED
 | 
						|
  gEfiHiiDatabaseProtocolGuid             ## CONSUMED
 | 
						|
  gEfiHiiStringProtocolGuid               ## CONSUMED
 | 
						|
  gEfiRegularExpressionProtocolGuid       ## CONSUMED
 | 
						|
 | 
						|
[Guids]
 | 
						|
  gEfiRegexSyntaxTypePerlGuid             ## CONSUMED
 | 
						|
 | 
						|
[FixedPcd]
 | 
						|
 gEfiRedfishPkgTokenSpaceGuid.PcdRedfishPlatformConfigFeatureProperty
 | 
						|
 gEfiRedfishPkgTokenSpaceGuid.PcdRedfishPlatformConfigDebugProperty
 | 
						|
 | 
						|
[Depex]
 | 
						|
  TRUE
 |