blob: 99d16b2c43dd7c4eca0634657a05b27653620b9f [file] [log] [blame]
klu26ae81422008-03-19 03:23:16 +00001/**@file
qwang128879d432007-06-27 06:46:00 +00002
hhtian8f2a5f82010-04-28 12:24:39 +00003Copyright (c) 2006 - 2009, Intel Corporation. All rights reserved.<BR>
4This program and the accompanying materials
vanjeffdd356cc2007-07-03 06:07:51 +00005are licensed and made available under the terms and conditions of the BSD License
6which accompanies this distribution. The full text of the license may be found at
7http://opensource.org/licenses/bsd-license.php
8
9THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
10WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
qwang128879d432007-06-27 06:46:00 +000011
12Module Name:
vanjeffdd356cc2007-07-03 06:07:51 +000013
qwang128879d432007-06-27 06:46:00 +000014 MiscSystemSlotDesignationData.c
vanjeffdd356cc2007-07-03 06:07:51 +000015
16Abstract:
qwang128879d432007-06-27 06:46:00 +000017
18 This driver parses the mMiscSubclassDataTable structure and reports
19 any generated data to the DataHub.
20
klu26ae81422008-03-19 03:23:16 +000021**/
qwang128879d432007-06-27 06:46:00 +000022
qwang128879d432007-06-27 06:46:00 +000023#include "MiscSubclassDriver.h"
24
25//
26// Static (possibly build generated) Bios Vendor data.
27//
davidhuang1fdd39d2009-11-20 04:02:03 +000028MISC_SMBIOS_TABLE_DATA(EFI_MISC_SYSTEM_SLOT_DESIGNATION_DATA, MiscSystemSlotDesignation) = {
qwang128879d432007-06-27 06:46:00 +000029 STRING_TOKEN(STR_MISC_SYSTEM_SLOT_DESIGNATION), // SlotDesignation
30 EfiSlotTypeOther, // SlotType
31 EfiSlotDataBusWidthOther, // SlotDataBusWidth
32 EfiSlotUsageOther, // SlotUsage
33 EfiSlotLengthOther, // SlotLength
34 0, // SlotId
35 { // SlotCharacteristics
36 0, // CharacteristicsUnknown :1;
37 0, // Provides50Volts :1;
38 0, // Provides33Volts :1;
39 0, // SharedSlot :1;
40 0, // PcCard16Supported :1;
41 0, // CardBusSupported :1;
42 0, // ZoomVideoSupported :1;
43 0, // ModemRingResumeSupported:1;
44 0, // PmeSignalSupported :1;
45 0, // HotPlugDevicesSupported :1;
46 0, // SmbusSignalSupported :1;
47 0 // Reserved :21;
48 },
49 0 // SlotDevicePath
50};
51
52/* eof - MiscSystemSlotsData.c */