* [PATCH] mtd: spi-nor: Add support for gd25q16
@ 2021-05-20 15:49 Michael Olbrich
2021-05-21 8:52 ` Ahmad Fatoum
2021-05-25 5:27 ` Sascha Hauer
0 siblings, 2 replies; 3+ messages in thread
From: Michael Olbrich @ 2021-05-20 15:49 UTC (permalink / raw)
To: barebox; +Cc: Michael Olbrich
The entry is imported from Linux v5.12.
It can befound on new versions of the Boundary Devices i.MX6 Quad
Nitrogen6x boards.
Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
---
drivers/mtd/spi-nor/spi-nor.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/drivers/mtd/spi-nor/spi-nor.c b/drivers/mtd/spi-nor/spi-nor.c
index 383916e3f4b0..3ced84049d58 100644
--- a/drivers/mtd/spi-nor/spi-nor.c
+++ b/drivers/mtd/spi-nor/spi-nor.c
@@ -666,6 +666,7 @@ static const struct spi_device_id spi_nor_ids[] = {
{ "mb85rs1mt", INFO(0x047f27, 0, 128 * 1024, 1, SPI_NOR_NO_ERASE) },
/* GigaDevice */
+ { "gd25q16", INFO(0xc84015, 0, 64 * 1024, 32, SECT_4K) },
{ "gd25q32", INFO(0xc84016, 0, 64 * 1024, 64, SECT_4K) },
{ "gd25q64", INFO(0xc84017, 0, 64 * 1024, 128, SECT_4K) },
{ "gd25q128", INFO(0xc84018, 0, 64 * 1024, 256, SECT_4K) },
--
2.31.1
_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] mtd: spi-nor: Add support for gd25q16
2021-05-20 15:49 [PATCH] mtd: spi-nor: Add support for gd25q16 Michael Olbrich
@ 2021-05-21 8:52 ` Ahmad Fatoum
2021-05-25 5:27 ` Sascha Hauer
1 sibling, 0 replies; 3+ messages in thread
From: Ahmad Fatoum @ 2021-05-21 8:52 UTC (permalink / raw)
To: Michael Olbrich, barebox
On 20.05.21 17:49, Michael Olbrich wrote:
> The entry is imported from Linux v5.12.
>
> It can befound on new versions of the Boundary Devices i.MX6 Quad
> Nitrogen6x boards.
>
> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
Reviewed-by: Ahmad Fatoum <a.fatoum@pengutronix.de>
> ---
> drivers/mtd/spi-nor/spi-nor.c | 1 +
> 1 file changed, 1 insertion(+)
>
> diff --git a/drivers/mtd/spi-nor/spi-nor.c b/drivers/mtd/spi-nor/spi-nor.c
> index 383916e3f4b0..3ced84049d58 100644
> --- a/drivers/mtd/spi-nor/spi-nor.c
> +++ b/drivers/mtd/spi-nor/spi-nor.c
> @@ -666,6 +666,7 @@ static const struct spi_device_id spi_nor_ids[] = {
> { "mb85rs1mt", INFO(0x047f27, 0, 128 * 1024, 1, SPI_NOR_NO_ERASE) },
>
> /* GigaDevice */
> + { "gd25q16", INFO(0xc84015, 0, 64 * 1024, 32, SECT_4K) },
> { "gd25q32", INFO(0xc84016, 0, 64 * 1024, 64, SECT_4K) },
> { "gd25q64", INFO(0xc84017, 0, 64 * 1024, 128, SECT_4K) },
> { "gd25q128", INFO(0xc84018, 0, 64 * 1024, 256, SECT_4K) },
>
--
Pengutronix e.K. | |
Steuerwalder Str. 21 | http://www.pengutronix.de/ |
31137 Hildesheim, Germany | Phone: +49-5121-206917-0 |
Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 |
_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] mtd: spi-nor: Add support for gd25q16
2021-05-20 15:49 [PATCH] mtd: spi-nor: Add support for gd25q16 Michael Olbrich
2021-05-21 8:52 ` Ahmad Fatoum
@ 2021-05-25 5:27 ` Sascha Hauer
1 sibling, 0 replies; 3+ messages in thread
From: Sascha Hauer @ 2021-05-25 5:27 UTC (permalink / raw)
To: Michael Olbrich; +Cc: barebox
On Thu, May 20, 2021 at 05:49:29PM +0200, Michael Olbrich wrote:
> The entry is imported from Linux v5.12.
>
> It can befound on new versions of the Boundary Devices i.MX6 Quad
> Nitrogen6x boards.
>
> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
> ---
> drivers/mtd/spi-nor/spi-nor.c | 1 +
> 1 file changed, 1 insertion(+)
Applied, thanks
Sascha
--
Pengutronix e.K. | |
Steuerwalder Str. 21 | http://www.pengutronix.de/ |
31137 Hildesheim, Germany | Phone: +49-5121-206917-0 |
Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 |
_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2021-05-25 5:28 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-05-20 15:49 [PATCH] mtd: spi-nor: Add support for gd25q16 Michael Olbrich
2021-05-21 8:52 ` Ahmad Fatoum
2021-05-25 5:27 ` Sascha Hauer
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox