summaryrefslogtreecommitdiff
path: root/Platform/BroxtonPlatformPkg/Common/Include/BoardFunctionsPei.h
blob: 366b275e3cb26c7b8a5e39c00d526e58551b24e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
/** @file
  Typedefs for board specific functions that are set as dynamic PCDs to be consumed
  by platform common codes.

  Copyright (c) 1999 - 2016, Intel Corporation. All rights reserved.<BR>

  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 _BOARD_FUNCTIONS_PEI_H
#define _BOARD_FUNCTIONS_PEI_H

#include <PiPei.h>
#include <Library/PeiServicesLib.h>
#include <Library/PeiServicesTablePointerLib.h>
#include <Library/BaseLib.h>
#include <Library/DebugLib.h>
#include <Library/BaseMemoryLib.h>
#include <Library/FspWrapperApiLib.h>
#include <Library/PcdLib.h>
#include <Library/HobLib.h>
#include <Library/FspCommonLib.h>
#include <Guid/PlatformInfo_Aplk.h>
#include <Guid/AcpiVariable.h>
#include <Guid/AcpiVariableCompatibility.h>
#include <Library/FspPlatformInfoLib.h>
#include <Ppi/ReadOnlyVariable2.h>
#include <Ppi/DramPolicyPpi.h>
#include <FspmUpd.h>
#include <FspsUpd.h>
#include <SmipGenerated.h>

typedef
EFI_STATUS
(EFIAPI *UPDATE_FSPM_UPD_FUNC) (
  IN CONST EFI_PEI_SERVICES  **PeiServices,
  IN FSPM_UPD                *FspUpdRgn
  );

typedef
EFI_STATUS
(EFIAPI *DRAM_CREATE_POLICY_DEFAULTS_FUNC) (
  IN  EFI_PEI_READ_ONLY_VARIABLE2_PPI  *VariablePpi,
  OUT DRAM_POLICY_PPI                  **DramPolicyPpi,
  IN  IAFWDramConfig                   *DramConfigData,
  IN  UINTN                            *MrcTrainingDataAddr,
  IN  UINTN                            *MrcBootDataAddr,
  IN  UINT8                            BoardId
  );

#endif