* [2nd RESEND PATCH 0/2] Add support for Infineon S28HL256T and S28HL02GT
@ 2025-04-02 6:26 tkuw584924
2025-04-02 6:26 ` [2nd RESEND PATCH 1/2] mtd: spi-nor-ids: Add support for S28HL256T tkuw584924
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: tkuw584924 @ 2025-04-02 6:26 UTC (permalink / raw)
To: u-boot
Cc: trini, jagan, vigneshr, tudor.ambarus, pratyush, tkuw584924,
Bacem.Daassi, Takahiro Kuwano
From: Takahiro Kuwano <Takahiro.Kuwano@infineon.com>
Those are 3.0V, 256Mb/2Gb NOR Flash devices with Octal interface.
Same fanctionalities with 1.8V version that are already supported.
Takahiro Kuwano (2):
mtd: spi-nor-ids: Add support for S28HL256T
mtd: spi-nor-ids: Add support for S28HL02GT
drivers/mtd/spi/spi-nor-ids.c | 2 ++
1 file changed, 2 insertions(+)
--
2.34.1
^ permalink raw reply [flat|nested] 4+ messages in thread
* [2nd RESEND PATCH 1/2] mtd: spi-nor-ids: Add support for S28HL256T
2025-04-02 6:26 [2nd RESEND PATCH 0/2] Add support for Infineon S28HL256T and S28HL02GT tkuw584924
@ 2025-04-02 6:26 ` tkuw584924
2025-04-02 6:26 ` [2nd RESEND PATCH 2/2] mtd: spi-nor-ids: Add support for S28HL02GT tkuw584924
2025-04-30 17:03 ` [2nd RESEND PATCH 0/2] Add support for Infineon S28HL256T and S28HL02GT Tom Rini
2 siblings, 0 replies; 4+ messages in thread
From: tkuw584924 @ 2025-04-02 6:26 UTC (permalink / raw)
To: u-boot
Cc: trini, jagan, vigneshr, tudor.ambarus, pratyush, tkuw584924,
Bacem.Daassi, Takahiro Kuwano
From: Takahiro Kuwano <Takahiro.Kuwano@infineon.com>
Infineon S28HL256T is 3.0V, 256Mb Flash device with Octal interface.
It has the same functionalities with S28HS256T.
Link:https://www.infineon.com/dgdl/Infineon-S28HS256T_S28HL256T_256Mb_SEMPER_Flash_Octal_interface_1_8V_3-DataSheet-v02_00-EN.pdf?fileId=8ac78c8c8fc2dd9c018fc66787aa0657
Reviewed-by: Tudor Ambarus <tudor.ambarus@linaro.org>
Signed-off-by: Takahiro Kuwano <Takahiro.Kuwano@infineon.com>
---
drivers/mtd/spi/spi-nor-ids.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/drivers/mtd/spi/spi-nor-ids.c b/drivers/mtd/spi/spi-nor-ids.c
index 91ae49c9484..a500fff4775 100644
--- a/drivers/mtd/spi/spi-nor-ids.c
+++ b/drivers/mtd/spi/spi-nor-ids.c
@@ -414,6 +414,7 @@ const struct flash_info spi_nor_ids[] = {
{ INFO6("s25fs256t", 0x342b19, 0x0f0890, 128 * 1024, 256,
SPI_NOR_QUAD_READ | SPI_NOR_4B_OPCODES) },
#ifdef CONFIG_SPI_FLASH_S28HX_T
+ { INFO("s28hl256t", 0x345a19, 0, 256 * 1024, 128, SPI_NOR_OCTAL_DTR_READ) },
{ INFO("s28hl512t", 0x345a1a, 0, 256 * 1024, 256, SPI_NOR_OCTAL_DTR_READ) },
{ INFO("s28hl01gt", 0x345a1b, 0, 256 * 1024, 512, SPI_NOR_OCTAL_DTR_READ) },
{ INFO("s28hs256t", 0x345b19, 0, 256 * 1024, 128, SPI_NOR_OCTAL_DTR_READ) },
--
2.34.1
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [2nd RESEND PATCH 2/2] mtd: spi-nor-ids: Add support for S28HL02GT
2025-04-02 6:26 [2nd RESEND PATCH 0/2] Add support for Infineon S28HL256T and S28HL02GT tkuw584924
2025-04-02 6:26 ` [2nd RESEND PATCH 1/2] mtd: spi-nor-ids: Add support for S28HL256T tkuw584924
@ 2025-04-02 6:26 ` tkuw584924
2025-04-30 17:03 ` [2nd RESEND PATCH 0/2] Add support for Infineon S28HL256T and S28HL02GT Tom Rini
2 siblings, 0 replies; 4+ messages in thread
From: tkuw584924 @ 2025-04-02 6:26 UTC (permalink / raw)
To: u-boot
Cc: trini, jagan, vigneshr, tudor.ambarus, pratyush, tkuw584924,
Bacem.Daassi, Takahiro Kuwano
From: Takahiro Kuwano <Takahiro.Kuwano@infineon.com>
Infineon S28HL02GT is 3.0V, 2Gb Flash device with Octal interface.
It has the same functionalities with S28HS02GT.
Link: https://www.infineon.com/dgdl/Infineon-S28HS02GT_S28HS04GT_S28HL02GT_S28HL04GT_2Gb_4Gb_SEMPER_Flash_Octal_interface_1.8V_3.0V-DataSheet-v01_00-EN.pdf?fileId=8ac78c8c7e7124d1017f0631e33714d9
Reviewed-by: Tudor Ambarus <tudor.ambarus@linaro.org>
Signed-off-by: Takahiro Kuwano <Takahiro.Kuwano@infineon.com>
---
drivers/mtd/spi/spi-nor-ids.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/drivers/mtd/spi/spi-nor-ids.c b/drivers/mtd/spi/spi-nor-ids.c
index a500fff4775..503dca28b89 100644
--- a/drivers/mtd/spi/spi-nor-ids.c
+++ b/drivers/mtd/spi/spi-nor-ids.c
@@ -417,6 +417,7 @@ const struct flash_info spi_nor_ids[] = {
{ INFO("s28hl256t", 0x345a19, 0, 256 * 1024, 128, SPI_NOR_OCTAL_DTR_READ) },
{ INFO("s28hl512t", 0x345a1a, 0, 256 * 1024, 256, SPI_NOR_OCTAL_DTR_READ) },
{ INFO("s28hl01gt", 0x345a1b, 0, 256 * 1024, 512, SPI_NOR_OCTAL_DTR_READ) },
+ { INFO("s28hl02gt", 0x345a1c, 0, 256 * 1024, 1024, SPI_NOR_OCTAL_DTR_READ | NO_CHIP_ERASE) },
{ INFO("s28hs256t", 0x345b19, 0, 256 * 1024, 128, SPI_NOR_OCTAL_DTR_READ) },
{ INFO("s28hs512t", 0x345b1a, 0, 256 * 1024, 256, SPI_NOR_OCTAL_DTR_READ) },
{ INFO("s28hs01gt", 0x345b1b, 0, 256 * 1024, 512, SPI_NOR_OCTAL_DTR_READ) },
--
2.34.1
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [2nd RESEND PATCH 0/2] Add support for Infineon S28HL256T and S28HL02GT
2025-04-02 6:26 [2nd RESEND PATCH 0/2] Add support for Infineon S28HL256T and S28HL02GT tkuw584924
2025-04-02 6:26 ` [2nd RESEND PATCH 1/2] mtd: spi-nor-ids: Add support for S28HL256T tkuw584924
2025-04-02 6:26 ` [2nd RESEND PATCH 2/2] mtd: spi-nor-ids: Add support for S28HL02GT tkuw584924
@ 2025-04-30 17:03 ` Tom Rini
2 siblings, 0 replies; 4+ messages in thread
From: Tom Rini @ 2025-04-30 17:03 UTC (permalink / raw)
To: u-boot, tkuw584924
Cc: jagan, vigneshr, tudor.ambarus, pratyush, Bacem.Daassi,
Takahiro Kuwano
On Wed, 02 Apr 2025 15:26:39 +0900, tkuw584924@gmail.com wrote:
> From: Takahiro Kuwano <Takahiro.Kuwano@infineon.com>
>
> Those are 3.0V, 256Mb/2Gb NOR Flash devices with Octal interface.
> Same fanctionalities with 1.8V version that are already supported.
>
> Takahiro Kuwano (2):
> mtd: spi-nor-ids: Add support for S28HL256T
> mtd: spi-nor-ids: Add support for S28HL02GT
>
> [...]
Applied to u-boot/master, thanks!
[1/2] mtd: spi-nor-ids: Add support for S28HL256T
commit: 2aee40a49bf65505f5802376614bdf60b233a221
[2/2] mtd: spi-nor-ids: Add support for S28HL02GT
commit: 10285e550a7e1576a8796da04fbe402920015dfe
--
Tom
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2025-04-30 17:04 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-04-02 6:26 [2nd RESEND PATCH 0/2] Add support for Infineon S28HL256T and S28HL02GT tkuw584924
2025-04-02 6:26 ` [2nd RESEND PATCH 1/2] mtd: spi-nor-ids: Add support for S28HL256T tkuw584924
2025-04-02 6:26 ` [2nd RESEND PATCH 2/2] mtd: spi-nor-ids: Add support for S28HL02GT tkuw584924
2025-04-30 17:03 ` [2nd RESEND PATCH 0/2] Add support for Infineon S28HL256T and S28HL02GT Tom Rini
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox