]> git.proxmox.com Git - mirror_edk2.git/blame - Nt32Pkg/MiscSubClassPlatformDxe/MiscBiosVendorData.c
Nt32Pkg: Replace BSD License with BSD+Patent License
[mirror_edk2.git] / Nt32Pkg / MiscSubClassPlatformDxe / MiscBiosVendorData.c
CommitLineData
6ae81428 1/**@file\r
8879d432 2\r
8f2a5f80 3Copyright (c) 2006 - 2009, Intel Corporation. All rights reserved.<BR>\r
9d2eedba 4SPDX-License-Identifier: BSD-2-Clause-Patent\r
8879d432 5\r
6Module Name:\r
7\r
8 MiscBiosVendorData.c\r
9 \r
10Abstract: \r
11\r
12 This driver parses the mMiscSubclassDataTable structure and reports\r
13 any generated data to the DataHub.\r
14\r
6ae81428 15**/\r
8879d432 16\r
8879d432 17#include "MiscSubclassDriver.h"\r
18\r
19//\r
20// Static (possibly build generated) Bios Vendor data.\r
21//\r
1fdd39d3 22MISC_SMBIOS_TABLE_DATA(EFI_MISC_BIOS_VENDOR_DATA, MiscBiosVendor) = {\r
8879d432 23 STRING_TOKEN(STR_MISC_BIOS_VENDOR), // BiosVendor\r
24 STRING_TOKEN(STR_MISC_BIOS_VERSION), // BiosVersion\r
25 STRING_TOKEN(STR_MISC_BIOS_RELEASE_DATE), // BiosReleaseDate\r
26 0xBABE, // BiosStartingAddress\r
27 { // BiosPhysicalDeviceSize\r
28 2, // Value\r
29 3, // Exponent\r
30 },\r
31 { // BiosCharacteristics1\r
32 0, // Reserved1 :2\r
33 0, // Unknown :1\r
34 1, // BiosCharacteristicsNotSupported :1\r
35 0, // IsaIsSupported :1\r
36 0, // McaIsSupported :1\r
37 0, // EisaIsSupported :1\r
38 0, // PciIsSupported :1\r
39 0, // PcmciaIsSupported :1\r
40 0, // PlugAndPlayIsSupported :1\r
41 0, // ApmIsSupported :1\r
42 0, // BiosIsUpgradable :1\r
43 0, // BiosShadowingAllowed :1\r
44 0, // VlVesaIsSupported :1\r
45 0, // EscdSupportIsAvailable :1\r
46 0, // BootFromCdIsSupported :1\r
47 0, // SelectableBootIsSupported :1\r
48 0, // RomBiosIsSocketed :1\r
49 0, // BootFromPcmciaIsSupported :1\r
50 0, // EDDSpecificationIsSupported :1\r
51 0, // JapaneseNecFloppyIsSupported :1\r
52 0, // JapaneseToshibaFloppyIsSupported :1\r
53 0, // Floppy525_360IsSupported :1\r
54 0, // Floppy525_12IsSupported :1\r
55 0, // Floppy35_720IsSupported :1\r
56 0, // Floppy35_288IsSupported :1\r
57 0, // PrintScreenIsSupported :1\r
58 0, // Keyboard8042IsSupported :1\r
59 0, // SerialIsSupported :1\r
60 0, // PrinterIsSupported :1\r
61 0, // CgaMonoIsSupported :1\r
62 0, // NecPc98 :1\r
63 0, // AcpiIsSupported :1\r
64 0, // UsbLegacyIsSupported :1\r
65 0, // AgpIsSupported :1\r
66 0, // I20BootIsSupported :1\r
67 0, // Ls120BootIsSupported :1\r
68 0, // AtapiZipDriveBootIsSupported :1\r
69 0, // Boot1394IsSupported :1\r
70 0, // SmartBatteryIsSupported :1\r
71 0, // BiosBootSpecIsSupported :1\r
72 0, // FunctionKeyNetworkBootIsSupported :1\r
73 0 // Reserved :22\r
74 },\r
75 { // BiosCharacteristics2\r
76 0, // BiosReserved :16\r
77 0, // SystemReserved :16\r
78 0 // Reserved :32\r
79 },\r
80};\r
81\r
82/* eof - MiscBiosVendorData.c */\r