]> git.proxmox.com Git - mirror_edk2.git/blob - IntelFrameworkPkg/Include/Framework/Hob.h
193451e49316c7135df36ef8077f85cd06463dfe
[mirror_edk2.git] / IntelFrameworkPkg / Include / Framework / Hob.h
1 /** @file
2 This file defines the data structures per HOB specification v0.9.
3
4 Copyright (c) 2007, Intel Corporation
5 All rights reserved. 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 Module Name: FrameworkFirmwareFileSystem.h
14
15 @par Revision Reference:
16 These definitions are from HOB Spec 0.9 but not adopted by PI specs.
17
18 **/
19
20 #ifndef _FRAMEWORK_HOB_H_
21 #define _FRAMEWORK_HOB_H_
22
23 #include <PiPei.h>
24
25 //
26 // Capsule volume HOB -- identical to a firmware volume
27 //
28 #define EFI_HOB_TYPE_CV 0x0008
29
30 typedef struct {
31 EFI_HOB_GENERIC_HEADER Header;
32 EFI_PHYSICAL_ADDRESS BaseAddress;
33 UINT64 Length;
34 } EFI_HOB_CAPSULE_VOLUME;
35
36 #endif