diff options
author | raywu <raywu0301@gmail.com> | 2018-06-15 00:00:50 +0800 |
---|---|---|
committer | raywu <raywu0301@gmail.com> | 2018-06-15 00:00:50 +0800 |
commit | b7c51c9cf4864df6aabb99a1ae843becd577237c (patch) | |
tree | eebe9b0d0ca03062955223097e57da84dd618b9a /Include/Protocol/SBPlatformData.h | |
download | zprj-master.tar.xz |
Diffstat (limited to 'Include/Protocol/SBPlatformData.h')
-rw-r--r-- | Include/Protocol/SBPlatformData.h | 93 |
1 files changed, 93 insertions, 0 deletions
diff --git a/Include/Protocol/SBPlatformData.h b/Include/Protocol/SBPlatformData.h new file mode 100644 index 0000000..ba1eeda --- /dev/null +++ b/Include/Protocol/SBPlatformData.h @@ -0,0 +1,93 @@ +//************************************************************************* +//************************************************************************* +//** ** +//** (C)Copyright 1985-2011, American Megatrends, Inc. ** +//** ** +//** All Rights Reserved. ** +//** ** +//** 5555 Oakbrook Parkway, Suite 200, Norcross, GA 30093 ** +//** ** +//** Phone: (770)-246-8600 ** +//** ** +//************************************************************************* +//************************************************************************* + +//************************************************************************* +// $Header: /Alaska/BIN/Chipset/Intel/SouthBridge/LynxPoint/Intel Pch SB Chipset/SB Protocols/SBPlatformData.h 3 4/24/13 6:50a Scottyang $ +// +// $Revision: 3 $ +// +// $Date: 4/24/13 6:50a $ +//************************************************************************* +// Revision History +// ---------------- +// $Log: /Alaska/BIN/Chipset/Intel/SouthBridge/LynxPoint/Intel Pch SB Chipset/SB Protocols/SBPlatformData.h $ +// +// 3 4/24/13 6:50a Scottyang +// [TAG] EIP82149 +// [Category] Improvement +// [Description] Intel(R) 8 Series Chipset Family Deep Sx and CPU +// Soft-Strap BIOS Override Co-Existence Issue. If the soft-strap override +// feature is required and enabled, BIOS must disable Deep Sx +// functionality. +// [Files] SBDxe.c, SB.sd, SBPlatformData.h +// +// 2 10/16/12 5:15a Scottyang +// [TAG] None +// +// [Category] Improvement +// +// [Description] One rom for two chip and one chip. +// [Files] SPPEIBoard.c, SB.sd, SBDxe.c, SBPEI.c, PCH.asl, +// SBPlatformData.h +// +// 1 2/08/12 8:26a Yurenlai +// Intel Lynx Point/SB eChipset initially releases. +// +//************************************************************************* +//<AMI_FHDR_START> +// +// Name: SBPlatformData.h +// +// Description: SB Specific Setup Variables and Structures +// +//<AMI_FHDR_END> +//********************************************************************** +#ifndef _SB_PLATFORM_DATA_H_ +#define _SB_PLATFORM_DATA_H_ +#ifdef __cplusplus +extern "C" { +#endif + + #pragma pack(1) + + typedef struct _SB_PLATFORM_DATA + { + UINT8 PchHotLevelPresent; + UINT8 GbePciePortNum; + UINT8 PcieSBDE; + UINT8 PchRid; + UINT8 LPTType; + UINT8 HideDeepSx; // [EIP82149] + }SB_PLATFORM_DATA; + + #pragma pack() + +/****** DO NOT WRITE BELOW THIS LINE *******/ +#ifdef __cplusplus +} +#endif +#endif +//************************************************************************* +//************************************************************************* +//** ** +//** (C)Copyright 1985-2011, American Megatrends, Inc. ** +//** ** +//** All Rights Reserved. ** +//** ** +//** 5555 Oakbrook Parkway, Suite 200, Norcross, GA 30093 ** +//** ** +//** Phone: (770)-246-8600 ** +//** ** +//************************************************************************* +//************************************************************************* |