From: "gaoliming" <gaoliming@byosoft.com.cn>
To: <devel@edk2.groups.io>, <sainadhn@ami.com>
Cc: "'Sundaresan S'" <sundaresans@ami.com>,
"'Vasudevan Sambandan'" <vasudevans@ami.com>
Subject: 回复: [edk2-devel] [PATCH] MdePkg:Improved Smbios Type9 table and Smbios 3.5.0 spec changes
Date: Fri, 5 Aug 2022 13:50:02 +0800 [thread overview]
Message-ID: <02fc01d8a88f$34a7c6f0$9df754d0$@byosoft.com.cn> (raw)
In-Reply-To: <20220727162018.1095-1-sainadhn@ami.com>
The change is good. But the change in Smbios type 9 will impact
ShellPkg\Library\UefiShellDebug1CommandsLib\SmbiosView\PrintInfo.c. Please
also update ShellPkg.
Thanks
Liming
> -----邮件原件-----
> 发件人: devel@edk2.groups.io <devel@edk2.groups.io> 代表 Sainadh
> Nagolu via groups.io
> 发送时间: 2022年7月28日 0:21
> 收件人: devel@edk2.groups.io
> 抄送: Sainadh Nagolu <sainadhn@ami.com>; Sundaresan S
> <sundaresans@ami.com>; Vasudevan Sambandan <vasudevans@ami.com>;
> gaoliming@byosoft.com.cn
> 主题: [edk2-devel] [PATCH] MdePkg:Improved Smbios Type9 table and
> Smbios 3.5.0 spec changes
>
> In Type9 structure since PeerGroups has a variable
> number of entries, must not define new fields in the structure.So added
an
> extended structure and defined new fields added after PeerGroups. Also
> done
> some improvements to Smbios 3.5.0 spec changes.
>
> Signed-off-by:
> sainadh nagolu <sainadhn@ami.com>
>
> ---
> MdePkg/Include/IndustryStandard/SmBios.h | 62 +++++++++++---------
> 1 file changed, 35 insertions(+), 27 deletions(-)
>
> diff --git a/MdePkg/Include/IndustryStandard/SmBios.h
> b/MdePkg/Include/IndustryStandard/SmBios.h
> index c7a4971f14..f62ad7fa4d 100644
> --- a/MdePkg/Include/IndustryStandard/SmBios.h
> +++ b/MdePkg/Include/IndustryStandard/SmBios.h
> @@ -1503,6 +1503,17 @@ typedef struct {
> UINT8 DataBusWidth;
>
> UINT8 PeerGroupingCount;
>
> MISC_SLOT_PEER_GROUP PeerGroups[1];
>
> + //
>
> + // Since PeerGroups has a variable number of entries, must not define
> new
>
> + // fields in the structure. Remaining fields can be referenced using
>
> + // SMBIOS_TABLE_TYPE9_EXTENDED structure
>
> + //
>
> +} SMBIOS_TABLE_TYPE9;
>
> +
>
> +///
>
> +/// Extended structure for System Slots (Type 9)
>
> +///
>
> +typedef struct {
>
> //
>
> // Add for smbios 3.4
>
> //
>
> @@ -1513,7 +1524,7 @@ typedef struct {
> // Add for smbios 3.5
>
> //
>
> UINT8 SlotHeight; ///< The
> enumeration value from MISC_SLOT_HEIGHT.
>
> -} SMBIOS_TABLE_TYPE9;
>
> +} SMBIOS_TABLE_TYPE9_EXTENDED;
>
>
>
> ///
>
> /// On Board Devices Information - Device Types.
>
> @@ -2746,11 +2757,11 @@ typedef enum {
> ///
>
> /// Firmware Inventory Firmware Characteristics (Type 45).
>
> ///
>
> -typedef enum {
>
> - CharacteristicsUpdatable = 0x00,
>
> - CharacteristicsWriteProtected = 0x01,
>
> - CharacteristicsReserved = 0x02 /// 0x02 - 0x0F are reserved
>
> -} FIRMWARE_INVENTORY_CHARACTERISTICS;
>
> +typedef struct {
>
> + UINT16 Updatable :1;
>
> + UINT16 WriteProtected :1;
>
> + UINT16 Reserved :14;
>
> +} FIRMWARE_CHARACTERISTICS;
>
>
>
> ///
>
> /// Firmware Inventory State Information (Type 45).
>
> @@ -2763,7 +2774,7 @@ typedef enum {
> FirmwareInventoryStateAbsent = 0x05,
>
> FirmwareInventoryStateStandbyOffline = 0x06,
>
> FirmwareInventoryStateStandbySpare = 0x07,
>
> - FirmwareInventoryStateUnavailableOffline = 0x08,
>
> + FirmwareInventoryStateUnavailableOffline = 0x08
>
> } FIRMWARE_INVENTORY_STATE;
>
>
>
> ///
>
> @@ -2780,21 +2791,19 @@ typedef enum {
> /// One Type 45 structure is provided for each firmware component.
>
> ///
>
> typedef struct {
>
> - SMBIOS_STRUCTURE Hdr;
>
> - SMBIOS_HANDLE RefHandle;
>
> -
>
> - UINT8 FirmwareComponentName;
>
> - UINT8 FirmwareVersion;
>
> - UINT8 FirmwareVersionFormat; ///< The
> enumeration value from FIRMWARE_INVENTORY_VERSION_FORMAT_TYPE
>
> - UINT8 FirmwareId;
>
> - UINT8 FirmwareIdFormat;
>
> - UINT8 ReleaseDate;
>
> - UINT8 Manufacturer;
>
> - UINT8 LowestSupportedVersion;
>
> - UINT64 ImageSize;
>
> - UINT32 Characteristics;
>
> - UINT8 State;
>
> - UINT8 AssociatedComponentCount;
>
> + SMBIOS_STRUCTURE Hdr;
>
> + SMBIOS_TABLE_STRING FirmwareComponentName;
>
> + SMBIOS_TABLE_STRING FirmwareVersion;
>
> + UINT8 FirmwareVersionFormat; ///< The
> enumeration value from FIRMWARE_INVENTORY_VERSION_FORMAT_TYPE
>
> + SMBIOS_TABLE_STRING FirmwareId;
>
> + UINT8 FirmwareIdFormat; ///< The
> enumeration value from
> FIRMWARE_INVENTORY_FIRMWARE_ID_FORMAT_TYPE.
>
> + SMBIOS_TABLE_STRING ReleaseDate;
>
> + SMBIOS_TABLE_STRING Manufacturer;
>
> + SMBIOS_TABLE_STRING LowestSupportedVersion;
>
> + UINT64 ImageSize;
>
> + FIRMWARE_CHARACTERISTICS Characteristics;
>
> + UINT8 State; ///< The
> enumeration value from FIRMWARE_INVENTORY_STATE.
>
> + UINT8 AssociatedComponentCount;
>
> ///
>
> /// zero or n-number of handles depends on AssociatedComponentCount
>
> /// handles are of type SMBIOS_HANDLE
>
> @@ -2820,11 +2829,10 @@ typedef enum {
> /// parent structure.
>
> ///
>
> typedef struct {
>
> - SMBIOS_STRUCTURE Hdr;
>
> - SMBIOS_HANDLE RefHandle;
>
> - UINT16 StringPropertyId;
>
> - UINT8 StringPropertyValue;
>
> - SMBIOS_HANDLE ParentHandle;
>
> + SMBIOS_STRUCTURE Hdr;
>
> + UINT16 StringPropertyId; ///< The
> enumeration value from STRING_PROPERTY_ID.
>
> + SMBIOS_TABLE_STRING StringPropertyValue;
>
> + SMBIOS_HANDLE ParentHandle;
>
> } SMBIOS_TABLE_TYPE46;
>
>
>
> ///
>
> --
> 2.36.0.windows.1
> -The information contained in this message may be confidential and
> proprietary to American Megatrends (AMI). This communication is intended
to
> be read only by the individual or entity to whom it is addressed or by
their
> designee. If the reader of this message is not the intended recipient, you
are
> on notice that any distribution of this message, in any form, is strictly
> prohibited. Please promptly notify the sender by reply e-mail or by
telephone
> at 770-246-8600, and then delete or destroy all copies of the
transmission.
>
>
>
>
next prev parent reply other threads:[~2022-08-05 5:50 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-07-27 16:20 [PATCH] MdePkg:Improved Smbios Type9 table and Smbios 3.5.0 spec changes sainadhn
2022-08-01 9:51 ` [edk2-devel] " Sainadh Nagolu
2022-08-05 5:50 ` gaoliming [this message]
2022-08-09 10:59 ` [edk2-devel] 回复: " Sainadh Nagolu
2022-08-12 6:06 ` Sainadh Nagolu
2022-08-17 2:45 ` Sainadh Nagolu
2022-08-17 5:51 ` 回复: " gaoliming
2022-08-17 8:55 ` Sainadh Nagolu
2022-08-18 8:42 ` 回复: " gaoliming
2022-08-17 9:08 ` Sainadh Nagolu
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-list from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to='02fc01d8a88f$34a7c6f0$9df754d0$@byosoft.com.cn' \
--to=devel@edk2.groups.io \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox