]> git.proxmox.com Git - mirror_edk2.git/blame - IntelFrameworkPkg/Include/Framework/Hob.h
Remove unnecessary FRAMEWORK_ prefix in IntelFrameworkPkg definitions for those defin...
[mirror_edk2.git] / IntelFrameworkPkg / Include / Framework / Hob.h
CommitLineData
79964ac8 1/** @file\r
2 This file defines the data structures per HOB specification v0.9.\r
3\r
2bbaeb0d 4 Copyright (c) 2007 - 2009, Intel Corporation\r
79964ac8 5 All rights reserved. This program and the accompanying materials\r
6 are licensed and made available under the terms and conditions of the BSD License\r
7 which accompanies this distribution. The full text of the license may be found at\r
8 http://opensource.org/licenses/bsd-license.php\r
9\r
10 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
11 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
12\r
79964ac8 13 @par Revision Reference:\r
14 These definitions are from HOB Spec 0.9 but not adopted by PI specs.\r
15\r
16**/\r
17\r
108854b2
LG
18#ifndef _HOB_H_\r
19#define _HOB_H_\r
79964ac8 20\r
2bbaeb0d 21///\r
22/// Capsule volume HOB -- identical to a firmware volume\r
b59768ca 23/// This macro is defined to comply with hob Framework Spec. And the marco has been\r
24/// retired in PI1.0 spec. \r
2bbaeb0d 25///\r
9205b2d7 26#define EFI_HOB_TYPE_CV 0x0008\r
79964ac8 27\r
28typedef struct {\r
9205b2d7 29 EFI_HOB_GENERIC_HEADER Header;\r
30 EFI_PHYSICAL_ADDRESS BaseAddress;\r
31 UINT64 Length;\r
79964ac8 32} EFI_HOB_CAPSULE_VOLUME;\r
33\r
34#endif\r