2021-02-07 15:03:51 +08:00
|
|
|
set(INCLUDE_FILES "include" . include PUBLIC soc)
|
|
|
|
|
|
|
|
if(CONFIG_IDF_TARGET_ARCH_RISCV)
|
|
|
|
list(APPEND INCLUDE_FILES "include/riscv")
|
|
|
|
endif()
|
|
|
|
|
2021-11-23 20:11:33 +08:00
|
|
|
target_include_directories(${COMPONENT_LIB} PRIVATE ${INCLUDE_FILES} include/private)
|
2020-02-02 23:23:16 +08:00
|
|
|
|
2023-01-03 18:58:29 +08:00
|
|
|
set(srcs "cpu_start.c" "panic_handler.c" "esp_system_chip.c")
|
|
|
|
|
2024-05-21 16:45:58 +08:00
|
|
|
if(NOT CONFIG_APP_BUILD_TYPE_PURE_RAM_APP)
|
|
|
|
list(APPEND srcs "image_process.c")
|
|
|
|
endif()
|
|
|
|
|
2023-01-03 18:58:29 +08:00
|
|
|
if(CONFIG_SOC_BOD_SUPPORTED)
|
|
|
|
list(APPEND srcs "brownout.c")
|
|
|
|
endif()
|
2022-11-03 16:59:19 +01:00
|
|
|
|
2022-01-18 20:50:33 +01:00
|
|
|
if(CONFIG_ESP_CONSOLE_USB_CDC)
|
|
|
|
list(APPEND srcs "usb_console.c")
|
|
|
|
endif()
|
|
|
|
|
2023-08-29 15:55:21 +08:00
|
|
|
if(CONFIG_ESP_IPC_ISR_ENABLE)
|
2023-09-06 19:33:39 +08:00
|
|
|
list(APPEND srcs "esp_ipc_isr.c")
|
|
|
|
if(CONFIG_IDF_TARGET_ARCH_XTENSA)
|
|
|
|
list(APPEND srcs "arch/xtensa/esp_ipc_isr_port.c"
|
|
|
|
"arch/xtensa/esp_ipc_isr_handler.S"
|
|
|
|
"arch/xtensa/esp_ipc_isr_routines.S")
|
|
|
|
elseif(CONFIG_IDF_TARGET_ARCH_RISCV)
|
|
|
|
list(APPEND srcs "arch/riscv/esp_ipc_isr_port.c"
|
|
|
|
"arch/riscv/esp_ipc_isr_handler.S"
|
|
|
|
"arch/riscv/esp_ipc_isr_routines.c")
|
|
|
|
endif()
|
2023-08-29 15:55:21 +08:00
|
|
|
endif()
|
|
|
|
|
|
|
|
if(CONFIG_IDF_TARGET_ARCH_XTENSA)
|
|
|
|
list(APPEND srcs "arch/xtensa/panic_arch.c"
|
|
|
|
"arch/xtensa/panic_handler_asm.S"
|
|
|
|
"arch/xtensa/expression_with_stack.c"
|
|
|
|
"arch/xtensa/expression_with_stack_asm.S"
|
|
|
|
"arch/xtensa/debug_helpers.c"
|
|
|
|
"arch/xtensa/debug_helpers_asm.S"
|
|
|
|
"arch/xtensa/debug_stubs.c"
|
|
|
|
"arch/xtensa/trax.c")
|
|
|
|
elseif(CONFIG_IDF_TARGET_ARCH_RISCV)
|
|
|
|
list(APPEND srcs "arch/riscv/expression_with_stack.c"
|
|
|
|
"arch/riscv/panic_arch.c"
|
2023-08-31 12:19:49 +08:00
|
|
|
"arch/riscv/debug_helpers.c"
|
2023-08-29 15:55:21 +08:00
|
|
|
"arch/riscv/debug_stubs.c")
|
|
|
|
endif()
|
|
|
|
|
2020-02-02 23:23:16 +08:00
|
|
|
add_prefix(srcs "${CMAKE_CURRENT_LIST_DIR}/" ${srcs})
|
|
|
|
|
|
|
|
target_sources(${COMPONENT_LIB} PRIVATE ${srcs})
|
|
|
|
|
|
|
|
idf_build_get_property(target IDF_TARGET)
|
2020-10-08 13:18:16 +08:00
|
|
|
add_subdirectory(soc/${target})
|