]> git.proxmox.com Git - mirror_edk2.git/blame_incremental - MdeModulePkg/Include/Guid/CapsuleVendor.h
Retire Extended HII library class.
[mirror_edk2.git] / MdeModulePkg / Include / Guid / CapsuleVendor.h
... / ...
CommitLineData
1/** @file\r
2 This file defines capsule vendor guid for capsule variable and hob.\r
3 It also defines capsule variable name and capsule guid hob data structure,\r
4 which can be used to store the capsule image start address and length.\r
5 They are used by EDKII implementation of capsule update across a system reset.\r
6\r
7Copyright (c) 2006 - 2008, Intel Corporation\r
8All rights reserved. This program and the accompanying materials\r
9are licensed and made available under the terms and conditions of the BSD License\r
10which accompanies this distribution. The full text of the license may be found at\r
11http://opensource.org/licenses/bsd-license.php\r
12\r
13THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
14WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
15\r
16**/\r
17\r
18#ifndef __EFI_CAPSULE_VENDOR_GUID_H__\r
19#define __EFI_CAPSULE_VENDOR_GUID_H__\r
20\r
21///\r
22/// This guid is used as a variable GUID for the capsule variable \r
23/// if the capsule pointer is passed through reset via a variable.\r
24///\r
25/// This guid is also used as a hob GUID for the capsule data \r
26/// when the capsule pointer is passed from PEI phase to DXE phase.\r
27///\r
28#define EFI_CAPSULE_VENDOR_GUID \\r
29 { 0x711C703F, 0xC285, 0x4B10, { 0xA3, 0xB0, 0x36, 0xEC, 0xBD, 0x3C, 0x8B, 0xE2 } }\r
30\r
31///\r
32/// Name of capsule variable\r
33/// \r
34#define EFI_CAPSULE_VARIABLE_NAME L"CapsuleUpdateData"\r
35\r
36///\r
37/// Data structure of capsule guid hob entry\r
38///\r
39typedef struct {\r
40 EFI_PHYSICAL_ADDRESS BaseAddress; ///> Capsule data start address\r
41 UINT32 Length; ///> Length of capsule data.\r
42} CAPSULE_HOB_INFO;\r
43\r
44extern EFI_GUID gEfiCapsuleVendorGuid;\r
45\r
46#endif // #ifndef _EFI_CAPSULE_VENDOR_GUID_H_\r