mirror of https://github.com/acidanthera/audk.git
1. add comments for those fields not defined by MemorySubclass spec.
2. change name MemorySpeed to MemoryTypeSpeed, which follows spec. git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@8804 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
6b7058c4df
commit
4c617fa92b
|
@ -997,6 +997,10 @@ typedef enum _EFI_MEMORY_FORM_FACTOR {
|
||||||
EfiMemoryFormFactorRimm = 0x0C,
|
EfiMemoryFormFactorRimm = 0x0C,
|
||||||
EfiMemoryFormFactorSodimm = 0x0D,
|
EfiMemoryFormFactorSodimm = 0x0D,
|
||||||
EfiMemoryFormFactorSrimm = 0x0E,
|
EfiMemoryFormFactorSrimm = 0x0E,
|
||||||
|
///
|
||||||
|
/// Inconsistent with specification here:
|
||||||
|
/// This field is NOT defined in MemSubClass spec0.9. It's introduced for SMBIOS2.6 spec.
|
||||||
|
///
|
||||||
EfiMemoryFormFactorFbDimm = 0x0F
|
EfiMemoryFormFactorFbDimm = 0x0F
|
||||||
} EFI_MEMORY_FORM_FACTOR;
|
} EFI_MEMORY_FORM_FACTOR;
|
||||||
|
|
||||||
|
@ -1019,7 +1023,15 @@ typedef enum _EFI_MEMORY_ARRAY_TYPE {
|
||||||
EfiMemoryTypeSgram = 0x10,
|
EfiMemoryTypeSgram = 0x10,
|
||||||
EfiMemoryTypeRdram = 0x11,
|
EfiMemoryTypeRdram = 0x11,
|
||||||
EfiMemoryTypeDdr = 0x12,
|
EfiMemoryTypeDdr = 0x12,
|
||||||
|
///
|
||||||
|
/// Inconsistent with specification here:
|
||||||
|
/// This field is NOT defined in MemSubClass spec0.9. It's introduced for SMBIOS2.6 spec.
|
||||||
|
///
|
||||||
EfiMemoryTypeDdr2 = 0x13,
|
EfiMemoryTypeDdr2 = 0x13,
|
||||||
|
///
|
||||||
|
/// Inconsistent with specification here:
|
||||||
|
/// This field is NOT defined in MemSubClass spec0.9. It's introduced for SMBIOS2.6 spec.
|
||||||
|
///
|
||||||
EfiMemoryTypeDdr2FbDimm = 0x14
|
EfiMemoryTypeDdr2FbDimm = 0x14
|
||||||
} EFI_MEMORY_ARRAY_TYPE;
|
} EFI_MEMORY_ARRAY_TYPE;
|
||||||
|
|
||||||
|
@ -1047,6 +1059,10 @@ typedef enum {
|
||||||
EfiMemoryStateError = 3,
|
EfiMemoryStateError = 3,
|
||||||
EfiMemoryStateAbsent = 4,
|
EfiMemoryStateAbsent = 4,
|
||||||
EfiMemoryStateDisabled = 5,
|
EfiMemoryStateDisabled = 5,
|
||||||
|
///
|
||||||
|
/// Inconsistent with specification here:
|
||||||
|
/// This field is NOT defined in MemSubClass spec0.9. It's introduced for SMBIOS2.6 spec.
|
||||||
|
///
|
||||||
EfiMemoryStatePartial = 6
|
EfiMemoryStatePartial = 6
|
||||||
} EFI_MEMORY_STATE;
|
} EFI_MEMORY_STATE;
|
||||||
|
|
||||||
|
@ -1126,7 +1142,7 @@ typedef struct {
|
||||||
/// The memory speed in megahertz (MHz). A value of 0x00 denotes that
|
/// The memory speed in megahertz (MHz). A value of 0x00 denotes that
|
||||||
/// the speed is unknown.
|
/// the speed is unknown.
|
||||||
///
|
///
|
||||||
EFI_EXP_BASE10_DATA MemorySpeed;
|
EFI_EXP_BASE10_DATA MemoryTypeSpeed;
|
||||||
///
|
///
|
||||||
/// The memory state.
|
/// The memory state.
|
||||||
///
|
///
|
||||||
|
|
Loading…
Reference in New Issue