1 /** @file
2 
3 Copyright (c) 2004  - 2014, Intel Corporation. All rights reserved.<BR>
4 
5 
6   This program and the accompanying materials are licensed and made available under
7 
8   the terms and conditions of the BSD License that accompanies this distribution.
9 
10   The full text of the license may be found at
11 
12   http://opensource.org/licenses/bsd-license.php.
13 
14 
15 
16   THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
17 
18   WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
19 
20 
21 
22 
23 
24 Module Name:
25 
26   MiscSystemManufacturerData.c
27 
28 Abstract:
29 
30   Static data of System manufacturer information.
31   System manufacturer information is Misc. subclass type 3 and SMBIOS type 1.
32 
33 
34 **/
35 
36 
37 #include "CommonHeader.h"
38 
39 #include "MiscSubclassDriver.h"
40 
41 //
42 // Static (possibly build generated) System Manufacturer data.
43 //
44 MISC_SMBIOS_TABLE_DATA(EFI_MISC_SYSTEM_MANUFACTURER_DATA, MiscSystemManufacturer)
45 = {
46   STRING_TOKEN(STR_MISC_SYSTEM_MANUFACTURER),  // SystemManufactrurer
47   STRING_TOKEN(STR_MISC_SYSTEM_PRODUCT_NAME),  // SystemProductName
48   STRING_TOKEN(STR_MISC_SYSTEM_VERSION),       // SystemVersion
49   STRING_TOKEN(STR_MISC_SYSTEM_SERIAL_NUMBER), // SystemSerialNumber
50   {                                            // SystemUuid
51   	//
52     // Undefined GUID but can be programmed later.
53     //0xFFFFFFFF, 0xFFFF, 0xFFFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF
54 
55     // Undefined GUID that cannot be programmed later.
56     //0x00000000, 0x0000, 0x0000, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
57 	// TODO Hard code here for WHCT test.
58 	0xa5000288, 0x6462, 0x4524, 0x98, 0x6a, 0x9b, 0x77, 0x37, 0xe3, 0x15, 0xcf
59 	//
60   },
61   EfiSystemWakeupTypePowerSwitch  // SystemWakeupType
62 };
63