]> git.proxmox.com Git - mirror_edk2.git/blob - Nt32Pkg/MiscSubClassPlatformDxe/MiscBiosVendorData.c
clean up
[mirror_edk2.git] / Nt32Pkg / MiscSubClassPlatformDxe / MiscBiosVendorData.c
1 /*++
2
3 Copyright (c) 2006, Intel Corporation
4 All rights reserved. This program and the accompanying materials
5 are licensed and made available under the terms and conditions of the BSD License
6 which accompanies this distribution. The full text of the license may be found at
7 http://opensource.org/licenses/bsd-license.php
8
9 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
10 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
11
12 Module Name:
13
14 MiscBiosVendorData.c
15
16 Abstract:
17
18 This driver parses the mMiscSubclassDataTable structure and reports
19 any generated data to the DataHub.
20
21 --*/
22
23 //
24 // Include common header file for this module.
25 //
26 #include "CommonHeader.h"
27
28 #include "MiscSubclassDriver.h"
29
30 //
31 // Static (possibly build generated) Bios Vendor data.
32 //
33 MISC_SUBCLASS_TABLE_DATA(EFI_MISC_BIOS_VENDOR_DATA, MiscBiosVendor) = {
34 STRING_TOKEN(STR_MISC_BIOS_VENDOR), // BiosVendor
35 STRING_TOKEN(STR_MISC_BIOS_VERSION), // BiosVersion
36 STRING_TOKEN(STR_MISC_BIOS_RELEASE_DATE), // BiosReleaseDate
37 0xBABE, // BiosStartingAddress
38 { // BiosPhysicalDeviceSize
39 2, // Value
40 3, // Exponent
41 },
42 { // BiosCharacteristics1
43 0, // Reserved1 :2
44 0, // Unknown :1
45 1, // BiosCharacteristicsNotSupported :1
46 0, // IsaIsSupported :1
47 0, // McaIsSupported :1
48 0, // EisaIsSupported :1
49 0, // PciIsSupported :1
50 0, // PcmciaIsSupported :1
51 0, // PlugAndPlayIsSupported :1
52 0, // ApmIsSupported :1
53 0, // BiosIsUpgradable :1
54 0, // BiosShadowingAllowed :1
55 0, // VlVesaIsSupported :1
56 0, // EscdSupportIsAvailable :1
57 0, // BootFromCdIsSupported :1
58 0, // SelectableBootIsSupported :1
59 0, // RomBiosIsSocketed :1
60 0, // BootFromPcmciaIsSupported :1
61 0, // EDDSpecificationIsSupported :1
62 0, // JapaneseNecFloppyIsSupported :1
63 0, // JapaneseToshibaFloppyIsSupported :1
64 0, // Floppy525_360IsSupported :1
65 0, // Floppy525_12IsSupported :1
66 0, // Floppy35_720IsSupported :1
67 0, // Floppy35_288IsSupported :1
68 0, // PrintScreenIsSupported :1
69 0, // Keyboard8042IsSupported :1
70 0, // SerialIsSupported :1
71 0, // PrinterIsSupported :1
72 0, // CgaMonoIsSupported :1
73 0, // NecPc98 :1
74 0, // AcpiIsSupported :1
75 0, // UsbLegacyIsSupported :1
76 0, // AgpIsSupported :1
77 0, // I20BootIsSupported :1
78 0, // Ls120BootIsSupported :1
79 0, // AtapiZipDriveBootIsSupported :1
80 0, // Boot1394IsSupported :1
81 0, // SmartBatteryIsSupported :1
82 0, // BiosBootSpecIsSupported :1
83 0, // FunctionKeyNetworkBootIsSupported :1
84 0 // Reserved :22
85 },
86 { // BiosCharacteristics2
87 0, // BiosReserved :16
88 0, // SystemReserved :16
89 0 // Reserved :32
90 },
91 };
92
93 /* eof - MiscBiosVendorData.c */