diff --git a/bsp/stm32f4xx-HAL/Kconfig b/bsp/stm32f4xx-HAL/Kconfig index f953d8f8cec20b76ce777417fdb2095febf4380d..24a3c1d7848990f82adbaea69e4e437726792f32 100644 --- a/bsp/stm32f4xx-HAL/Kconfig +++ b/bsp/stm32f4xx-HAL/Kconfig @@ -325,12 +325,12 @@ config RT_USING_SPI3 endif -if RT_USING_W25QXX -config RT_W25QXX_CS_PIN - int "W25QXX CS Pin index" +if RT_USING_W25QXX || RT_USING_SFUD +config RT_FLASH_CS_PIN + int "SPI NOR Flash CS pin index" default 0 -config RT_W25QXX_SPI_BUS_NAME - string "W25QXX Spi bus name" +config RT_FLASH_SPI_BUS_NAME + string "SPI NOR Flash Spi bus name" default "spi1" endif diff --git a/bsp/stm32f4xx-HAL/drivers/SConscript b/bsp/stm32f4xx-HAL/drivers/SConscript index d99bda18b1b0820ad1533ccc8b066b62facaa132..9fc1d73715b7b33252e4a5bca51efa54f65dbc41 100644 --- a/bsp/stm32f4xx-HAL/drivers/SConscript +++ b/bsp/stm32f4xx-HAL/drivers/SConscript @@ -19,7 +19,7 @@ if GetDepend(['RT_USING_SERIAL']): if GetDepend(['RT_USING_SPI']): src += ['drv_spi.c'] -if GetDepend(['RT_USING_W25QXX']): +if GetDepend(['RT_USING_W25QXX']) or GetDepend(['RT_USING_SFUD']): src += ['drv_spiflash.c'] if GetDepend(['RT_USING_WDT']): diff --git a/bsp/stm32f4xx-HAL/drivers/drv_spiflash.c b/bsp/stm32f4xx-HAL/drivers/drv_spiflash.c index 2d16ddab5ac6f5097623500abdb511804ac37da8..cf30b949a6ef9f13e09ee5a84393b435cbe41c56 100644 --- a/bsp/stm32f4xx-HAL/drivers/drv_spiflash.c +++ b/bsp/stm32f4xx-HAL/drivers/drv_spiflash.c @@ -12,13 +12,32 @@ * 2017-11-08 ZYH the first version */ #include +#if defined(RT_USING_W25QXX) || defined(RT_USING_SFUD) + #include #ifdef RT_USING_W25QXX -#include -#include "spi_flash_w25qxx.h" -int rt_w25qxx_init(void) + #include "spi_flash_w25qxx.h" +#elif defined(RT_USING_SFUD) + #include "string.h" + #include "spi_flash.h" + #include "spi_flash_sfud.h" + sfud_flash sfud_norflash0; + rt_spi_flash_device_t spi_device; +#endif + +int rt_nor_flash_init(void) { - stm32_spi_bus_attach_device(RT_W25QXX_CS_PIN, RT_W25QXX_SPI_BUS_NAME, "w25qxx"); - return w25qxx_init("flash0", "w25qxx"); + stm32_spi_bus_attach_device(RT_FLASH_CS_PIN, RT_FLASH_SPI_BUS_NAME, "norspi"); +#ifdef RT_USING_W25QXX + return w25qxx_init("flash0", "norspi"); +#elif defined(RT_USING_SFUD) + spi_device = rt_sfud_flash_probe("flash0", "norspi"); + if (spi_device == RT_NULL) + { + return -RT_ERROR; + } + memcpy(&sfud_norflash0, spi_device->user_data, sizeof(sfud_flash)); + return 0; +#endif } -INIT_DEVICE_EXPORT(rt_w25qxx_init); +INIT_DEVICE_EXPORT(rt_nor_flash_init); #endif