public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
* [PATCH v3 0/5] Introduce EDKII Redfish Platform Config Protocol
@ 2023-04-19  9:09 Nickle Wang
  2023-04-19 20:14 ` Igor Kulchytskyy
  0 siblings, 1 reply; 2+ messages in thread
From: Nickle Wang @ 2023-04-19  9:09 UTC (permalink / raw)
  To: devel; +Cc: Abner Chang, Igor Kulchytskyy, Nick Ramirez

Introduce EDKII Redfish Platform Config Protocol and corresponding 
libraries. This protocol is the interface between UEFI platform 
configuration and Redfish property. It could handle different firmware
implementation and the implementation here is to map EDK2 HII questions
to the properties defined in Redfish schema. So that user can configure
UEFI platform configuration through RESTful interface provided by BMC.

Signed-off-by: Nickle Wang <nicklew@nvidia.com>
Cc: Abner Chang <abner.chang@amd.com>
Cc: Igor Kulchytskyy <igork@ami.com>
Cc: Nick Ramirez <nramirez@nvidia.com>

Nickle Wang (5):
  RedfishPkg: introduce EDKII_REDFISH_PLATFORM_CONFIG_PROTOCOL
  RedfishPkg: introduce HII utility helper library
  RedfishPkg: Implementation of EDKII_REDFISH_PLATFORM_CONFIG_PROTOCOL
  RedfishPkg: Helper library of EDKII_REDFISH_PLATFORM_CONFIG_PROTOCOL
  RedfishPkg: Add Redfish Platform Config Protocol to RedfishPkg

 RedfishPkg/RedfishPkg.dec                     |   12 +
 RedfishPkg/RedfishComponents.dsc.inc          |    3 +
 RedfishPkg/RedfishLibs.dsc.inc                |    2 +
 RedfishPkg/RedfishPkg.dsc                     |    4 +
 .../Library/HiiUtilityLib/HiiUtilityLib.inf   |   62 +
 .../RedfishPlatformConfigLib.inf              |   41 +
 .../RedfishPlatformConfigDxe.inf              |   55 +
 RedfishPkg/Include/Library/HiiUtilityLib.h    | 1204 ++++
 .../Library/RedfishPlatformConfigLib.h        |  143 +
 .../Protocol/EdkIIRedfishPlatformConfig.h     |  257 +
 .../Library/HiiUtilityLib/HiiExpression.h     |  191 +
 .../Library/HiiUtilityLib/HiiInternal.h       |  376 ++
 .../RedfishPlatformConfigInternal.h           |   35 +
 .../RedfishPlatformConfigDxe.h                |   81 +
 .../RedfishPlatformConfigImpl.h               |  334 +
 .../Library/HiiUtilityLib/HiiExpression.c     | 1439 ++++
 .../Library/HiiUtilityLib/HiiIfrParse.c       | 2715 ++++++++
 .../HiiUtilityLib/HiiUtilityInternal.c        | 5770 +++++++++++++++++
 .../Library/HiiUtilityLib/HiiUtilityLib.c     |  810 +++
 .../RedfishPlatformConfigLib.c                |  310 +
 .../RedfishPlatformConfigDxe.c                | 2495 +++++++
 .../RedfishPlatformConfigImpl.c               | 1364 ++++
 RedfishPkg/Redfish.fdf.inc                    |    3 +
 23 files changed, 17706 insertions(+)
 create mode 100644 RedfishPkg/Library/HiiUtilityLib/HiiUtilityLib.inf
 create mode 100644 RedfishPkg/Library/RedfishPlatformConfigLib/RedfishPlatformConfigLib.inf
 create mode 100644 RedfishPkg/RedfishPlatformConfigDxe/RedfishPlatformConfigDxe.inf
 create mode 100644 RedfishPkg/Include/Library/HiiUtilityLib.h
 create mode 100644 RedfishPkg/Include/Library/RedfishPlatformConfigLib.h
 create mode 100644 RedfishPkg/Include/Protocol/EdkIIRedfishPlatformConfig.h
 create mode 100644 RedfishPkg/Library/HiiUtilityLib/HiiExpression.h
 create mode 100644 RedfishPkg/Library/HiiUtilityLib/HiiInternal.h
 create mode 100644 RedfishPkg/Library/RedfishPlatformConfigLib/RedfishPlatformConfigInternal.h
 create mode 100644 RedfishPkg/RedfishPlatformConfigDxe/RedfishPlatformConfigDxe.h
 create mode 100644 RedfishPkg/RedfishPlatformConfigDxe/RedfishPlatformConfigImpl.h
 create mode 100644 RedfishPkg/Library/HiiUtilityLib/HiiExpression.c
 create mode 100644 RedfishPkg/Library/HiiUtilityLib/HiiIfrParse.c
 create mode 100644 RedfishPkg/Library/HiiUtilityLib/HiiUtilityInternal.c
 create mode 100644 RedfishPkg/Library/HiiUtilityLib/HiiUtilityLib.c
 create mode 100644 RedfishPkg/Library/RedfishPlatformConfigLib/RedfishPlatformConfigLib.c
 create mode 100644 RedfishPkg/RedfishPlatformConfigDxe/RedfishPlatformConfigDxe.c
 create mode 100644 RedfishPkg/RedfishPlatformConfigDxe/RedfishPlatformConfigImpl.c

-- 
2.17.1


^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [PATCH v3 0/5] Introduce EDKII Redfish Platform Config Protocol
  2023-04-19  9:09 [PATCH v3 0/5] Introduce EDKII Redfish Platform Config Protocol Nickle Wang
@ 2023-04-19 20:14 ` Igor Kulchytskyy
  0 siblings, 0 replies; 2+ messages in thread
From: Igor Kulchytskyy @ 2023-04-19 20:14 UTC (permalink / raw)
  To: Nickle Wang, devel@edk2.groups.io; +Cc: Abner Chang, Nick Ramirez

Full PATCH reviewed
Reviewed-by: Igor Kulchytskyy <igork @ami.com>

-----Original Message-----
From: Nickle Wang <nicklew@nvidia.com>
Sent: Wednesday, April 19, 2023 5:09 AM
To: devel@edk2.groups.io
Cc: Abner Chang <abner.chang@amd.com>; Igor Kulchytskyy <igork@ami.com>; Nick Ramirez <nramirez@nvidia.com>
Subject: [EXTERNAL] [PATCH v3 0/5] Introduce EDKII Redfish Platform Config Protocol


**CAUTION: The e-mail below is from an external source. Please exercise caution before opening attachments, clicking links, or following guidance.**

Introduce EDKII Redfish Platform Config Protocol and corresponding
libraries. This protocol is the interface between UEFI platform
configuration and Redfish property. It could handle different firmware
implementation and the implementation here is to map EDK2 HII questions
to the properties defined in Redfish schema. So that user can configure
UEFI platform configuration through RESTful interface provided by BMC.

Signed-off-by: Nickle Wang <nicklew@nvidia.com>
Cc: Abner Chang <abner.chang@amd.com>
Cc: Igor Kulchytskyy <igork@ami.com>
Cc: Nick Ramirez <nramirez@nvidia.com>

Nickle Wang (5):
  RedfishPkg: introduce EDKII_REDFISH_PLATFORM_CONFIG_PROTOCOL
  RedfishPkg: introduce HII utility helper library
  RedfishPkg: Implementation of EDKII_REDFISH_PLATFORM_CONFIG_PROTOCOL
  RedfishPkg: Helper library of EDKII_REDFISH_PLATFORM_CONFIG_PROTOCOL
  RedfishPkg: Add Redfish Platform Config Protocol to RedfishPkg

 RedfishPkg/RedfishPkg.dec                     |   12 +
 RedfishPkg/RedfishComponents.dsc.inc          |    3 +
 RedfishPkg/RedfishLibs.dsc.inc                |    2 +
 RedfishPkg/RedfishPkg.dsc                     |    4 +
 .../Library/HiiUtilityLib/HiiUtilityLib.inf   |   62 +
 .../RedfishPlatformConfigLib.inf              |   41 +
 .../RedfishPlatformConfigDxe.inf              |   55 +
 RedfishPkg/Include/Library/HiiUtilityLib.h    | 1204 ++++
 .../Library/RedfishPlatformConfigLib.h        |  143 +
 .../Protocol/EdkIIRedfishPlatformConfig.h     |  257 +
 .../Library/HiiUtilityLib/HiiExpression.h     |  191 +
 .../Library/HiiUtilityLib/HiiInternal.h       |  376 ++
 .../RedfishPlatformConfigInternal.h           |   35 +
 .../RedfishPlatformConfigDxe.h                |   81 +
 .../RedfishPlatformConfigImpl.h               |  334 +
 .../Library/HiiUtilityLib/HiiExpression.c     | 1439 ++++
 .../Library/HiiUtilityLib/HiiIfrParse.c       | 2715 ++++++++
 .../HiiUtilityLib/HiiUtilityInternal.c        | 5770 +++++++++++++++++
 .../Library/HiiUtilityLib/HiiUtilityLib.c     |  810 +++
 .../RedfishPlatformConfigLib.c                |  310 +
 .../RedfishPlatformConfigDxe.c                | 2495 +++++++
 .../RedfishPlatformConfigImpl.c               | 1364 ++++
 RedfishPkg/Redfish.fdf.inc                    |    3 +
 23 files changed, 17706 insertions(+)
 create mode 100644 RedfishPkg/Library/HiiUtilityLib/HiiUtilityLib.inf
 create mode 100644 RedfishPkg/Library/RedfishPlatformConfigLib/RedfishPlatformConfigLib.inf
 create mode 100644 RedfishPkg/RedfishPlatformConfigDxe/RedfishPlatformConfigDxe.inf
 create mode 100644 RedfishPkg/Include/Library/HiiUtilityLib.h
 create mode 100644 RedfishPkg/Include/Library/RedfishPlatformConfigLib.h
 create mode 100644 RedfishPkg/Include/Protocol/EdkIIRedfishPlatformConfig.h
 create mode 100644 RedfishPkg/Library/HiiUtilityLib/HiiExpression.h
 create mode 100644 RedfishPkg/Library/HiiUtilityLib/HiiInternal.h
 create mode 100644 RedfishPkg/Library/RedfishPlatformConfigLib/RedfishPlatformConfigInternal.h
 create mode 100644 RedfishPkg/RedfishPlatformConfigDxe/RedfishPlatformConfigDxe.h
 create mode 100644 RedfishPkg/RedfishPlatformConfigDxe/RedfishPlatformConfigImpl.h
 create mode 100644 RedfishPkg/Library/HiiUtilityLib/HiiExpression.c
 create mode 100644 RedfishPkg/Library/HiiUtilityLib/HiiIfrParse.c
 create mode 100644 RedfishPkg/Library/HiiUtilityLib/HiiUtilityInternal.c
 create mode 100644 RedfishPkg/Library/HiiUtilityLib/HiiUtilityLib.c
 create mode 100644 RedfishPkg/Library/RedfishPlatformConfigLib/RedfishPlatformConfigLib.c
 create mode 100644 RedfishPkg/RedfishPlatformConfigDxe/RedfishPlatformConfigDxe.c
 create mode 100644 RedfishPkg/RedfishPlatformConfigDxe/RedfishPlatformConfigImpl.c

--
2.17.1

-The information contained in this message may be confidential and proprietary to American Megatrends (AMI). This communication is intended to be read only by the individual or entity to whom it is addressed or by their designee. If the reader of this message is not the intended recipient, you are on notice that any distribution of this message, in any form, is strictly prohibited. Please promptly notify the sender by reply e-mail or by telephone at 770-246-8600, and then delete or destroy all copies of the transmission.

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2023-04-19 20:14 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-04-19  9:09 [PATCH v3 0/5] Introduce EDKII Redfish Platform Config Protocol Nickle Wang
2023-04-19 20:14 ` Igor Kulchytskyy

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox