[U-Boot] [PATCH v2 1/2] dm: sf: Save flash flags to struct spi_flash

Add a new member 'flags' in struct spi_flash to store the flash flags during spi_flash_validate_params().
Signed-off-by: Bin Meng bmeng.cn@gmail.com
---
Changes in v2: - New patch to save flash flags to struct spi_flash
drivers/mtd/spi/sf_probe.c | 3 +++ include/spi_flash.h | 1 + 2 files changed, 4 insertions(+)
diff --git a/drivers/mtd/spi/sf_probe.c b/drivers/mtd/spi/sf_probe.c index d19138d..ac93114 100644 --- a/drivers/mtd/spi/sf_probe.c +++ b/drivers/mtd/spi/sf_probe.c @@ -132,6 +132,9 @@ static int spi_flash_validate_params(struct spi_slave *spi, u8 *idcode, flash->name = params->name; flash->memory_map = spi->memory_map; flash->dual_flash = flash->spi->option; +#ifdef CONFIG_DM_SPI_FLASH + flash->flags = params->flags; +#endif
/* Assign spi_flash ops */ #ifndef CONFIG_DM_SPI_FLASH diff --git a/include/spi_flash.h b/include/spi_flash.h index 218283f..ddce22a 100644 --- a/include/spi_flash.h +++ b/include/spi_flash.h @@ -65,6 +65,7 @@ struct spi_flash { #ifdef CONFIG_DM_SPI_FLASH struct spi_slave *spi; struct udevice *dev; + u16 flags; #else struct spi_slave *spi; #endif

On 24 April 2015 at 17:21, Bin Meng bmeng.cn@gmail.com wrote:
Add a new member 'flags' in struct spi_flash to store the flash flags during spi_flash_validate_params().
Signed-off-by: Bin Meng bmeng.cn@gmail.com
Changes in v2:
- New patch to save flash flags to struct spi_flash
drivers/mtd/spi/sf_probe.c | 3 +++ include/spi_flash.h | 1 + 2 files changed, 4 insertions(+)
diff --git a/drivers/mtd/spi/sf_probe.c b/drivers/mtd/spi/sf_probe.c index d19138d..ac93114 100644 --- a/drivers/mtd/spi/sf_probe.c +++ b/drivers/mtd/spi/sf_probe.c @@ -132,6 +132,9 @@ static int spi_flash_validate_params(struct spi_slave *spi, u8 *idcode, flash->name = params->name; flash->memory_map = spi->memory_map; flash->dual_flash = flash->spi->option; +#ifdef CONFIG_DM_SPI_FLASH
flash->flags = params->flags;
+#endif
/* Assign spi_flash ops */
#ifndef CONFIG_DM_SPI_FLASH diff --git a/include/spi_flash.h b/include/spi_flash.h index 218283f..ddce22a 100644 --- a/include/spi_flash.h +++ b/include/spi_flash.h @@ -65,6 +65,7 @@ struct spi_flash { #ifdef CONFIG_DM_SPI_FLASH struct spi_slave *spi; struct udevice *dev;
u16 flags;
#else struct spi_slave *spi;
#endif
1.8.2.1
Issue with patch, re-based on current.
Applied to u-boot-spi/master
thanks!
participants (2)
-
Bin Meng
-
Jagan Teki