From: "gaoliming via groups.io" <gaoliming=byosoft.com.cn@groups.io>
To: <devel@edk2.groups.io>, <abner.chang@amd.com>
Cc: "'Michael D Kinney'" <michael.d.kinney@intel.com>,
"'Zhiguang Liu'" <zhiguang.liu@intel.com>,
"'Abdul Lateef Attar'" <abdattar@amd.com>,
"'Hao A Wu'" <hao.a.wu@intel.com>, "'Ray Ni'" <ray.ni@intel.com>,
"'Jian J Wang'" <jian.j.wang@intel.com>,
"'Brit Chesley'" <brit.chesley@amd.com>
Subject: 回复: [edk2-devel] [PATCH V5 0/6] SPI NOR Flash Driver for SFDP flash device
Date: Tue, 9 Apr 2024 14:09:35 +0800 [thread overview]
Message-ID: <002d01da8a44$7f845880$7e8d0980$@byosoft.com.cn> (raw)
In-Reply-To: <20240404092455.1903-1-abner.chang@amd.com>
Abner:
The change is good to me. Reviewed-by: Liming Gao
<gaoliming@byosoft.com.cn>
Thanks
Liming
> -----邮件原件-----
> 发件人: devel@edk2.groups.io <devel@edk2.groups.io> 代表 Chang, Abner
> via groups.io
> 发送时间: 2024年4月4日 17:25
> 收件人: devel@edk2.groups.io
> 抄送: 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>; Hao A Wu <hao.a.wu@intel.com>; Ray Ni
> <ray.ni@intel.com>; Jian J Wang <jian.j.wang@intel.com>; Brit Chesley
> <brit.chesley@amd.com>
> 主题: [edk2-devel] [PATCH V5 0/6] SPI NOR Flash Driver for SFDP flash
device
>
> From: Abner Chang <abner.chang@amd.com>
>
> Sending V4 for review as SPI related ECR is approved by
> PIWG in PI spec 1.8A
>
> In V5: Correct patch 6/6, as some source files are fixed in this patch.
> In RESEND V4: Add Cc in patch 6/6
> In V4: Enhance timeout algorithm
> In V3: Relocate GUIDs/PCDs for SPI SFDP drivers to
> MdeModulePkg.dec.
> In V2: Add maintainer entry for Bus/Spi.
>
> This patch fixes the missing SPI defintions per to PI spec
> 1.8 errata A.
> This patch also provides the implemtation of SPI NOR flash
> driver that supports JEDEC SFDP specification.
> This driver support the flash device that has the GUID
> gEdk2JedecSfdpSpiDxeDriverGuid or gEdk2JedecSfdpSpiSmmDriverGuid
> declared in EFI_SPI_PERIPHERAL SpiPeripheralDriverGuid structure.
>
> The driver has been verified with Macronix MX25U6435F flash device.
>
> 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: Hao A Wu <hao.a.wu@intel.com>
> Cc: Ray Ni <ray.ni@intel.com>
> Cc: Jian J Wang <jian.j.wang@intel.com>
> Cc: Liming Gao <gaoliming@byosoft.com.cn>
> Cc: Brit Chesley <brit.chesley@amd.com>
>
> Abner Chang (2):
> MdeModulePkg: Add definitions in DEC for SPI NOR Flash SFDP driver
> Maintainers: AMD as SPI driver stack maintainer
>
> abnchang (4):
> MdePkg/Include: Update definitions of SPI related header files
> MdePkg/Include: Add SPI NOR Flash JEDEC SFDP header file
> MdeModulePkg/SpiNorFlashJedecSfdp: SPI NOR Flash JEDEC SFDP
> MdeModulePkg: Add SPI NOR FLash SFDP drivers to DSC
>
> MdeModulePkg/MdeModulePkg.dec | 28 +-
> MdeModulePkg/MdeModulePkg.dsc | 4 +-
> .../SpiNorFlashJedecSfdpDxe.inf | 64 +
> .../SpiNorFlashJedecSfdpSmm.inf | 64 +
> .../Spi/SpiNorFlashJedecSfdp/SpiNorFlash.h | 286 +++
> .../SpiNorFlashJedecSfdpInternal.h | 299 +++
> .../IndustryStandard/SpiNorFlashJedecSfdp.h | 324 +++
> MdePkg/Include/Protocol/SpiConfiguration.h | 10 +-
> MdePkg/Include/Protocol/SpiHc.h | 16 +-
> MdePkg/Include/Protocol/SpiIo.h | 12 +-
> .../Spi/SpiNorFlashJedecSfdp/SpiNorFlash.c | 1141 +++++++++++
> .../SpiNorFlashJedecSfdp.c | 1780
> +++++++++++++++++
> .../SpiNorFlashJedecSfdpDxe.c | 261 +++
> .../SpiNorFlashJedecSfdpSmm.c | 234 +++
> Maintainers.txt | 11 +
> .../SpiNorFlashJedecSfdpDxe.uni | 13 +
> .../SpiNorFlashJedecSfdpExtra.uni | 11 +
> .../SpiNorFlashJedecSfdpSmm.uni | 13 +
> 18 files changed, 4566 insertions(+), 5 deletions(-)
> create mode 100644
> MdeModulePkg/Bus/Spi/SpiNorFlashJedecSfdp/SpiNorFlashJedecSfdpDxe.inf
> create mode 100644
> MdeModulePkg/Bus/Spi/SpiNorFlashJedecSfdp/SpiNorFlashJedecSfdpSmm.in
> f
> create mode 100644
> MdeModulePkg/Bus/Spi/SpiNorFlashJedecSfdp/SpiNorFlash.h
> create mode 100644
> MdeModulePkg/Bus/Spi/SpiNorFlashJedecSfdp/SpiNorFlashJedecSfdpInternal
> .h
> create mode 100644
> MdePkg/Include/IndustryStandard/SpiNorFlashJedecSfdp.h
> create mode 100644
> MdeModulePkg/Bus/Spi/SpiNorFlashJedecSfdp/SpiNorFlash.c
> create mode 100644
> MdeModulePkg/Bus/Spi/SpiNorFlashJedecSfdp/SpiNorFlashJedecSfdp.c
> create mode 100644
> MdeModulePkg/Bus/Spi/SpiNorFlashJedecSfdp/SpiNorFlashJedecSfdpDxe.c
> create mode 100644
> MdeModulePkg/Bus/Spi/SpiNorFlashJedecSfdp/SpiNorFlashJedecSfdpSmm.c
> create mode 100644
> MdeModulePkg/Bus/Spi/SpiNorFlashJedecSfdp/SpiNorFlashJedecSfdpDxe.uni
> create mode 100644
> MdeModulePkg/Bus/Spi/SpiNorFlashJedecSfdp/SpiNorFlashJedecSfdpExtra.u
> ni
> create mode 100644
> MdeModulePkg/Bus/Spi/SpiNorFlashJedecSfdp/SpiNorFlashJedecSfdpSmm.u
> ni
>
> --
> 2.37.1.windows.1
>
>
>
>
>
-=-=-=-=-=-=-=-=-=-=-=-
Groups.io Links: You receive all messages sent to this group.
View/Reply Online (#117531): https://edk2.groups.io/g/devel/message/117531
Mute This Topic: https://groups.io/mt/105417086/7686176
Group Owner: devel+owner@edk2.groups.io
Unsubscribe: https://edk2.groups.io/g/devel/unsub [rebecca@openfw.io]
-=-=-=-=-=-=-=-=-=-=-=-
next prev parent reply other threads:[~2024-04-09 6:09 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-04-04 9:24 [edk2-devel] [PATCH V5 0/6] SPI NOR Flash Driver for SFDP flash device Chang, Abner via groups.io
2024-04-04 9:24 ` [edk2-devel] [PATCH V5 1/6] MdePkg/Include: Update definitions of SPI related header files Chang, Abner via groups.io
2024-04-04 9:24 ` [edk2-devel] [PATCH V5 2/6] MdePkg/Include: Add SPI NOR Flash JEDEC SFDP header file Chang, Abner via groups.io
2024-04-15 8:23 ` Abdul Lateef Attar via groups.io
2024-04-04 9:24 ` [edk2-devel] [PATCH V5 3/6] MdeModulePkg: Add definitions in DEC for SPI NOR Flash SFDP driver Chang, Abner via groups.io
2024-04-15 13:51 ` Abdul Lateef Attar via groups.io
2024-04-04 9:24 ` [edk2-devel] [PATCH V5 4/6] MdeModulePkg/SpiNorFlashJedecSfdp: SPI NOR Flash JEDEC SFDP Chang, Abner via groups.io
2024-04-04 9:24 ` [edk2-devel] [PATCH V5 5/6] MdeModulePkg: Add SPI NOR FLash SFDP drivers to DSC Chang, Abner via groups.io
2024-04-04 9:24 ` [edk2-devel] [PATCH V5 6/6] Maintainers: AMD as SPI driver stack maintainer Chang, Abner via groups.io
2024-04-09 6:09 ` gaoliming via groups.io [this message]
[not found] ` <17C30980DC7A7234.4513@groups.io>
2024-04-09 6:45 ` [edk2-devel] [PATCH V5 4/6] MdeModulePkg/SpiNorFlashJedecSfdp: SPI NOR Flash JEDEC SFDP 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='002d01da8a44$7f845880$7e8d0980$@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