Re: [edk2] [PATCH edk2-platforms v1 06/38] Hisilicon/D06: Add OemMiscLibD06

2018-08-08 Thread Leif Lindholm
On Wed, Aug 08, 2018 at 11:49:41AM +0800, Ming wrote:
> > 在 8/3/2018 1:22 AM, Leif Lindholm 写道:
> > On Tue, Jul 24, 2018 at 03:08:50PM +0800, Ming Huang wrote:
> >> This library include BoardFeatureD06.c and OemMiscLibD06.c c file,
> >> use for several modules like PciHostBridgeLib and Smbios.
> >> Enlarge macro PCIEDEVICE_REPORT_MAX for D06.
> >>
> >> Contributed-under: TianoCore Contribution Agreement 1.1
> >> Signed-off-by: Ming Huang 
> >> Signed-off-by: Heyi Guo 
> >> ---
> >>  Platform/Hisilicon/D06/D06.dsc  | 
> >>   1 +
> >>  Platform/Hisilicon/D06/Library/OemMiscLibD06/BoardFeatureD06.c  | 
> >> 432 
> >>  Platform/Hisilicon/D06/Library/OemMiscLibD06/BoardFeatureD06Strings.uni | 
> >> Bin 0 -> 5204 bytes
> > 
> > We appear to be permitting UTF-8 these days, which would be easier to
> > review. Would you be able to convert this for the next revision?
> 
> Yes.
> Could you tell me how to convert the .uni to UTF8?

iconv -f UCS2 -t UTF-8 -o  

At my end, I think this leaves the BOM in the file, which I don't
think it a good thing. But it can easily be edited out.

Doing that, I do however spot that there are inconsistent line endings
in this file. Please convert them all to CRLF.

> >>  Platform/Hisilicon/D06/Library/OemMiscLibD06/OemMiscLibD06.c| 
> >> 157 +++
> >>  Platform/Hisilicon/D06/Library/OemMiscLibD06/OemMiscLibD06.inf  | 
> >>  47 +++
> >>  Silicon/Hisilicon/Include/Library/OemMiscLib.h  | 
> >>   2 +-
> >>  6 files changed, 638 insertions(+), 1 deletion(-)
> >>

> >> diff --git 
> >> a/Platform/Hisilicon/D06/Library/OemMiscLibD06/BoardFeatureD06Strings.uni 
> >> b/Platform/Hisilicon/D06/Library/OemMiscLibD06/BoardFeatureD06Strings.uni
> >> new file mode 100644
> >> index 00..f3994d9d4d
> >> Binary files /dev/null and 
> >> b/Platform/Hisilicon/D06/Library/OemMiscLibD06/BoardFeatureD06Strings.uni 
> >> differ
> >> diff --git a/Platform/Hisilicon/D06/Library/OemMiscLibD06/OemMiscLibD06.c 
> >> b/Platform/Hisilicon/D06/Library/OemMiscLibD06/OemMiscLibD06.c
> >> new file mode 100644
> >> index 00..009a53b2c8
> >> --- /dev/null
> >> +++ b/Platform/Hisilicon/D06/Library/OemMiscLibD06/OemMiscLibD06.c
> >> @@ -0,0 +1,157 @@
> >> +/** @file
> >> +*
> >> +*  Copyright (c) 2018, Hisilicon Limited. All rights reserved.
> >> +*  Copyright (c) 2018, Linaro Limited. All rights reserved.
> >> +*
> >> +*  This program and the accompanying materials
> >> +*  are licensed and made available under the terms and conditions of the 
> >> BSD License
> >> +*  which accompanies this distribution.  The full text of the license may 
> >> be found at
> >> +*  http://opensource.org/licenses/bsd-license.php
> >> +*
> >> +*  THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
> >> +*  WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR 
> >> IMPLIED.
> >> +*
> >> +**/
> >> +
> >> +#include 
> >> +#include 
> >> +#include 
> >> +#include 
> >> +#include 
> >> +#include 
> >> +#include 
> >> +#include 
> >> +#include 
> >> +#include 
> >> +#include 
> >> +#include 
> >> +
> >> +REPORT_PCIEDIDVID2BMC PcieDeviceToReport[PCIEDEVICE_REPORT_MAX] = {
> >> +  {67,0,0,0},
> >> +  {225,0,0,3},
> >> +  {0x,0x,0x,0x},
> >> +  {0x,0x,0x,0x}
> >> +};
> >> +
> >> +// Right now we only support 1P
> >> +BOOLEAN
> >> +OemIsSocketPresent (
> >> +  UINTN Socket
> >> +  )
> >> +{
> >> +  UINT32 SocketMask = PcdGet32 (PcdSocketMask);
> >> +  return (BOOLEAN)((SocketMask & (1 << Socket)) ? TRUE : FALSE);
> >> +}
> >> +
> >> +
> >> +UINTN
> >> +OemGetSocketNumber (
> >> +  VOID
> >> +  )
> >> +{
> >> +  if(!OemIsMpBoot ()) {
> >> +return 1;
> >> +  }
> >> +
> >> +  return 2;
> > 
> > What is 2?
> > (Guessing NUMBER_PROCESSOR_SOCKETS.)
> > 
> 
> Exactly.
> Modify 2 to MAX_SOCKET(defined in PlatformArch.h)?

MAX_PROCESSOR_SOCKETS would be good.

> >> +}
> >> +
> >> +
> >> +UINTN
> >> +OemGetDdrChannel (
> >> +  VOID
> >> +  )
> >> +{
> >> +  return 8;
> > 
> > What is 8?
> > (Guessing NUMBER_MEMORY_CHANNELS.)
> > 
> 
> Exactly.
> Modify 8 to MAX_CHANNEL(defined in PlatformArch.h)?

MAX_MEMORY_CHANNELS would be good.

> >> +}
> >> +
> >> +
> >> +UINTN
> >> +OemGetDimmSlot (
> >> +  UINTN Socket,
> >> +  UINTN Channel
> >> +  )
> >> +{
> >> +  return 2;
> > 
> > What is 2?
> > (Guessing SLOTS_PER_DDR_CHANNEL.)
> > 
> 
> Yes.
> Modify 8 to MAX_DIMM(defined in PlatformArch.h)?

MAX_DIMM_PER_CHANNEL?


> >> diff --git a/Silicon/Hisilicon/Include/Library/OemMiscLib.h 
> >> b/Silicon/Hisilicon/Include/Library/OemMiscLib.h
> >> index 6f18c0fa72..53e7a37a68 100644
> >> --- a/Silicon/Hisilicon/Include/Library/OemMiscLib.h
> >> +++ b/Silicon/Hisilicon/Include/Library/OemMiscLib.h
> >> @@ -22,7 +22,7 @@
> >>  #include 
> >>  #include 
> >>  
> >> -#define PCIEDEVICE_REPORT_MAX  4
> >> +#define PCIEDEVICE_REPORT_MAX  8
> > 
> > Does this have any impa

Re: [edk2] [PATCH edk2-platforms v1 06/38] Hisilicon/D06: Add OemMiscLibD06

2018-08-07 Thread Ming


在 8/3/2018 1:22 AM, Leif Lindholm 写道:
> On Tue, Jul 24, 2018 at 03:08:50PM +0800, Ming Huang wrote:
>> This library include BoardFeatureD06.c and OemMiscLibD06.c c file,
>> use for several modules like PciHostBridgeLib and Smbios.
>> Enlarge macro PCIEDEVICE_REPORT_MAX for D06.
>>
>> Contributed-under: TianoCore Contribution Agreement 1.1
>> Signed-off-by: Ming Huang 
>> Signed-off-by: Heyi Guo 
>> ---
>>  Platform/Hisilicon/D06/D06.dsc  |   
>> 1 +
>>  Platform/Hisilicon/D06/Library/OemMiscLibD06/BoardFeatureD06.c  | 
>> 432 
>>  Platform/Hisilicon/D06/Library/OemMiscLibD06/BoardFeatureD06Strings.uni | 
>> Bin 0 -> 5204 bytes
> 
> We appear to be permitting UTF-8 these days, which would be easier to
> review. Would you be able to convert this for the next revision?
> 

Yes.
Could you tell me how to convert the .uni to UTF8?

>>  Platform/Hisilicon/D06/Library/OemMiscLibD06/OemMiscLibD06.c| 
>> 157 +++
>>  Platform/Hisilicon/D06/Library/OemMiscLibD06/OemMiscLibD06.inf  |  
>> 47 +++
>>  Silicon/Hisilicon/Include/Library/OemMiscLib.h  |   
>> 2 +-
>>  6 files changed, 638 insertions(+), 1 deletion(-)
>>
>> diff --git a/Platform/Hisilicon/D06/D06.dsc b/Platform/Hisilicon/D06/D06.dsc
>> index 88869ba26e..f4dfef1087 100644
>> --- a/Platform/Hisilicon/D06/D06.dsc
>> +++ b/Platform/Hisilicon/D06/D06.dsc
>> @@ -71,6 +71,7 @@
>>  
>>TimeBaseLib|EmbeddedPkg/Library/TimeBaseLib/TimeBaseLib.inf
>>
>> RealTimeClockLib|Platform/Hisilicon/D06/Library/M41T83RealTimeClockLib/M41T83RealTimeClockLib.inf
>> +  OemMiscLib|Platform/Hisilicon/D06/Library/OemMiscLibD06/OemMiscLibD06.inf
>>
>> OemAddressMapLib|Platform/Hisilicon/D06/Library/OemAddressMapD06/OemAddressMapD06.inf
>>
>> PlatformSysCtrlLib|Silicon/Hisilicon/Hi1620/Library/PlatformSysCtrlLibHi1620/PlatformSysCtrlLibHi1620.inf
>>  
>> diff --git a/Platform/Hisilicon/D06/Library/OemMiscLibD06/BoardFeatureD06.c 
>> b/Platform/Hisilicon/D06/Library/OemMiscLibD06/BoardFeatureD06.c
>> new file mode 100644
>> index 00..c8f6cd0e29
>> --- /dev/null
>> +++ b/Platform/Hisilicon/D06/Library/OemMiscLibD06/BoardFeatureD06.c
>> @@ -0,0 +1,432 @@
>> +/** @file
>> +*
>> +*  Copyright (c) 2018, Hisilicon Limited. All rights reserved.
>> +*  Copyright (c) 2018, Linaro Limited. All rights reserved.
>> +*
>> +*  This program and the accompanying materials
>> +*  are licensed and made available under the terms and conditions of the 
>> BSD License
>> +*  which accompanies this distribution.  The full text of the license may 
>> be found at
>> +*  http://opensource.org/licenses/bsd-license.php
>> +*
>> +*  THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
>> +*  WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR 
>> IMPLIED.
>> +*
>> +**/
>> +
>> +#include 
>> +#include 
>> +#include 
>> +#include 
>> +#include 
>> +#include 
>> +#include 
>> +#include 
>> +#include 
>> +#include 
>> +
>> +#include 
>> +
>> +I2C_DEVICE gDS3231RtcDevice = {
> 
> *cough* *cough*
> 

The name of global variable will be modify by another patch.

>> +  .Socket = 0,
>> +  .Port = 5,
>> +  .DeviceType = DEVICE_TYPE_SPD,
>> +  .SlaveDeviceAddress = 0x68
>> +};
>> +
>> +SERDES_POLARITY_INVERT gSerdesPolarityTxDesc[] =
>> +{
>> +  {SERDES_INVALID_MACRO_ID, SERDES_INVALID_LANE_NUM}
>> +};
>> +
>> +SERDES_POLARITY_INVERT gSerdesPolarityRxDesc[] =
>> +{
>> +  {SERDES_INVALID_MACRO_ID, SERDES_INVALID_LANE_NUM}
>> +};
>> +
>> +SERDES_PARAM gSerdesParamNA = {
>> +  .Hilink0Mode = EmHilink0Hccs1X8Width16,
>> +  .Hilink1Mode = EmHilink1Hccs0X8Width16,
>> +  .Hilink2Mode = EmHilink2Pcie2X8,
>> +  .Hilink3Mode = 0x0,
>> +  .Hilink4Mode = 0xF,
>> +  .Hilink5Mode = EmHilink5Sas1X4,
>> +  .Hilink6Mode = 0x0,
>> +  .UseSsc  = 0,
>> +};
>> +
>> +SERDES_PARAM gSerdesParamNB = {
>> +  .Hilink0Mode = EmHilink0Pcie1X8,
>> +  .Hilink1Mode = EmHilink1Pcie0X8,
>> +  .Hilink2Mode = EmHilink2Sas0X8,
>> +  .Hilink3Mode = 0x0,
>> +  .Hilink4Mode = 0xF,
>> +  .Hilink5Mode = EmHilink5Pcie2X2Pcie3X2,
>> +  .Hilink6Mode = 0xF,
>> +  .UseSsc  = 0,
>> +};
>> +
>> +SERDES_PARAM gSerdesParamS1NA = {
>> +  .Hilink0Mode = EmHilink0Hccs1X8Width16,
>> +  .Hilink1Mode = EmHilink1Hccs0X8Width16,
>> +  .Hilink2Mode = EmHilink2Pcie2X8,
>> +  .Hilink3Mode = 0x0,
>> +  .Hilink4Mode = 0xF,
>> +  .Hilink5Mode = EmHilink5Sas1X4,
>> +  .Hilink6Mode = 0x0,
>> +  .UseSsc  = 0,
>> +};
>> +
>> +SERDES_PARAM gSerdesParamS1NB = {
>> +  .Hilink0Mode = EmHilink0Pcie1X8,
>> +  .Hilink1Mode = EmHilink1Pcie0X8,
>> +  .Hilink2Mode = EmHilink2Sas0X8,
>> +  .Hilink3Mode = 0x0,
>> +  .Hilink4Mode = 0xF,
>> +  .Hilink5Mode = EmHilink5Pcie2X2Pcie3X2,
>> +  .Hilink6Mode = 0xF,
>> +  .UseSsc  = 0,
>> +};
>> +
>> +
>> +EFI_STATUS
>> +OemGetSerdesParam (
>> +  OUT SERDES_PARAM *ParamA,
>> +  OUT SERDES_PARAM *ParamB,
>> +  IN  UINT32   SocketId
>> + )
>> +{
>> +  if (NULL == ParamA) {
>> 

Re: [edk2] [PATCH edk2-platforms v1 06/38] Hisilicon/D06: Add OemMiscLibD06

2018-08-02 Thread Leif Lindholm
On Tue, Jul 24, 2018 at 03:08:50PM +0800, Ming Huang wrote:
> This library include BoardFeatureD06.c and OemMiscLibD06.c c file,
> use for several modules like PciHostBridgeLib and Smbios.
> Enlarge macro PCIEDEVICE_REPORT_MAX for D06.
> 
> Contributed-under: TianoCore Contribution Agreement 1.1
> Signed-off-by: Ming Huang 
> Signed-off-by: Heyi Guo 
> ---
>  Platform/Hisilicon/D06/D06.dsc  |   
> 1 +
>  Platform/Hisilicon/D06/Library/OemMiscLibD06/BoardFeatureD06.c  | 
> 432 
>  Platform/Hisilicon/D06/Library/OemMiscLibD06/BoardFeatureD06Strings.uni | 
> Bin 0 -> 5204 bytes

We appear to be permitting UTF-8 these days, which would be easier to
review. Would you be able to convert this for the next revision?

>  Platform/Hisilicon/D06/Library/OemMiscLibD06/OemMiscLibD06.c| 
> 157 +++
>  Platform/Hisilicon/D06/Library/OemMiscLibD06/OemMiscLibD06.inf  |  
> 47 +++
>  Silicon/Hisilicon/Include/Library/OemMiscLib.h  |   
> 2 +-
>  6 files changed, 638 insertions(+), 1 deletion(-)
> 
> diff --git a/Platform/Hisilicon/D06/D06.dsc b/Platform/Hisilicon/D06/D06.dsc
> index 88869ba26e..f4dfef1087 100644
> --- a/Platform/Hisilicon/D06/D06.dsc
> +++ b/Platform/Hisilicon/D06/D06.dsc
> @@ -71,6 +71,7 @@
>  
>TimeBaseLib|EmbeddedPkg/Library/TimeBaseLib/TimeBaseLib.inf
>
> RealTimeClockLib|Platform/Hisilicon/D06/Library/M41T83RealTimeClockLib/M41T83RealTimeClockLib.inf
> +  OemMiscLib|Platform/Hisilicon/D06/Library/OemMiscLibD06/OemMiscLibD06.inf
>
> OemAddressMapLib|Platform/Hisilicon/D06/Library/OemAddressMapD06/OemAddressMapD06.inf
>
> PlatformSysCtrlLib|Silicon/Hisilicon/Hi1620/Library/PlatformSysCtrlLibHi1620/PlatformSysCtrlLibHi1620.inf
>  
> diff --git a/Platform/Hisilicon/D06/Library/OemMiscLibD06/BoardFeatureD06.c 
> b/Platform/Hisilicon/D06/Library/OemMiscLibD06/BoardFeatureD06.c
> new file mode 100644
> index 00..c8f6cd0e29
> --- /dev/null
> +++ b/Platform/Hisilicon/D06/Library/OemMiscLibD06/BoardFeatureD06.c
> @@ -0,0 +1,432 @@
> +/** @file
> +*
> +*  Copyright (c) 2018, Hisilicon Limited. All rights reserved.
> +*  Copyright (c) 2018, Linaro Limited. All rights reserved.
> +*
> +*  This program and the accompanying materials
> +*  are licensed and made available under the terms and conditions of the BSD 
> License
> +*  which accompanies this distribution.  The full text of the license may be 
> found at
> +*  http://opensource.org/licenses/bsd-license.php
> +*
> +*  THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
> +*  WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR 
> IMPLIED.
> +*
> +**/
> +
> +#include 
> +#include 
> +#include 
> +#include 
> +#include 
> +#include 
> +#include 
> +#include 
> +#include 
> +#include 
> +
> +#include 
> +
> +I2C_DEVICE gDS3231RtcDevice = {

*cough* *cough*

> +  .Socket = 0,
> +  .Port = 5,
> +  .DeviceType = DEVICE_TYPE_SPD,
> +  .SlaveDeviceAddress = 0x68
> +};
> +
> +SERDES_POLARITY_INVERT gSerdesPolarityTxDesc[] =
> +{
> +  {SERDES_INVALID_MACRO_ID, SERDES_INVALID_LANE_NUM}
> +};
> +
> +SERDES_POLARITY_INVERT gSerdesPolarityRxDesc[] =
> +{
> +  {SERDES_INVALID_MACRO_ID, SERDES_INVALID_LANE_NUM}
> +};
> +
> +SERDES_PARAM gSerdesParamNA = {
> +  .Hilink0Mode = EmHilink0Hccs1X8Width16,
> +  .Hilink1Mode = EmHilink1Hccs0X8Width16,
> +  .Hilink2Mode = EmHilink2Pcie2X8,
> +  .Hilink3Mode = 0x0,
> +  .Hilink4Mode = 0xF,
> +  .Hilink5Mode = EmHilink5Sas1X4,
> +  .Hilink6Mode = 0x0,
> +  .UseSsc  = 0,
> +};
> +
> +SERDES_PARAM gSerdesParamNB = {
> +  .Hilink0Mode = EmHilink0Pcie1X8,
> +  .Hilink1Mode = EmHilink1Pcie0X8,
> +  .Hilink2Mode = EmHilink2Sas0X8,
> +  .Hilink3Mode = 0x0,
> +  .Hilink4Mode = 0xF,
> +  .Hilink5Mode = EmHilink5Pcie2X2Pcie3X2,
> +  .Hilink6Mode = 0xF,
> +  .UseSsc  = 0,
> +};
> +
> +SERDES_PARAM gSerdesParamS1NA = {
> +  .Hilink0Mode = EmHilink0Hccs1X8Width16,
> +  .Hilink1Mode = EmHilink1Hccs0X8Width16,
> +  .Hilink2Mode = EmHilink2Pcie2X8,
> +  .Hilink3Mode = 0x0,
> +  .Hilink4Mode = 0xF,
> +  .Hilink5Mode = EmHilink5Sas1X4,
> +  .Hilink6Mode = 0x0,
> +  .UseSsc  = 0,
> +};
> +
> +SERDES_PARAM gSerdesParamS1NB = {
> +  .Hilink0Mode = EmHilink0Pcie1X8,
> +  .Hilink1Mode = EmHilink1Pcie0X8,
> +  .Hilink2Mode = EmHilink2Sas0X8,
> +  .Hilink3Mode = 0x0,
> +  .Hilink4Mode = 0xF,
> +  .Hilink5Mode = EmHilink5Pcie2X2Pcie3X2,
> +  .Hilink6Mode = 0xF,
> +  .UseSsc  = 0,
> +};
> +
> +
> +EFI_STATUS
> +OemGetSerdesParam (
> +  OUT SERDES_PARAM *ParamA,
> +  OUT SERDES_PARAM *ParamB,
> +  IN  UINT32   SocketId
> + )
> +{
> +  if (NULL == ParamA) {
> +DEBUG ((DEBUG_ERROR, "[%a]:[%dL] Param == NULL!\n", __FUNCTION__, 
> __LINE__));
> +return EFI_INVALID_PARAMETER;
> +  } if (NULL == ParamB) {
> +DEBUG ((DEBUG_ERROR, "[%a]:[%dL] Param == NULL!\n", __FUNCTION__, 
> __LINE__));
> +return EFI_INVALID_PARAMETER;
> +  }
> +
> +  if (0 == SocketId) {
> +

[edk2] [PATCH edk2-platforms v1 06/38] Hisilicon/D06: Add OemMiscLibD06

2018-07-24 Thread Ming Huang
This library include BoardFeatureD06.c and OemMiscLibD06.c c file,
use for several modules like PciHostBridgeLib and Smbios.
Enlarge macro PCIEDEVICE_REPORT_MAX for D06.

Contributed-under: TianoCore Contribution Agreement 1.1
Signed-off-by: Ming Huang 
Signed-off-by: Heyi Guo 
---
 Platform/Hisilicon/D06/D06.dsc  |   1 +
 Platform/Hisilicon/D06/Library/OemMiscLibD06/BoardFeatureD06.c  | 432 

 Platform/Hisilicon/D06/Library/OemMiscLibD06/BoardFeatureD06Strings.uni | Bin 
0 -> 5204 bytes
 Platform/Hisilicon/D06/Library/OemMiscLibD06/OemMiscLibD06.c| 157 
+++
 Platform/Hisilicon/D06/Library/OemMiscLibD06/OemMiscLibD06.inf  |  47 
+++
 Silicon/Hisilicon/Include/Library/OemMiscLib.h  |   2 
+-
 6 files changed, 638 insertions(+), 1 deletion(-)

diff --git a/Platform/Hisilicon/D06/D06.dsc b/Platform/Hisilicon/D06/D06.dsc
index 88869ba26e..f4dfef1087 100644
--- a/Platform/Hisilicon/D06/D06.dsc
+++ b/Platform/Hisilicon/D06/D06.dsc
@@ -71,6 +71,7 @@
 
   TimeBaseLib|EmbeddedPkg/Library/TimeBaseLib/TimeBaseLib.inf
   
RealTimeClockLib|Platform/Hisilicon/D06/Library/M41T83RealTimeClockLib/M41T83RealTimeClockLib.inf
+  OemMiscLib|Platform/Hisilicon/D06/Library/OemMiscLibD06/OemMiscLibD06.inf
   
OemAddressMapLib|Platform/Hisilicon/D06/Library/OemAddressMapD06/OemAddressMapD06.inf
   
PlatformSysCtrlLib|Silicon/Hisilicon/Hi1620/Library/PlatformSysCtrlLibHi1620/PlatformSysCtrlLibHi1620.inf
 
diff --git a/Platform/Hisilicon/D06/Library/OemMiscLibD06/BoardFeatureD06.c 
b/Platform/Hisilicon/D06/Library/OemMiscLibD06/BoardFeatureD06.c
new file mode 100644
index 00..c8f6cd0e29
--- /dev/null
+++ b/Platform/Hisilicon/D06/Library/OemMiscLibD06/BoardFeatureD06.c
@@ -0,0 +1,432 @@
+/** @file
+*
+*  Copyright (c) 2018, Hisilicon Limited. All rights reserved.
+*  Copyright (c) 2018, Linaro Limited. All rights reserved.
+*
+*  This program and the accompanying materials
+*  are licensed and made available under the terms and conditions of the BSD 
License
+*  which accompanies this distribution.  The full text of the license may be 
found at
+*  http://opensource.org/licenses/bsd-license.php
+*
+*  THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
+*  WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR 
IMPLIED.
+*
+**/
+
+#include 
+#include 
+#include 
+#include 
+#include 
+#include 
+#include 
+#include 
+#include 
+#include 
+
+#include 
+
+I2C_DEVICE gDS3231RtcDevice = {
+  .Socket = 0,
+  .Port = 5,
+  .DeviceType = DEVICE_TYPE_SPD,
+  .SlaveDeviceAddress = 0x68
+};
+
+SERDES_POLARITY_INVERT gSerdesPolarityTxDesc[] =
+{
+  {SERDES_INVALID_MACRO_ID, SERDES_INVALID_LANE_NUM}
+};
+
+SERDES_POLARITY_INVERT gSerdesPolarityRxDesc[] =
+{
+  {SERDES_INVALID_MACRO_ID, SERDES_INVALID_LANE_NUM}
+};
+
+SERDES_PARAM gSerdesParamNA = {
+  .Hilink0Mode = EmHilink0Hccs1X8Width16,
+  .Hilink1Mode = EmHilink1Hccs0X8Width16,
+  .Hilink2Mode = EmHilink2Pcie2X8,
+  .Hilink3Mode = 0x0,
+  .Hilink4Mode = 0xF,
+  .Hilink5Mode = EmHilink5Sas1X4,
+  .Hilink6Mode = 0x0,
+  .UseSsc  = 0,
+};
+
+SERDES_PARAM gSerdesParamNB = {
+  .Hilink0Mode = EmHilink0Pcie1X8,
+  .Hilink1Mode = EmHilink1Pcie0X8,
+  .Hilink2Mode = EmHilink2Sas0X8,
+  .Hilink3Mode = 0x0,
+  .Hilink4Mode = 0xF,
+  .Hilink5Mode = EmHilink5Pcie2X2Pcie3X2,
+  .Hilink6Mode = 0xF,
+  .UseSsc  = 0,
+};
+
+SERDES_PARAM gSerdesParamS1NA = {
+  .Hilink0Mode = EmHilink0Hccs1X8Width16,
+  .Hilink1Mode = EmHilink1Hccs0X8Width16,
+  .Hilink2Mode = EmHilink2Pcie2X8,
+  .Hilink3Mode = 0x0,
+  .Hilink4Mode = 0xF,
+  .Hilink5Mode = EmHilink5Sas1X4,
+  .Hilink6Mode = 0x0,
+  .UseSsc  = 0,
+};
+
+SERDES_PARAM gSerdesParamS1NB = {
+  .Hilink0Mode = EmHilink0Pcie1X8,
+  .Hilink1Mode = EmHilink1Pcie0X8,
+  .Hilink2Mode = EmHilink2Sas0X8,
+  .Hilink3Mode = 0x0,
+  .Hilink4Mode = 0xF,
+  .Hilink5Mode = EmHilink5Pcie2X2Pcie3X2,
+  .Hilink6Mode = 0xF,
+  .UseSsc  = 0,
+};
+
+
+EFI_STATUS
+OemGetSerdesParam (
+  OUT SERDES_PARAM *ParamA,
+  OUT SERDES_PARAM *ParamB,
+  IN  UINT32   SocketId
+ )
+{
+  if (NULL == ParamA) {
+DEBUG ((DEBUG_ERROR, "[%a]:[%dL] Param == NULL!\n", __FUNCTION__, 
__LINE__));
+return EFI_INVALID_PARAMETER;
+  } if (NULL == ParamB) {
+DEBUG ((DEBUG_ERROR, "[%a]:[%dL] Param == NULL!\n", __FUNCTION__, 
__LINE__));
+return EFI_INVALID_PARAMETER;
+  }
+
+  if (0 == SocketId) {
+(VOID) CopyMem (ParamA, &gSerdesParamNA, sizeof (*ParamA));
+(VOID) CopyMem (ParamB, &gSerdesParamNB, sizeof (*ParamB));
+  } else {
+(VOID) CopyMem (ParamA, &gSerdesParamS1NA, sizeof (*ParamA));
+(VOID) CopyMem (ParamB, &gSerdesParamS1NB, sizeof (*ParamB));
+  }
+
+  return EFI_SUCCESS;
+}
+
+VOID
+OemPcieResetAndOffReset (
+  VOID
+  )
+{
+  return;
+}
+
+SMBIOS_TABLE_TYPE9 gPcieSlotInfo[] = {
+  // PCIe0 Slot 1
+  {
+{   // Hdr
+EFI_SMBIOS_TYPE_SYSTEM_SLOTS,