aboutsummaryrefslogtreecommitdiff
path: root/src/vendorcode/intel/fsp1_0/ivybridge_i89xx/include/fspapi.h
blob: 18a1582a27a64c6a399632526e02ecf03ed2365f (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
/**

Copyright (c) 2008 - 2013, Intel Corporation. All rights reserved.
This software and associated documentation (if any) is furnished
under a license and may only be used or copied in accordance
with the terms of the license. Except as permitted by such
license, no part of this software or documentation may be
reproduced, stored in a retrieval system, or transmitted in any
form or by any means without the express written consent of
Intel Corporation.

**/

#ifndef _FSP_API_H_
#define _FSP_API_H_

#pragma pack(1)

typedef VOID (* CONTINUATION_PROC)(EFI_STATUS Status, VOID *HobListPtr);

typedef struct {
  VOID               *NvsBufferPtr;
  VOID               *RtBufferPtr;
  CONTINUATION_PROC   ContinuationFunc;
} FSP_INIT_PARAMS;

typedef struct {
  UINT32            *StackTop;
  UINT32             BootMode;  /* Refer to boot mode defined in MdePkg\Include\Pi\PiBootMode.h */
  VOID              *UpdDataRgnPtr;
  UINT32             Reserved[7];
} FSP_INIT_RT_COMMON_BUFFER;

typedef enum {
  EnumInitPhaseAfterPciEnumeration = 0x20,
  EnumInitPhaseReadyToBoot = 0x40
} FSP_INIT_PHASE;

typedef struct {
  FSP_INIT_PHASE     Phase;
} NOTIFY_PHASE_PARAMS;

#pragma pack()


typedef FSP_STATUS (FSPAPI *FSP_FSP_INIT)    (FSP_INIT_PARAMS     *FspInitParamPtr);
typedef FSP_STATUS (FSPAPI *FSP_NOTFY_PHASE) (NOTIFY_PHASE_PARAMS *NotifyPhaseParamPtr);

#endif