2021-02-07 02:03:51 -05:00
|
|
|
set(INCLUDE_FILES "include" . include PUBLIC soc)
|
|
|
|
|
|
|
|
if(CONFIG_IDF_TARGET_ARCH_RISCV)
|
|
|
|
list(APPEND INCLUDE_FILES "include/riscv")
|
|
|
|
endif()
|
|
|
|
|
2021-11-23 07:11:33 -05:00
|
|
|
target_include_directories(${COMPONENT_LIB} PRIVATE ${INCLUDE_FILES} include/private)
|
2020-02-02 10:23:16 -05:00
|
|
|
|
2023-01-03 05:58:29 -05:00
|
|
|
set(srcs "cpu_start.c" "panic_handler.c" "esp_system_chip.c")
|
|
|
|
|
|
|
|
if(CONFIG_SOC_BOD_SUPPORTED)
|
|
|
|
list(APPEND srcs "brownout.c")
|
|
|
|
endif()
|
2022-11-03 11:59:19 -04:00
|
|
|
|
2022-01-18 14:50:33 -05:00
|
|
|
if(CONFIG_ESP_CONSOLE_USB_CDC)
|
|
|
|
list(APPEND srcs "usb_console.c")
|
|
|
|
endif()
|
|
|
|
|
2023-08-29 03:55:21 -04:00
|
|
|
if(CONFIG_ESP_IPC_ISR_ENABLE)
|
2023-09-06 07:33:39 -04: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 03:55:21 -04: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 00:19:49 -04:00
|
|
|
"arch/riscv/debug_helpers.c"
|
2023-08-29 03:55:21 -04:00
|
|
|
"arch/riscv/debug_stubs.c")
|
|
|
|
endif()
|
|
|
|
|
2020-02-02 10:23:16 -05: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 01:18:16 -04:00
|
|
|
add_subdirectory(soc/${target})
|