mirror of https://github.com/acidanthera/audk.git
ShellPkg/SmbiosView: SMBIOS 3.3.0 Add value HBM and Die for type 17
REF: https://bugzilla.tianocore.org/show_bug.cgi?id=2305 Memory Device (Type 17): - SMBIOSCR00178: add new memory device type value (HBM) and new form factor value (Die) Cc: Ray Ni <ray.ni@intel.com> Cc: Sai Chaganty <rangasai.v.chaganty@intel.com> Reviewed-by: Ray Ni <ray.ni@intel.com> Signed-off-by: Zhichao Gao <zhichao.gao@intel.com>
This commit is contained in:
parent
16efcbbd3c
commit
77ad48a263
|
@ -2423,6 +2423,10 @@ TABLE_ITEM MemoryDeviceFormFactorTable[] = {
|
|||
{
|
||||
0x0F,
|
||||
L" FB-DIMM"
|
||||
},
|
||||
{
|
||||
MemoryFormFactorDie,
|
||||
L" Die"
|
||||
}
|
||||
};
|
||||
|
||||
|
@ -2538,6 +2542,14 @@ TABLE_ITEM MemoryDeviceTypeTable[] = {
|
|||
{
|
||||
0x1F,
|
||||
L" Logical non-volatile device"
|
||||
},
|
||||
{
|
||||
MemoryTypeHBM,
|
||||
L" HBM (High Bandwidth Memory)"
|
||||
},
|
||||
{
|
||||
MemoryTypeHBM2,
|
||||
L" HBM2 (High Bandwidth Memory Generation 2)"
|
||||
}
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in New Issue