U-Boot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] mtd: spi-nor: Add Dosilicon DS25Q4BB support
@ 2026-06-14 13:44 Ssunk
  2026-07-03  8:11 ` Takahiro.Kuwano
  0 siblings, 1 reply; 4+ messages in thread
From: Ssunk @ 2026-06-14 13:44 UTC (permalink / raw)
  To: Vignesh R; +Cc: Takahiro Kuwano, Tom Rini, u-boot, Ssunk

Add support for dosilicon ds25q4bb (256M-bit) SPI NOR flash.

Datasheet:
https://drive.google.com/file/d/17UFJa5_3imH0YmWlRGTQYhO2JBXf4Klk/view

Signed-off-by: Ssunk <ssunkkan@gmail.com>
---
 drivers/mtd/spi/spi-nor-ids.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/drivers/mtd/spi/spi-nor-ids.c b/drivers/mtd/spi/spi-nor-ids.c
index c0fa98424aa..b370e782627 100644
--- a/drivers/mtd/spi/spi-nor-ids.c
+++ b/drivers/mtd/spi/spi-nor-ids.c
@@ -87,6 +87,8 @@ const struct flash_info spi_nor_ids[] = {
 		    SECT_4K | SPI_NOR_DUAL_READ | SPI_NOR_QUAD_READ | SPI_NOR_4B_OPCODES) },
 	{ INFO("ds25q4dn", 0xe5301b, 0, 64 * 1024, 2048,
 		    SECT_4K | SPI_NOR_DUAL_READ | SPI_NOR_QUAD_READ | SPI_NOR_4B_OPCODES) },
+	{ INFO("ds25q4bb", 0xe53019, 0, 64 * 1024, 512,
+		    SECT_4K | SPI_NOR_DUAL_READ | SPI_NOR_QUAD_READ | SPI_NOR_4B_OPCODES) },
 #endif
 #ifdef CONFIG_SPI_FLASH_EON		/* EON */
 	/* EON -- en25xxx */
-- 
2.43.0


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* RE: [PATCH] mtd: spi-nor: Add Dosilicon DS25Q4BB support
  2026-06-14 13:44 [PATCH] mtd: spi-nor: Add Dosilicon DS25Q4BB support Ssunk
@ 2026-07-03  8:11 ` Takahiro.Kuwano
  2026-07-03 14:11   ` Tom Rini
  0 siblings, 1 reply; 4+ messages in thread
From: Takahiro.Kuwano @ 2026-07-03  8:11 UTC (permalink / raw)
  To: ssunkkan, vigneshr; +Cc: trini, u-boot

Hi,

> Add support for dosilicon ds25q4bb (256M-bit) SPI NOR flash.
> 
> Datasheet:
> https://drive.google.com/file/d/17UFJa5_3imH0YmWlRGTQYhO2JBXf4Klk/view

Do you have a link to vendor's site? If you have, use Link: tag just above
your Signed-off-by: tag. If not, please write this after the '---' separator.
I don't think it's good to add a link to share drive in commit description.

> 
> Signed-off-by: Ssunk <ssunkkan@gmail.com>

Could you sign with full name?

> ---
>  drivers/mtd/spi/spi-nor-ids.c | 2 ++
>  1 file changed, 2 insertions(+)
> 
> diff --git a/drivers/mtd/spi/spi-nor-ids.c b/drivers/mtd/spi/spi-nor-ids.c
> index c0fa98424aa..b370e782627 100644
> --- a/drivers/mtd/spi/spi-nor-ids.c
> +++ b/drivers/mtd/spi/spi-nor-ids.c
> @@ -87,6 +87,8 @@ const struct flash_info spi_nor_ids[] = {
>                     SECT_4K | SPI_NOR_DUAL_READ | SPI_NOR_QUAD_READ | SPI_NOR_4B_OPCODES) },
>         { INFO("ds25q4dn", 0xe5301b, 0, 64 * 1024, 2048,
>                     SECT_4K | SPI_NOR_DUAL_READ | SPI_NOR_QUAD_READ | SPI_NOR_4B_OPCODES) },
> +       { INFO("ds25q4bb", 0xe53019, 0, 64 * 1024, 512,
> +                   SECT_4K | SPI_NOR_DUAL_READ | SPI_NOR_QUAD_READ | SPI_NOR_4B_OPCODES) },
>  #endif
>  #ifdef CONFIG_SPI_FLASH_EON            /* EON */
>         /* EON -- en25xxx */
> --
> 2.43.0

Thanks,
Takahiro


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] mtd: spi-nor: Add Dosilicon DS25Q4BB support
  2026-07-03  8:11 ` Takahiro.Kuwano
@ 2026-07-03 14:11   ` Tom Rini
  2026-07-06  1:51     ` Takahiro.Kuwano
  0 siblings, 1 reply; 4+ messages in thread
From: Tom Rini @ 2026-07-03 14:11 UTC (permalink / raw)
  To: Takahiro.Kuwano; +Cc: ssunkkan, vigneshr, u-boot

[-- Attachment #1: Type: text/plain, Size: 767 bytes --]

On Fri, Jul 03, 2026 at 08:11:48AM +0000, Takahiro.Kuwano@infineon.com wrote:
> Hi,
> 
> > Add support for dosilicon ds25q4bb (256M-bit) SPI NOR flash.
> > 
> > Datasheet:
> > https://drive.google.com/file/d/17UFJa5_3imH0YmWlRGTQYhO2JBXf4Klk/view
> 
> Do you have a link to vendor's site? If you have, use Link: tag just above
> your Signed-off-by: tag. If not, please write this after the '---' separator.
> I don't think it's good to add a link to share drive in commit description.

Yes, this is not a good idea, we need a link to the vendor, somewhere.

> > Signed-off-by: Ssunk <ssunkkan@gmail.com>
> 
> Could you sign with full name?

Just like the linux kernel, we don't have a "full name" policy anymore,
so this part is fine.

-- 
Tom

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 228 bytes --]

^ permalink raw reply	[flat|nested] 4+ messages in thread

* RE: [PATCH] mtd: spi-nor: Add Dosilicon DS25Q4BB support
  2026-07-03 14:11   ` Tom Rini
@ 2026-07-06  1:51     ` Takahiro.Kuwano
  0 siblings, 0 replies; 4+ messages in thread
From: Takahiro.Kuwano @ 2026-07-06  1:51 UTC (permalink / raw)
  To: trini; +Cc: ssunkkan, vigneshr, u-boot

> -----Original Message-----
> From: Tom Rini <trini@konsulko.com>
> Sent: Friday, July 3, 2026 11:12 PM
> To: Kuwano Takahiro (ATV MS MPL PAE - MS) <Takahiro.Kuwano@infineon.com>
> Cc: ssunkkan@gmail.com; vigneshr@ti.com; u-boot@lists.denx.de
> Subject: Re: [PATCH] mtd: spi-nor: Add Dosilicon DS25Q4BB support
> 
> On Fri, Jul 03, 2026 at 08:11:48AM +0000, Takahiro.Kuwano@infineon.com wrote:
> > Hi,
> >
> > > Add support for dosilicon ds25q4bb (256M-bit) SPI NOR flash.
> > >
> > > Datasheet:
> > > https://drive.google.com/file/d/17UFJa5_3imH0YmWlRGTQYhO2JBXf4Klk/view
> >
> > Do you have a link to vendor's site? If you have, use Link: tag just above
> > your Signed-off-by: tag. If not, please write this after the '---' separator.
> > I don't think it's good to add a link to share drive in commit description.
> 
> Yes, this is not a good idea, we need a link to the vendor, somewhere.
> 
> > > Signed-off-by: Ssunk <ssunkkan@gmail.com>
> >
> > Could you sign with full name?
> 
> Just like the linux kernel, we don't have a "full name" policy anymore,
> so this part is fine.

Well noted with thanks.

Takahiro


^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2026-07-06  5:07 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-06-14 13:44 [PATCH] mtd: spi-nor: Add Dosilicon DS25Q4BB support Ssunk
2026-07-03  8:11 ` Takahiro.Kuwano
2026-07-03 14:11   ` Tom Rini
2026-07-06  1:51     ` Takahiro.Kuwano

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox