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