public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
* [PATCH 1/1] MdePkg/Include: Add missing definitions of SMBIOS type 42h in SmBios.h
@ 2019-11-12  2:55 Abner Chang
  2019-11-12  4:42 ` [edk2-devel] " Liming Gao
  0 siblings, 1 reply; 6+ messages in thread
From: Abner Chang @ 2019-11-12  2:55 UTC (permalink / raw)
  To: devel; +Cc: abner.chang, Michael D Kinney, Liming Gao

Add host interface Protocol Type Data Format structure in SmBios.h

BZ link,
https://bugzilla.tianocore.org/show_bug.cgi?id=2328

Signed-off-by: Abner Chang <abner.chang@hpe.com>

Cc: Michael D Kinney <michael.d.kinney@intel.com>
Cc: Liming Gao <liming.gao@intel.com>
Signed-off-by: Abner Chang <abner.chang@hpe.com>
---
 MdePkg/Include/IndustryStandard/SmBios.h | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/MdePkg/Include/IndustryStandard/SmBios.h b/MdePkg/Include/IndustryStandard/SmBios.h
index f504cc84e7..c0144c9c8f 100644
--- a/MdePkg/Include/IndustryStandard/SmBios.h
+++ b/MdePkg/Include/IndustryStandard/SmBios.h
@@ -2483,6 +2483,15 @@ typedef struct {
   UINT8                             DevFuncNum;
 } SMBIOS_TABLE_TYPE41;
 
+///
+///  Management Controller Host Interface - Protocol Record Data Format.
+///
+typedef struct {
+  UINT8                        ProtocolType;
+  UINT8                        ProtocolTypeDataLen;
+  UINT8                        ProtocolTypeData[1];
+} MC_HOST_INTERFACE_PROTOCOL_RECORD;
+
 ///
 /// Management Controller Host Interface - Interface Types.
 /// 00h - 3Fh: MCTP Host Interfaces
-- 
2.21.0.windows.1


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

* Re: [edk2-devel] [PATCH 1/1] MdePkg/Include: Add missing definitions of SMBIOS type 42h in SmBios.h
  2019-11-12  2:55 [PATCH 1/1] MdePkg/Include: Add missing definitions of SMBIOS type 42h in SmBios.h Abner Chang
@ 2019-11-12  4:42 ` Liming Gao
  2019-11-12  5:35   ` Abner Chang
       [not found]   ` <15D6538392FBC3E1.27853@groups.io>
  0 siblings, 2 replies; 6+ messages in thread
From: Liming Gao @ 2019-11-12  4:42 UTC (permalink / raw)
  To: devel@edk2.groups.io, abner.chang@hpe.com; +Cc: Kinney, Michael D

Hi, is this a new definition in SmBios 3.3? Or is this a missing definition in previous SmBios version? 

>-----Original Message-----
>From: devel@edk2.groups.io [mailto:devel@edk2.groups.io] On Behalf Of
>Abner Chang
>Sent: Tuesday, November 12, 2019 10:56 AM
>To: devel@edk2.groups.io
>Cc: abner.chang@hpe.com; Kinney, Michael D <michael.d.kinney@intel.com>;
>Gao, Liming <liming.gao@intel.com>
>Subject: [edk2-devel] [PATCH 1/1] MdePkg/Include: Add missing definitions
>of SMBIOS type 42h in SmBios.h
>
>Add host interface Protocol Type Data Format structure in SmBios.h
>
>BZ link,
>https://bugzilla.tianocore.org/show_bug.cgi?id=2328
>
>Signed-off-by: Abner Chang <abner.chang@hpe.com>
>
>Cc: Michael D Kinney <michael.d.kinney@intel.com>
>Cc: Liming Gao <liming.gao@intel.com>
>Signed-off-by: Abner Chang <abner.chang@hpe.com>
>---
> MdePkg/Include/IndustryStandard/SmBios.h | 9 +++++++++
> 1 file changed, 9 insertions(+)
>
>diff --git a/MdePkg/Include/IndustryStandard/SmBios.h
>b/MdePkg/Include/IndustryStandard/SmBios.h
>index f504cc84e7..c0144c9c8f 100644
>--- a/MdePkg/Include/IndustryStandard/SmBios.h
>+++ b/MdePkg/Include/IndustryStandard/SmBios.h
>@@ -2483,6 +2483,15 @@ typedef struct {
>   UINT8                             DevFuncNum;
> } SMBIOS_TABLE_TYPE41;
>
>+///
>+///  Management Controller Host Interface - Protocol Record Data Format.
>+///
>+typedef struct {
>+  UINT8                        ProtocolType;
>+  UINT8                        ProtocolTypeDataLen;
>+  UINT8                        ProtocolTypeData[1];
>+} MC_HOST_INTERFACE_PROTOCOL_RECORD;
>+
> ///
> /// Management Controller Host Interface - Interface Types.
> /// 00h - 3Fh: MCTP Host Interfaces
>--
>2.21.0.windows.1
>
>
>


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

* Re: [edk2-devel] [PATCH 1/1] MdePkg/Include: Add missing definitions of SMBIOS type 42h in SmBios.h
  2019-11-12  4:42 ` [edk2-devel] " Liming Gao
@ 2019-11-12  5:35   ` Abner Chang
       [not found]   ` <15D6538392FBC3E1.27853@groups.io>
  1 sibling, 0 replies; 6+ messages in thread
From: Abner Chang @ 2019-11-12  5:35 UTC (permalink / raw)
  To: devel@edk2.groups.io, liming.gao@intel.com; +Cc: Kinney, Michael D

This definitions was defined in SMBIOS 3.2a and we miss to have the corresponding definition for this in SmBios.h.

Abner

> -----Original Message-----
> From: devel@edk2.groups.io [mailto:devel@edk2.groups.io] On Behalf Of
> Liming Gao
> Sent: Tuesday, November 12, 2019 12:43 PM
> To: devel@edk2.groups.io; Chang, Abner (HPS SW/FW Technologist)
> <abner.chang@hpe.com>
> Cc: Kinney, Michael D <michael.d.kinney@intel.com>
> Subject: Re: [edk2-devel] [PATCH 1/1] MdePkg/Include: Add missing
> definitions of SMBIOS type 42h in SmBios.h
> 
> Hi, is this a new definition in SmBios 3.3? Or is this a missing definition in
> previous SmBios version?
> 
> >-----Original Message-----
> >From: devel@edk2.groups.io [mailto:devel@edk2.groups.io] On Behalf Of
> >Abner Chang
> >Sent: Tuesday, November 12, 2019 10:56 AM
> >To: devel@edk2.groups.io
> >Cc: abner.chang@hpe.com; Kinney, Michael D
> ><michael.d.kinney@intel.com>; Gao, Liming <liming.gao@intel.com>
> >Subject: [edk2-devel] [PATCH 1/1] MdePkg/Include: Add missing
> >definitions of SMBIOS type 42h in SmBios.h
> >
> >Add host interface Protocol Type Data Format structure in SmBios.h
> >
> >BZ link,
> >INVALID URI REMOVED
> >.org_show-5Fbug.cgi-3Fid-
> 3D2328&d=DwIFAg&c=C5b8zRQO1miGmBeVZ2LFWg&r=_SN
> >6FZBN4Vgi4Ulkskz6qU3NYRO03nHp9P7Z5q59A3E&m=nqCVIRL9hVAaMUSX
> QUQXjFwJWv39
> >I6U90eR54obtRSM&s=p7ENdrSPY3KJNnhX8zR5S1D8ZkjtYzhhhe-ki9-
> 2mTQ&e=
> >
> >Signed-off-by: Abner Chang <abner.chang@hpe.com>
> >
> >Cc: Michael D Kinney <michael.d.kinney@intel.com>
> >Cc: Liming Gao <liming.gao@intel.com>
> >Signed-off-by: Abner Chang <abner.chang@hpe.com>
> >---
> > MdePkg/Include/IndustryStandard/SmBios.h | 9 +++++++++
> > 1 file changed, 9 insertions(+)
> >
> >diff --git a/MdePkg/Include/IndustryStandard/SmBios.h
> >b/MdePkg/Include/IndustryStandard/SmBios.h
> >index f504cc84e7..c0144c9c8f 100644
> >--- a/MdePkg/Include/IndustryStandard/SmBios.h
> >+++ b/MdePkg/Include/IndustryStandard/SmBios.h
> >@@ -2483,6 +2483,15 @@ typedef struct {
> >   UINT8                             DevFuncNum;
> > } SMBIOS_TABLE_TYPE41;
> >
> >+///
> >+///  Management Controller Host Interface - Protocol Record Data Format.
> >+///
> >+typedef struct {
> >+  UINT8                        ProtocolType;
> >+  UINT8                        ProtocolTypeDataLen;
> >+  UINT8                        ProtocolTypeData[1];
> >+} MC_HOST_INTERFACE_PROTOCOL_RECORD;
> >+
> > ///
> > /// Management Controller Host Interface - Interface Types.
> > /// 00h - 3Fh: MCTP Host Interfaces
> >--
> >2.21.0.windows.1
> >
> >
> >
> 
> 
> 


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

* Re: [edk2-devel] [PATCH 1/1] MdePkg/Include: Add missing definitions of SMBIOS type 42h in SmBios.h
       [not found]   ` <15D6538392FBC3E1.27853@groups.io>
@ 2019-11-18 15:15     ` Abner Chang
  2019-11-18 15:25       ` Liming Gao
  0 siblings, 1 reply; 6+ messages in thread
From: Abner Chang @ 2019-11-18 15:15 UTC (permalink / raw)
  To: devel@edk2.groups.io, Chang, Abner (HPS SW/FW Technologist),
	liming.gao@intel.com
  Cc: Kinney, Michael D

Hi Liming, any other concerns of this patch? If no , could we have this fix in edk2 master?

Thanks
Abner

> -----Original Message-----
> From: devel@edk2.groups.io [mailto:devel@edk2.groups.io] On Behalf Of
> Abner Chang
> Sent: Tuesday, November 12, 2019 1:36 PM
> To: devel@edk2.groups.io; liming.gao@intel.com
> Cc: Kinney, Michael D <michael.d.kinney@intel.com>
> Subject: Re: [edk2-devel] [PATCH 1/1] MdePkg/Include: Add missing
> definitions of SMBIOS type 42h in SmBios.h
> 
> This definitions was defined in SMBIOS 3.2a and we miss to have the
> corresponding definition for this in SmBios.h.
> 
> Abner
> 
> > -----Original Message-----
> > From: devel@edk2.groups.io [mailto:devel@edk2.groups.io] On Behalf Of
> > Liming Gao
> > Sent: Tuesday, November 12, 2019 12:43 PM
> > To: devel@edk2.groups.io; Chang, Abner (HPS SW/FW Technologist)
> > <abner.chang@hpe.com>
> > Cc: Kinney, Michael D <michael.d.kinney@intel.com>
> > Subject: Re: [edk2-devel] [PATCH 1/1] MdePkg/Include: Add missing
> > definitions of SMBIOS type 42h in SmBios.h
> >
> > Hi, is this a new definition in SmBios 3.3? Or is this a missing
> > definition in previous SmBios version?
> >
> > >-----Original Message-----
> > >From: devel@edk2.groups.io [mailto:devel@edk2.groups.io] On Behalf Of
> > >Abner Chang
> > >Sent: Tuesday, November 12, 2019 10:56 AM
> > >To: devel@edk2.groups.io
> > >Cc: abner.chang@hpe.com; Kinney, Michael D
> > ><michael.d.kinney@intel.com>; Gao, Liming <liming.gao@intel.com>
> > >Subject: [edk2-devel] [PATCH 1/1] MdePkg/Include: Add missing
> > >definitions of SMBIOS type 42h in SmBios.h
> > >
> > >Add host interface Protocol Type Data Format structure in SmBios.h
> > >
> > >BZ link,
> > >INVALID URI REMOVED
> > >.org_show-5Fbug.cgi-3Fid-
> > 3D2328&d=DwIFAg&c=C5b8zRQO1miGmBeVZ2LFWg&r=_SN
> >
> >6FZBN4Vgi4Ulkskz6qU3NYRO03nHp9P7Z5q59A3E&m=nqCVIRL9hVAaMUSX
> > QUQXjFwJWv39
> > >I6U90eR54obtRSM&s=p7ENdrSPY3KJNnhX8zR5S1D8ZkjtYzhhhe-ki9-
> > 2mTQ&e=
> > >
> > >Signed-off-by: Abner Chang <abner.chang@hpe.com>
> > >
> > >Cc: Michael D Kinney <michael.d.kinney@intel.com>
> > >Cc: Liming Gao <liming.gao@intel.com>
> > >Signed-off-by: Abner Chang <abner.chang@hpe.com>
> > >---
> > > MdePkg/Include/IndustryStandard/SmBios.h | 9 +++++++++
> > > 1 file changed, 9 insertions(+)
> > >
> > >diff --git a/MdePkg/Include/IndustryStandard/SmBios.h
> > >b/MdePkg/Include/IndustryStandard/SmBios.h
> > >index f504cc84e7..c0144c9c8f 100644
> > >--- a/MdePkg/Include/IndustryStandard/SmBios.h
> > >+++ b/MdePkg/Include/IndustryStandard/SmBios.h
> > >@@ -2483,6 +2483,15 @@ typedef struct {
> > >   UINT8                             DevFuncNum;
> > > } SMBIOS_TABLE_TYPE41;
> > >
> > >+///
> > >+///  Management Controller Host Interface - Protocol Record Data
> Format.
> > >+///
> > >+typedef struct {
> > >+  UINT8                        ProtocolType;
> > >+  UINT8                        ProtocolTypeDataLen;
> > >+  UINT8                        ProtocolTypeData[1];
> > >+} MC_HOST_INTERFACE_PROTOCOL_RECORD;
> > >+
> > > ///
> > > /// Management Controller Host Interface - Interface Types.
> > > /// 00h - 3Fh: MCTP Host Interfaces
> > >--
> > >2.21.0.windows.1
> > >
> > >
> > >
> >
> >
> >
> 
> 
> 


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

* Re: [edk2-devel] [PATCH 1/1] MdePkg/Include: Add missing definitions of SMBIOS type 42h in SmBios.h
  2019-11-18 15:15     ` Abner Chang
@ 2019-11-18 15:25       ` Liming Gao
  2019-11-19  0:44         ` Abner Chang
  0 siblings, 1 reply; 6+ messages in thread
From: Liming Gao @ 2019-11-18 15:25 UTC (permalink / raw)
  To: Chang, Abner (HPS SW/FW Technologist), devel@edk2.groups.io
  Cc: Kinney, Michael D

Abner:
  Sorry for the late response. I have no comments for this patch. Reviewed-by: Liming Gao <liming.gao@intel.com>

  Besides, does this patch plan to catch 201911 stable tag?

Thanks
Liming
> -----Original Message-----
> From: Chang, Abner (HPS SW/FW Technologist) <abner.chang@hpe.com>
> Sent: Monday, November 18, 2019 11:16 PM
> To: devel@edk2.groups.io; Chang, Abner (HPS SW/FW Technologist) <abner.chang@hpe.com>; Gao, Liming <liming.gao@intel.com>
> Cc: Kinney, Michael D <michael.d.kinney@intel.com>
> Subject: RE: [edk2-devel] [PATCH 1/1] MdePkg/Include: Add missing definitions of SMBIOS type 42h in SmBios.h
> 
> Hi Liming, any other concerns of this patch? If no , could we have this fix in edk2 master?
> 
> Thanks
> Abner
> 
> > -----Original Message-----
> > From: devel@edk2.groups.io [mailto:devel@edk2.groups.io] On Behalf Of
> > Abner Chang
> > Sent: Tuesday, November 12, 2019 1:36 PM
> > To: devel@edk2.groups.io; liming.gao@intel.com
> > Cc: Kinney, Michael D <michael.d.kinney@intel.com>
> > Subject: Re: [edk2-devel] [PATCH 1/1] MdePkg/Include: Add missing
> > definitions of SMBIOS type 42h in SmBios.h
> >
> > This definitions was defined in SMBIOS 3.2a and we miss to have the
> > corresponding definition for this in SmBios.h.
> >
> > Abner
> >
> > > -----Original Message-----
> > > From: devel@edk2.groups.io [mailto:devel@edk2.groups.io] On Behalf Of
> > > Liming Gao
> > > Sent: Tuesday, November 12, 2019 12:43 PM
> > > To: devel@edk2.groups.io; Chang, Abner (HPS SW/FW Technologist)
> > > <abner.chang@hpe.com>
> > > Cc: Kinney, Michael D <michael.d.kinney@intel.com>
> > > Subject: Re: [edk2-devel] [PATCH 1/1] MdePkg/Include: Add missing
> > > definitions of SMBIOS type 42h in SmBios.h
> > >
> > > Hi, is this a new definition in SmBios 3.3? Or is this a missing
> > > definition in previous SmBios version?
> > >
> > > >-----Original Message-----
> > > >From: devel@edk2.groups.io [mailto:devel@edk2.groups.io] On Behalf Of
> > > >Abner Chang
> > > >Sent: Tuesday, November 12, 2019 10:56 AM
> > > >To: devel@edk2.groups.io
> > > >Cc: abner.chang@hpe.com; Kinney, Michael D
> > > ><michael.d.kinney@intel.com>; Gao, Liming <liming.gao@intel.com>
> > > >Subject: [edk2-devel] [PATCH 1/1] MdePkg/Include: Add missing
> > > >definitions of SMBIOS type 42h in SmBios.h
> > > >
> > > >Add host interface Protocol Type Data Format structure in SmBios.h
> > > >
> > > >BZ link,
> > > >INVALID URI REMOVED
> > > >.org_show-5Fbug.cgi-3Fid-
> > > 3D2328&d=DwIFAg&c=C5b8zRQO1miGmBeVZ2LFWg&r=_SN
> > >
> > >6FZBN4Vgi4Ulkskz6qU3NYRO03nHp9P7Z5q59A3E&m=nqCVIRL9hVAaMUSX
> > > QUQXjFwJWv39
> > > >I6U90eR54obtRSM&s=p7ENdrSPY3KJNnhX8zR5S1D8ZkjtYzhhhe-ki9-
> > > 2mTQ&e=
> > > >
> > > >Signed-off-by: Abner Chang <abner.chang@hpe.com>
> > > >
> > > >Cc: Michael D Kinney <michael.d.kinney@intel.com>
> > > >Cc: Liming Gao <liming.gao@intel.com>
> > > >Signed-off-by: Abner Chang <abner.chang@hpe.com>
> > > >---
> > > > MdePkg/Include/IndustryStandard/SmBios.h | 9 +++++++++
> > > > 1 file changed, 9 insertions(+)
> > > >
> > > >diff --git a/MdePkg/Include/IndustryStandard/SmBios.h
> > > >b/MdePkg/Include/IndustryStandard/SmBios.h
> > > >index f504cc84e7..c0144c9c8f 100644
> > > >--- a/MdePkg/Include/IndustryStandard/SmBios.h
> > > >+++ b/MdePkg/Include/IndustryStandard/SmBios.h
> > > >@@ -2483,6 +2483,15 @@ typedef struct {
> > > >   UINT8                             DevFuncNum;
> > > > } SMBIOS_TABLE_TYPE41;
> > > >
> > > >+///
> > > >+///  Management Controller Host Interface - Protocol Record Data
> > Format.
> > > >+///
> > > >+typedef struct {
> > > >+  UINT8                        ProtocolType;
> > > >+  UINT8                        ProtocolTypeDataLen;
> > > >+  UINT8                        ProtocolTypeData[1];
> > > >+} MC_HOST_INTERFACE_PROTOCOL_RECORD;
> > > >+
> > > > ///
> > > > /// Management Controller Host Interface - Interface Types.
> > > > /// 00h - 3Fh: MCTP Host Interfaces
> > > >--
> > > >2.21.0.windows.1
> > > >
> > > >
> > > >
> > >
> > >
> > >
> >
> >
> > 
> 


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

* Re: [edk2-devel] [PATCH 1/1] MdePkg/Include: Add missing definitions of SMBIOS type 42h in SmBios.h
  2019-11-18 15:25       ` Liming Gao
@ 2019-11-19  0:44         ` Abner Chang
  0 siblings, 0 replies; 6+ messages in thread
From: Abner Chang @ 2019-11-19  0:44 UTC (permalink / raw)
  To: devel@edk2.groups.io, liming.gao@intel.com; +Cc: Kinney, Michael D

Thanks Liming.
We don't have plan to have this in 201911 stable tag. This changes is made to in cooperate with UEFI Redfish edk2 implementation under RedfishPkg and RedfishPkg is not going to be released in near term.
But if we still have chance to see this in 201911 stable tag then why not :)

Abner

> -----Original Message-----
> From: devel@edk2.groups.io [mailto:devel@edk2.groups.io] On Behalf Of
> Liming Gao
> Sent: Monday, November 18, 2019 11:26 PM
> To: Chang, Abner (HPS SW/FW Technologist) <abner.chang@hpe.com>;
> devel@edk2.groups.io
> Cc: Kinney, Michael D <michael.d.kinney@intel.com>
> Subject: Re: [edk2-devel] [PATCH 1/1] MdePkg/Include: Add missing
> definitions of SMBIOS type 42h in SmBios.h
> 
> Abner:
>   Sorry for the late response. I have no comments for this patch. Reviewed-
> by: Liming Gao <liming.gao@intel.com>
> 
>   Besides, does this patch plan to catch 201911 stable tag?
> 
> Thanks
> Liming
> > -----Original Message-----
> > From: Chang, Abner (HPS SW/FW Technologist) <abner.chang@hpe.com>
> > Sent: Monday, November 18, 2019 11:16 PM
> > To: devel@edk2.groups.io; Chang, Abner (HPS SW/FW Technologist)
> > <abner.chang@hpe.com>; Gao, Liming <liming.gao@intel.com>
> > Cc: Kinney, Michael D <michael.d.kinney@intel.com>
> > Subject: RE: [edk2-devel] [PATCH 1/1] MdePkg/Include: Add missing
> > definitions of SMBIOS type 42h in SmBios.h
> >
> > Hi Liming, any other concerns of this patch? If no , could we have this fix in
> edk2 master?
> >
> > Thanks
> > Abner
> >
> > > -----Original Message-----
> > > From: devel@edk2.groups.io [mailto:devel@edk2.groups.io] On Behalf
> > > Of Abner Chang
> > > Sent: Tuesday, November 12, 2019 1:36 PM
> > > To: devel@edk2.groups.io; liming.gao@intel.com
> > > Cc: Kinney, Michael D <michael.d.kinney@intel.com>
> > > Subject: Re: [edk2-devel] [PATCH 1/1] MdePkg/Include: Add missing
> > > definitions of SMBIOS type 42h in SmBios.h
> > >
> > > This definitions was defined in SMBIOS 3.2a and we miss to have the
> > > corresponding definition for this in SmBios.h.
> > >
> > > Abner
> > >
> > > > -----Original Message-----
> > > > From: devel@edk2.groups.io [mailto:devel@edk2.groups.io] On Behalf
> > > > Of Liming Gao
> > > > Sent: Tuesday, November 12, 2019 12:43 PM
> > > > To: devel@edk2.groups.io; Chang, Abner (HPS SW/FW Technologist)
> > > > <abner.chang@hpe.com>
> > > > Cc: Kinney, Michael D <michael.d.kinney@intel.com>
> > > > Subject: Re: [edk2-devel] [PATCH 1/1] MdePkg/Include: Add missing
> > > > definitions of SMBIOS type 42h in SmBios.h
> > > >
> > > > Hi, is this a new definition in SmBios 3.3? Or is this a missing
> > > > definition in previous SmBios version?
> > > >
> > > > >-----Original Message-----
> > > > >From: devel@edk2.groups.io [mailto:devel@edk2.groups.io] On
> > > > >Behalf Of Abner Chang
> > > > >Sent: Tuesday, November 12, 2019 10:56 AM
> > > > >To: devel@edk2.groups.io
> > > > >Cc: abner.chang@hpe.com; Kinney, Michael D
> > > > ><michael.d.kinney@intel.com>; Gao, Liming <liming.gao@intel.com>
> > > > >Subject: [edk2-devel] [PATCH 1/1] MdePkg/Include: Add missing
> > > > >definitions of SMBIOS type 42h in SmBios.h
> > > > >
> > > > >Add host interface Protocol Type Data Format structure in
> > > > >SmBios.h
> > > > >
> > > > >BZ link,
> > > > >INVALID URI REMOVED
> > > > >.org_show-5Fbug.cgi-3Fid-
> > > > 3D2328&d=DwIFAg&c=C5b8zRQO1miGmBeVZ2LFWg&r=_SN
> > > >
> > >
> >6FZBN4Vgi4Ulkskz6qU3NYRO03nHp9P7Z5q59A3E&m=nqCVIRL9hVAaMUSX
> > > > QUQXjFwJWv39
> > > > >I6U90eR54obtRSM&s=p7ENdrSPY3KJNnhX8zR5S1D8ZkjtYzhhhe-ki9-
> > > > 2mTQ&e=
> > > > >
> > > > >Signed-off-by: Abner Chang <abner.chang@hpe.com>
> > > > >
> > > > >Cc: Michael D Kinney <michael.d.kinney@intel.com>
> > > > >Cc: Liming Gao <liming.gao@intel.com>
> > > > >Signed-off-by: Abner Chang <abner.chang@hpe.com>
> > > > >---
> > > > > MdePkg/Include/IndustryStandard/SmBios.h | 9 +++++++++
> > > > > 1 file changed, 9 insertions(+)
> > > > >
> > > > >diff --git a/MdePkg/Include/IndustryStandard/SmBios.h
> > > > >b/MdePkg/Include/IndustryStandard/SmBios.h
> > > > >index f504cc84e7..c0144c9c8f 100644
> > > > >--- a/MdePkg/Include/IndustryStandard/SmBios.h
> > > > >+++ b/MdePkg/Include/IndustryStandard/SmBios.h
> > > > >@@ -2483,6 +2483,15 @@ typedef struct {
> > > > >   UINT8                             DevFuncNum;
> > > > > } SMBIOS_TABLE_TYPE41;
> > > > >
> > > > >+///
> > > > >+///  Management Controller Host Interface - Protocol Record Data
> > > Format.
> > > > >+///
> > > > >+typedef struct {
> > > > >+  UINT8                        ProtocolType;
> > > > >+  UINT8                        ProtocolTypeDataLen;
> > > > >+  UINT8                        ProtocolTypeData[1];
> > > > >+} MC_HOST_INTERFACE_PROTOCOL_RECORD;
> > > > >+
> > > > > ///
> > > > > /// Management Controller Host Interface - Interface Types.
> > > > > /// 00h - 3Fh: MCTP Host Interfaces
> > > > >--
> > > > >2.21.0.windows.1
> > > > >
> > > > >
> > > > >
> > > >
> > > >
> > > >
> > >
> > >
> > >
> >
> 
> 
> 


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

end of thread, other threads:[~2019-11-19  0:44 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-11-12  2:55 [PATCH 1/1] MdePkg/Include: Add missing definitions of SMBIOS type 42h in SmBios.h Abner Chang
2019-11-12  4:42 ` [edk2-devel] " Liming Gao
2019-11-12  5:35   ` Abner Chang
     [not found]   ` <15D6538392FBC3E1.27853@groups.io>
2019-11-18 15:15     ` Abner Chang
2019-11-18 15:25       ` Liming Gao
2019-11-19  0:44         ` Abner Chang

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