| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- idf_build_get_property(target IDF_TARGET)
- if(${target} STREQUAL "linux")
- idf_component_register(SRCS "linux/spi_flash_linux.c"
- INCLUDE_DIRS include
- PRIV_INCLUDE_DIRS include/spi_flash)
- return()
- endif()
- if(BOOTLOADER_BUILD OR CONFIG_APP_BUILD_TYPE_PURE_RAM_APP)
- set(srcs "spi_flash_wrap.c")
- set(priv_requires bootloader_support soc)
- else()
- set(srcs "flash_brownout_hook.c")
- if(CONFIG_SOC_SPI_MEM_SUPPORT_OPI_MODE)
- list(APPEND srcs "${target}/spi_flash_oct_flash_init.c")
- endif()
- if(CONFIG_SPI_FLASH_HPM_ON)
- list(APPEND srcs
- "spi_flash_hpm_enable.c")
- endif()
- # New implementation after IDF v4.0
- list(APPEND srcs
- "spi_flash_chip_drivers.c"
- "spi_flash_chip_generic.c"
- "spi_flash_chip_issi.c"
- "spi_flash_chip_mxic.c"
- "spi_flash_chip_gd.c"
- "spi_flash_chip_winbond.c"
- "spi_flash_chip_boya.c"
- "spi_flash_chip_mxic_opi.c"
- "spi_flash_chip_th.c"
- "memspi_host_driver.c")
- set(cache_srcs
- "cache_utils.c"
- "flash_mmap.c"
- "flash_ops.c"
- "spi_flash_wrap.c"
- )
- list(APPEND cache_srcs
- "esp_flash_api.c"
- "esp_flash_spi_init.c"
- "spi_flash_os_func_app.c"
- "spi_flash_os_func_noos.c")
- list(APPEND srcs ${cache_srcs})
- set(priv_requires bootloader_support app_update soc esp_mm
- esp_driver_gpio esp_driver_spi # TODO: IDF-8503 move spi_bus_lock to esp_hw_support component
- )
- endif()
- idf_component_register(SRCS "${srcs}"
- REQUIRES hal
- PRIV_REQUIRES "${priv_requires}"
- INCLUDE_DIRS include
- PRIV_INCLUDE_DIRS include/spi_flash
- LDFRAGMENTS linker.lf)
- # Avoid cache miss by unexpected inlineing when built by -Os
- set_source_files_properties(${cache_srcs} PROPERTIES COMPILE_FLAGS "-fno-inline-functions")
- if(CMAKE_C_COMPILER_ID MATCHES "GNU")
- # These flags are GCC specific
- set_property(SOURCE ${cache_srcs} APPEND_STRING PROPERTY COMPILE_FLAGS
- " -fno-inline-small-functions -fno-inline-functions-called-once")
- endif()
- if(NOT BOOTLOADER_BUILD AND NOT CONFIG_APP_BUILD_TYPE_PURE_RAM_APP)
- if(CONFIG_SPIRAM)
- # [refactor-todo]: requires "esp_psram" for few MMU usages in `flash_mmap.c`
- # will be replaced with MMU requirements
- idf_component_optional_requires(PRIVATE esp_psram)
- endif()
- endif()
|