Configure GPIO expander in PEI phase 1) Configure all GPIO expander pins connected to Reset Button as inputs 2) Configure multiplexer for I2C to route I2C bus to Arduino Header Cc: Kelly Steele <kelly.steele@intel.com> Cc: Jiewen Yao <jiewen.yao@intel.com> Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Michael Kinney <michael.d.kinney@intel.com> Reviewed-by: Kelly Steele <kelly.steele@intel.com> git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@19620 6f19259b-4bc3-4df7-8a09-765794883524
86 lines
2.6 KiB
C
86 lines
2.6 KiB
C
/** @file
|
|
Common header file shared by all source files.
|
|
|
|
This file includes package header files, library classes and protocol, PPI & GUID definitions.
|
|
|
|
Copyright (c) 2013 - 2016 Intel Corporation.
|
|
|
|
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.
|
|
**/
|
|
|
|
#ifndef __COMMON_HEADER_H_
|
|
#define __COMMON_HEADER_H_
|
|
|
|
|
|
|
|
#include <PiPei.h>
|
|
#include <IntelQNCPeim.h>
|
|
#include "Ioh.h"
|
|
#include <Platform.h>
|
|
#include <PlatformBoards.h>
|
|
|
|
#include <IndustryStandard/SmBus.h>
|
|
#include <IndustryStandard/Pci22.h>
|
|
|
|
#include <Guid/AcpiS3Context.h>
|
|
#include <Ppi/AtaController.h>
|
|
#include <Guid/Capsule.h>
|
|
#include <Ppi/MasterBootMode.h>
|
|
#include <Guid/MemoryTypeInformation.h>
|
|
#include <Guid/RecoveryDevice.h>
|
|
#include <Guid/MemoryConfigData.h>
|
|
#include <Guid/MemoryOverwriteControl.h>
|
|
#include <Guid/CapsuleVendor.h>
|
|
#include <Guid/QuarkCapsuleGuid.h>
|
|
#include <Ppi/ReadOnlyVariable2.h>
|
|
#include <Ppi/FvLoadFile.h>
|
|
#include <Guid/SmramMemoryReserve.h>
|
|
#include <Ppi/DeviceRecoveryModule.h>
|
|
#include <Ppi/Capsule.h>
|
|
#include <Ppi/Reset.h>
|
|
#include <Ppi/Stall.h>
|
|
#include <Ppi/BootInRecoveryMode.h>
|
|
#include <Guid/FirmwareFileSystem2.h>
|
|
#include <Ppi/MemoryDiscovered.h>
|
|
#include <Ppi/RecoveryModule.h>
|
|
#include <Ppi/Smbus2.h>
|
|
#include <Ppi/FirmwareVolumeInfo.h>
|
|
#include <Ppi/EndOfPeiPhase.h>
|
|
|
|
#include <Library/DebugLib.h>
|
|
#include <Library/PeimEntryPoint.h>
|
|
#include <Library/BaseLib.h>
|
|
#include <Library/PeiServicesTablePointerLib.h>
|
|
#include <Library/PeiServicesLib.h>
|
|
#include <Library/BaseMemoryLib.h>
|
|
#include <Library/HobLib.h>
|
|
#include <Library/PciCf8Lib.h>
|
|
#include <Library/IoLib.h>
|
|
#include <Library/PciLib.h>
|
|
#include <Library/ReportStatusCodeLib.h>
|
|
#include <Library/IntelQNCLib.h>
|
|
#include <Library/PcdLib.h>
|
|
#include <Library/SmbusLib.h>
|
|
#include <Library/RecoveryOemHookLib.h>
|
|
#include <Library/TimerLib.h>
|
|
#include <Library/PrintLib.h>
|
|
#include <Library/ResetSystemLib.h>
|
|
#include <Library/MemoryAllocationLib.h>
|
|
#include <Library/PerformanceLib.h>
|
|
#include <Library/CacheMaintenanceLib.h>
|
|
#include <Library/MtrrLib.h>
|
|
#include <Library/QNCAccessLib.h>
|
|
#include <Library/PlatformHelperLib.h>
|
|
#include <Library/PlatformPcieHelperLib.h>
|
|
#include <Library/I2cLib.h>
|
|
|
|
#include <Register/Cpuid.h>
|
|
|
|
#endif
|