feat: BitScrambler: Add support for addcti instruction as found in ESP32-C5

This commit is contained in:
Jeroen Domburg
2025-02-12 16:34:14 +08:00
parent 68b79fc138
commit 3aaaa2203a
12 changed files with 169 additions and 21 deletions
@@ -1,8 +1,14 @@
# target_bitscrambler_add_src
#
# Assemble BitScrambler sources and embed into the application.
# This info is not available within the target_bitscrambler_add_src
# function, so save it to a global.
set(esp_bitscrambler_driver_component_path ${CMAKE_CURRENT_LIST_DIR})
function(target_bitscrambler_add_src s_sources)
if(NOT CMAKE_BUILD_EARLY_EXPANSION)
idf_build_get_property(target IDF_TARGET)
spaces2list(s_sources)
foreach(source ${s_sources})
get_filename_component(source ${source} ABSOLUTE BASE_DIR ${CMAKE_CURRENT_LIST_DIR})
@@ -11,7 +17,8 @@ function(target_bitscrambler_add_src s_sources)
idf_build_get_property(python PYTHON)
idf_build_get_property(idf_path IDF_PATH)
add_custom_command(OUTPUT ${ps_output} DEPENDS ${source}
COMMAND ${python} ${idf_path}/tools/bsasm.py ${source} ${ps_output})
COMMAND ${python} ${idf_path}/tools/bsasm.py ${source} ${ps_output}
"-c" ${esp_bitscrambler_driver_component_path}/bsasm_targets/${target}.json)
target_add_binary_data(${COMPONENT_LIB} ${ps_output} BINARY RENAME_TO bitscrambler_program_${basename})
endforeach()
endif()