• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /** @file
2   Fsp related definitions
3 
4   Copyright (c) 2014, Intel Corporation. All rights reserved.<BR>
5   This program and the accompanying materials
6   are licensed and made available under the terms and conditions of the BSD License
7   which accompanies this distribution.  The full text of the license may be found at
8   http://opensource.org/licenses/bsd-license.php.
9 
10   THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
11   WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
12 
13 **/
14 
15 #ifndef __FSP_H__
16 #define __FSP_H__
17 
18 //
19 // Fv Header
20 //
21 #define FVH_SIGINATURE_OFFSET         0x28
22 #define FVH_SIGINATURE_VALID_VALUE    0x4856465F  // valid signature:_FVH
23 #define FVH_HEADER_LENGTH_OFFSET      0x30
24 #define FVH_EXTHEADER_OFFSET_OFFSET   0x34
25 #define FVH_EXTHEADER_SIZE_OFFSET     0x10
26 
27 //
28 // Ffs Header
29 //
30 #define FSP_HEADER_GUID_DWORD1        0x912740BE
31 #define FSP_HEADER_GUID_DWORD2        0x47342284
32 #define FSP_HEADER_GUID_DWORD3        0xB08471B9
33 #define FSP_HEADER_GUID_DWORD4        0x0C3F3527
34 #define FFS_HEADER_SIZE_VALUE         0x18
35 
36 //
37 // Section Header
38 //
39 #define SECTION_HEADER_TYPE_OFFSET    0x03
40 #define RAW_SECTION_HEADER_SIZE_VALUE 0x04
41 
42 //
43 // Fsp Header
44 //
45 #define FSP_HEADER_IMAGEBASE_OFFSET     0x1C
46 #define FSP_HEADER_TEMPRAMINIT_OFFSET   0x30
47 
48 #endif
49