Home | History | Annotate | Download | only in Ia32
      1 /** @file
      2   Fsp related definitions
      3 
      4   Copyright (c) 2014 - 2016, 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_FV_LENGTH_OFFSET          0x20
     22 #define FVH_SIGINATURE_OFFSET         0x28
     23 #define FVH_SIGINATURE_VALID_VALUE    0x4856465F  // valid signature:_FVH
     24 #define FVH_HEADER_LENGTH_OFFSET      0x30
     25 #define FVH_EXTHEADER_OFFSET_OFFSET   0x34
     26 #define FVH_EXTHEADER_SIZE_OFFSET     0x10
     27 
     28 //
     29 // Ffs Header
     30 //
     31 #define FSP_HEADER_SIGNATURE_OFFSET   0x1C
     32 #define FSP_HEADER_SIGNATURE          0x48505346    ; valid signature:FSPH
     33 #define FSP_HEADER_GUID_DWORD1        0x912740BE
     34 #define FSP_HEADER_GUID_DWORD2        0x47342284
     35 #define FSP_HEADER_GUID_DWORD3        0xB08471B9
     36 #define FSP_HEADER_GUID_DWORD4        0x0C3F3527
     37 #define FFS_HEADER_SIZE_VALUE         0x18
     38 
     39 //
     40 // Section Header
     41 //
     42 #define SECTION_HEADER_TYPE_OFFSET    0x03
     43 #define RAW_SECTION_HEADER_SIZE_VALUE 0x04
     44 
     45 //
     46 // Fsp Header
     47 //
     48 #define FSP_HEADER_IMAGEBASE_OFFSET     0x1C
     49 #define FSP_HEADER_TEMPRAMINIT_OFFSET   0x30
     50 
     51 #endif
     52