2019-04-28 07:38:23 +00:00
|
|
|
set(priv_requires bootloader_support soc)
|
2019-11-28 01:20:00 +00:00
|
|
|
|
2018-01-12 02:49:13 +00:00
|
|
|
if(BOOTLOADER_BUILD)
|
2019-10-22 02:51:49 +00:00
|
|
|
if (CONFIG_IDF_TARGET_ESP32)
|
|
|
|
# ESP32 Bootloader needs SPIUnlock from this file, but doesn't
|
|
|
|
# need other parts of this component
|
2019-11-05 05:10:03 +00:00
|
|
|
set(srcs "esp32/spi_flash_rom_patch.c")
|
2020-01-17 03:47:08 +00:00
|
|
|
elseif (CONFIG_IDF_TARGET_ESP32S2)
|
|
|
|
set(srcs "esp32s2/spi_flash_rom_patch.c")
|
2019-10-22 02:51:49 +00:00
|
|
|
else()
|
|
|
|
# but on other platforms no source files are needed for bootloader
|
|
|
|
set(srcs)
|
|
|
|
endif()
|
2019-09-05 05:11:36 +00:00
|
|
|
set(cache_srcs "")
|
2018-01-12 02:49:13 +00:00
|
|
|
else()
|
2019-09-05 05:11:36 +00:00
|
|
|
set(cache_srcs
|
2019-06-21 06:29:32 +00:00
|
|
|
"cache_utils.c"
|
|
|
|
"flash_mmap.c"
|
|
|
|
"flash_ops.c"
|
2019-09-05 05:11:36 +00:00
|
|
|
)
|
|
|
|
set(srcs
|
2019-10-22 02:51:49 +00:00
|
|
|
"partition.c")
|
|
|
|
|
|
|
|
if (CONFIG_IDF_TARGET_ESP32)
|
|
|
|
list(APPEND srcs
|
2019-11-05 05:10:03 +00:00
|
|
|
"esp32/spi_flash_rom_patch.c")
|
2020-01-17 03:47:08 +00:00
|
|
|
elseif (CONFIG_IDF_TARGET_ESP32S2)
|
2019-11-05 05:10:03 +00:00
|
|
|
list(APPEND srcs
|
2020-01-17 03:47:08 +00:00
|
|
|
"esp32s2/spi_flash_rom_patch.c")
|
2019-10-22 02:51:49 +00:00
|
|
|
endif()
|
|
|
|
|
2019-09-09 16:56:46 +00:00
|
|
|
# New implementation after IDF v4.0
|
2019-09-10 06:34:06 +00:00
|
|
|
list(APPEND srcs
|
2019-06-21 06:29:32 +00:00
|
|
|
"spi_flash_chip_drivers.c"
|
|
|
|
"spi_flash_chip_generic.c"
|
|
|
|
"spi_flash_chip_issi.c"
|
2019-11-28 01:20:00 +00:00
|
|
|
"spi_flash_chip_gd.c"
|
|
|
|
"memspi_host_driver.c")
|
2019-10-22 02:51:49 +00:00
|
|
|
|
2019-11-28 01:20:00 +00:00
|
|
|
list(APPEND cache_srcs
|
2019-10-22 02:51:49 +00:00
|
|
|
"esp_flash_api.c"
|
|
|
|
"esp_flash_spi_init.c"
|
|
|
|
"spi_flash_os_func_app.c"
|
|
|
|
"spi_flash_os_func_noos.c")
|
2019-11-28 01:20:00 +00:00
|
|
|
|
2019-09-05 05:11:36 +00:00
|
|
|
list(APPEND srcs ${cache_srcs})
|
2019-04-28 07:38:23 +00:00
|
|
|
set(priv_requires bootloader_support app_update soc)
|
2018-01-12 02:49:13 +00:00
|
|
|
endif()
|
|
|
|
|
2019-04-28 07:38:23 +00:00
|
|
|
idf_component_register(SRCS "${srcs}"
|
|
|
|
PRIV_REQUIRES "${priv_requires}"
|
|
|
|
INCLUDE_DIRS include
|
|
|
|
PRIV_INCLUDE_DIRS private_include
|
|
|
|
LDFRAGMENTS linker.lf)
|
2018-04-18 02:57:45 +00:00
|
|
|
|
2019-09-05 05:11:36 +00:00
|
|
|
# Avoid cache miss by unexpected inlineing when built by -Os
|
|
|
|
set_source_files_properties(${cache_srcs} PROPERTIES COMPILE_FLAGS
|
|
|
|
"-fno-inline-functions -fno-inline-small-functions -fno-inline-functions-called-once")
|