From: "Abdul Lateef Attar via groups.io" <AbdulLateef.Attar=amd.com@groups.io>
To: abner.chang@amd.com, devel@edk2.groups.io
Cc: Michael D Kinney <michael.d.kinney@intel.com>,
Liming Gao <gaoliming@byosoft.com.cn>,
Zhiguang Liu <zhiguang.liu@intel.com>,
Abdul Lateef Attar <abdattar@amd.com>,
Brit Chesley <brit.chesley@amd.com>
Subject: Re: [edk2-devel] [PATCH RESEND V4 1/6] MdePkg/Include: Update definitions of SPI related header files
Date: Mon, 15 Apr 2024 13:51:38 +0530 [thread overview]
Message-ID: <6c305037-3dea-4486-913c-eb0ebc69b763@amd.com> (raw)
In-Reply-To: <20240404091052.794-2-abner.chang@amd.com>
[-- Attachment #1: Type: text/plain, Size: 5183 bytes --]
Reviewed-by: Abdul Lateef Attar <abdattar@amd.com>
On 04-04-2024 14:40, abner.chang@amd.com wrote:
> From: abnchang<abnchang@amd.com>
>
> BZ#: 4471
> Update definitions according to PI spec 1.8 errata A
>
> Signed-off-by: Abner Chang<abner.chang@amd.com>
> Cc: Michael D Kinney<michael.d.kinney@intel.com>
> Cc: Liming Gao<gaoliming@byosoft.com.cn>
> Cc: Zhiguang Liu<zhiguang.liu@intel.com>
> Cc: Abdul Lateef Attar<abdattar@amd.com>
> Cc: Brit Chesley<brit.chesley@amd.com>
> ---
> MdePkg/Include/Protocol/SpiConfiguration.h | 10 +++++++++-
> MdePkg/Include/Protocol/SpiHc.h | 16 +++++++++++++++-
> MdePkg/Include/Protocol/SpiIo.h | 12 +++++++++++-
> 3 files changed, 35 insertions(+), 3 deletions(-)
>
> diff --git a/MdePkg/Include/Protocol/SpiConfiguration.h b/MdePkg/Include/Protocol/SpiConfiguration.h
> index 3f8fb9ff62c..120b54bbad8 100644
> --- a/MdePkg/Include/Protocol/SpiConfiguration.h
> +++ b/MdePkg/Include/Protocol/SpiConfiguration.h
> @@ -2,10 +2,11 @@
> This file defines the SPI Configuration Protocol.
>
> Copyright (c) 2017, Intel Corporation. All rights reserved.<BR>
> + Copyright (C) 2024 Advanced Micro Devices, Inc. All rights reserved.
> SPDX-License-Identifier: BSD-2-Clause-Patent
>
> @par Revision Reference:
> - This Protocol was introduced in UEFI PI Specification 1.6.
> + This Protocol was introduced in UEFI PI Specification 1.8 A.
>
> **/
>
> @@ -168,6 +169,13 @@ typedef struct _EFI_SPI_BUS {
> VOID *ClockParameter;
> } EFI_SPI_BUS;
>
> +///
> +/// Definitions of SPI Part Attributes.
> +///
> +#define SPI_PART_SUPPORTS_2_BIT_DATA_BUS_WIDTH BIT0
> +#define SPI_PART_SUPPORTS_4_B1T_DATA_BUS_WIDTH BIT1
> +#define SPI_PART_SUPPORTS_8_B1T_DATA_BUS_WIDTH BIT2
> +
> ///
> /// The EFI_SPI_PERIPHERAL data structure describes how a specific block of
> /// logic which is connected to the SPI bus. This data structure also selects
> diff --git a/MdePkg/Include/Protocol/SpiHc.h b/MdePkg/Include/Protocol/SpiHc.h
> index 30128dd5c4d..354de721606 100644
> --- a/MdePkg/Include/Protocol/SpiHc.h
> +++ b/MdePkg/Include/Protocol/SpiHc.h
> @@ -2,10 +2,11 @@
> This file defines the SPI Host Controller Protocol.
>
> Copyright (c) 2017, Intel Corporation. All rights reserved.<BR>
> + Copyright (C) 2024 Advanced Micro Devices, Inc. All rights reserved.
> SPDX-License-Identifier: BSD-2-Clause-Patent
>
> @par Revision Reference:
> - This Protocol was introduced in UEFI PI Specification 1.6.
> + This Protocol was introduced in UEFI PI Specification 1.8 A.
>
> **/
>
> @@ -121,6 +122,19 @@ typedef EFI_STATUS
> IN EFI_SPI_BUS_TRANSACTION *BusTransaction
> );
>
> +///
> +/// Definitions of SPI Host Controller Attributes.
> +///
> +#define HC_SUPPORTS_WRITE_ONLY_OPERATIONS BIT0
> +#define HC_SUPPORTS_READ_ONLY_OPERATIONS BIT1
> +#define HC_SUPPORTS_WRITE_THEN_READ_OPERATIONS BIT2
> +#define HC_TX_FRAME_IN_MOST_SIGNIFICANT_BITS BIT3
> +#define HC_RX_FRAME_IN_MOST_SIGNIFICANT_BITS BIT4
> +#define HC_SUPPORTS_2_BIT_DATA_BUS_WIDTH BIT5
> +#define HC_SUPPORTS_4_BIT_DATA_BUS_WIDTH BIT6
> +#define HC_SUPPORTS_8_BIT_DATA_BUS_WIDTH BIT7
> +#define HC_TRANSFER_SIZE_INCLUDES_OPCODE BIT8
> +#define HC_TRANSFER_SIZE_INCLUDES_ADDRESS BIT9
> ///
> /// Support a SPI data transaction between the SPI controller and a SPI chip.
> ///
> diff --git a/MdePkg/Include/Protocol/SpiIo.h b/MdePkg/Include/Protocol/SpiIo.h
> index b4fc5e03b88..2c95a375a20 100644
> --- a/MdePkg/Include/Protocol/SpiIo.h
> +++ b/MdePkg/Include/Protocol/SpiIo.h
> @@ -2,10 +2,11 @@
> This file defines the SPI I/O Protocol.
>
> Copyright (c) 2017, Intel Corporation. All rights reserved.<BR>
> + Copyright (C) 2024 Advanced Micro Devices, Inc. All rights reserved.
> SPDX-License-Identifier: BSD-2-Clause-Patent
>
> @par Revision Reference:
> - This Protocol was introduced in UEFI PI Specification 1.6.
> + This Protocol was introduced in UEFI PI Specification 1.8 A.
>
> **/
>
> @@ -223,6 +224,15 @@ typedef struct _EFI_SPI_BUS_TRANSACTION {
> UINT8 *ReadBuffer;
> } EFI_SPI_BUS_TRANSACTION;
>
> +///
> +/// Definitions of SPI I/O Attributes.
> +///
> +#define SPI_IO_SUPPORTS_2_BIT_DATA_BUS_WIDTH BIT0
> +#define SPI_IO_SUPPORTS_4_BIT_DATA_BUS_WIDTH BIT1
> +#define SPI_IO_SUPPORTS_8_BIT_DATA_BUS_WIDTH BIT2
> +#define SPI_IO_TRANSFER_SIZE_INCLUDES_OPCODE BIT3
> +#define SPI_IO_TRANSFER_SIZE_INCLUDES_ADDRESS BIT4
> +
> ///
> /// Support managed SPI data transactions between the SPI controller and a SPI
> /// chip.
-=-=-=-=-=-=-=-=-=-=-=-
Groups.io Links: You receive all messages sent to this group.
View/Reply Online (#117769): https://edk2.groups.io/g/devel/message/117769
Mute This Topic: https://groups.io/mt/105325625/7686176
Group Owner: devel+owner@edk2.groups.io
Unsubscribe: https://edk2.groups.io/g/devel/unsub [rebecca@openfw.io]
-=-=-=-=-=-=-=-=-=-=-=-
[-- Attachment #2: Type: text/html, Size: 6432 bytes --]
next prev parent reply other threads:[~2024-04-15 8:21 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-04-04 9:10 [edk2-devel] [PATCH RESEND V4 0/6] SPI NOR Flash Driver for SFDP flash device Chang, Abner via groups.io
2024-04-04 9:10 ` [edk2-devel] [PATCH RESEND V4 1/6] MdePkg/Include: Update definitions of SPI related header files Chang, Abner via groups.io
2024-04-15 8:21 ` Abdul Lateef Attar via groups.io [this message]
2024-04-04 9:10 ` [edk2-devel] [PATCH RESEND V4 2/6] MdePkg/Include: Add SPI NOR Flash JEDEC SFDP header file Chang, Abner via groups.io
2024-04-04 9:10 ` [edk2-devel] [PATCH RESEND V4 3/6] MdeModulePkg: Add definitions in DEC for SPI NOR Flash SFDP driver Chang, Abner via groups.io
2024-04-04 9:10 ` [edk2-devel] [PATCH RESEND V4 4/6] MdeModulePkg/SpiNorFlashJedecSfdp: SPI NOR Flash JEDEC SFDP Chang, Abner via groups.io
2024-04-04 9:10 ` [edk2-devel] [PATCH RESEND V4 5/6] MdeModulePkg: Add SPI NOR FLash SFDP drivers to DSC Chang, Abner via groups.io
2024-04-04 9:10 ` [edk2-devel] [PATCH RESEND V4 6/6] Maintainers: AMD as SPI driver stack maintainer Chang, Abner via groups.io
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=6c305037-3dea-4486-913c-eb0ebc69b763@amd.com \
--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