All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] mtd: sf: Set SF parameters as env variables
@ 2021-09-14  3:28 Marek Vasut
  2021-09-23 18:53 ` Pratyush Yadav
  2021-12-02  5:47 ` Jagan Teki
  0 siblings, 2 replies; 12+ messages in thread
From: Marek Vasut @ 2021-09-14  3:28 UTC (permalink / raw)
  To: u-boot; +Cc: Marek Vasut, Jagan Teki, Vignesh R

Set the SF page size, erase block size and total size as an environment
variable after "sf probe". This lets us discern boards with multiple
distinct SPI flash options and also e.g. set mtdparts accordingly.

Signed-off-by: Marek Vasut <marex@denx.de>
Cc: Jagan Teki <jagan@amarulasolutions.com>
Cc: Vignesh R <vigneshr@ti.com>
---
 drivers/mtd/spi/spi-nor-core.c | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/drivers/mtd/spi/spi-nor-core.c b/drivers/mtd/spi/spi-nor-core.c
index d5d905fa5a1..448653b9931 100644
--- a/drivers/mtd/spi/spi-nor-core.c
+++ b/drivers/mtd/spi/spi-nor-core.c
@@ -15,6 +15,7 @@
 #include <dm.h>
 #include <dm/device_compat.h>
 #include <dm/devres.h>
+#include <env.h>
 #include <linux/bitops.h>
 #include <linux/err.h>
 #include <linux/errno.h>
@@ -3829,8 +3830,11 @@ int spi_nor_scan(struct spi_nor *nor)
 #ifndef CONFIG_SPL_BUILD
 	printf("SF: Detected %s with page size ", nor->name);
 	print_size(nor->page_size, ", erase size ");
+	env_set_hex("sf_pagesize", nor->page_size);
 	print_size(nor->erase_size, ", total ");
+	env_set_hex("sf_erasesize", nor->erase_size);
 	print_size(nor->size, "");
+	env_set_hex("sf_size", nor->size);
 	puts("\n");
 #endif
 
-- 
2.33.0


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

end of thread, other threads:[~2021-12-02 16:41 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-09-14  3:28 [PATCH] mtd: sf: Set SF parameters as env variables Marek Vasut
2021-09-23 18:53 ` Pratyush Yadav
2021-09-23 20:00   ` Marek Vasut
2021-10-07 12:40     ` Pratyush Yadav
2021-10-07 12:46       ` Marek Vasut
2021-11-28 21:56         ` Marek Vasut
2021-12-02  9:14           ` Pratyush Yadav
2021-12-02 16:41       ` Sean Anderson
2021-12-02  5:47 ` Jagan Teki
2021-12-02  5:49   ` Marek Vasut
2021-12-02  5:57     ` Jagan Teki
2021-12-02  6:03       ` Marek Vasut

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.