]> git.proxmox.com Git - mirror_edk2.git/blame - DuetPkg/SmbiosGenDxe/SmbiosGen.h
Update the modules with the different module GUID to avoid the different modules...
[mirror_edk2.git] / DuetPkg / SmbiosGenDxe / SmbiosGen.h
CommitLineData
21020c7c 1/** @file\r
2\r
a17b7e9f 3Copyright (c) 2009 - 2010, Intel Corporation \r
21020c7c 4All rights reserved. This program and the accompanying materials \r
5are licensed and made available under the terms and conditions of the BSD License \r
6which accompanies this distribution. The full text of the license may be found at \r
7http://opensource.org/licenses/bsd-license.php \r
8 \r
9THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, \r
10WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. \r
11\r
12Module Name: \r
13\r
14 DataHubGen.h\r
15\r
16Abstract:\r
17\r
18**/\r
19\r
20#ifndef _SMBIOS_GEN_H_\r
21#define _SMBIOS_GEN_H_\r
22\r
23#include <FrameworkDxe.h>\r
24#include <IndustryStandard/SmBios.h>\r
25\r
26#include <Guid/HobList.h>\r
27#include <Guid/SmBios.h>\r
28#include <Guid/DataHubRecords.h>\r
29\r
30#include <Protocol/Smbios.h>\r
31#include <Protocol/FrameworkHii.h>\r
32#include <Protocol/HiiDatabase.h>\r
33\r
34#include <Library/BaseLib.h>\r
35#include <Library/UefiLib.h>\r
36#include <Library/HobLib.h>\r
37#include <Library/UefiBootServicesTableLib.h>\r
38#include <Library/HiiLib.h>\r
39#include <Library/DebugLib.h>\r
40#include <Library/BaseMemoryLib.h>\r
41#include <Library/MemoryAllocationLib.h>\r
42\r
43#define PRODUCT_NAME L"DUET"\r
44#define PRODUCT_VERSION L"Beta"\r
45\r
46#define FIRMWARE_PRODUCT_NAME (PRODUCT_NAME L": ")\r
47#ifdef EFI32\r
21020c7c 48#define FIRMWARE_BIOS_VERSIONE (PRODUCT_NAME L"(IA32.UEFI)" PRODUCT_VERSION L": ")\r
21020c7c 49#else // EFIX64\r
21020c7c 50#define FIRMWARE_BIOS_VERSIONE (PRODUCT_NAME L"(X64.UEFI)" PRODUCT_VERSION L": ")\r
21020c7c 51#endif\r
52\r
53SMBIOS_STRUCTURE_POINTER\r
54GetSmbiosTableFromType (\r
55 IN SMBIOS_TABLE_ENTRY_POINT *Smbios,\r
56 IN UINT8 Type,\r
57 IN UINTN Index\r
58 );\r
59\r
60CHAR8 *\r
61GetSmbiosString (\r
62 IN SMBIOS_STRUCTURE_POINTER SmbiosTable,\r
63 IN SMBIOS_TABLE_STRING String\r
64 );\r
65\r
66/**\r
67 Logs SMBIOS record.\r
68\r
69 @param Smbios Pointer to SMBIOS protocol instance.\r
70 @param Buffer Pointer to the data buffer.\r
71\r
72**/\r
73VOID\r
74LogSmbiosData (\r
75 IN EFI_SMBIOS_PROTOCOL *Smbios,\r
76 IN UINT8 *Buffer\r
77 );\r
78\r
79#endif\r