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 /Board/EM/KbcSbBoard | |
download | zprj-master.tar.xz |
Diffstat (limited to 'Board/EM/KbcSbBoard')
-rw-r--r-- | Board/EM/KbcSbBoard/KbcSbBoard.c | 90 | ||||
-rw-r--r-- | Board/EM/KbcSbBoard/KbcSbBoard.cif | 8 |
2 files changed, 98 insertions, 0 deletions
diff --git a/Board/EM/KbcSbBoard/KbcSbBoard.c b/Board/EM/KbcSbBoard/KbcSbBoard.c new file mode 100644 index 0000000..981ca77 --- /dev/null +++ b/Board/EM/KbcSbBoard/KbcSbBoard.c @@ -0,0 +1,90 @@ +//**************************************************************************** +//**************************************************************************** +//** ** +//** (C)Copyright 1985-2012, American Megatrends, Inc. ** +//** ** +//** All Rights Reserved. ** +//** ** +//** 5555 Oakbrook Pkwy, Suite 200, Norcross, GA 30093 ** +//** ** +//** Phone (770)-246-8600 ** +//** ** +//**************************************************************************** +//**************************************************************************** +//**************************************************************************** +// $Header: /Alaska/SOURCE/Modules/KbcEmulation/SouthBridge/Intel/LynxPoint/KbcSbBoard.c 1 7/03/12 5:50a Rameshr $ +// +// $Revision: 1 $ +// +// $Date: 7/03/12 5:50a $ +// +//**************************************************************************** +// Revision History +// ---------------- +// $Log: /Alaska/SOURCE/Modules/KbcEmulation/SouthBridge/Intel/LynxPoint/KbcSbBoard.c $ +// +// 1 7/03/12 5:50a Rameshr +// [TAG] EIP94194 +// [Category] New Feature +// [Description] Initial Check-in for LynxPoint chipset. +// [Files] KbcSbBoard.cif +// KbcSbBoard.c +// +// +//**************************************************************************** + +//********************************************************************** +//<AMI_FHDR_START> +// +// Name: KbcSbboard.c +// +// Description: South Bridge Board module for KbcEmulation +// +//<AMI_FHDR_END> +//********************************************************************** +#include "KbcEmul.h" +#ifdef FRAMEWORK_AP4 +#include "token.h" +#include "protocol/usbpolicy.h" +#else +#include "tokens.h" +#endif + +//<AMI_PHDR_START> +//---------------------------------------------------------------------------- +// Procedure: GetRMhStatus +// +// Description: Returns the RMH status +// +// Input: None +// +// Output: None +// +//---------------------------------------------------------------------------- +//<AMI_PHDR_END> +BOOLEAN +GetRMhStatus () +{ + + // + // For Intel 8 series (Lynx Point), return RMH is enabled by default . + // + + return TRUE; + +} + + +//**************************************************************************** +//**************************************************************************** +//** ** +//** (C)Copyright 1985-2012, American Megatrends, Inc. ** +//** ** +//** All Rights Reserved. ** +//** ** +//** 5555 Oakbrook Pkwy, Suite 200, Norcross, GA 30093 ** +//** ** +//** Phone (770)-246-8600 ** +//** ** +//**************************************************************************** +//**************************************************************************** diff --git a/Board/EM/KbcSbBoard/KbcSbBoard.cif b/Board/EM/KbcSbBoard/KbcSbBoard.cif new file mode 100644 index 0000000..a10fd68 --- /dev/null +++ b/Board/EM/KbcSbBoard/KbcSbBoard.cif @@ -0,0 +1,8 @@ +<component> + name = "KbcSouthBridge - LynxPoint" + category = ModulePart + LocalRoot = "Board\em\KbcSbBoard" + RefName = "KbcSbBoard" +[files] +"KbcSbBoard.c" +<endComponent> |