X-Git-Url: https://git.proxmox.com/?a=blobdiff_plain;f=MdeModulePkg%2FInclude%2FGuid%2FStatusCodeDataTypeDebug.h;h=6f2688064b12e8c745525a96c52e41c37901c9f4;hb=HEAD;hp=52e7c95e73c0758286b6b7ff0fcfbfedfdcfc362;hpb=10c5d87ef75caee2774c5022373bb7013344dd09;p=mirror_edk2.git diff --git a/MdeModulePkg/Include/Guid/StatusCodeDataTypeDebug.h b/MdeModulePkg/Include/Guid/StatusCodeDataTypeDebug.h index 52e7c95e73..6f2688064b 100644 --- a/MdeModulePkg/Include/Guid/StatusCodeDataTypeDebug.h +++ b/MdeModulePkg/Include/Guid/StatusCodeDataTypeDebug.h @@ -1,23 +1,19 @@ /** @file - This file defines the GUID and data structure used to pass DEBUG() macro + This file defines the GUID and data structure used to pass DEBUG() macro information to the Status Code Protocol and Status Code PPI. - Copyright (c) 2007 - 2009, Intel Corporation - All rights reserved. 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. +Copyright (c) 2007 - 2018, Intel Corporation. All rights reserved.
+SPDX-License-Identifier: BSD-2-Clause-Patent **/ #ifndef _STATUS_CODE_DATA_TYPE_DEBUG_H_ #define _STATUS_CODE_DATA_TYPE_DEBUG_H_ +#include + /// -/// Global ID used to identify a structure of type EFI_DEBUG_INFO +/// The Global ID used to identify a structure of type EFI_DEBUG_INFO. /// #define EFI_STATUS_CODE_DATA_TYPE_DEBUG_GUID \ { \ @@ -25,25 +21,31 @@ } /// -/// The maximum size of an EFI_DEBUG_INFO structure +/// The maximum size of an EFI_DEBUG_INFO structure. +/// +#define EFI_STATUS_CODE_DATA_MAX_SIZE 0x200 + +/// +/// Define the maximum extended data size that is supported when a +/// status code is reported. /// -#define EFI_STATUS_CODE_DATA_MAX_SIZE 200 +#define MAX_EXTENDED_DATA_SIZE (EFI_STATUS_CODE_DATA_MAX_SIZE + sizeof(EFI_STATUS_CODE_DATA)) /// -/// This structure contains the ErrorLevel passed into the DEBUG() macro, followed -/// by a 96-byte buffer that contains the variable argument list passed to the -// DEBUG() macro that has been converted to a BASE_LIST. The 96-byte buffer is -/// followed by a Null-terminated ASCII string that is the Format string passed -/// to the DEBUG() macro. The maximum size of this structure is defined by +/// This structure contains the ErrorLevel passed into the DEBUG() macro, followed +/// by a 96-byte buffer that contains the variable argument list passed to the +/// DEBUG() macro that has been converted to a BASE_LIST. The 96-byte buffer is +/// followed by a Null-terminated ASCII string that is the Format string passed +/// to the DEBUG() macro. The maximum size of this structure is defined by /// EFI_STATUS_CODE_DATA_MAX_SIZE. /// typedef struct { /// /// The debug error level passed into a DEBUG() macro. /// - UINT32 ErrorLevel; + UINT32 ErrorLevel; } EFI_DEBUG_INFO; -extern EFI_GUID gEfiStatusCodeDataTypeDebugGuid; +extern EFI_GUID gEfiStatusCodeDataTypeDebugGuid; #endif // _STATUS_CODE_DATA_TYPE_DEBUG_H_