public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
* [edk2-devel] [PATCH 1/2] MdePkg/Include: Definitions of IPMI Get System Interface Capabilities
@ 2023-10-10  8:35 Chang, Abner via groups.io
  2023-10-10  8:35 ` [edk2-devel] [PATCH 2/2] MdeModulePkg/Include: API " Chang, Abner via groups.io
                   ` (2 more replies)
  0 siblings, 3 replies; 8+ messages in thread
From: Chang, Abner via groups.io @ 2023-10-10  8:35 UTC (permalink / raw)
  To: devel; +Cc: Abdul Lateef Attar, Michael D Kinney, Liming Gao, Zhiguang Liu

From: Abner Chang <abner.chang@amd.com>

Define the structure for IPMI Get System Interface
Capabilities command (0x57)

Signed-off-by: Abner Chang <abner.chang@amd.com>
Cc: Abdul Lateef Attar <AbdulLateef.Attar@amd.com>
Cc: Michael D Kinney <michael.d.kinney@intel.com>
Cc: Liming Gao <gaoliming@byosoft.com.cn>
Cc: Zhiguang Liu <zhiguang.liu@intel.com>
---
 MdePkg/Include/IndustryStandard/IpmiNetFnApp.h | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/MdePkg/Include/IndustryStandard/IpmiNetFnApp.h b/MdePkg/Include/IndustryStandard/IpmiNetFnApp.h
index b6bc91f46c2..d973b7155b3 100644
--- a/MdePkg/Include/IndustryStandard/IpmiNetFnApp.h
+++ b/MdePkg/Include/IndustryStandard/IpmiNetFnApp.h
@@ -1092,6 +1092,14 @@ typedef struct {
   UINT8                                          InputMaxMsgSize;
 } IPMI_GET_SYSTEM_INTERFACE_KCS_SMIC_CAPABILITIES_RESPONSE;
 
+//
+// Response of interface capability of SSIF/KCS/SMIC.
+//
+typedef union {
+  IPMI_GET_SYSTEM_INTERFACE_SSIF_CAPABILITIES_RESPONSE      *InterfaceSsifCapability;
+  IPMI_GET_SYSTEM_INTERFACE_KCS_SMIC_CAPABILITIES_RESPONSE  *InterfaceKcsSmicCapability;
+} IPMI_GET_SYSTEM_INTERFACE_CAPABILITIES_RESPONSE;
+
 //
 //  Definitions for Get System Interface Capabilities command SSIF transaction support
 //
-- 
2.37.1.windows.1



-=-=-=-=-=-=-=-=-=-=-=-
Groups.io Links: You receive all messages sent to this group.
View/Reply Online (#109479): https://edk2.groups.io/g/devel/message/109479
Mute This Topic: https://groups.io/mt/101870986/7686176
Group Owner: devel+owner@edk2.groups.io
Unsubscribe: https://edk2.groups.io/g/devel/unsub [rebecca@openfw.io]
-=-=-=-=-=-=-=-=-=-=-=-



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

* [edk2-devel] [PATCH 2/2] MdeModulePkg/Include: API of IPMI Get System Interface Capabilities
  2023-10-10  8:35 [edk2-devel] [PATCH 1/2] MdePkg/Include: Definitions of IPMI Get System Interface Capabilities Chang, Abner via groups.io
@ 2023-10-10  8:35 ` Chang, Abner via groups.io
  2023-10-11  1:54   ` [edk2-devel] 回复: " gaoliming via groups.io
  2023-10-11  1:53 ` [edk2-devel] 回复: [PATCH 1/2] MdePkg/Include: Definitions " gaoliming via groups.io
       [not found] ` <178CB21B63B8C29F.5378@groups.io>
  2 siblings, 1 reply; 8+ messages in thread
From: Chang, Abner via groups.io @ 2023-10-10  8:35 UTC (permalink / raw)
  To: devel; +Cc: Abdul Lateef Attar, Jian J Wang, Liming Gao

From: Abner Chang <abner.chang@amd.com>

Define the API for IPMI Get System Interface
Capabilities command (0x57)

Signed-off-by: Abner Chang <abner.chang@amd.com>
Cc: Abdul Lateef Attar <AbdulLateef.Attar@amd.com>
Cc: Jian J Wang <jian.j.wang@intel.com>
Cc: Liming Gao <gaoliming@byosoft.com.cn>
---
 MdeModulePkg/Include/Library/IpmiCommandLib.h | 17 +++++++++++++++++
 1 file changed, 17 insertions(+)

diff --git a/MdeModulePkg/Include/Library/IpmiCommandLib.h b/MdeModulePkg/Include/Library/IpmiCommandLib.h
index 7edaf36cbe5..a84124c01e9 100644
--- a/MdeModulePkg/Include/Library/IpmiCommandLib.h
+++ b/MdeModulePkg/Include/Library/IpmiCommandLib.h
@@ -249,6 +249,23 @@ IpmiGetChannelInfo (
   OUT UINT32                          *GetChannelInfoResponseSize
   );
 
+/**
+  This function gets system interface capability
+
+  @param[in]  InterfaceCapabilityRequest    Get system interface capability request.
+  @param[out] InterfaceCapabilityResponse   The response of system interface capability.
+
+  @retval EFI_SUCCESS            Command is sent successfully.
+  @retval Other                  Failure.
+
+**/
+EFI_STATUS
+EFIAPI
+IpmiGetSystemInterfaceCapability (
+  IN  IPMI_GET_SYSTEM_INTERFACE_CAPABILITIES_REQUEST  *InterfaceCapabilityRequest,
+  OUT IPMI_GET_SYSTEM_INTERFACE_CAPABILITIES_RESPONSE *InterfaceCapabilityResponse
+  );
+
 //
 // IPMI NetFnTransport
 //
-- 
2.37.1.windows.1



-=-=-=-=-=-=-=-=-=-=-=-
Groups.io Links: You receive all messages sent to this group.
View/Reply Online (#109480): https://edk2.groups.io/g/devel/message/109480
Mute This Topic: https://groups.io/mt/101870987/7686176
Group Owner: devel+owner@edk2.groups.io
Unsubscribe: https://edk2.groups.io/g/devel/unsub [rebecca@openfw.io]
-=-=-=-=-=-=-=-=-=-=-=-



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

* [edk2-devel] 回复: [PATCH 1/2] MdePkg/Include: Definitions of IPMI Get System Interface Capabilities
  2023-10-10  8:35 [edk2-devel] [PATCH 1/2] MdePkg/Include: Definitions of IPMI Get System Interface Capabilities Chang, Abner via groups.io
  2023-10-10  8:35 ` [edk2-devel] [PATCH 2/2] MdeModulePkg/Include: API " Chang, Abner via groups.io
@ 2023-10-11  1:53 ` gaoliming via groups.io
       [not found] ` <178CB21B63B8C29F.5378@groups.io>
  2 siblings, 0 replies; 8+ messages in thread
From: gaoliming via groups.io @ 2023-10-11  1:53 UTC (permalink / raw)
  To: abner.chang, devel
  Cc: 'Abdul Lateef Attar', 'Michael D Kinney',
	'Zhiguang Liu'

Reviewed-by: Liming Gao <gaoliming@byosoft.com.cn>

> -----邮件原件-----
> 发件人: abner.chang@amd.com <abner.chang@amd.com>
> 发送时间: 2023年10月10日 16:36
> 收件人: devel@edk2.groups.io
> 抄送: Abdul Lateef Attar <AbdulLateef.Attar@amd.com>; Michael D Kinney
> <michael.d.kinney@intel.com>; Liming Gao <gaoliming@byosoft.com.cn>;
> Zhiguang Liu <zhiguang.liu@intel.com>
> 主题: [PATCH 1/2] MdePkg/Include: Definitions of IPMI Get System Interface
> Capabilities
> 
> From: Abner Chang <abner.chang@amd.com>
> 
> Define the structure for IPMI Get System Interface
> Capabilities command (0x57)
> 
> Signed-off-by: Abner Chang <abner.chang@amd.com>
> Cc: Abdul Lateef Attar <AbdulLateef.Attar@amd.com>
> Cc: Michael D Kinney <michael.d.kinney@intel.com>
> Cc: Liming Gao <gaoliming@byosoft.com.cn>
> Cc: Zhiguang Liu <zhiguang.liu@intel.com>
> ---
>  MdePkg/Include/IndustryStandard/IpmiNetFnApp.h | 8 ++++++++
>  1 file changed, 8 insertions(+)
> 
> diff --git a/MdePkg/Include/IndustryStandard/IpmiNetFnApp.h
> b/MdePkg/Include/IndustryStandard/IpmiNetFnApp.h
> index b6bc91f46c2..d973b7155b3 100644
> --- a/MdePkg/Include/IndustryStandard/IpmiNetFnApp.h
> +++ b/MdePkg/Include/IndustryStandard/IpmiNetFnApp.h
> @@ -1092,6 +1092,14 @@ typedef struct {
>    UINT8
> InputMaxMsgSize;
>  } IPMI_GET_SYSTEM_INTERFACE_KCS_SMIC_CAPABILITIES_RESPONSE;
> 
> +//
> +// Response of interface capability of SSIF/KCS/SMIC.
> +//
> +typedef union {
> +  IPMI_GET_SYSTEM_INTERFACE_SSIF_CAPABILITIES_RESPONSE
> *InterfaceSsifCapability;
> +  IPMI_GET_SYSTEM_INTERFACE_KCS_SMIC_CAPABILITIES_RESPONSE
> *InterfaceKcsSmicCapability;
> +} IPMI_GET_SYSTEM_INTERFACE_CAPABILITIES_RESPONSE;
> +
>  //
>  //  Definitions for Get System Interface Capabilities command SSIF
> transaction support
>  //
> --
> 2.37.1.windows.1





-=-=-=-=-=-=-=-=-=-=-=-
Groups.io Links: You receive all messages sent to this group.
View/Reply Online (#109507): https://edk2.groups.io/g/devel/message/109507
Mute This Topic: https://groups.io/mt/101889077/7686176
Group Owner: devel+owner@edk2.groups.io
Unsubscribe: https://edk2.groups.io/g/devel/unsub [rebecca@openfw.io]
-=-=-=-=-=-=-=-=-=-=-=-



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

* [edk2-devel] 回复: [PATCH 2/2] MdeModulePkg/Include: API of IPMI Get System Interface Capabilities
  2023-10-10  8:35 ` [edk2-devel] [PATCH 2/2] MdeModulePkg/Include: API " Chang, Abner via groups.io
@ 2023-10-11  1:54   ` gaoliming via groups.io
  0 siblings, 0 replies; 8+ messages in thread
From: gaoliming via groups.io @ 2023-10-11  1:54 UTC (permalink / raw)
  To: abner.chang, devel; +Cc: 'Abdul Lateef Attar', 'Jian J Wang'

Reviewed-by: Liming Gao <gaoliming@byosoft.com.cn>

> -----邮件原件-----
> 发件人: abner.chang@amd.com <abner.chang@amd.com>
> 发送时间: 2023年10月10日 16:36
> 收件人: devel@edk2.groups.io
> 抄送: Abdul Lateef Attar <AbdulLateef.Attar@amd.com>; Jian J Wang
> <jian.j.wang@intel.com>; Liming Gao <gaoliming@byosoft.com.cn>
> 主题: [PATCH 2/2] MdeModulePkg/Include: API of IPMI Get System Interface
> Capabilities
> 
> From: Abner Chang <abner.chang@amd.com>
> 
> Define the API for IPMI Get System Interface
> Capabilities command (0x57)
> 
> Signed-off-by: Abner Chang <abner.chang@amd.com>
> Cc: Abdul Lateef Attar <AbdulLateef.Attar@amd.com>
> Cc: Jian J Wang <jian.j.wang@intel.com>
> Cc: Liming Gao <gaoliming@byosoft.com.cn>
> ---
>  MdeModulePkg/Include/Library/IpmiCommandLib.h | 17
> +++++++++++++++++
>  1 file changed, 17 insertions(+)
> 
> diff --git a/MdeModulePkg/Include/Library/IpmiCommandLib.h
> b/MdeModulePkg/Include/Library/IpmiCommandLib.h
> index 7edaf36cbe5..a84124c01e9 100644
> --- a/MdeModulePkg/Include/Library/IpmiCommandLib.h
> +++ b/MdeModulePkg/Include/Library/IpmiCommandLib.h
> @@ -249,6 +249,23 @@ IpmiGetChannelInfo (
>    OUT UINT32
> *GetChannelInfoResponseSize
>    );
> 
> +/**
> +  This function gets system interface capability
> +
> +  @param[in]  InterfaceCapabilityRequest    Get system interface
> capability request.
> +  @param[out] InterfaceCapabilityResponse   The response of system
> interface capability.
> +
> +  @retval EFI_SUCCESS            Command is sent successfully.
> +  @retval Other                  Failure.
> +
> +**/
> +EFI_STATUS
> +EFIAPI
> +IpmiGetSystemInterfaceCapability (
> +  IN  IPMI_GET_SYSTEM_INTERFACE_CAPABILITIES_REQUEST
> *InterfaceCapabilityRequest,
> +  OUT IPMI_GET_SYSTEM_INTERFACE_CAPABILITIES_RESPONSE
> *InterfaceCapabilityResponse
> +  );
> +
>  //
>  // IPMI NetFnTransport
>  //
> --
> 2.37.1.windows.1





-=-=-=-=-=-=-=-=-=-=-=-
Groups.io Links: You receive all messages sent to this group.
View/Reply Online (#109508): https://edk2.groups.io/g/devel/message/109508
Mute This Topic: https://groups.io/mt/101889078/7686176
Group Owner: devel+owner@edk2.groups.io
Unsubscribe: https://edk2.groups.io/g/devel/unsub [rebecca@openfw.io]
-=-=-=-=-=-=-=-=-=-=-=-



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

* Re: [edk2-devel] [PATCH 1/2] MdePkg/Include: Definitions of IPMI Get System Interface Capabilities
       [not found] <178CB21B02ABA058.24994@groups.io>
@ 2023-10-18  4:45 ` Chang, Abner via groups.io
  2023-10-26 12:49 ` Nickle Wang via groups.io
  1 sibling, 0 replies; 8+ messages in thread
From: Chang, Abner via groups.io @ 2023-10-18  4:45 UTC (permalink / raw)
  To: devel@edk2.groups.io, Chang, Abner
  Cc: Attar, AbdulLateef (Abdul Lateef), Michael D Kinney, Liming Gao,
	Zhiguang Liu

[AMD Official Use Only - General]

Hi maintainers,
Please help to review this.

Thanks
Abner

> -----Original Message-----
> From: devel@edk2.groups.io <devel@edk2.groups.io> On Behalf Of Chang,
> Abner via groups.io
> Sent: Tuesday, October 10, 2023 4:36 PM
> To: devel@edk2.groups.io
> Cc: Attar, AbdulLateef (Abdul Lateef) <AbdulLateef.Attar@amd.com>; Michael
> D Kinney <michael.d.kinney@intel.com>; Liming Gao
> <gaoliming@byosoft.com.cn>; Zhiguang Liu <zhiguang.liu@intel.com>
> Subject: [edk2-devel] [PATCH 1/2] MdePkg/Include: Definitions of IPMI Get
> System Interface Capabilities
>
> Caution: This message originated from an External Source. Use proper caution
> when opening attachments, clicking links, or responding.
>
>
> From: Abner Chang <abner.chang@amd.com>
>
> Define the structure for IPMI Get System Interface
> Capabilities command (0x57)
>
> Signed-off-by: Abner Chang <abner.chang@amd.com>
> Cc: Abdul Lateef Attar <AbdulLateef.Attar@amd.com>
> Cc: Michael D Kinney <michael.d.kinney@intel.com>
> Cc: Liming Gao <gaoliming@byosoft.com.cn>
> Cc: Zhiguang Liu <zhiguang.liu@intel.com>
> ---
>  MdePkg/Include/IndustryStandard/IpmiNetFnApp.h | 8 ++++++++
>  1 file changed, 8 insertions(+)
>
> diff --git a/MdePkg/Include/IndustryStandard/IpmiNetFnApp.h
> b/MdePkg/Include/IndustryStandard/IpmiNetFnApp.h
> index b6bc91f46c2..d973b7155b3 100644
> --- a/MdePkg/Include/IndustryStandard/IpmiNetFnApp.h
> +++ b/MdePkg/Include/IndustryStandard/IpmiNetFnApp.h
> @@ -1092,6 +1092,14 @@ typedef struct {
>    UINT8                                          InputMaxMsgSize;
>  } IPMI_GET_SYSTEM_INTERFACE_KCS_SMIC_CAPABILITIES_RESPONSE;
>
> +//
> +// Response of interface capability of SSIF/KCS/SMIC.
> +//
> +typedef union {
> +  IPMI_GET_SYSTEM_INTERFACE_SSIF_CAPABILITIES_RESPONSE
> *InterfaceSsifCapability;
> +  IPMI_GET_SYSTEM_INTERFACE_KCS_SMIC_CAPABILITIES_RESPONSE
> *InterfaceKcsSmicCapability;
> +} IPMI_GET_SYSTEM_INTERFACE_CAPABILITIES_RESPONSE;
> +
>  //
>  //  Definitions for Get System Interface Capabilities command SSIF transaction
> support
>  //
> --
> 2.37.1.windows.1
>
>
>
> 
>



-=-=-=-=-=-=-=-=-=-=-=-
Groups.io Links: You receive all messages sent to this group.
View/Reply Online (#109704): https://edk2.groups.io/g/devel/message/109704
Mute This Topic: https://groups.io/mt/101870986/7686176
Group Owner: devel+owner@edk2.groups.io
Unsubscribe: https://edk2.groups.io/g/devel/unsub [rebecca@openfw.io]
-=-=-=-=-=-=-=-=-=-=-=-



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

* Re: [edk2-devel] [PATCH 2/2] MdeModulePkg/Include: API of IPMI Get System Interface Capabilities
       [not found] ` <178CB21B63B8C29F.5378@groups.io>
@ 2023-10-18  4:49   ` Chang, Abner via groups.io
  2023-10-26 12:48   ` Nickle Wang via groups.io
  1 sibling, 0 replies; 8+ messages in thread
From: Chang, Abner via groups.io @ 2023-10-18  4:49 UTC (permalink / raw)
  To: devel@edk2.groups.io
  Cc: Attar, AbdulLateef (Abdul Lateef), Jian J Wang, Liming Gao

[AMD Official Use Only - General]

Hi maintainers,
Please help to review this.

I also would like to propose myself and one more person as the maintainers of some manageability C header files under both MdePkg and MdeModulePkg. Such as Pldm, IPMI and etc.. How do you think?

Thanks
Abner

> -----Original Message-----
> From: devel@edk2.groups.io <devel@edk2.groups.io> On Behalf Of Chang,
> Abner via groups.io
> Sent: Tuesday, October 10, 2023 4:36 PM
> To: devel@edk2.groups.io
> Cc: Attar, AbdulLateef (Abdul Lateef) <AbdulLateef.Attar@amd.com>; Jian J
> Wang <jian.j.wang@intel.com>; Liming Gao <gaoliming@byosoft.com.cn>
> Subject: [edk2-devel] [PATCH 2/2] MdeModulePkg/Include: API of IPMI Get
> System Interface Capabilities
>
> Caution: This message originated from an External Source. Use proper caution
> when opening attachments, clicking links, or responding.
>
>
> From: Abner Chang <abner.chang@amd.com>
>
> Define the API for IPMI Get System Interface
> Capabilities command (0x57)
>
> Signed-off-by: Abner Chang <abner.chang@amd.com>
> Cc: Abdul Lateef Attar <AbdulLateef.Attar@amd.com>
> Cc: Jian J Wang <jian.j.wang@intel.com>
> Cc: Liming Gao <gaoliming@byosoft.com.cn>
> ---
>  MdeModulePkg/Include/Library/IpmiCommandLib.h | 17
> +++++++++++++++++
>  1 file changed, 17 insertions(+)
>
> diff --git a/MdeModulePkg/Include/Library/IpmiCommandLib.h
> b/MdeModulePkg/Include/Library/IpmiCommandLib.h
> index 7edaf36cbe5..a84124c01e9 100644
> --- a/MdeModulePkg/Include/Library/IpmiCommandLib.h
> +++ b/MdeModulePkg/Include/Library/IpmiCommandLib.h
> @@ -249,6 +249,23 @@ IpmiGetChannelInfo (
>    OUT UINT32                          *GetChannelInfoResponseSize
>    );
>
> +/**
> +  This function gets system interface capability
> +
> +  @param[in]  InterfaceCapabilityRequest    Get system interface capability
> request.
> +  @param[out] InterfaceCapabilityResponse   The response of system
> interface capability.
> +
> +  @retval EFI_SUCCESS            Command is sent successfully.
> +  @retval Other                  Failure.
> +
> +**/
> +EFI_STATUS
> +EFIAPI
> +IpmiGetSystemInterfaceCapability (
> +  IN  IPMI_GET_SYSTEM_INTERFACE_CAPABILITIES_REQUEST
> *InterfaceCapabilityRequest,
> +  OUT IPMI_GET_SYSTEM_INTERFACE_CAPABILITIES_RESPONSE
> *InterfaceCapabilityResponse
> +  );
> +
>  //
>  // IPMI NetFnTransport
>  //
> --
> 2.37.1.windows.1
>
>
>
> 
>



-=-=-=-=-=-=-=-=-=-=-=-
Groups.io Links: You receive all messages sent to this group.
View/Reply Online (#109705): https://edk2.groups.io/g/devel/message/109705
Mute This Topic: https://groups.io/mt/102033872/7686176
Group Owner: devel+owner@edk2.groups.io
Unsubscribe: https://edk2.groups.io/g/devel/unsub [rebecca@openfw.io]
-=-=-=-=-=-=-=-=-=-=-=-



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

* Re: [edk2-devel] [PATCH 2/2] MdeModulePkg/Include: API of IPMI Get System Interface Capabilities
       [not found] ` <178CB21B63B8C29F.5378@groups.io>
  2023-10-18  4:49   ` [edk2-devel] [PATCH 2/2] MdeModulePkg/Include: API " Chang, Abner via groups.io
@ 2023-10-26 12:48   ` Nickle Wang via groups.io
  1 sibling, 0 replies; 8+ messages in thread
From: Nickle Wang via groups.io @ 2023-10-26 12:48 UTC (permalink / raw)
  To: devel@edk2.groups.io, Chang, Abner
  Cc: Attar, AbdulLateef (Abdul Lateef), Jian J Wang, Liming Gao


Reviewed-by: Nickle Wang <nicklew@nvidia.com>

Regards,
Nickle

> -----Original Message-----
> From: devel@edk2.groups.io <devel@edk2.groups.io> On Behalf Of Chang, Abner
> via groups.io
> Sent: Tuesday, October 10, 2023 4:36 PM
> To: devel@edk2.groups.io
> Cc: Attar, AbdulLateef (Abdul Lateef) <AbdulLateef.Attar@amd.com>; Jian J Wang
> <jian.j.wang@intel.com>; Liming Gao <gaoliming@byosoft.com.cn>
> Subject: [edk2-devel] [PATCH 2/2] MdeModulePkg/Include: API of IPMI Get
> System Interface Capabilities
> 
> Caution: This message originated from an External Source. Use proper caution
> when opening attachments, clicking links, or responding.
> 
> 
> From: Abner Chang <abner.chang@amd.com>
> 
> Define the API for IPMI Get System Interface
> Capabilities command (0x57)
> 
> Signed-off-by: Abner Chang <abner.chang@amd.com>
> Cc: Abdul Lateef Attar <AbdulLateef.Attar@amd.com>
> Cc: Jian J Wang <jian.j.wang@intel.com>
> Cc: Liming Gao <gaoliming@byosoft.com.cn>
> ---
>  MdeModulePkg/Include/Library/IpmiCommandLib.h | 17 +++++++++++++++++
>  1 file changed, 17 insertions(+)
> 
> diff --git a/MdeModulePkg/Include/Library/IpmiCommandLib.h
> b/MdeModulePkg/Include/Library/IpmiCommandLib.h
> index 7edaf36cbe5..a84124c01e9 100644
> --- a/MdeModulePkg/Include/Library/IpmiCommandLib.h
> +++ b/MdeModulePkg/Include/Library/IpmiCommandLib.h
> @@ -249,6 +249,23 @@ IpmiGetChannelInfo (
>    OUT UINT32                          *GetChannelInfoResponseSize
>    );
> 
> +/**
> +  This function gets system interface capability
> +
> +  @param[in]  InterfaceCapabilityRequest    Get system interface capability
> request.
> +  @param[out] InterfaceCapabilityResponse   The response of system interface
> capability.
> +
> +  @retval EFI_SUCCESS            Command is sent successfully.
> +  @retval Other                  Failure.
> +
> +**/
> +EFI_STATUS
> +EFIAPI
> +IpmiGetSystemInterfaceCapability (
> +  IN  IPMI_GET_SYSTEM_INTERFACE_CAPABILITIES_REQUEST
> *InterfaceCapabilityRequest,
> +  OUT IPMI_GET_SYSTEM_INTERFACE_CAPABILITIES_RESPONSE
> *InterfaceCapabilityResponse
> +  );
> +
>  //
>  // IPMI NetFnTransport
>  //
> --
> 2.37.1.windows.1
> 
> 
> 
> 
> 



-=-=-=-=-=-=-=-=-=-=-=-
Groups.io Links: You receive all messages sent to this group.
View/Reply Online (#110093): https://edk2.groups.io/g/devel/message/110093
Mute This Topic: https://groups.io/mt/102198829/7686176
Group Owner: devel+owner@edk2.groups.io
Unsubscribe: https://edk2.groups.io/g/devel/unsub [rebecca@openfw.io]
-=-=-=-=-=-=-=-=-=-=-=-



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

* Re: [edk2-devel] [PATCH 1/2] MdePkg/Include: Definitions of IPMI Get System Interface Capabilities
       [not found] <178CB21B02ABA058.24994@groups.io>
  2023-10-18  4:45 ` [edk2-devel] [PATCH 1/2] MdePkg/Include: Definitions " Chang, Abner via groups.io
@ 2023-10-26 12:49 ` Nickle Wang via groups.io
  1 sibling, 0 replies; 8+ messages in thread
From: Nickle Wang via groups.io @ 2023-10-26 12:49 UTC (permalink / raw)
  To: devel@edk2.groups.io, Chang, Abner
  Cc: Attar, AbdulLateef (Abdul Lateef), Michael D Kinney, Liming Gao,
	Zhiguang Liu


Reviewed-by: Nickle Wang <nicklew@nvidia.com>

Regards,
Nickle

> -----Original Message-----
> From: devel@edk2.groups.io <devel@edk2.groups.io> On Behalf Of Chang, Abner
> via groups.io
> Sent: Tuesday, October 10, 2023 4:36 PM
> To: devel@edk2.groups.io
> Cc: Attar, AbdulLateef (Abdul Lateef) <AbdulLateef.Attar@amd.com>; Michael D
> Kinney <michael.d.kinney@intel.com>; Liming Gao <gaoliming@byosoft.com.cn>;
> Zhiguang Liu <zhiguang.liu@intel.com>
> Subject: [edk2-devel] [PATCH 1/2] MdePkg/Include: Definitions of IPMI Get
> System Interface Capabilities
> 
> Caution: This message originated from an External Source. Use proper caution
> when opening attachments, clicking links, or responding.
> 
> 
> From: Abner Chang <abner.chang@amd.com>
> 
> Define the structure for IPMI Get System Interface Capabilities command (0x57)
> 
> Signed-off-by: Abner Chang <abner.chang@amd.com>
> Cc: Abdul Lateef Attar <AbdulLateef.Attar@amd.com>
> Cc: Michael D Kinney <michael.d.kinney@intel.com>
> Cc: Liming Gao <gaoliming@byosoft.com.cn>
> Cc: Zhiguang Liu <zhiguang.liu@intel.com>
> ---
>  MdePkg/Include/IndustryStandard/IpmiNetFnApp.h | 8 ++++++++
>  1 file changed, 8 insertions(+)
> 
> diff --git a/MdePkg/Include/IndustryStandard/IpmiNetFnApp.h
> b/MdePkg/Include/IndustryStandard/IpmiNetFnApp.h
> index b6bc91f46c2..d973b7155b3 100644
> --- a/MdePkg/Include/IndustryStandard/IpmiNetFnApp.h
> +++ b/MdePkg/Include/IndustryStandard/IpmiNetFnApp.h
> @@ -1092,6 +1092,14 @@ typedef struct {
>    UINT8                                          InputMaxMsgSize;
>  } IPMI_GET_SYSTEM_INTERFACE_KCS_SMIC_CAPABILITIES_RESPONSE;
> 
> +//
> +// Response of interface capability of SSIF/KCS/SMIC.
> +//
> +typedef union {
> +  IPMI_GET_SYSTEM_INTERFACE_SSIF_CAPABILITIES_RESPONSE
> *InterfaceSsifCapability;
> +  IPMI_GET_SYSTEM_INTERFACE_KCS_SMIC_CAPABILITIES_RESPONSE
> +*InterfaceKcsSmicCapability; }
> +IPMI_GET_SYSTEM_INTERFACE_CAPABILITIES_RESPONSE;
> +
>  //
>  //  Definitions for Get System Interface Capabilities command SSIF transaction
> support  //
> --
> 2.37.1.windows.1
> 
> 
> 
> 
> 



-=-=-=-=-=-=-=-=-=-=-=-
Groups.io Links: You receive all messages sent to this group.
View/Reply Online (#110094): https://edk2.groups.io/g/devel/message/110094
Mute This Topic: https://groups.io/mt/101870986/7686176
Group Owner: devel+owner@edk2.groups.io
Unsubscribe: https://edk2.groups.io/g/devel/unsub [rebecca@openfw.io]
-=-=-=-=-=-=-=-=-=-=-=-



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

end of thread, other threads:[~2023-10-26 12:49 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-10-10  8:35 [edk2-devel] [PATCH 1/2] MdePkg/Include: Definitions of IPMI Get System Interface Capabilities Chang, Abner via groups.io
2023-10-10  8:35 ` [edk2-devel] [PATCH 2/2] MdeModulePkg/Include: API " Chang, Abner via groups.io
2023-10-11  1:54   ` [edk2-devel] 回复: " gaoliming via groups.io
2023-10-11  1:53 ` [edk2-devel] 回复: [PATCH 1/2] MdePkg/Include: Definitions " gaoliming via groups.io
     [not found] ` <178CB21B63B8C29F.5378@groups.io>
2023-10-18  4:49   ` [edk2-devel] [PATCH 2/2] MdeModulePkg/Include: API " Chang, Abner via groups.io
2023-10-26 12:48   ` Nickle Wang via groups.io
     [not found] <178CB21B02ABA058.24994@groups.io>
2023-10-18  4:45 ` [edk2-devel] [PATCH 1/2] MdePkg/Include: Definitions " Chang, Abner via groups.io
2023-10-26 12:49 ` Nickle Wang via groups.io

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