1 /** @file
2   This file defines the data structures per HOB specification v0.9.
3 
4 Copyright (c) 2007 - 2010, Intel Corporation. All rights reserved.<BR>
5 This program and the accompanying materials are licensed and made available under
6 the terms and conditions of the BSD License that accompanies this distribution.
7 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 the HOB Spec 0.9 that were not adopted by the PI specifications.
15 
16 **/
17 
18 #ifndef _HOB_H_
19 #define _HOB_H_
20 
21 ///
22 /// Capsule volume HOB -- identical to a firmware volume.
23 /// This macro is defined to comply with the hob Framework Spec. And the marco was
24 /// retired in the PI1.0 specification.
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
35