1 /** @file
2   This file provides Smbios Type1 Data
3 
4   Based on files under Nt32Pkg/MiscSubClassPlatformDxe/
5 
6   Copyright (c) 2021, NUVIA Inc. All rights reserved.<BR>
7   Copyright (c) 2006 - 2009, Intel Corporation. All rights reserved.<BR>
8   Copyright (c) 2015, Hisilicon Limited. All rights reserved.<BR>
9   Copyright (c) 2015, Linaro Limited. All rights reserved.<BR>
10   SPDX-License-Identifier: BSD-2-Clause-Patent
11 
12 **/
13 
14 #include "SmbiosMisc.h"
15 
16 
17 //
18 // Static (possibly build generated) System Manufacturer data.
19 //
20 SMBIOS_MISC_TABLE_DATA(SMBIOS_TABLE_TYPE1, MiscSystemManufacturer) = {
21   {                                               // Hdr
22     EFI_SMBIOS_TYPE_SYSTEM_INFORMATION,             // Type,
23     0,                                              // Length,
24     0                                               // Handle
25   },
26   1,                                              // Manufacturer
27   2,                                              // ProductName
28   3,                                              // Version
29   4,                                              // SerialNumber
30   {                                               // Uuid
31     0x00000000, 0x0000, 0x0000, {0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}
32   },
33   SystemWakeupTypePowerSwitch,                    // SystemWakeupType
34   5,                                              // SKUNumber,
35   6                                               // Family
36 };
37