]> git.proxmox.com Git - mirror_edk2.git/blob - Vlv2TbltDevicePkg/SmBiosMiscDxe/MiscSystemManufacturerData.c
dc12fa8e160cf3e0e69210b4ac262ef0b35f6d20
[mirror_edk2.git] / Vlv2TbltDevicePkg / SmBiosMiscDxe / MiscSystemManufacturerData.c
1 /** @file
2
3 Copyright (c) 2004 - 2014, Intel Corporation. All rights reserved.<BR>
4
5 SPDX-License-Identifier: BSD-2-Clause-Patent
6
7
8
9
10 Module Name:
11
12 MiscSystemManufacturerData.c
13
14 Abstract:
15
16 Static data of System manufacturer information.
17 System manufacturer information is Misc. subclass type 3 and SMBIOS type 1.
18
19
20 **/
21
22
23 #include "CommonHeader.h"
24
25 #include "MiscSubclassDriver.h"
26
27 //
28 // Static (possibly build generated) System Manufacturer data.
29 //
30 MISC_SMBIOS_TABLE_DATA(EFI_MISC_SYSTEM_MANUFACTURER_DATA, MiscSystemManufacturer)
31 = {
32 STRING_TOKEN(STR_MISC_SYSTEM_MANUFACTURER), // SystemManufactrurer
33 STRING_TOKEN(STR_MISC_SYSTEM_PRODUCT_NAME), // SystemProductName
34 STRING_TOKEN(STR_MISC_SYSTEM_VERSION), // SystemVersion
35 STRING_TOKEN(STR_MISC_SYSTEM_SERIAL_NUMBER), // SystemSerialNumber
36 { // SystemUuid
37 //
38 // Undefined GUID but can be programmed later.
39 //0xFFFFFFFF, 0xFFFF, 0xFFFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF
40
41 // Undefined GUID that cannot be programmed later.
42 //0x00000000, 0x0000, 0x0000, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
43 // TODO Hard code here for WHCT test.
44 0xa5000288, 0x6462, 0x4524, 0x98, 0x6a, 0x9b, 0x77, 0x37, 0xe3, 0x15, 0xcf
45 //
46 },
47 EfiSystemWakeupTypePowerSwitch // SystemWakeupType
48 };