]> git.proxmox.com Git - mirror_edk2.git/blame - Vlv2TbltDevicePkg/SmBiosMiscDxe/MiscBiosVendorData.c
Vlv2TbltDevicePkg: Replace BSD License with BSD+Patent License
[mirror_edk2.git] / Vlv2TbltDevicePkg / SmBiosMiscDxe / MiscBiosVendorData.c
CommitLineData
3cbfba02
DW
1/** @file\r
2\r
3Copyright (c) 2004 - 2014, Intel Corporation. All rights reserved.<BR>\r
4 \r\r
9dc8036d
MK
5 SPDX-License-Identifier: BSD-2-Clause-Patent\r
6\r
3cbfba02
DW
7 \r\r
8\r
9\r
10Module Name:\r
11\r
12 MiscBiosVendorData.c\r
13\r
14Abstract:\r
15\r
16 Static data of BIOS vendor information.\r
17 BIOS vendor information is Misc. subclass type 2 and SMBIOS type 0.\r
18\r
19\r
20**/\r
21\r
22\r
23#include "CommonHeader.h"\r
24\r
25#include "MiscSubclassDriver.h"\r
26\r
27//\r
28// Static (possibly build generated) Bios Vendor data.\r
29//\r
30MISC_SMBIOS_TABLE_DATA(EFI_MISC_BIOS_VENDOR_DATA, MiscBiosVendor)\r
31= {\r
32 STRING_TOKEN(STR_MISC_BIOS_VENDOR), // BiosVendor\r
33 STRING_TOKEN(STR_MISC_BIOS_VERSION), // BiosVersion\r
34 STRING_TOKEN(STR_MISC_BIOS_RELEASE_DATE), // BiosReleaseDate\r
35 0xF000, // BiosStartingAddress\r
36 { // BiosPhysicalDeviceSize\r
37 1, // Value\r
38 21 , // Exponent\r
39 },\r
40 { // BiosCharacteristics1\r
41 0, // Reserved1 :2\r
42 0, // Unknown :1\r
43 0, // BiosCharacteristicsNotSupported :1\r
44 0, // IsaIsSupported :1\r
45 0, // McaIsSupported :1\r
46 0, // EisaIsSupported :1\r
47 1, // PciIsSupported :1\r
48 0, // PcmciaIsSupported :1\r
49 0, // PlugAndPlayIsSupported :1\r
50 0, // ApmIsSupported :1\r
51 1, // BiosIsUpgradable :1\r
52 1, // BiosShadowingAllowed :1\r
53 0, // VlVesaIsSupported :1\r
54 0, // EscdSupportIsAvailable :1\r
55 1, // BootFromCdIsSupported :1\r
56 1, // SelectableBootIsSupported :1\r
57 0, // RomBiosIsSocketed :1\r
58 0, // BootFromPcmciaIsSupported :1\r
59 1, // EDDSpecificationIsSupported :1\r
60 0, // JapaneseNecFloppyIsSupported :1\r
61 0, // JapaneseToshibaFloppyIsSupported :1\r
62 0, // Floppy525_360IsSupported :1\r
63 0, // Floppy525_12IsSupported :1\r
64 0, // Floppy35_720IsSupported :1\r
65 0, // Floppy35_288IsSupported :1\r
66 0, // PrintScreenIsSupported :1\r
67 1, // Keyboard8042IsSupported :1\r
68 1, // SerialIsSupported :1\r
69 1, // PrinterIsSupported :1\r
70 1, // CgaMonoIsSupported :1\r
71 0, // NecPc98 :1\r
72\r
73//\r
74//BIOS Characteristics Extension Byte 1\r
75//\r
76 1, // AcpiIsSupported :1\r
77 1, // UsbLegacyIsSupported :1\r
78 0, // AgpIsSupported :1\r
79 0, // I20BootIsSupported :1\r
80 0, // Ls120BootIsSupported :1\r
81 1, // AtapiZipDriveBootIsSupported :1\r
82 0, // Boot1394IsSupported :1\r
83 0, // SmartBatteryIsSupported :1\r
84\r
85//\r
86//BIOS Characteristics Extension Byte 2\r
87//\r
88 1, // BiosBootSpecIsSupported :1\r
89 1, // FunctionKeyNetworkBootIsSupported :1\r
90 0x1 // Reserved :19 Bit 2 is SMBiosIsTargContDistEnabled\r
91 },\r
92 { // BiosCharacteristics2\r
93 0x0001,// BiosReserved :16 Bit 0 is BIOS Splash Screen\r
94 0, // SystemReserved :16\r
95 0 // Reserved :32\r
96 },\r
97 0xFF, // BiosMajorRelease;\r
98 0xFF, // BiosMinorRelease;\r
99 0xFF, // BiosEmbeddedFirmwareMajorRelease;\r
100 0xFF, // BiosEmbeddedFirmwareMinorRelease;\r
101};\r