| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116 |
- idf_build_get_property(idf_target IDF_TARGET)
- set(srcs "src/phy_override.c" "src/lib_printf.c")
- if(CONFIG_APP_NO_BLOBS)
- set(link_binary_libs 0)
- set(ldfragments)
- else()
- set(link_binary_libs 1)
- set(ldfragments "linker.lf")
- endif()
- if(IDF_TARGET STREQUAL "esp32h2")
- list(APPEND srcs "src/phy_init_esp32hxx.c")
- else()
- list(APPEND srcs "src/phy_init.c")
- endif()
- idf_build_get_property(build_dir BUILD_DIR)
- if(CONFIG_ESP_PHY_MULTIPLE_INIT_DATA_BIN)
- if(NOT EXISTS "${build_dir}/phy_multiple_init_data.bin")
- file(COPY ${CMAKE_CURRENT_SOURCE_DIR}/${idf_target}/phy_multiple_init_data.bin DESTINATION "${build_dir}")
- endif()
- endif()
- if(CONFIG_ESP_PHY_MULTIPLE_INIT_DATA_BIN_EMBED)
- set(embed_files "${build_dir}/phy_multiple_init_data.bin")
- endif()
- # [refactor-todo]: requires "driver" component for periph_ctrl header file
- idf_component_register(SRCS "${srcs}"
- INCLUDE_DIRS "include" "${idf_target}/include"
- PRIV_REQUIRES nvs_flash driver efuse esp_timer esp_wifi
- LDFRAGMENTS "${ldfragments}"
- EMBED_FILES ${embed_files}
- )
- set(target_name "${idf_target}")
- if(IDF_TARGET STREQUAL "esp32h2")
- if(CONFIG_IDF_TARGET_ESP32H2_BETA_VERSION_2)
- target_link_libraries(${COMPONENT_LIB} PUBLIC "-L \"${CMAKE_CURRENT_SOURCE_DIR}/lib/${target_name}/rev2\"")
- endif()
- if(CONFIG_IDF_TARGET_ESP32H2_BETA_VERSION_1)
- target_link_libraries(${COMPONENT_LIB} PUBLIC "-L \"${CMAKE_CURRENT_SOURCE_DIR}/lib/${target_name}/rev1\"")
- endif()
- else()
- target_link_libraries(${COMPONENT_LIB} PUBLIC "-L \"${CMAKE_CURRENT_SOURCE_DIR}/lib/${target_name}\"")
- endif()
- # Override functions in PHY lib with the functions in 'phy_override.c'
- target_link_libraries(${COMPONENT_LIB} INTERFACE "-u include_esp_phy_override")
- if(link_binary_libs)
- target_link_libraries(${COMPONENT_LIB} PUBLIC phy)
- idf_component_get_property(esp_phy_lib esp_phy COMPONENT_LIB)
- if(CONFIG_IDF_TARGET_ESP32)
- target_link_libraries(${COMPONENT_LIB} PUBLIC rtc)
- target_link_libraries(${COMPONENT_LIB} INTERFACE $<TARGET_FILE:${esp_phy_lib}> libphy.a librtc.a
- $<TARGET_FILE:${esp_phy_lib}>)
- endif()
- if(CONFIG_IDF_TARGET_ESP32S2)
- target_link_libraries(${COMPONENT_LIB} INTERFACE $<TARGET_FILE:${esp_phy_lib}> libphy.a
- $<TARGET_FILE:${esp_phy_lib}>)
- endif()
- if(CONFIG_IDF_TARGET_ESP32C3 OR CONFIG_IDF_TARGET_ESP32S3
- OR CONFIG_IDF_TARGET_ESP32H2 OR CONFIG_IDF_TARGET_ESP32C2)
- target_link_libraries(${COMPONENT_LIB} PUBLIC btbb)
- target_link_libraries(${COMPONENT_LIB} INTERFACE $<TARGET_FILE:${esp_phy_lib}> libphy.a libbtbb.a
- $<TARGET_FILE:${esp_phy_lib}>)
- endif()
- endif()
- if(CONFIG_ESP_PHY_INIT_DATA_IN_PARTITION)
- idf_component_get_property(esp_common_dir esp_common COMPONENT_DIR)
- partition_table_get_partition_info(phy_partition_offset "--partition-type data --partition-subtype phy" "offset")
- if(CONFIG_ESP_PHY_MULTIPLE_INIT_DATA_BIN)
- set(phy_init_data_bin "${build_dir}/phy_multiple_init_data.bin")
- if(CONFIG_ESP_PHY_MULTIPLE_INIT_DATA_BIN_EMBED)
- set(COMPONENT_EMBED_FILES "${build_dir}/phy_multiple_init_data.bin")
- endif()
- else()
- set(phy_init_data_bin "${build_dir}/phy_init_data.bin")
- # To get the phy_init_data.bin file, compile phy_init_data.h as a C file and then objcopy
- # the object file to a raw binary
- idf_build_get_property(config_dir CONFIG_DIR)
- add_custom_command(
- OUTPUT ${phy_init_data_bin}
- DEPENDS ${CMAKE_CURRENT_LIST_DIR}/${idf_target}/include/phy_init_data.h
- COMMAND ${CMAKE_C_COMPILER} -x c -c
- -I ${esp_common_dir}/include -I ${CMAKE_CURRENT_LIST_DIR}/include -I ${config_dir}
- -o phy_init_data.obj
- ${CMAKE_CURRENT_LIST_DIR}/${idf_target}/include/phy_init_data.h
- COMMAND ${CMAKE_OBJCOPY} -O binary phy_init_data.obj ${phy_init_data_bin}
- )
- add_custom_target(phy_init_data ALL DEPENDS ${phy_init_data_bin})
- add_dependencies(flash phy_init_data)
- idf_component_get_property(main_args esptool_py FLASH_ARGS)
- idf_component_get_property(sub_args esptool_py FLASH_SUB_ARGS)
- endif()
- set(phy_name "phy")
- esptool_py_flash_target(${phy_name}-flash "${main_args}" "${sub_args}")
- esptool_py_flash_target_image(${phy_name}-flash ${phy_name} "${phy_partition_offset}" "${phy_init_data_bin}")
- esptool_py_flash_target_image(flash ${phy_name} "${phy_partition_offset}" "${phy_init_data_bin}")
- endif()
- target_compile_options(${COMPONENT_LIB} PRIVATE "-Wno-format")
|