]> git.proxmox.com Git - mirror_edk2.git/blobdiff - IntelFspWrapperPkg/FspInitPei/SecMain.h
IntelFspPkg&IntelFspWrapperPkg: Remove them
[mirror_edk2.git] / IntelFspWrapperPkg / FspInitPei / SecMain.h
diff --git a/IntelFspWrapperPkg/FspInitPei/SecMain.h b/IntelFspWrapperPkg/FspInitPei/SecMain.h
deleted file mode 100644 (file)
index 1fe3d8b..0000000
+++ /dev/null
@@ -1,110 +0,0 @@
-/** @file\r
-  Master header file for SecCore.\r
-\r
-  Copyright (c) 2014, Intel Corporation. All rights reserved.<BR>\r
-  SPDX-License-Identifier: BSD-2-Clause-Patent\r
-\r
-**/\r
-\r
-#ifndef _SEC_CORE_H_\r
-#define _SEC_CORE_H_\r
-\r
-\r
-#include <PiPei.h>\r
-\r
-#include <Ppi/TopOfTemporaryRam.h>\r
-#include <Ppi/FspInitDone.h>\r
-\r
-#include <Library/BaseLib.h>\r
-#include <Library/DebugLib.h>\r
-#include <Library/PcdLib.h>\r
-#include <Library/BaseMemoryLib.h>\r
-#include <Library/FspPlatformSecLib.h>\r
-#include <Library/FspPlatformInfoLib.h>\r
-#include <Library/UefiCpuLib.h>\r
-#include <Library/PeCoffGetEntryPointLib.h>\r
-#include <Library/PeCoffExtraActionLib.h>\r
-#include <Library/DebugAgentLib.h>\r
-\r
-#include <FspApi.h>\r
-#include <FspInfoHeader.h>\r
-\r
-#define SEC_IDT_ENTRY_COUNT  34\r
-\r
-typedef struct _SEC_IDT_TABLE {\r
-  //\r
-  // Reserved 8 bytes preceding IDT to store EFI_PEI_SERVICES**, since IDT base\r
-  // address should be 8-byte alignment.\r
-  // Note: For IA32, only the 4 bytes immediately preceding IDT is used to store\r
-  // EFI_PEI_SERVICES**\r
-  //\r
-  UINT64            PeiService;\r
-  UINT64            IdtTable[SEC_IDT_ENTRY_COUNT];\r
-} SEC_IDT_TABLE;\r
-\r
-/**\r
-  Entry point to the C language phase of SEC. After the SEC assembly\r
-  code has initialized some temporary memory and set up the stack,\r
-  the control is transferred to this function.\r
-\r
-  @param[in] SizeOfRam           Size of the temporary memory available for use.\r
-  @param[in] TempRamBase         Base address of temporary ram\r
-  @param[in] BootFirmwareVolume  Base address of the Boot Firmware Volume.\r
-**/\r
-VOID\r
-EFIAPI\r
-SecStartup (\r
-  IN UINT32                   SizeOfRam,\r
-  IN UINT32                   TempRamBase,\r
-  IN VOID                     *BootFirmwareVolume\r
-  );\r
-\r
-/**\r
-  Find and return Pei Core entry point.\r
-\r
-  It also find SEC and PEI Core file debug information. It will report them if\r
-  remote debug is enabled.\r
-\r
-  @param[in]  BootFirmwareVolumePtr  Point to the boot firmware volume.\r
-  @param[out] PeiCoreEntryPoint      Point to the PEI core entry point.\r
-\r
-**/\r
-VOID\r
-EFIAPI\r
-FindAndReportEntryPoints (\r
-  IN  EFI_FIRMWARE_VOLUME_HEADER       *BootFirmwareVolumePtr,\r
-  OUT EFI_PEI_CORE_ENTRY_POINT         *PeiCoreEntryPoint\r
-  );\r
-\r
-/**\r
-  Autogenerated function that calls the library constructors for all of the module's\r
-  dependent libraries.  This function must be called by the SEC Core once a stack has\r
-  been established.\r
-\r
-**/\r
-VOID\r
-EFIAPI\r
-ProcessLibraryConstructorList (\r
-  VOID\r
-  );\r
-\r
-/**\r
-  Return Hob list produced by FSP.\r
-\r
-  @param[in]  PeiServices  The pointer to the PEI Services Table.\r
-  @param[in]  This         The pointer to this instance of this PPI.\r
-  @param[out] FspHobList   The pointer to Hob list produced by FSP.\r
-\r
-  @return EFI_SUCCESS FReturn Hob list produced by FSP successfully.\r
-**/\r
-EFI_STATUS\r
-EFIAPI\r
-FspInitDoneGetFspHobList (\r
-  IN  CONST EFI_PEI_SERVICES         **PeiServices,\r
-  IN  FSP_INIT_DONE_PPI              *This,\r
-  OUT VOID                           **FspHobList\r
-  );\r
-\r
-extern FSP_INIT_DONE_PPI gFspInitDonePpi;\r
-\r
-#endif\r