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