| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- idf_build_get_property(target IDF_TARGET)
- if(BOOTLOADER_BUILD)
- set(srcs "${target}/spi_flash_rom_patch.c")
- set(cache_srcs "")
- set(priv_requires bootloader_support soc)
- else()
- set(cache_srcs
- "cache_utils.c"
- "flash_mmap.c"
- "flash_ops.c"
- "${target}/flash_ops_${target}.c"
- )
- set(srcs
- "partition.c"
- "${target}/spi_flash_rom_patch.c"
- )
- if(CONFIG_ESPTOOLPY_OCT_FLASH)
- list(APPEND srcs "${target}/spi_flash_oct_flash_init.c")
- endif()
- if(CONFIG_IDF_TARGET_ESP32S3)
- list(APPEND srcs
- "esp32s3/spi_timing_config.c"
- "spi_flash_timing_tuning.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"
- "memspi_host_driver.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_ipc driver)
- 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()
|