summaryrefslogtreecommitdiff
path: root/AlderLakeFspBinPkg/Client/AlderLakeP/Include/SmbiosCacheInfoHob.h
diff options
context:
space:
mode:
Diffstat (limited to 'AlderLakeFspBinPkg/Client/AlderLakeP/Include/SmbiosCacheInfoHob.h')
-rw-r--r--AlderLakeFspBinPkg/Client/AlderLakeP/Include/SmbiosCacheInfoHob.h47
1 files changed, 0 insertions, 47 deletions
diff --git a/AlderLakeFspBinPkg/Client/AlderLakeP/Include/SmbiosCacheInfoHob.h b/AlderLakeFspBinPkg/Client/AlderLakeP/Include/SmbiosCacheInfoHob.h
deleted file mode 100644
index bfa0d80..0000000
--- a/AlderLakeFspBinPkg/Client/AlderLakeP/Include/SmbiosCacheInfoHob.h
+++ /dev/null
@@ -1,47 +0,0 @@
-/** @file
- Header file for SMBIOS Cache Info HOB
-
-@copyright
- Copyright (c) 2022, Intel Corporation. All rights reserved.<BR>
-
- SPDX-License-Identifier: BSD-2-Clause-Patent
-
-@par Specification Reference:
-**/
-
-#ifndef _SMBIOS_CACHE_INFO_HOB_H_
-#define _SMBIOS_CACHE_INFO_HOB_H_
-
-#include <Uefi.h>
-#include <Pi/PiHob.h>
-
-#pragma pack(1)
-///
-/// SMBIOS Cache Info HOB Structure
-///
-typedef struct {
- UINT16 ProcessorSocketNumber;
- UINT16 NumberOfCacheLevels; ///< Based on Number of Cache Types L1/L2/L3
- UINT8 SocketDesignationStrIndex; ///< String Index in the string Buffer. Example "L1-CACHE"
- UINT16 CacheConfiguration; ///< Format defined in SMBIOS Spec v3.1 Section7.8 Table36
- UINT16 MaxCacheSize; ///< Format defined in SMBIOS Spec v3.1 Section7.8.1
- UINT16 InstalledSize; ///< Format defined in SMBIOS Spec v3.1 Section7.8.1
- UINT16 SupportedSramType; ///< Format defined in SMBIOS Spec v3.1 Section7.8.2
- UINT16 CurrentSramType; ///< Format defined in SMBIOS Spec v3.1 Section7.8.2
- UINT8 CacheSpeed; ///< Cache Speed in nanoseconds. 0 if speed is unknown.
- UINT8 ErrorCorrectionType; ///< ENUM Format defined in SMBIOS Spec v3.1 Section 7.8.3
- UINT8 SystemCacheType; ///< ENUM Format defined in SMBIOS Spec v3.1 Section 7.8.4
- UINT8 Associativity; ///< ENUM Format defined in SMBIOS Spec v3.1 Section 7.8.5
- //
- // Add for smbios 3.1.0
- //
- UINT32 MaximumCacheSize2; ///< Format defined in SMBIOS Spec v3.1 Section7.8.1
- UINT32 InstalledSize2; ///< Format defined in SMBIOS Spec v3.1 Section7.8.1
- /**
- String Buffer - each string terminated by NULL "0x00"
- String buffer terminated by double NULL "0x0000"
- **/
-} SMBIOS_CACHE_INFO;
-#pragma pack()
-
-#endif // _SMBIOS_CACHE_INFO_HOB_H_