]> git.proxmox.com Git - mirror_edk2.git/blob - Vlv2TbltDevicePkg/SmBiosMiscDxe/MiscChassisManufacturerData.c
MdeModulePkg/CapsuleApp: Center bitmap at bottom of screen
[mirror_edk2.git] / Vlv2TbltDevicePkg / SmBiosMiscDxe / MiscChassisManufacturerData.c
1 /** @file
2
3 Copyright (c) 2004 - 2014, Intel Corporation. All rights reserved.<BR>
4
5 This program and the accompanying materials are licensed and made available under
6 the terms and conditions of the BSD License that accompanies this distribution.
7 The full text of the license may be found at
8 http://opensource.org/licenses/bsd-license.php.
9
10 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
11 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
12
13
14
15 Module Name:
16
17 MiscChassisManufacturerData.c
18
19 Abstract:
20
21 Static data is Chassis Manufacturer information.
22 Chassis Manufacturer information is Misc. subclass type 5 and SMBIOS type 3.
23
24
25 **/
26
27
28 #include "CommonHeader.h"
29
30 #include "MiscSubclassDriver.h"
31
32 //
33 // Static (possibly build generated) Chassis Manufacturer data.
34 //
35 MISC_SMBIOS_TABLE_DATA(EFI_MISC_CHASSIS_MANUFACTURER_DATA, MiscChassisManufacturer)
36 = {
37 STRING_TOKEN(STR_MISC_CHASSIS_MANUFACTURER), // ChassisManufactrurer
38 STRING_TOKEN(STR_MISC_CHASSIS_VERSION), // ChassisVersion
39 STRING_TOKEN(STR_MISC_CHASSIS_SERIAL_NUMBER), // ChassisSerialNumber
40 STRING_TOKEN(STR_MISC_CHASSIS_ASSET_TAG), // ChassisAssetTag
41 { // ChassisTypeStatus
42 EfiMiscChassisTypeUnknown, // ChassisType
43 0, // ChassisLockPresent
44 0 // Reserved
45 },
46 EfiChassisStateSafe, // ChassisBootupState
47 EfiChassisStateSafe, // ChassisPowerSupplyState
48 EfiChassisStateOther, // ChassisThermalState
49 EfiChassisSecurityStatusOther, // ChassisSecurityState
50 0, // ChassisOemDefined
51 0, // ChassisHeight
52 0, // ChassisNumberPowerCords
53 0, // ChassisElementCount
54 0, // ChassisElementRecordLength
55 { // ChassisElements
56 {0, 0, 0}, // ChassisElementType
57 0, // ChassisElementStructure
58 EfiBaseBoardTypeUnknown, // ChassisBaseBoard
59 0, // ChassisElementMinimum
60 0 // ChassisElementMaximum
61 },
62 };