1 /** @file 2 3 Copyright (c) 2004 - 2014, Intel Corporation. All rights reserved.<BR> 4 5 This program and the accompanying materials are licensed and made available under 7 the terms and conditions of the BSD License that accompanies this distribution. 9 The full text of the license may be found at 11 http://opensource.org/licenses/bsd-license.php. 13 15 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, 17 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. 19 21 23 24 Module Name: 25 26 MiscBiosVendorData.c 27 28 Abstract: 29 30 Static data of BIOS vendor information. 31 BIOS vendor information is Misc. subclass type 2 and SMBIOS type 0. 32 33 34 **/ 35 36 37 #include "CommonHeader.h" 38 39 #include "MiscSubclassDriver.h" 40 41 // 42 // Static (possibly build generated) Bios Vendor data. 43 // 44 MISC_SMBIOS_TABLE_DATA(EFI_MISC_BIOS_VENDOR_DATA, MiscBiosVendor) 45 = { 46 STRING_TOKEN(STR_MISC_BIOS_VENDOR), // BiosVendor 47 STRING_TOKEN(STR_MISC_BIOS_VERSION), // BiosVersion 48 STRING_TOKEN(STR_MISC_BIOS_RELEASE_DATE), // BiosReleaseDate 49 0xF000, // BiosStartingAddress 50 { // BiosPhysicalDeviceSize 51 1, // Value 52 21 , // Exponent 53 }, 54 { // BiosCharacteristics1 55 0, // Reserved1 :2 56 0, // Unknown :1 57 0, // BiosCharacteristicsNotSupported :1 58 0, // IsaIsSupported :1 59 0, // McaIsSupported :1 60 0, // EisaIsSupported :1 61 1, // PciIsSupported :1 62 0, // PcmciaIsSupported :1 63 0, // PlugAndPlayIsSupported :1 64 0, // ApmIsSupported :1 65 1, // BiosIsUpgradable :1 66 1, // BiosShadowingAllowed :1 67 0, // VlVesaIsSupported :1 68 0, // EscdSupportIsAvailable :1 69 1, // BootFromCdIsSupported :1 70 1, // SelectableBootIsSupported :1 71 0, // RomBiosIsSocketed :1 72 0, // BootFromPcmciaIsSupported :1 73 1, // EDDSpecificationIsSupported :1 74 0, // JapaneseNecFloppyIsSupported :1 75 0, // JapaneseToshibaFloppyIsSupported :1 76 0, // Floppy525_360IsSupported :1 77 0, // Floppy525_12IsSupported :1 78 0, // Floppy35_720IsSupported :1 79 0, // Floppy35_288IsSupported :1 80 0, // PrintScreenIsSupported :1 81 1, // Keyboard8042IsSupported :1 82 1, // SerialIsSupported :1 83 1, // PrinterIsSupported :1 84 1, // CgaMonoIsSupported :1 85 0, // NecPc98 :1 86 87 // 88 //BIOS Characteristics Extension Byte 1 89 // 90 1, // AcpiIsSupported :1 91 1, // UsbLegacyIsSupported :1 92 0, // AgpIsSupported :1 93 0, // I20BootIsSupported :1 94 0, // Ls120BootIsSupported :1 95 1, // AtapiZipDriveBootIsSupported :1 96 0, // Boot1394IsSupported :1 97 0, // SmartBatteryIsSupported :1 98 99 // 100 //BIOS Characteristics Extension Byte 2 101 // 102 1, // BiosBootSpecIsSupported :1 103 1, // FunctionKeyNetworkBootIsSupported :1 104 0x1 // Reserved :19 Bit 2 is SMBiosIsTargContDistEnabled 105 }, 106 { // BiosCharacteristics2 107 0x0001,// BiosReserved :16 Bit 0 is BIOS Splash Screen 108 0, // SystemReserved :16 109 0 // Reserved :32 110 }, 111 0xFF, // BiosMajorRelease; 112 0xFF, // BiosMinorRelease; 113 0xFF, // BiosEmbeddedFirmwareMajorRelease; 114 0xFF, // BiosEmbeddedFirmwareMinorRelease; 115 }; 116