:orphan: .. title:: CONFIG_FLASH_STM32_QSPI .. kconfig:: CONFIG_FLASH_STM32_QSPI CONFIG_FLASH_STM32_QSPI ####################### *STM32 Quad SPI Flash driver* Type: ``bool`` Help ==== .. code-block:: none Enable QSPI-NOR support on the STM32 family of processors. Direct dependencies =================== \ :kconfig:`SOC_FAMILY_STM32 ` && \ :kconfig:`FLASH ` *(Includes any dependencies from ifs and menus.)* Default ======= - n Symbols selected by this symbol =============================== - \ :kconfig:`USE_STM32_HAL_QSPI ` - \ :kconfig:`FLASH_HAS_DRIVER_ENABLED ` - \ :kconfig:`FLASH_JESD216 ` - \ :kconfig:`FLASH_PAGE_LAYOUT ` - \ :kconfig:`FLASH_HAS_PAGE_LAYOUT ` - \ :kconfig:`DMA ` if n - \ :kconfig:`USE_STM32_HAL_DMA ` if n Kconfig definition ================== At ``/flash/Kconfig.stm32_qspi:10`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:42`` → ``/Kconfig:62`` → ``/flash/Kconfig:83`` Menu path: (Top) → Device Drivers → Flash hardware support .. code-block:: kconfig config FLASH_STM32_QSPI bool "STM32 Quad SPI Flash driver" default n select USE_STM32_HAL_QSPI select FLASH_HAS_DRIVER_ENABLED select FLASH_JESD216 select FLASH_PAGE_LAYOUT select FLASH_HAS_PAGE_LAYOUT select DMA if n select USE_STM32_HAL_DMA if n depends on SOC_FAMILY_STM32 && FLASH help Enable QSPI-NOR support on the STM32 family of processors. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*