summaryrefslogtreecommitdiff
path: root/MdePkg/Include/Guid
diff options
context:
space:
mode:
authorHao Wu <hao.a.wu@intel.com>2015-04-03 05:23:13 +0000
committerhwu1225 <hwu1225@Edk2>2015-04-03 05:23:13 +0000
commit710585782756d00143b09adde43949cf2d10d4d4 (patch)
tree87d335ed0cb64264b086bc7638f538722a3572d3 /MdePkg/Include/Guid
parenta22b4387ad5fa7d842e62d829701f18ff54d7529 (diff)
Rollback r17113.
Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Hao Wu <hao.a.wu@intel.com> git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@17114 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdePkg/Include/Guid')
-rw-r--r--MdePkg/Include/Guid/FmpCapsule.h33
-rw-r--r--MdePkg/Include/Guid/SystemResourceTable.h125
2 files changed, 12 insertions, 146 deletions
diff --git a/MdePkg/Include/Guid/FmpCapsule.h b/MdePkg/Include/Guid/FmpCapsule.h
index 35bc9ebf63..4c358b82bb 100644
--- a/MdePkg/Include/Guid/FmpCapsule.h
+++ b/MdePkg/Include/Guid/FmpCapsule.h
@@ -2,14 +2,14 @@
Guid & data structure used for Delivering Capsules Containing Updates to Firmware
Management Protocol
- Copyright (c) 2013 - 2015, Intel Corporation. All rights reserved.<BR>
- This program and the accompanying materials
- are licensed and made available under the terms and conditions of the BSD License
- which accompanies this distribution. The full text of the license may be found at
- http://opensource.org/licenses/bsd-license.php
+ Copyright (c) 2013 - 2014, Intel Corporation. All rights reserved.<BR>
+ This program and the accompanying materials
+ are licensed and made available under the terms and conditions of the BSD License
+ which accompanies this distribution. The full text of the license may be found at
+ http://opensource.org/licenses/bsd-license.php
- THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
- WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
+ THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
+ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
@par Revision Reference:
GUIDs defined in UEFI 2.4 spec.
@@ -35,7 +35,7 @@ typedef struct {
///
/// The number of drivers included in the capsule and the number of corresponding
- /// offsets stored in ItemOffsetList array.
+ /// offsets stored in ItemOffsetList array.
///
UINT16 EmbeddedDriverCount;
@@ -56,7 +56,7 @@ typedef struct {
UINT32 Version;
///
- /// Used to identify device firmware targeted by this update. This guid is matched by
+ /// Used to identifiy device firmware targeted by this update. This guid is matched by
/// system firmware against ImageTypeId field within a EFI_FIRMWARE_IMAGE_DESCRIPTOR
///
EFI_GUID UpdateImageTypeId;
@@ -73,25 +73,16 @@ typedef struct {
UINT32 UpdateImageSize;
///
- /// Size of the VendorCode bytes which optionally immediately follow binary update image in the capsule
+ ///Size of the VendorCode bytes which optionally immediately follow binary update image in the capsule
///
UINT32 UpdateVendorCodeSize;
-
- ///
- /// The HardwareInstance to target with this update. If value is zero it means match all
- /// HardwareInstances. This field allows update software to target only a single device in
- /// cases where there are more than one device with the same ImageTypeId GUID.
- /// This header is outside the signed data of the Authentication Info structure and
- /// therefore can be modified without changing the Auth data.
- ///
- UINT64 UpdateHardwareInstance;
} EFI_FIRMWARE_MANAGEMENT_CAPSULE_IMAGE_HEADER;
#pragma pack()
-#define EFI_FIRMWARE_MANAGEMENT_CAPSULE_HEADER_INIT_VERSION 0x00000001
-#define EFI_FIRMWARE_MANAGEMENT_CAPSULE_IMAGE_HEADER_INIT_VERSION 0x00000002
+#define EFI_FIRMWARE_MANAGEMENT_CAPSULE_HEADER_INIT_VERSION 0x00000001
+#define EFI_FIRMWARE_MANAGEMENT_CAPSULE_IMAGE_HEADER_INIT_VERSION 0x00000001
extern EFI_GUID gEfiFmpCapsuleGuid;
diff --git a/MdePkg/Include/Guid/SystemResourceTable.h b/MdePkg/Include/Guid/SystemResourceTable.h
deleted file mode 100644
index a77cb9295b..0000000000
--- a/MdePkg/Include/Guid/SystemResourceTable.h
+++ /dev/null
@@ -1,125 +0,0 @@
-/** @file
- Guid & data structure used for EFI System Resource Table (ESRT)
-
- Copyright (c) 2015, Intel Corporation. All rights reserved.<BR>
- This program and the accompanying materials
- are licensed and made available under the terms and conditions of the BSD License
- which accompanies this distribution. The full text of the license may be found at
- http://opensource.org/licenses/bsd-license.php
-
- THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
- WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
-
- @par Revision Reference:
- GUIDs defined in UEFI 2.5 spec.
-
-**/
-
-
-#ifndef _SYSTEM_RESOURCE_TABLE_H__
-#define _SYSTEM_RESOURCE_TABLE_H__
-
-#define EFI_SYSTEM_RESOURCE_TABLE_GUID \
- { \
- 0xb122a263, 0x3661, 0x4f68, {0x99, 0x29, 0x78, 0xf8, 0xb0, 0xd6, 0x21, 0x80 } \
- }
-
-///
-/// Current Entry Version
-///
-#define EFI_SYSTEM_RESOURCE_TABLE_FIRMWARE_RESOURCE_VERSION 1
-
-///
-/// Firmware Type Definitions
-///
-#define ESRT_FW_TYPE_UNKNOWN 0x00000000
-#define ESRT_FW_TYPE_SYSTEMFIRMWARE 0x00000001
-#define ESRT_FW_TYPE_DEVICEFIRMWARE 0x00000002
-#define ESRT_FW_TYPE_UEFIDRIVER 0x00000003
-
-///
-/// Last Attempt Status Values
-///
-#define LAST_ATTEMPT_STATUS_SUCCESS 0x00000000
-#define LAST_ATTEMPT_STATUS_ERROR_UNSUCCESSFUL 0x00000001
-#define LAST_ATTEMPT_STATUS_ERROR_INSUFFICIENT_RESOURCES 0x00000002
-#define LAST_ATTEMPT_STATUS_ERROR_INCORRECT_VERSION 0x00000003
-#define LAST_ATTEMPT_STATUS_ERROR_INVALID_FORMAT 0x00000004
-#define LAST_ATTEMPT_STATUS_ERROR_AUTH_ERROR 0x00000005
-#define LAST_ATTEMPT_STATUS_ERROR_PWR_EVT_AC 0x00000006
-#define LAST_ATTEMPT_STATUS_ERROR_PWR_EVT_BATT 0x00000007
-
-typedef struct {
- ///
- /// The firmware class field contains a GUID that identifies a firmware component
- /// that can be updated via UpdateCapsule(). This GUID must be unique within all
- /// entries of the ESRT.
- ///
- EFI_GUID FwClass;
- ///
- /// Identifies the type of firmware resource.
- ///
- UINT32 FwType;
- ///
- /// The firmware version field represents the current version of the firmware
- /// resource, value must always increase as a larger number represents a newer
- /// version.
- ///
- UINT32 FwVersion;
- ///
- /// The lowest firmware resource version to which a firmware resource can be
- /// rolled back for the given system/device. Generally this is used to protect
- /// against known and fixed security issues.
- ///
- UINT32 LowestSupportedFwVersion;
- ///
- /// The capsule flags field contains the CapsuleGuid flags (bits 0- 15) as defined
- /// in the EFI_CAPSULE_HEADER that will be set in the capsule header.
- ///
- UINT32 CapsuleFlags;
- ///
- /// The last attempt version field describes the last firmware version for which
- /// an update was attempted (uses the same format as Firmware Version).
- /// Last Attempt Version is updated each time an UpdateCapsule() is attempted for
- /// an ESRT entry and is preserved across reboots (non-volatile). However, in
- /// cases where the attempt version is not recorded due to limitations in the
- /// update process, the field shall set to zero after a failed update. Similarly,
- /// in the case of a removable device, this value is set to 0 in cases where the
- /// device has not been updated since being added to the system.
- ///
- UINT32 LastAttemptVersion;
- ///
- /// The last attempt status field describes the result of the last firmware update
- /// attempt for the firmware resource entry.
- /// LastAttemptStatus is updated each time an UpdateCapsule() is attempted for an
- /// ESRT entry and is preserved across reboots (non-volatile).
- /// If a firmware update has never been attempted or is unknown, for example after
- /// fresh insertion of a removable device, LastAttemptStatus must be set to Success.
- ///
- UINT32 LastAttemptStatus;
-} EFI_SYSTEM_RESOURCE_ENTRY;
-
-typedef struct {
- ///
- /// The number of firmware resources in the table, must not be zero.
- ///
- UINT32 FwResourceCount;
- ///
- /// The maximum number of resource array entries that can be within the table
- /// without reallocating the table, must not be zero.
- ///
- UINT32 FwResourceCountMax;
- ///
- /// The version of the EFI_SYSTEM_RESOURCE_ENTRY entities used in this table.
- /// This field should be set to 1.
- ///
- UINT64 FwResourceVersion;
- ///
- /// Array of EFI_SYSTEM_RESOURCE_ENTRY
- ///
- //EFI_SYSTEM_RESOURCE_ENTRY Entries[];
-} EFI_SYSTEM_RESOURCE_TABLE;
-
-extern EFI_GUID gEfiSystemResourceTableGuid;
-
-#endif