2021-01-26 10:48:12 +08:00
|
|
|
idf_build_get_property(target IDF_TARGET)
|
|
|
|
|
2022-11-03 16:59:19 +01:00
|
|
|
# On Linux, we only support a few features, hence this simple component registration
|
|
|
|
if(${target} STREQUAL "linux")
|
|
|
|
idf_component_register(SRCS "esp_system.c"
|
|
|
|
"port/soc/linux/reset_reason.c"
|
|
|
|
"port/soc/linux/system_internal.c"
|
|
|
|
"port/esp_system_linux.c"
|
|
|
|
INCLUDE_DIRS "include")
|
|
|
|
return()
|
|
|
|
endif()
|
|
|
|
|
2021-02-07 15:03:51 +08:00
|
|
|
set(srcs "esp_err.c")
|
2021-01-26 10:48:12 +08:00
|
|
|
|
2023-06-20 16:04:41 +08:00
|
|
|
if(CONFIG_IDF_ENV_FPGA OR CONFIG_ESP_BRINGUP_BYPASS_CPU_CLK_SETTING)
|
2023-12-05 10:42:19 +08:00
|
|
|
list(APPEND srcs "fpga_overrides_clk.c")
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if(CONFIG_IDF_ENV_FPGA OR CONFIG_ESP_BRINGUP_BYPASS_RANDOM_SETTING)
|
|
|
|
list(APPEND srcs "fpga_overrides_rng.c")
|
2021-01-26 13:12:54 +08:00
|
|
|
endif()
|
|
|
|
|
2021-01-20 15:18:55 +08:00
|
|
|
if(BOOTLOADER_BUILD)
|
2021-02-07 15:03:51 +08:00
|
|
|
# "_esp_error_check_failed()" requires spi_flash module
|
|
|
|
# Bootloader relies on some Kconfig options defined in esp_system.
|
|
|
|
idf_component_register(SRCS "${srcs}" REQUIRES spi_flash)
|
2021-01-20 15:18:55 +08:00
|
|
|
else()
|
2021-02-23 20:06:41 +08:00
|
|
|
list(APPEND srcs "crosscore_int.c"
|
2021-09-17 11:14:32 +08:00
|
|
|
"esp_ipc.c"
|
2021-02-23 20:06:41 +08:00
|
|
|
"esp_err.c"
|
2021-01-20 15:18:55 +08:00
|
|
|
"freertos_hooks.c"
|
|
|
|
"int_wdt.c"
|
|
|
|
"panic.c"
|
2021-03-11 09:48:30 +08:00
|
|
|
"esp_system.c"
|
2021-01-20 15:18:55 +08:00
|
|
|
"startup.c"
|
2023-11-24 18:32:37 +01:00
|
|
|
"startup_funcs.c"
|
2021-01-20 15:18:55 +08:00
|
|
|
"system_time.c"
|
|
|
|
"stack_check.c"
|
2021-08-30 11:30:12 +08:00
|
|
|
"ubsan.c"
|
2024-01-24 01:41:18 +01:00
|
|
|
"xt_wdt.c")
|
2021-01-26 10:48:12 +08:00
|
|
|
|
2022-08-23 17:58:14 +08:00
|
|
|
if(CONFIG_ESP_TASK_WDT_EN)
|
2022-08-12 18:27:11 +08:00
|
|
|
list(APPEND srcs "task_wdt/task_wdt.c")
|
|
|
|
|
|
|
|
if(CONFIG_ESP_TASK_WDT_USE_ESP_TIMER)
|
|
|
|
list(APPEND srcs "task_wdt/task_wdt_impl_esp_timer.c")
|
|
|
|
else()
|
|
|
|
list(APPEND srcs "task_wdt/task_wdt_impl_timergroup.c")
|
|
|
|
endif()
|
2022-07-07 14:54:15 +08:00
|
|
|
endif()
|
|
|
|
|
2021-02-07 15:03:51 +08:00
|
|
|
if(CONFIG_ESP_SYSTEM_USE_EH_FRAME)
|
|
|
|
list(APPEND srcs "eh_frame_parser.c")
|
|
|
|
endif()
|
|
|
|
|
2022-08-29 17:59:11 +08:00
|
|
|
if(CONFIG_SOC_SYSTIMER_SUPPORT_ETM)
|
|
|
|
list(APPEND srcs "systick_etm.c")
|
|
|
|
endif()
|
|
|
|
|
2023-05-04 17:31:31 +02:00
|
|
|
if(CONFIG_ESP_SYSTEM_HW_STACK_GUARD)
|
|
|
|
list(APPEND srcs "hw_stack_guard.c")
|
|
|
|
endif()
|
|
|
|
|
2021-01-20 15:18:55 +08:00
|
|
|
idf_component_register(SRCS "${srcs}"
|
|
|
|
INCLUDE_DIRS include
|
2022-11-02 19:11:45 +08:00
|
|
|
PRIV_REQUIRES spi_flash esp_timer esp_mm
|
2021-01-20 15:18:55 +08:00
|
|
|
# [refactor-todo] requirements due to init code,
|
|
|
|
# should be removable once using component init functions
|
|
|
|
# link-time registration is used.
|
2024-01-11 20:59:08 +08:00
|
|
|
bootloader_support esp_pm
|
2021-03-10 19:33:24 +08:00
|
|
|
LDFRAGMENTS "linker.lf" "app.lf")
|
2021-01-20 15:18:55 +08:00
|
|
|
add_subdirectory(port)
|
2020-02-13 17:43:23 +05:00
|
|
|
|
2021-01-20 15:18:55 +08:00
|
|
|
# After system initialization, `start_app` (and its other cores variant) is called.
|
|
|
|
# This is provided by the user or from another component. Since we can't establish
|
|
|
|
# dependency on what we don't know, force linker to not drop the symbol regardless
|
|
|
|
# of link line order.
|
|
|
|
target_link_libraries(${COMPONENT_LIB} INTERFACE "-u start_app")
|
|
|
|
|
|
|
|
if(NOT CONFIG_ESP_SYSTEM_SINGLE_CORE_MODE)
|
|
|
|
target_link_libraries(${COMPONENT_LIB} INTERFACE "-u start_app_other_cores")
|
|
|
|
endif()
|
2020-07-21 18:11:22 +08:00
|
|
|
|
2021-01-20 15:18:55 +08:00
|
|
|
# Disable stack protection in files which are involved in initialization of that feature
|
|
|
|
set_source_files_properties(
|
2024-01-25 11:12:21 +08:00
|
|
|
"startup.c" "stack_check.c" "port/cpu_start.c"
|
2021-01-20 15:18:55 +08:00
|
|
|
PROPERTIES COMPILE_FLAGS
|
|
|
|
-fno-stack-protector)
|
2020-09-02 17:10:54 +08:00
|
|
|
|
2021-04-08 10:27:21 +08:00
|
|
|
include(${CMAKE_CURRENT_LIST_DIR}/ld/ld.cmake)
|
2020-11-10 18:40:01 +11:00
|
|
|
endif()
|
2021-01-26 13:12:54 +08:00
|
|
|
|
2023-06-20 16:04:41 +08:00
|
|
|
if(CONFIG_IDF_ENV_FPGA OR CONFIG_ESP_BRINGUP_BYPASS_CPU_CLK_SETTING)
|
2021-01-26 13:12:54 +08:00
|
|
|
# Forces the linker to include fpga stubs from this component
|
2023-12-05 10:42:19 +08:00
|
|
|
target_link_libraries(${COMPONENT_LIB} INTERFACE "-u esp_common_include_fpga_overrides_clk")
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if(CONFIG_IDF_ENV_FPGA OR CONFIG_ESP_BRINGUP_BYPASS_RANDOM_SETTING)
|
|
|
|
# Forces the linker to include fpga stubs from this component
|
|
|
|
target_link_libraries(${COMPONENT_LIB} INTERFACE "-u esp_common_include_fpga_overrides_rng")
|
2021-01-26 13:12:54 +08:00
|
|
|
endif()
|
2020-11-21 03:15:59 +01:00
|
|
|
|
|
|
|
# Force linking UBSAN hooks. If UBSAN is not enabled, the hooks will ultimately be removed
|
|
|
|
# due to -ffunction-sections -Wl,--gc-sections options.
|
|
|
|
target_link_libraries(${COMPONENT_LIB} INTERFACE "-u __ubsan_include")
|
2021-12-13 10:52:22 +01:00
|
|
|
|
2023-11-24 18:32:37 +01:00
|
|
|
target_link_libraries(${COMPONENT_LIB} INTERFACE "-u esp_system_include_startup_funcs")
|
2021-12-13 10:52:22 +01:00
|
|
|
|
|
|
|
# [refactor-todo] requirements due to init code, should be removable
|
|
|
|
# once link-time registration of component init functions is used.
|
|
|
|
if(CONFIG_APPTRACE_ENABLE)
|
|
|
|
idf_component_optional_requires(PRIVATE app_trace)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if(CONFIG_ESP_COREDUMP_ENABLE)
|
|
|
|
idf_component_optional_requires(PRIVATE espcoredump)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
# [refactor-todo] requirement from the panic handler,
|
|
|
|
# need to introduce panic "event" concept to remove this dependency (IDF-2194)
|
2021-06-07 22:54:09 +03:00
|
|
|
idf_component_optional_requires(PRIVATE esp_gdbstub)
|
2022-02-07 17:20:59 +08:00
|
|
|
|
2023-05-04 17:14:46 +08:00
|
|
|
if(NOT CONFIG_ESP_SYSTEM_PANIC_SILENT_REBOOT)
|
|
|
|
idf_component_optional_requires(PRIVATE esp_app_format)
|
|
|
|
endif()
|
2022-02-07 17:20:59 +08:00
|
|
|
|
|
|
|
if(CONFIG_PM_ENABLE)
|
|
|
|
idf_component_optional_requires(PRIVATE pm)
|
|
|
|
endif()
|
2022-04-15 10:51:07 +02:00
|
|
|
|
|
|
|
if(CONFIG_VFS_SUPPORT_IO)
|
|
|
|
idf_component_optional_requires(PRIVATE vfs)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if(CONFIG_SW_COEXIST_ENABLE OR CONFIG_EXTERNAL_COEX_ENABLE)
|
2022-12-14 17:10:54 +08:00
|
|
|
idf_component_optional_requires(PRIVATE esp_coex)
|
2022-04-15 10:51:07 +02:00
|
|
|
endif()
|
2022-05-11 10:32:56 +08:00
|
|
|
|
|
|
|
if(NOT BOOTLOADER_BUILD)
|
|
|
|
if(CONFIG_SPIRAM)
|
|
|
|
idf_component_optional_requires(PRIVATE esp_psram)
|
|
|
|
endif()
|
|
|
|
endif()
|
2024-02-12 09:51:25 +04:00
|
|
|
|
|
|
|
if(CONFIG_SOC_MEM_NON_CONTIGUOUS_SRAM)
|
|
|
|
target_link_options(${COMPONENT_LIB} INTERFACE "-Wl,--enable-non-contiguous-regions")
|
|
|
|
endif()
|