public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
* [PATCH] MdePkg: Add PCI Express 5.0 Header File
@ 2020-02-04 21:30 Felix Polyudov
  2020-02-07  5:10 ` Liming Gao
  0 siblings, 1 reply; 5+ messages in thread
From: Felix Polyudov @ 2020-02-04 21:30 UTC (permalink / raw)
  To: devel; +Cc: michael.d.kinney, liming.gao, manickavasakamk

The header includes Physical Layer PCI Express Extended Capability
definitions based on section 7.7.6 of PCI Express Base Specification 5.0.

Signed-off-by: Felix Polyudov <felixp@ami.com>
---
 MdePkg/Include/IndustryStandard/PciExpress50.h | 136 +++++++++++++++++++++++++
 1 file changed, 136 insertions(+)
 create mode 100644 MdePkg/Include/IndustryStandard/PciExpress50.h

diff --git a/MdePkg/Include/IndustryStandard/PciExpress50.h b/MdePkg/Include/IndustryStandard/PciExpress50.h
new file mode 100644
index 0000000..26eae0b
--- /dev/null
+++ b/MdePkg/Include/IndustryStandard/PciExpress50.h
@@ -0,0 +1,136 @@
+/** @file
+Support for the PCI Express 5.0 standard.
+
+This header file may not define all structures.  Please extend as required.
+
+Copyright (c) 2020, American Megatrends International LLC. All rights reserved.<BR>
+SPDX-License-Identifier: BSD-2-Clause-Patent
+
+**/
+
+#ifndef _PCIEXPRESS50_H_
+#define _PCIEXPRESS50_H_
+
+#include <IndustryStandard/PciExpress40.h>
+
+#pragma pack(1)
+
+/// The Physical Layer PCI Express Extended Capability definitions.
+///
+/// Based on section 7.7.6 of PCI Express Base Specification 5.0.
+///@{
+#define PCI_EXPRESS_EXTENDED_CAPABILITY_PHYSICAL_LAYER_32_0_ID    0x002A
+#define PCI_EXPRESS_EXTENDED_CAPABILITY_PHYSICAL_LAYER_32_0_VER1  0x1
+
+// Register offsets from Physical Layer PCI-E Ext Cap Header
+#define PCI_EXPRESS_REG_PHYSICAL_LAYER_32_0_CAPABILITIES_OFFSET                         0x04
+#define PCI_EXPRESS_REG_PHYSICAL_LAYER_32_0_CONTROL_OFFSET                              0x08
+#define PCI_EXPRESS_REG_PHYSICAL_LAYER_32_0_STATUS_OFFSET                               0x0C
+#define PCI_EXPRESS_REG_PHYSICAL_LAYER_32_0_RCVD_MODIFIED_TS_DATA1_OFFSET               0x10
+#define PCI_EXPRESS_REG_PHYSICAL_LAYER_32_0_RCVD_MODIFIED_TS_DATA2_OFFSET               0x14
+#define PCI_EXPRESS_REG_PHYSICAL_LAYER_32_0_TRANS_MODIFIED_TS_DATA1_OFFSET              0x18
+#define PCI_EXPRESS_REG_PHYSICAL_LAYER_32_0_TRANS_MODIFIED_TS_DATA2_OFFSET              0x1C
+#define PCI_EXPRESS_REG_PHYSICAL_LAYER_32_0_LANE_EQUALIZATION_CONTROL_OFFSET            0x20
+
+typedef union {
+  struct {
+    UINT32 EqualizationByPassToHighestRateSupport                  : 1; // bit 0
+    UINT32 NoEqualizationNeededSupport                             : 1; // bit 1
+    UINT32 Reserved1                                               : 6; // Reserved bit 2:7
+    UINT32 ModifiedTSUsageMode0Support                             : 1; // bit 8
+    UINT32 ModifiedTSUsageMode1Support                             : 1; // bit 9
+    UINT32 ModifiedTSUsageMode2Support                             : 1; // bit 10
+    UINT32 ModifiedTSReservedUsageModes                            : 5; // bit 11:15
+    UINT32 Reserved2                                               : 16; // Reserved bit 16:31
+  } Bits;
+  UINT32   Uint32;
+} PCI_EXPRESS_REG_PHYSICAL_LAYER_32_0_CAPABILITIES;
+
+typedef union {
+  struct {
+    UINT32 EqualizationByPassToHighestRateDisable                  : 1; // bit 0
+    UINT32 NoEqualizationNeededDisable                             : 1; // bit 1
+    UINT32 Reserved1                                               : 6; // Reserved bit 2:7
+    UINT32 ModifiedTSUsageModeSelected                             : 3; // bit 8:10
+    UINT32 Reserved2                                               : 21; // Reserved bit 11:31
+  } Bits;
+  UINT32   Uint32;
+} PCI_EXPRESS_REG_PHYSICAL_LAYER_32_0_CONTROL;
+
+typedef union {
+  struct {
+    UINT32 EqualizationComplete      : 1; // bit 0
+    UINT32 EqualizationPhase1Success : 1; // bit 1
+    UINT32 EqualizationPhase2Success : 1; // bit 2
+    UINT32 EqualizationPhase3Success : 1; // bit 3
+    UINT32 LinkEqualizationRequest   : 1; // bit 4
+    UINT32 ModifiedTSRcvd            : 1; // bit 5
+    UINT32 RcvdEnhancedLinkControl   : 2; // bit 6:7
+    UINT32 TransmitterPrecodingOn    : 1; // bit 8
+    UINT32 TransmitterPrecodeRequest : 1; // bit 9
+    UINT32 NoEqualizationNeededRcvd  : 1; // bit 10
+    UINT32 Reserved                  : 21; // Reserved bit 11:31
+  } Bits;
+  UINT32   Uint32;
+} PCI_EXPRESS_REG_PHYSICAL_LAYER_32_0_STATUS;
+
+typedef union {
+  struct {
+    UINT32 RcvdModifiedTSUsageMode   : 3; // bit 0:2
+    UINT32 RcvdModifiedTSUsageInfo1  : 13; // bit 3:15
+    UINT32 RcvdModifiedTSVendorId    : 16; // bit 16:31
+  } Bits;
+  UINT32   Uint32;
+} PCI_EXPRESS_REG_PHYSICAL_LAYER_32_0_RCVD_MODIFIED_TS_DATA1;
+
+typedef union {
+  struct {
+    UINT32 RcvdModifiedTSUsageInfo2     : 24; // bit 0:23
+    UINT32 AltProtocolNegotiationStatus : 2; // bit 24:25
+    UINT32 Reserved                     : 6; // Reserved bit 26:31
+  } Bits;
+  UINT32   Uint32;
+} PCI_EXPRESS_REG_PHYSICAL_LAYER_32_0_RCVD_MODIFIED_TS_DATA2;
+
+typedef union {
+  struct {
+    UINT32 TransModifiedTSUsageMode   : 3; // bit 0:2
+    UINT32 TransModifiedTSUsageInfo1  : 13; // bit 3:15
+    UINT32 TransModifiedTSVendorId    : 16; // bit 16:31
+  } Bits;
+  UINT32   Uint32;
+} PCI_EXPRESS_REG_PHYSICAL_LAYER_32_0_TRANS_MODIFIED_TS_DATA1;
+
+typedef union {
+  struct {
+    UINT32 TransModifiedTSUsageInfo2    : 24; // bit 0:23
+    UINT32 AltProtocolNegotiationStatus : 2; // bit 24:25
+    UINT32 Reserved                     : 6; // Reserved bit 26:31
+  } Bits;
+  UINT32   Uint32;
+} PCI_EXPRESS_REG_PHYSICAL_LAYER_32_0_TRANS_MODIFIED_TS_DATA2;
+
+typedef union {
+  struct {
+    UINT8 DownstreamPortTransmitterPreset : 4; //bit 0..3
+    UINT8 UpstreamPortTransmitterPreset   : 4; //bit 4..7
+  } Bits;
+  UINT8   Uint8;
+} PCI_EXPRESS_REG_PHYSICAL_LAYER_32_0_LANE_EQUALIZATION_CONTROL;
+
+typedef struct {
+  PCI_EXPRESS_EXTENDED_CAPABILITIES_HEADER                      Header;
+  PCI_EXPRESS_REG_PHYSICAL_LAYER_32_0_CAPABILITIES              Capablities;
+  PCI_EXPRESS_REG_PHYSICAL_LAYER_32_0_CONTROL                   Control;
+  PCI_EXPRESS_REG_PHYSICAL_LAYER_32_0_STATUS                    Status;
+  PCI_EXPRESS_REG_PHYSICAL_LAYER_32_0_RCVD_MODIFIED_TS_DATA1    RcvdModifiedTs1Data;
+  PCI_EXPRESS_REG_PHYSICAL_LAYER_32_0_RCVD_MODIFIED_TS_DATA2    RcvdModifiedTs2Data;
+  PCI_EXPRESS_REG_PHYSICAL_LAYER_32_0_TRANS_MODIFIED_TS_DATA1   TransModifiedTs1Data;
+  PCI_EXPRESS_REG_PHYSICAL_LAYER_32_0_TRANS_MODIFIED_TS_DATA2   TransModifiedTs2Data;
+  PCI_EXPRESS_REG_PHYSICAL_LAYER_32_0_LANE_EQUALIZATION_CONTROL LaneEqualizationControl[1];
+} PCI_EXPRESS_EXTENDED_CAPABILITIES_PHYSICAL_LAYER_32_0;
+///@}
+
+#pragma pack()
+
+#endif
-- 
2.10.0.windows.1


Please consider the environment before printing this email.

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 related	[flat|nested] 5+ messages in thread

* Re: [PATCH] MdePkg: Add PCI Express 5.0 Header File
  2020-02-04 21:30 [PATCH] MdePkg: Add PCI Express 5.0 Header File Felix Polyudov
@ 2020-02-07  5:10 ` Liming Gao
  2020-02-07 20:57   ` Felix Polyudov
  0 siblings, 1 reply; 5+ messages in thread
From: Liming Gao @ 2020-02-07  5:10 UTC (permalink / raw)
  To: Felix Polyudov, devel@edk2.groups.io
  Cc: Kinney, Michael D, manickavasakamk@ami.com

Felix:
   The patch is good. Is any test for the header file, such as build?

Thanks
Liming
> -----Original Message-----
> From: Felix Polyudov <felixp@ami.com>
> Sent: Wednesday, February 5, 2020 5:30 AM
> To: devel@edk2.groups.io
> Cc: Kinney, Michael D <michael.d.kinney@intel.com>; Gao, Liming <liming.gao@intel.com>; manickavasakamk@ami.com
> Subject: [PATCH] MdePkg: Add PCI Express 5.0 Header File
> 
> The header includes Physical Layer PCI Express Extended Capability
> definitions based on section 7.7.6 of PCI Express Base Specification 5.0.
> 
> Signed-off-by: Felix Polyudov <felixp@ami.com>
> ---
>  MdePkg/Include/IndustryStandard/PciExpress50.h | 136 +++++++++++++++++++++++++
>  1 file changed, 136 insertions(+)
>  create mode 100644 MdePkg/Include/IndustryStandard/PciExpress50.h
> 
> diff --git a/MdePkg/Include/IndustryStandard/PciExpress50.h b/MdePkg/Include/IndustryStandard/PciExpress50.h
> new file mode 100644
> index 0000000..26eae0b
> --- /dev/null
> +++ b/MdePkg/Include/IndustryStandard/PciExpress50.h
> @@ -0,0 +1,136 @@
> +/** @file
> +Support for the PCI Express 5.0 standard.
> +
> +This header file may not define all structures.  Please extend as required.
> +
> +Copyright (c) 2020, American Megatrends International LLC. All rights reserved.<BR>
> +SPDX-License-Identifier: BSD-2-Clause-Patent
> +
> +**/
> +
> +#ifndef _PCIEXPRESS50_H_
> +#define _PCIEXPRESS50_H_
> +
> +#include <IndustryStandard/PciExpress40.h>
> +
> +#pragma pack(1)
> +
> +/// The Physical Layer PCI Express Extended Capability definitions.
> +///
> +/// Based on section 7.7.6 of PCI Express Base Specification 5.0.
> +///@{
> +#define PCI_EXPRESS_EXTENDED_CAPABILITY_PHYSICAL_LAYER_32_0_ID    0x002A
> +#define PCI_EXPRESS_EXTENDED_CAPABILITY_PHYSICAL_LAYER_32_0_VER1  0x1
> +
> +// Register offsets from Physical Layer PCI-E Ext Cap Header
> +#define PCI_EXPRESS_REG_PHYSICAL_LAYER_32_0_CAPABILITIES_OFFSET                         0x04
> +#define PCI_EXPRESS_REG_PHYSICAL_LAYER_32_0_CONTROL_OFFSET                              0x08
> +#define PCI_EXPRESS_REG_PHYSICAL_LAYER_32_0_STATUS_OFFSET                               0x0C
> +#define PCI_EXPRESS_REG_PHYSICAL_LAYER_32_0_RCVD_MODIFIED_TS_DATA1_OFFSET               0x10
> +#define PCI_EXPRESS_REG_PHYSICAL_LAYER_32_0_RCVD_MODIFIED_TS_DATA2_OFFSET               0x14
> +#define PCI_EXPRESS_REG_PHYSICAL_LAYER_32_0_TRANS_MODIFIED_TS_DATA1_OFFSET              0x18
> +#define PCI_EXPRESS_REG_PHYSICAL_LAYER_32_0_TRANS_MODIFIED_TS_DATA2_OFFSET              0x1C
> +#define PCI_EXPRESS_REG_PHYSICAL_LAYER_32_0_LANE_EQUALIZATION_CONTROL_OFFSET            0x20
> +
> +typedef union {
> +  struct {
> +    UINT32 EqualizationByPassToHighestRateSupport                  : 1; // bit 0
> +    UINT32 NoEqualizationNeededSupport                             : 1; // bit 1
> +    UINT32 Reserved1                                               : 6; // Reserved bit 2:7
> +    UINT32 ModifiedTSUsageMode0Support                             : 1; // bit 8
> +    UINT32 ModifiedTSUsageMode1Support                             : 1; // bit 9
> +    UINT32 ModifiedTSUsageMode2Support                             : 1; // bit 10
> +    UINT32 ModifiedTSReservedUsageModes                            : 5; // bit 11:15
> +    UINT32 Reserved2                                               : 16; // Reserved bit 16:31
> +  } Bits;
> +  UINT32   Uint32;
> +} PCI_EXPRESS_REG_PHYSICAL_LAYER_32_0_CAPABILITIES;
> +
> +typedef union {
> +  struct {
> +    UINT32 EqualizationByPassToHighestRateDisable                  : 1; // bit 0
> +    UINT32 NoEqualizationNeededDisable                             : 1; // bit 1
> +    UINT32 Reserved1                                               : 6; // Reserved bit 2:7
> +    UINT32 ModifiedTSUsageModeSelected                             : 3; // bit 8:10
> +    UINT32 Reserved2                                               : 21; // Reserved bit 11:31
> +  } Bits;
> +  UINT32   Uint32;
> +} PCI_EXPRESS_REG_PHYSICAL_LAYER_32_0_CONTROL;
> +
> +typedef union {
> +  struct {
> +    UINT32 EqualizationComplete      : 1; // bit 0
> +    UINT32 EqualizationPhase1Success : 1; // bit 1
> +    UINT32 EqualizationPhase2Success : 1; // bit 2
> +    UINT32 EqualizationPhase3Success : 1; // bit 3
> +    UINT32 LinkEqualizationRequest   : 1; // bit 4
> +    UINT32 ModifiedTSRcvd            : 1; // bit 5
> +    UINT32 RcvdEnhancedLinkControl   : 2; // bit 6:7
> +    UINT32 TransmitterPrecodingOn    : 1; // bit 8
> +    UINT32 TransmitterPrecodeRequest : 1; // bit 9
> +    UINT32 NoEqualizationNeededRcvd  : 1; // bit 10
> +    UINT32 Reserved                  : 21; // Reserved bit 11:31
> +  } Bits;
> +  UINT32   Uint32;
> +} PCI_EXPRESS_REG_PHYSICAL_LAYER_32_0_STATUS;
> +
> +typedef union {
> +  struct {
> +    UINT32 RcvdModifiedTSUsageMode   : 3; // bit 0:2
> +    UINT32 RcvdModifiedTSUsageInfo1  : 13; // bit 3:15
> +    UINT32 RcvdModifiedTSVendorId    : 16; // bit 16:31
> +  } Bits;
> +  UINT32   Uint32;
> +} PCI_EXPRESS_REG_PHYSICAL_LAYER_32_0_RCVD_MODIFIED_TS_DATA1;
> +
> +typedef union {
> +  struct {
> +    UINT32 RcvdModifiedTSUsageInfo2     : 24; // bit 0:23
> +    UINT32 AltProtocolNegotiationStatus : 2; // bit 24:25
> +    UINT32 Reserved                     : 6; // Reserved bit 26:31
> +  } Bits;
> +  UINT32   Uint32;
> +} PCI_EXPRESS_REG_PHYSICAL_LAYER_32_0_RCVD_MODIFIED_TS_DATA2;
> +
> +typedef union {
> +  struct {
> +    UINT32 TransModifiedTSUsageMode   : 3; // bit 0:2
> +    UINT32 TransModifiedTSUsageInfo1  : 13; // bit 3:15
> +    UINT32 TransModifiedTSVendorId    : 16; // bit 16:31
> +  } Bits;
> +  UINT32   Uint32;
> +} PCI_EXPRESS_REG_PHYSICAL_LAYER_32_0_TRANS_MODIFIED_TS_DATA1;
> +
> +typedef union {
> +  struct {
> +    UINT32 TransModifiedTSUsageInfo2    : 24; // bit 0:23
> +    UINT32 AltProtocolNegotiationStatus : 2; // bit 24:25
> +    UINT32 Reserved                     : 6; // Reserved bit 26:31
> +  } Bits;
> +  UINT32   Uint32;
> +} PCI_EXPRESS_REG_PHYSICAL_LAYER_32_0_TRANS_MODIFIED_TS_DATA2;
> +
> +typedef union {
> +  struct {
> +    UINT8 DownstreamPortTransmitterPreset : 4; //bit 0..3
> +    UINT8 UpstreamPortTransmitterPreset   : 4; //bit 4..7
> +  } Bits;
> +  UINT8   Uint8;
> +} PCI_EXPRESS_REG_PHYSICAL_LAYER_32_0_LANE_EQUALIZATION_CONTROL;
> +
> +typedef struct {
> +  PCI_EXPRESS_EXTENDED_CAPABILITIES_HEADER                      Header;
> +  PCI_EXPRESS_REG_PHYSICAL_LAYER_32_0_CAPABILITIES              Capablities;
> +  PCI_EXPRESS_REG_PHYSICAL_LAYER_32_0_CONTROL                   Control;
> +  PCI_EXPRESS_REG_PHYSICAL_LAYER_32_0_STATUS                    Status;
> +  PCI_EXPRESS_REG_PHYSICAL_LAYER_32_0_RCVD_MODIFIED_TS_DATA1    RcvdModifiedTs1Data;
> +  PCI_EXPRESS_REG_PHYSICAL_LAYER_32_0_RCVD_MODIFIED_TS_DATA2    RcvdModifiedTs2Data;
> +  PCI_EXPRESS_REG_PHYSICAL_LAYER_32_0_TRANS_MODIFIED_TS_DATA1   TransModifiedTs1Data;
> +  PCI_EXPRESS_REG_PHYSICAL_LAYER_32_0_TRANS_MODIFIED_TS_DATA2   TransModifiedTs2Data;
> +  PCI_EXPRESS_REG_PHYSICAL_LAYER_32_0_LANE_EQUALIZATION_CONTROL LaneEqualizationControl[1];
> +} PCI_EXPRESS_EXTENDED_CAPABILITIES_PHYSICAL_LAYER_32_0;
> +///@}
> +
> +#pragma pack()
> +
> +#endif
> --
> 2.10.0.windows.1
> 
> 
> Please consider the environment before printing this email.
> 
> 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] 5+ messages in thread

* Re: [PATCH] MdePkg: Add PCI Express 5.0 Header File
  2020-02-07  5:10 ` Liming Gao
@ 2020-02-07 20:57   ` Felix Polyudov
  2020-02-11 22:34     ` Felix Polyudov
  0 siblings, 1 reply; 5+ messages in thread
From: Felix Polyudov @ 2020-02-07 20:57 UTC (permalink / raw)
  To: 'Gao, Liming', devel@edk2.groups.io
  Cc: Kinney, Michael D, Manickavasakam Karpagavinayagam

Yes, we did build tests on Windows/VS and Linux/GCC.

-----Original Message-----
From: Gao, Liming [mailto:liming.gao@intel.com]
Sent: Friday, February 07, 2020 12:10 AM
To: Felix Polyudov; devel@edk2.groups.io
Cc: Kinney, Michael D; Manickavasakam Karpagavinayagam
Subject: RE: [PATCH] MdePkg: Add PCI Express 5.0 Header File

Felix:
   The patch is good. Is any test for the header file, such as build?

Thanks
Liming
> -----Original Message-----
> From: Felix Polyudov <felixp@ami.com>
> Sent: Wednesday, February 5, 2020 5:30 AM
> To: devel@edk2.groups.io
> Cc: Kinney, Michael D <michael.d.kinney@intel.com>; Gao, Liming <liming.gao@intel.com>; manickavasakamk@ami.com
> Subject: [PATCH] MdePkg: Add PCI Express 5.0 Header File
>
> The header includes Physical Layer PCI Express Extended Capability
> definitions based on section 7.7.6 of PCI Express Base Specification 5.0.
>
> Signed-off-by: Felix Polyudov <felixp@ami.com>
> ---
>  MdePkg/Include/IndustryStandard/PciExpress50.h | 136 +++++++++++++++++++++++++
>  1 file changed, 136 insertions(+)
>  create mode 100644 MdePkg/Include/IndustryStandard/PciExpress50.h
>
> diff --git a/MdePkg/Include/IndustryStandard/PciExpress50.h b/MdePkg/Include/IndustryStandard/PciExpress50.h
> new file mode 100644
> index 0000000..26eae0b
> --- /dev/null
> +++ b/MdePkg/Include/IndustryStandard/PciExpress50.h
> @@ -0,0 +1,136 @@
> +/** @file
> +Support for the PCI Express 5.0 standard.
> +
> +This header file may not define all structures.  Please extend as required.
> +
> +Copyright (c) 2020, American Megatrends International LLC. All rights reserved.<BR>
> +SPDX-License-Identifier: BSD-2-Clause-Patent
> +
> +**/
> +
> +#ifndef _PCIEXPRESS50_H_
> +#define _PCIEXPRESS50_H_
> +
> +#include <IndustryStandard/PciExpress40.h>
> +
> +#pragma pack(1)
> +
> +/// The Physical Layer PCI Express Extended Capability definitions.
> +///
> +/// Based on section 7.7.6 of PCI Express Base Specification 5.0.
> +///@{
> +#define PCI_EXPRESS_EXTENDED_CAPABILITY_PHYSICAL_LAYER_32_0_ID    0x002A
> +#define PCI_EXPRESS_EXTENDED_CAPABILITY_PHYSICAL_LAYER_32_0_VER1  0x1
> +
> +// Register offsets from Physical Layer PCI-E Ext Cap Header
> +#define PCI_EXPRESS_REG_PHYSICAL_LAYER_32_0_CAPABILITIES_OFFSET                         0x04
> +#define PCI_EXPRESS_REG_PHYSICAL_LAYER_32_0_CONTROL_OFFSET                              0x08
> +#define PCI_EXPRESS_REG_PHYSICAL_LAYER_32_0_STATUS_OFFSET                               0x0C
> +#define PCI_EXPRESS_REG_PHYSICAL_LAYER_32_0_RCVD_MODIFIED_TS_DATA1_OFFSET               0x10
> +#define PCI_EXPRESS_REG_PHYSICAL_LAYER_32_0_RCVD_MODIFIED_TS_DATA2_OFFSET               0x14
> +#define PCI_EXPRESS_REG_PHYSICAL_LAYER_32_0_TRANS_MODIFIED_TS_DATA1_OFFSET              0x18
> +#define PCI_EXPRESS_REG_PHYSICAL_LAYER_32_0_TRANS_MODIFIED_TS_DATA2_OFFSET              0x1C
> +#define PCI_EXPRESS_REG_PHYSICAL_LAYER_32_0_LANE_EQUALIZATION_CONTROL_OFFSET            0x20
> +
> +typedef union {
> +  struct {
> +    UINT32 EqualizationByPassToHighestRateSupport                  : 1; // bit 0
> +    UINT32 NoEqualizationNeededSupport                             : 1; // bit 1
> +    UINT32 Reserved1                                               : 6; // Reserved bit 2:7
> +    UINT32 ModifiedTSUsageMode0Support                             : 1; // bit 8
> +    UINT32 ModifiedTSUsageMode1Support                             : 1; // bit 9
> +    UINT32 ModifiedTSUsageMode2Support                             : 1; // bit 10
> +    UINT32 ModifiedTSReservedUsageModes                            : 5; // bit 11:15
> +    UINT32 Reserved2                                               : 16; // Reserved bit 16:31
> +  } Bits;
> +  UINT32   Uint32;
> +} PCI_EXPRESS_REG_PHYSICAL_LAYER_32_0_CAPABILITIES;
> +
> +typedef union {
> +  struct {
> +    UINT32 EqualizationByPassToHighestRateDisable                  : 1; // bit 0
> +    UINT32 NoEqualizationNeededDisable                             : 1; // bit 1
> +    UINT32 Reserved1                                               : 6; // Reserved bit 2:7
> +    UINT32 ModifiedTSUsageModeSelected                             : 3; // bit 8:10
> +    UINT32 Reserved2                                               : 21; // Reserved bit 11:31
> +  } Bits;
> +  UINT32   Uint32;
> +} PCI_EXPRESS_REG_PHYSICAL_LAYER_32_0_CONTROL;
> +
> +typedef union {
> +  struct {
> +    UINT32 EqualizationComplete      : 1; // bit 0
> +    UINT32 EqualizationPhase1Success : 1; // bit 1
> +    UINT32 EqualizationPhase2Success : 1; // bit 2
> +    UINT32 EqualizationPhase3Success : 1; // bit 3
> +    UINT32 LinkEqualizationRequest   : 1; // bit 4
> +    UINT32 ModifiedTSRcvd            : 1; // bit 5
> +    UINT32 RcvdEnhancedLinkControl   : 2; // bit 6:7
> +    UINT32 TransmitterPrecodingOn    : 1; // bit 8
> +    UINT32 TransmitterPrecodeRequest : 1; // bit 9
> +    UINT32 NoEqualizationNeededRcvd  : 1; // bit 10
> +    UINT32 Reserved                  : 21; // Reserved bit 11:31
> +  } Bits;
> +  UINT32   Uint32;
> +} PCI_EXPRESS_REG_PHYSICAL_LAYER_32_0_STATUS;
> +
> +typedef union {
> +  struct {
> +    UINT32 RcvdModifiedTSUsageMode   : 3; // bit 0:2
> +    UINT32 RcvdModifiedTSUsageInfo1  : 13; // bit 3:15
> +    UINT32 RcvdModifiedTSVendorId    : 16; // bit 16:31
> +  } Bits;
> +  UINT32   Uint32;
> +} PCI_EXPRESS_REG_PHYSICAL_LAYER_32_0_RCVD_MODIFIED_TS_DATA1;
> +
> +typedef union {
> +  struct {
> +    UINT32 RcvdModifiedTSUsageInfo2     : 24; // bit 0:23
> +    UINT32 AltProtocolNegotiationStatus : 2; // bit 24:25
> +    UINT32 Reserved                     : 6; // Reserved bit 26:31
> +  } Bits;
> +  UINT32   Uint32;
> +} PCI_EXPRESS_REG_PHYSICAL_LAYER_32_0_RCVD_MODIFIED_TS_DATA2;
> +
> +typedef union {
> +  struct {
> +    UINT32 TransModifiedTSUsageMode   : 3; // bit 0:2
> +    UINT32 TransModifiedTSUsageInfo1  : 13; // bit 3:15
> +    UINT32 TransModifiedTSVendorId    : 16; // bit 16:31
> +  } Bits;
> +  UINT32   Uint32;
> +} PCI_EXPRESS_REG_PHYSICAL_LAYER_32_0_TRANS_MODIFIED_TS_DATA1;
> +
> +typedef union {
> +  struct {
> +    UINT32 TransModifiedTSUsageInfo2    : 24; // bit 0:23
> +    UINT32 AltProtocolNegotiationStatus : 2; // bit 24:25
> +    UINT32 Reserved                     : 6; // Reserved bit 26:31
> +  } Bits;
> +  UINT32   Uint32;
> +} PCI_EXPRESS_REG_PHYSICAL_LAYER_32_0_TRANS_MODIFIED_TS_DATA2;
> +
> +typedef union {
> +  struct {
> +    UINT8 DownstreamPortTransmitterPreset : 4; //bit 0..3
> +    UINT8 UpstreamPortTransmitterPreset   : 4; //bit 4..7
> +  } Bits;
> +  UINT8   Uint8;
> +} PCI_EXPRESS_REG_PHYSICAL_LAYER_32_0_LANE_EQUALIZATION_CONTROL;
> +
> +typedef struct {
> +  PCI_EXPRESS_EXTENDED_CAPABILITIES_HEADER                      Header;
> +  PCI_EXPRESS_REG_PHYSICAL_LAYER_32_0_CAPABILITIES              Capablities;
> +  PCI_EXPRESS_REG_PHYSICAL_LAYER_32_0_CONTROL                   Control;
> +  PCI_EXPRESS_REG_PHYSICAL_LAYER_32_0_STATUS                    Status;
> +  PCI_EXPRESS_REG_PHYSICAL_LAYER_32_0_RCVD_MODIFIED_TS_DATA1    RcvdModifiedTs1Data;
> +  PCI_EXPRESS_REG_PHYSICAL_LAYER_32_0_RCVD_MODIFIED_TS_DATA2    RcvdModifiedTs2Data;
> +  PCI_EXPRESS_REG_PHYSICAL_LAYER_32_0_TRANS_MODIFIED_TS_DATA1   TransModifiedTs1Data;
> +  PCI_EXPRESS_REG_PHYSICAL_LAYER_32_0_TRANS_MODIFIED_TS_DATA2   TransModifiedTs2Data;
> +  PCI_EXPRESS_REG_PHYSICAL_LAYER_32_0_LANE_EQUALIZATION_CONTROL LaneEqualizationControl[1];
> +} PCI_EXPRESS_EXTENDED_CAPABILITIES_PHYSICAL_LAYER_32_0;
> +///@}
> +
> +#pragma pack()
> +
> +#endif
> --
> 2.10.0.windows.1
>
>
> Please consider the environment before printing this email.
>
> 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.

Please consider the environment before printing this email.

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] 5+ messages in thread

* Re: [PATCH] MdePkg: Add PCI Express 5.0 Header File
  2020-02-07 20:57   ` Felix Polyudov
@ 2020-02-11 22:34     ` Felix Polyudov
  2020-02-12  1:06       ` Liming Gao
  0 siblings, 1 reply; 5+ messages in thread
From: Felix Polyudov @ 2020-02-11 22:34 UTC (permalink / raw)
  To: 'Gao, Liming', 'devel@edk2.groups.io'

Liming,

Any update on this patch?

-----Original Message-----
From: Felix Polyudov
Sent: Friday, February 07, 2020 3:58 PM
To: 'Gao, Liming'; devel@edk2.groups.io
Cc: Kinney, Michael D; Manickavasakam Karpagavinayagam
Subject: RE: [PATCH] MdePkg: Add PCI Express 5.0 Header File

Yes, we did build tests on Windows/VS and Linux/GCC.

-----Original Message-----
From: Gao, Liming [mailto:liming.gao@intel.com]
Sent: Friday, February 07, 2020 12:10 AM
To: Felix Polyudov; devel@edk2.groups.io
Cc: Kinney, Michael D; Manickavasakam Karpagavinayagam
Subject: RE: [PATCH] MdePkg: Add PCI Express 5.0 Header File

Felix:
   The patch is good. Is any test for the header file, such as build?

Thanks
Liming
> -----Original Message-----
> From: Felix Polyudov <felixp@ami.com>
> Sent: Wednesday, February 5, 2020 5:30 AM
> To: devel@edk2.groups.io
> Cc: Kinney, Michael D <michael.d.kinney@intel.com>; Gao, Liming <liming.gao@intel.com>; manickavasakamk@ami.com
> Subject: [PATCH] MdePkg: Add PCI Express 5.0 Header File
>
> The header includes Physical Layer PCI Express Extended Capability
> definitions based on section 7.7.6 of PCI Express Base Specification 5.0.
>
> Signed-off-by: Felix Polyudov <felixp@ami.com>
> ---
>  MdePkg/Include/IndustryStandard/PciExpress50.h | 136 +++++++++++++++++++++++++
>  1 file changed, 136 insertions(+)
>  create mode 100644 MdePkg/Include/IndustryStandard/PciExpress50.h
>
> diff --git a/MdePkg/Include/IndustryStandard/PciExpress50.h b/MdePkg/Include/IndustryStandard/PciExpress50.h
> new file mode 100644
> index 0000000..26eae0b
> --- /dev/null
> +++ b/MdePkg/Include/IndustryStandard/PciExpress50.h
> @@ -0,0 +1,136 @@
> +/** @file
> +Support for the PCI Express 5.0 standard.
> +
> +This header file may not define all structures.  Please extend as required.
> +
> +Copyright (c) 2020, American Megatrends International LLC. All rights reserved.<BR>
> +SPDX-License-Identifier: BSD-2-Clause-Patent
> +
> +**/
> +
> +#ifndef _PCIEXPRESS50_H_
> +#define _PCIEXPRESS50_H_
> +
> +#include <IndustryStandard/PciExpress40.h>
> +
> +#pragma pack(1)
> +
> +/// The Physical Layer PCI Express Extended Capability definitions.
> +///
> +/// Based on section 7.7.6 of PCI Express Base Specification 5.0.
> +///@{
> +#define PCI_EXPRESS_EXTENDED_CAPABILITY_PHYSICAL_LAYER_32_0_ID    0x002A
> +#define PCI_EXPRESS_EXTENDED_CAPABILITY_PHYSICAL_LAYER_32_0_VER1  0x1
> +
> +// Register offsets from Physical Layer PCI-E Ext Cap Header
> +#define PCI_EXPRESS_REG_PHYSICAL_LAYER_32_0_CAPABILITIES_OFFSET                         0x04
> +#define PCI_EXPRESS_REG_PHYSICAL_LAYER_32_0_CONTROL_OFFSET                              0x08
> +#define PCI_EXPRESS_REG_PHYSICAL_LAYER_32_0_STATUS_OFFSET                               0x0C
> +#define PCI_EXPRESS_REG_PHYSICAL_LAYER_32_0_RCVD_MODIFIED_TS_DATA1_OFFSET               0x10
> +#define PCI_EXPRESS_REG_PHYSICAL_LAYER_32_0_RCVD_MODIFIED_TS_DATA2_OFFSET               0x14
> +#define PCI_EXPRESS_REG_PHYSICAL_LAYER_32_0_TRANS_MODIFIED_TS_DATA1_OFFSET              0x18
> +#define PCI_EXPRESS_REG_PHYSICAL_LAYER_32_0_TRANS_MODIFIED_TS_DATA2_OFFSET              0x1C
> +#define PCI_EXPRESS_REG_PHYSICAL_LAYER_32_0_LANE_EQUALIZATION_CONTROL_OFFSET            0x20
> +
> +typedef union {
> +  struct {
> +    UINT32 EqualizationByPassToHighestRateSupport                  : 1; // bit 0
> +    UINT32 NoEqualizationNeededSupport                             : 1; // bit 1
> +    UINT32 Reserved1                                               : 6; // Reserved bit 2:7
> +    UINT32 ModifiedTSUsageMode0Support                             : 1; // bit 8
> +    UINT32 ModifiedTSUsageMode1Support                             : 1; // bit 9
> +    UINT32 ModifiedTSUsageMode2Support                             : 1; // bit 10
> +    UINT32 ModifiedTSReservedUsageModes                            : 5; // bit 11:15
> +    UINT32 Reserved2                                               : 16; // Reserved bit 16:31
> +  } Bits;
> +  UINT32   Uint32;
> +} PCI_EXPRESS_REG_PHYSICAL_LAYER_32_0_CAPABILITIES;
> +
> +typedef union {
> +  struct {
> +    UINT32 EqualizationByPassToHighestRateDisable                  : 1; // bit 0
> +    UINT32 NoEqualizationNeededDisable                             : 1; // bit 1
> +    UINT32 Reserved1                                               : 6; // Reserved bit 2:7
> +    UINT32 ModifiedTSUsageModeSelected                             : 3; // bit 8:10
> +    UINT32 Reserved2                                               : 21; // Reserved bit 11:31
> +  } Bits;
> +  UINT32   Uint32;
> +} PCI_EXPRESS_REG_PHYSICAL_LAYER_32_0_CONTROL;
> +
> +typedef union {
> +  struct {
> +    UINT32 EqualizationComplete      : 1; // bit 0
> +    UINT32 EqualizationPhase1Success : 1; // bit 1
> +    UINT32 EqualizationPhase2Success : 1; // bit 2
> +    UINT32 EqualizationPhase3Success : 1; // bit 3
> +    UINT32 LinkEqualizationRequest   : 1; // bit 4
> +    UINT32 ModifiedTSRcvd            : 1; // bit 5
> +    UINT32 RcvdEnhancedLinkControl   : 2; // bit 6:7
> +    UINT32 TransmitterPrecodingOn    : 1; // bit 8
> +    UINT32 TransmitterPrecodeRequest : 1; // bit 9
> +    UINT32 NoEqualizationNeededRcvd  : 1; // bit 10
> +    UINT32 Reserved                  : 21; // Reserved bit 11:31
> +  } Bits;
> +  UINT32   Uint32;
> +} PCI_EXPRESS_REG_PHYSICAL_LAYER_32_0_STATUS;
> +
> +typedef union {
> +  struct {
> +    UINT32 RcvdModifiedTSUsageMode   : 3; // bit 0:2
> +    UINT32 RcvdModifiedTSUsageInfo1  : 13; // bit 3:15
> +    UINT32 RcvdModifiedTSVendorId    : 16; // bit 16:31
> +  } Bits;
> +  UINT32   Uint32;
> +} PCI_EXPRESS_REG_PHYSICAL_LAYER_32_0_RCVD_MODIFIED_TS_DATA1;
> +
> +typedef union {
> +  struct {
> +    UINT32 RcvdModifiedTSUsageInfo2     : 24; // bit 0:23
> +    UINT32 AltProtocolNegotiationStatus : 2; // bit 24:25
> +    UINT32 Reserved                     : 6; // Reserved bit 26:31
> +  } Bits;
> +  UINT32   Uint32;
> +} PCI_EXPRESS_REG_PHYSICAL_LAYER_32_0_RCVD_MODIFIED_TS_DATA2;
> +
> +typedef union {
> +  struct {
> +    UINT32 TransModifiedTSUsageMode   : 3; // bit 0:2
> +    UINT32 TransModifiedTSUsageInfo1  : 13; // bit 3:15
> +    UINT32 TransModifiedTSVendorId    : 16; // bit 16:31
> +  } Bits;
> +  UINT32   Uint32;
> +} PCI_EXPRESS_REG_PHYSICAL_LAYER_32_0_TRANS_MODIFIED_TS_DATA1;
> +
> +typedef union {
> +  struct {
> +    UINT32 TransModifiedTSUsageInfo2    : 24; // bit 0:23
> +    UINT32 AltProtocolNegotiationStatus : 2; // bit 24:25
> +    UINT32 Reserved                     : 6; // Reserved bit 26:31
> +  } Bits;
> +  UINT32   Uint32;
> +} PCI_EXPRESS_REG_PHYSICAL_LAYER_32_0_TRANS_MODIFIED_TS_DATA2;
> +
> +typedef union {
> +  struct {
> +    UINT8 DownstreamPortTransmitterPreset : 4; //bit 0..3
> +    UINT8 UpstreamPortTransmitterPreset   : 4; //bit 4..7
> +  } Bits;
> +  UINT8   Uint8;
> +} PCI_EXPRESS_REG_PHYSICAL_LAYER_32_0_LANE_EQUALIZATION_CONTROL;
> +
> +typedef struct {
> +  PCI_EXPRESS_EXTENDED_CAPABILITIES_HEADER                      Header;
> +  PCI_EXPRESS_REG_PHYSICAL_LAYER_32_0_CAPABILITIES              Capablities;
> +  PCI_EXPRESS_REG_PHYSICAL_LAYER_32_0_CONTROL                   Control;
> +  PCI_EXPRESS_REG_PHYSICAL_LAYER_32_0_STATUS                    Status;
> +  PCI_EXPRESS_REG_PHYSICAL_LAYER_32_0_RCVD_MODIFIED_TS_DATA1    RcvdModifiedTs1Data;
> +  PCI_EXPRESS_REG_PHYSICAL_LAYER_32_0_RCVD_MODIFIED_TS_DATA2    RcvdModifiedTs2Data;
> +  PCI_EXPRESS_REG_PHYSICAL_LAYER_32_0_TRANS_MODIFIED_TS_DATA1   TransModifiedTs1Data;
> +  PCI_EXPRESS_REG_PHYSICAL_LAYER_32_0_TRANS_MODIFIED_TS_DATA2   TransModifiedTs2Data;
> +  PCI_EXPRESS_REG_PHYSICAL_LAYER_32_0_LANE_EQUALIZATION_CONTROL LaneEqualizationControl[1];
> +} PCI_EXPRESS_EXTENDED_CAPABILITIES_PHYSICAL_LAYER_32_0;
> +///@}
> +
> +#pragma pack()
> +
> +#endif
> --
> 2.10.0.windows.1
>
>
> Please consider the environment before printing this email.
>
> 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.

Please consider the environment before printing this email.

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] 5+ messages in thread

* Re: [PATCH] MdePkg: Add PCI Express 5.0 Header File
  2020-02-11 22:34     ` Felix Polyudov
@ 2020-02-12  1:06       ` Liming Gao
  0 siblings, 0 replies; 5+ messages in thread
From: Liming Gao @ 2020-02-12  1:06 UTC (permalink / raw)
  To: Felix Polyudov, 'devel@edk2.groups.io'

Reviewed-by: Liming Gao <liming.gao@intel.com>

PR https://github.com/tianocore/edk2/pull/366

> -----Original Message-----
> From: Felix Polyudov <Felixp@ami.com>
> Sent: Wednesday, February 12, 2020 6:35 AM
> To: Gao, Liming <liming.gao@intel.com>; 'devel@edk2.groups.io' <devel@edk2.groups.io>
> Subject: RE: [PATCH] MdePkg: Add PCI Express 5.0 Header File
> 
> Liming,
> 
> Any update on this patch?
> 
> -----Original Message-----
> From: Felix Polyudov
> Sent: Friday, February 07, 2020 3:58 PM
> To: 'Gao, Liming'; devel@edk2.groups.io
> Cc: Kinney, Michael D; Manickavasakam Karpagavinayagam
> Subject: RE: [PATCH] MdePkg: Add PCI Express 5.0 Header File
> 
> Yes, we did build tests on Windows/VS and Linux/GCC.
> 
> -----Original Message-----
> From: Gao, Liming [mailto:liming.gao@intel.com]
> Sent: Friday, February 07, 2020 12:10 AM
> To: Felix Polyudov; devel@edk2.groups.io
> Cc: Kinney, Michael D; Manickavasakam Karpagavinayagam
> Subject: RE: [PATCH] MdePkg: Add PCI Express 5.0 Header File
> 
> Felix:
>    The patch is good. Is any test for the header file, such as build?
> 
> Thanks
> Liming
> > -----Original Message-----
> > From: Felix Polyudov <felixp@ami.com>
> > Sent: Wednesday, February 5, 2020 5:30 AM
> > To: devel@edk2.groups.io
> > Cc: Kinney, Michael D <michael.d.kinney@intel.com>; Gao, Liming <liming.gao@intel.com>; manickavasakamk@ami.com
> > Subject: [PATCH] MdePkg: Add PCI Express 5.0 Header File
> >
> > The header includes Physical Layer PCI Express Extended Capability
> > definitions based on section 7.7.6 of PCI Express Base Specification 5.0.
> >
> > Signed-off-by: Felix Polyudov <felixp@ami.com>
> > ---
> >  MdePkg/Include/IndustryStandard/PciExpress50.h | 136 +++++++++++++++++++++++++
> >  1 file changed, 136 insertions(+)
> >  create mode 100644 MdePkg/Include/IndustryStandard/PciExpress50.h
> >
> > diff --git a/MdePkg/Include/IndustryStandard/PciExpress50.h b/MdePkg/Include/IndustryStandard/PciExpress50.h
> > new file mode 100644
> > index 0000000..26eae0b
> > --- /dev/null
> > +++ b/MdePkg/Include/IndustryStandard/PciExpress50.h
> > @@ -0,0 +1,136 @@
> > +/** @file
> > +Support for the PCI Express 5.0 standard.
> > +
> > +This header file may not define all structures.  Please extend as required.
> > +
> > +Copyright (c) 2020, American Megatrends International LLC. All rights reserved.<BR>
> > +SPDX-License-Identifier: BSD-2-Clause-Patent
> > +
> > +**/
> > +
> > +#ifndef _PCIEXPRESS50_H_
> > +#define _PCIEXPRESS50_H_
> > +
> > +#include <IndustryStandard/PciExpress40.h>
> > +
> > +#pragma pack(1)
> > +
> > +/// The Physical Layer PCI Express Extended Capability definitions.
> > +///
> > +/// Based on section 7.7.6 of PCI Express Base Specification 5.0.
> > +///@{
> > +#define PCI_EXPRESS_EXTENDED_CAPABILITY_PHYSICAL_LAYER_32_0_ID    0x002A
> > +#define PCI_EXPRESS_EXTENDED_CAPABILITY_PHYSICAL_LAYER_32_0_VER1  0x1
> > +
> > +// Register offsets from Physical Layer PCI-E Ext Cap Header
> > +#define PCI_EXPRESS_REG_PHYSICAL_LAYER_32_0_CAPABILITIES_OFFSET                         0x04
> > +#define PCI_EXPRESS_REG_PHYSICAL_LAYER_32_0_CONTROL_OFFSET                              0x08
> > +#define PCI_EXPRESS_REG_PHYSICAL_LAYER_32_0_STATUS_OFFSET                               0x0C
> > +#define PCI_EXPRESS_REG_PHYSICAL_LAYER_32_0_RCVD_MODIFIED_TS_DATA1_OFFSET               0x10
> > +#define PCI_EXPRESS_REG_PHYSICAL_LAYER_32_0_RCVD_MODIFIED_TS_DATA2_OFFSET               0x14
> > +#define PCI_EXPRESS_REG_PHYSICAL_LAYER_32_0_TRANS_MODIFIED_TS_DATA1_OFFSET              0x18
> > +#define PCI_EXPRESS_REG_PHYSICAL_LAYER_32_0_TRANS_MODIFIED_TS_DATA2_OFFSET              0x1C
> > +#define PCI_EXPRESS_REG_PHYSICAL_LAYER_32_0_LANE_EQUALIZATION_CONTROL_OFFSET            0x20
> > +
> > +typedef union {
> > +  struct {
> > +    UINT32 EqualizationByPassToHighestRateSupport                  : 1; // bit 0
> > +    UINT32 NoEqualizationNeededSupport                             : 1; // bit 1
> > +    UINT32 Reserved1                                               : 6; // Reserved bit 2:7
> > +    UINT32 ModifiedTSUsageMode0Support                             : 1; // bit 8
> > +    UINT32 ModifiedTSUsageMode1Support                             : 1; // bit 9
> > +    UINT32 ModifiedTSUsageMode2Support                             : 1; // bit 10
> > +    UINT32 ModifiedTSReservedUsageModes                            : 5; // bit 11:15
> > +    UINT32 Reserved2                                               : 16; // Reserved bit 16:31
> > +  } Bits;
> > +  UINT32   Uint32;
> > +} PCI_EXPRESS_REG_PHYSICAL_LAYER_32_0_CAPABILITIES;
> > +
> > +typedef union {
> > +  struct {
> > +    UINT32 EqualizationByPassToHighestRateDisable                  : 1; // bit 0
> > +    UINT32 NoEqualizationNeededDisable                             : 1; // bit 1
> > +    UINT32 Reserved1                                               : 6; // Reserved bit 2:7
> > +    UINT32 ModifiedTSUsageModeSelected                             : 3; // bit 8:10
> > +    UINT32 Reserved2                                               : 21; // Reserved bit 11:31
> > +  } Bits;
> > +  UINT32   Uint32;
> > +} PCI_EXPRESS_REG_PHYSICAL_LAYER_32_0_CONTROL;
> > +
> > +typedef union {
> > +  struct {
> > +    UINT32 EqualizationComplete      : 1; // bit 0
> > +    UINT32 EqualizationPhase1Success : 1; // bit 1
> > +    UINT32 EqualizationPhase2Success : 1; // bit 2
> > +    UINT32 EqualizationPhase3Success : 1; // bit 3
> > +    UINT32 LinkEqualizationRequest   : 1; // bit 4
> > +    UINT32 ModifiedTSRcvd            : 1; // bit 5
> > +    UINT32 RcvdEnhancedLinkControl   : 2; // bit 6:7
> > +    UINT32 TransmitterPrecodingOn    : 1; // bit 8
> > +    UINT32 TransmitterPrecodeRequest : 1; // bit 9
> > +    UINT32 NoEqualizationNeededRcvd  : 1; // bit 10
> > +    UINT32 Reserved                  : 21; // Reserved bit 11:31
> > +  } Bits;
> > +  UINT32   Uint32;
> > +} PCI_EXPRESS_REG_PHYSICAL_LAYER_32_0_STATUS;
> > +
> > +typedef union {
> > +  struct {
> > +    UINT32 RcvdModifiedTSUsageMode   : 3; // bit 0:2
> > +    UINT32 RcvdModifiedTSUsageInfo1  : 13; // bit 3:15
> > +    UINT32 RcvdModifiedTSVendorId    : 16; // bit 16:31
> > +  } Bits;
> > +  UINT32   Uint32;
> > +} PCI_EXPRESS_REG_PHYSICAL_LAYER_32_0_RCVD_MODIFIED_TS_DATA1;
> > +
> > +typedef union {
> > +  struct {
> > +    UINT32 RcvdModifiedTSUsageInfo2     : 24; // bit 0:23
> > +    UINT32 AltProtocolNegotiationStatus : 2; // bit 24:25
> > +    UINT32 Reserved                     : 6; // Reserved bit 26:31
> > +  } Bits;
> > +  UINT32   Uint32;
> > +} PCI_EXPRESS_REG_PHYSICAL_LAYER_32_0_RCVD_MODIFIED_TS_DATA2;
> > +
> > +typedef union {
> > +  struct {
> > +    UINT32 TransModifiedTSUsageMode   : 3; // bit 0:2
> > +    UINT32 TransModifiedTSUsageInfo1  : 13; // bit 3:15
> > +    UINT32 TransModifiedTSVendorId    : 16; // bit 16:31
> > +  } Bits;
> > +  UINT32   Uint32;
> > +} PCI_EXPRESS_REG_PHYSICAL_LAYER_32_0_TRANS_MODIFIED_TS_DATA1;
> > +
> > +typedef union {
> > +  struct {
> > +    UINT32 TransModifiedTSUsageInfo2    : 24; // bit 0:23
> > +    UINT32 AltProtocolNegotiationStatus : 2; // bit 24:25
> > +    UINT32 Reserved                     : 6; // Reserved bit 26:31
> > +  } Bits;
> > +  UINT32   Uint32;
> > +} PCI_EXPRESS_REG_PHYSICAL_LAYER_32_0_TRANS_MODIFIED_TS_DATA2;
> > +
> > +typedef union {
> > +  struct {
> > +    UINT8 DownstreamPortTransmitterPreset : 4; //bit 0..3
> > +    UINT8 UpstreamPortTransmitterPreset   : 4; //bit 4..7
> > +  } Bits;
> > +  UINT8   Uint8;
> > +} PCI_EXPRESS_REG_PHYSICAL_LAYER_32_0_LANE_EQUALIZATION_CONTROL;
> > +
> > +typedef struct {
> > +  PCI_EXPRESS_EXTENDED_CAPABILITIES_HEADER                      Header;
> > +  PCI_EXPRESS_REG_PHYSICAL_LAYER_32_0_CAPABILITIES              Capablities;
> > +  PCI_EXPRESS_REG_PHYSICAL_LAYER_32_0_CONTROL                   Control;
> > +  PCI_EXPRESS_REG_PHYSICAL_LAYER_32_0_STATUS                    Status;
> > +  PCI_EXPRESS_REG_PHYSICAL_LAYER_32_0_RCVD_MODIFIED_TS_DATA1    RcvdModifiedTs1Data;
> > +  PCI_EXPRESS_REG_PHYSICAL_LAYER_32_0_RCVD_MODIFIED_TS_DATA2    RcvdModifiedTs2Data;
> > +  PCI_EXPRESS_REG_PHYSICAL_LAYER_32_0_TRANS_MODIFIED_TS_DATA1   TransModifiedTs1Data;
> > +  PCI_EXPRESS_REG_PHYSICAL_LAYER_32_0_TRANS_MODIFIED_TS_DATA2   TransModifiedTs2Data;
> > +  PCI_EXPRESS_REG_PHYSICAL_LAYER_32_0_LANE_EQUALIZATION_CONTROL LaneEqualizationControl[1];
> > +} PCI_EXPRESS_EXTENDED_CAPABILITIES_PHYSICAL_LAYER_32_0;
> > +///@}
> > +
> > +#pragma pack()
> > +
> > +#endif
> > --
> > 2.10.0.windows.1
> >
> >
> > Please consider the environment before printing this email.
> >
> > 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.
> 
> Please consider the environment before printing this email.
> 
> 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] 5+ messages in thread

end of thread, other threads:[~2020-02-12  1:06 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-02-04 21:30 [PATCH] MdePkg: Add PCI Express 5.0 Header File Felix Polyudov
2020-02-07  5:10 ` Liming Gao
2020-02-07 20:57   ` Felix Polyudov
2020-02-11 22:34     ` Felix Polyudov
2020-02-12  1:06       ` Liming Gao

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