Newer
Older
AMI-Aptio-BIOS-Reversed / PurleySktPkg / Dxe / FpgaInit / FpgaSocketSetup / FpgaSocketSetup.h
@Ajax Dong Ajax Dong 2 days ago 928 bytes Recovering names (will, pause for now)
/** @file
  FpgaSocketSetup.h -- Header for FpgaSocketSetup


Copyright (c) HR650X BIOS Decompilation Project
**/

#ifndef __FPGASOCKETSETUP_H__
#define __FPGASOCKETSETUP_H__

#include "../uefi_headers/Uefi.h"

//
// Function Prototypes
//

/// InitializeFpgaSocketSetupContext -- Pre-initialization and global data setup.
///
EFI_STATUS
EFIAPI
InitializeFpgaSocketSetupContext(
  VOID
);

/// FpgaSocketSetupMain -- Main HII form and configuration driver.
///
EFI_STATUS
EFIAPI
FpgaSocketSetupMain(
  EFI_HANDLE ImageHandle,
  EFI_SYSTEM_TABLE *SystemTable
);

/// FpgaSocketConfigurationErrorHandler -- FPGA configuration error / fallback handler.
///
EFI_STATUS
EFIAPI
FpgaSocketConfigurationErrorHandler(
  VOID
);

///
/// ModuleEntryPoint -- UEFI entry point / initialization function
///
EFI_STATUS
EFIAPI
ModuleEntryPoint(
  EFI_HANDLE ImageHandle,
  EFI_SYSTEM_TABLE *SystemTable
);

#endif /* __FPGASOCKETSETUP_H__ */