Add SMBIOS 2.7.1 support to SmbiosView command.
Signed-off-by: lzeng14 Reviewed-by: jcarsey git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@13101 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
@ -2,7 +2,7 @@
|
||||
Build a table, each item is (key, info) pair.
|
||||
and give a interface of query a string out of a table.
|
||||
|
||||
Copyright (c) 2005 - 2011, Intel Corporation. All rights reserved.<BR>
|
||||
Copyright (c) 2005 - 2012, Intel Corporation. All rights reserved.<BR>
|
||||
This program and the accompanying materials
|
||||
are licensed and made available under the terms and conditions of the BSD License
|
||||
which accompanies this distribution. The full text of the license may be found at
|
||||
@ -94,6 +94,30 @@ DisplaySystemWakeupType (
|
||||
IN UINT8 Option
|
||||
);
|
||||
|
||||
/**
|
||||
Display Base Board (Type 2) Feature Flags.
|
||||
|
||||
@param[in] FeatureFlags The key of the structure.
|
||||
@param[in] Option The optional information.
|
||||
**/
|
||||
VOID
|
||||
DisplayBaseBoardFeatureFlags (
|
||||
IN UINT8 FeatureFlags,
|
||||
IN UINT8 Option
|
||||
);
|
||||
|
||||
/**
|
||||
Display Base Board (Type 2) Board Type.
|
||||
|
||||
@param[in] Type The key of the structure.
|
||||
@param[in] Option The optional information.
|
||||
**/
|
||||
VOID
|
||||
DisplayBaseBoardBoardType(
|
||||
IN UINT8 Type,
|
||||
IN UINT8 Option
|
||||
);
|
||||
|
||||
/**
|
||||
Display System Enclosure (Type 3) Enclosure Type.
|
||||
|
||||
@ -155,6 +179,18 @@ DisplayProcessorUpgrade (
|
||||
IN UINT8 Option
|
||||
);
|
||||
|
||||
/**
|
||||
Display Processor Information (Type 4) Characteristics.
|
||||
|
||||
@param[in] Type The key of the structure.
|
||||
@param[in] Option The optional information.
|
||||
**/
|
||||
VOID
|
||||
DisplayProcessorCharacteristics (
|
||||
IN UINT16 Type,
|
||||
IN UINT8 Option
|
||||
);
|
||||
|
||||
/**
|
||||
Display Memory Controller Information (Type 5) method.
|
||||
|
||||
@ -696,7 +732,7 @@ DisplayECPLoc (
|
||||
);
|
||||
|
||||
/**
|
||||
Display Management Device (Type 34) information.
|
||||
Display Management Device (Type 34) Type.
|
||||
|
||||
@param[in] Key The key of the structure.
|
||||
@param[in] Option The optional information.
|
||||
@ -707,6 +743,18 @@ DisplayMDType (
|
||||
IN UINT8 Option
|
||||
);
|
||||
|
||||
/**
|
||||
Display Management Device (Type 34) Address Type.
|
||||
|
||||
@param[in] Key The key of the structure.
|
||||
@param[in] Option The optional information.
|
||||
**/
|
||||
VOID
|
||||
DisplayMDAddressType (
|
||||
IN UINT8 Key,
|
||||
IN UINT8 Option
|
||||
);
|
||||
|
||||
/**
|
||||
Display Memory Channel (Type 37) information.
|
||||
|
||||
|
Reference in New Issue
Block a user