summaryrefslogtreecommitdiff
path: root/ReferenceCode/Pfat/Smm/PfatServices.h
blob: 3812201e4a26ae31d701fa0e9e5c07c1e31a1694 (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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
/**
  This file contains an 'Intel Peripheral Driver' and uniquely        
  identified as "Intel Reference Module" and is
  licensed for Intel CPUs and chipsets under the terms of your   
  license agreement with Intel or your vendor.  This file may   
  be modified by the user, subject to additional terms of the
  license agreement
**/
/**

Copyright (c) 2011 - 2012 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.

@file:

  PfatServices.h

@brief:

  Header file for the PCH PFAT Driver.

**/
#ifndef _PFAT_SERVICES_H_
#define _PFAT_SERVICES_H_

#include "PfatDefinitions.h"
#include "PchAccess.h"
#include "PchPlatformLib.h"
#include "AslUpdateLib.h"

///
/// Driver Dependency Protocols
///
#include EFI_PROTOCOL_PRODUCER   (Pfat)
#include EFI_PROTOCOL_DEPENDENCY (SmmBase)
#include EFI_PROTOCOL_DEPENDENCY (FirmwareVolume)
#include EFI_PROTOCOL_DEPENDENCY (SmmIoTrapDispatch)
#include EFI_GUID_DEFINITION     (SaDataHob)
#include EFI_PROTOCOL_DEPENDENCY (GlobalNvsArea)

UINT8                 mPfatUpdateData[PUP_BUFFER_SIZE];
static UINT16         mPfatUpdateCounter;
PUP                   *mPfatUpdatePackagePtr;
EFI_PHYSICAL_ADDRESS  mPupCertificate;
PFAT_LOG              *mPfatLogPtr;
PFAT_LOG              mPfatLogTemp;
EFI_PHYSICAL_ADDRESS  mPfatMemAddress;
UINT32                mPfatMemSize;
UINT64                mPfatFullStatus;

///
/// Private data structure definitions for the driver
///
#define PFAT_SIGNATURE  EFI_SIGNATURE_32 ('P', 'F', 'A', 'T')

#define PFAT_DIRECTORY_MAX_SIZE               6
#define PFAT_DIRECTORY_PFAT_MODULE_ENTRY      0x00
#define PFAT_DIRECTORY_PPDT_ENTRY             0x01
#define PFAT_DIRECTORY_PUP_ENTRY              0x02
#define PFAT_DIRECTORY_PUP_CERTIFICATE_ENTRY  0x03
#define PFAT_DIRECTORY_PFAT_LOG_ENTRY         0x04
#define PFAT_DIRECTORY_UNDEFINED_ENTRY        0xFE
#define PFAT_DIRECTORY_END_MARKER             0xFF

typedef enum {
  EnumPfatModule        = 0,
  EnumPpdt,
  EnumPup,
  EnumPupCertificate,
  EnumPfatLog,
  EnumPfatDirectoryEnd
} PFAT_DIRECTORY;

typedef struct {
  UINTN                 Signature;
  EFI_HANDLE            Handle;
  PFAT_PROTOCOL         PfatProtocol;
  EFI_PHYSICAL_ADDRESS  PfatDirectory[PFAT_DIRECTORY_MAX_SIZE];
  UINT32                AddrMask;
  UINT64                MsrValue;
} PFAT_INSTANCE;

#define PFAT_INSTANCE_FROM_PFATPROTOCOL(a)  CR (a, PFAT_INSTANCE, PfatProtocol, PFAT_SIGNATURE)

///
/// Stall period in microseconds
///
#define PFAT_WAIT_PERIOD          0
#define PFAT_AP_SAFE_RETRY_LIMIT  1

///
/// Function prototypes used by the PFAT protocol.
///
EFI_STATUS
PfatProtocolConstructor (
  PFAT_INSTANCE          *PfatInstance
  )
/**

@brief

  Initialize PFAT protocol instance.

  @param[in] PfatInstance              Pointer to PfatInstance to initialize

  @retval EFI_SUCCESS               The protocol instance was properly initialized

**/
;

VOID
EFIAPI
PfatModuleExecute (
  IN PFAT_INSTANCE          *PfatInstance
  )
/**

@brief
  
  Set MSR 0x115 with PFAT DIRECTORY Address.
  Trigger MSR 0x116 to invoke PFAT Binary.
  Read MSR 0x115 to get PFAT Binary Status.
  
  @param[in] PfatInstance              Pointer to PfatInstance to initialize


**/
;

EFI_STATUS
EFIAPI
PfatProtocolExecute (
  IN     PFAT_PROTOCOL  *This,
  IN     BOOLEAN        BiosUpdate
  )
/**

@brief
  
  Set PFAT DIRECTORY Address and triggers MSR to pass control to PFAT Binary module to execute command script.
  This function would be called by runtime driver, please do not use any MMIO macro here
  
  @param[in] This                   Pointer to the PFAT_PROTOCOL instance.
  @param[in] BiosUpdate             Flag to indicate flash update is requested by the Tool

  @retval EFI_SUCCESS               Command succeed.
  @retval EFI_INVALID_PARAMETER     The parameters specified are not valid.
  @retval EFI_UNSUPPORTED           The CPU or SPI memory is not supported.
  @retval EFI_DEVICE_ERROR          Device error, command aborts abnormally.

**/
;

VOID
EFIAPI
PfatProtocolWrite (
  IN     PFAT_PROTOCOL  *This,
  IN     UINTN          Address,
  IN     UINT32         DataByteCount,
  IN OUT UINT8          *Buffer
  )
/**

@brief
  
  Fill up Write script data into the PFAT Script buffer.
  This function would be called by runtime driver, please do not use any MMIO macro here
  
  @param[in] This                      Pointer to the PFAT_PROTOCOL instance.
  @param[in] Address                   This value specifies the offset from the start of the SPI Flash component where
                                       BIOS Image is located.
  @param[in] DataByteCount             Number of bytes in the data portion.
  @param[in] Buffer                    Pointer to caller-allocated buffer containing the data to be sent.


**/
;

VOID
EFIAPI
PfatProtocolBlockErase (
  IN     PFAT_PROTOCOL  *This,
  IN     UINTN          Address
  )
/**

@brief
  
  Fill up Erase script data into the PFAT Script buffer.
  This function would be called by runtime driver, please do not use any MMIO macro here
  
  @param[in] This                      Pointer to the PFAT_PROTOCOL instance.
  @param[in] Address                   This value specifies the offset from the start of the SPI Flash component where
                                       BIOS Image is located.
  @param[in] DataByteCount             Number of bytes in the data portion.


**/
;

#endif