]> git.proxmox.com Git - mirror_edk2.git/blob - IntelFrameworkPkg/Include/Framework/Hob.h
Remove "Module Name:" from include file headers.
[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 - 2009, 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 @par Revision Reference:
14 These definitions are from HOB Spec 0.9 but not adopted by PI specs.
15
16 **/
17
18 #ifndef _FRAMEWORK_HOB_H_
19 #define _FRAMEWORK_HOB_H_
20
21 ///
22 /// Capsule volume HOB -- identical to a firmware volume
23 /// This macro is defined to comply with hob Framework Spec. And the marco has been
24 /// retired in PI1.0 spec.
25 ///
26 #define EFI_HOB_TYPE_CV 0x0008
27
28 typedef struct {
29 EFI_HOB_GENERIC_HEADER Header;
30 EFI_PHYSICAL_ADDRESS BaseAddress;
31 UINT64 Length;
32 } EFI_HOB_CAPSULE_VOLUME;
33
34 #endif