mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
cf1b222cac
After refactoring the target components (e.g. esp32) no longer contained any real functionality. What remained in these components have been moved elsewhere and the component itself deleted from the build system.
183 lines
5.0 KiB
CMake
183 lines
5.0 KiB
CMake
idf_build_get_property(target IDF_TARGET)
|
|
|
|
set(srcs "mpu_hal.c"
|
|
"cpu_hal.c"
|
|
"efuse_hal.c"
|
|
"${target}/efuse_hal.c"
|
|
"mmu_hal.c")
|
|
|
|
set(includes "${target}/include" "include" "platform_port/include")
|
|
|
|
if(NOT CONFIG_HAL_WDT_USE_ROM_IMPL)
|
|
list(APPEND srcs "wdt_hal_iram.c")
|
|
endif()
|
|
|
|
if(NOT ${target} STREQUAL "esp32")
|
|
list(APPEND srcs "cache_hal.c")
|
|
endif()
|
|
|
|
if(${target} STREQUAL "esp32h2")
|
|
if(CONFIG_IDF_TARGET_ESP32H2_BETA_VERSION_1)
|
|
list(APPEND includes "${target}/include/rev1")
|
|
elseif(CONFIG_IDF_TARGET_ESP32H2_BETA_VERSION_2)
|
|
list(APPEND includes "${target}/include/rev2")
|
|
endif()
|
|
endif()
|
|
|
|
if(NOT BOOTLOADER_BUILD)
|
|
list(APPEND srcs
|
|
"rtc_io_hal.c"
|
|
"spi_hal.c"
|
|
"spi_hal_iram.c"
|
|
"spi_slave_hal.c"
|
|
"spi_slave_hal_iram.c"
|
|
"timer_hal.c"
|
|
"timer_hal_iram.c"
|
|
"ledc_hal.c"
|
|
"ledc_hal_iram.c"
|
|
"i2c_hal.c"
|
|
"i2c_hal_iram.c"
|
|
"gpio_hal.c"
|
|
"uart_hal.c"
|
|
"uart_hal_iram.c"
|
|
"spi_flash_hal.c"
|
|
"spi_flash_hal_iram.c"
|
|
"spi_flash_encrypt_hal_iram.c"
|
|
"soc_hal.c"
|
|
"interrupt_controller_hal.c"
|
|
"sha_hal.c"
|
|
"adc_hal_common.c"
|
|
"adc_hal.c")
|
|
|
|
if(CONFIG_SOC_SYSTIMER_SUPPORTED AND NOT CONFIG_HAL_SYSTIMER_USE_ROM_IMPL)
|
|
list(APPEND srcs "systimer_hal.c")
|
|
endif()
|
|
|
|
if(CONFIG_SOC_RMT_SUPPORTED)
|
|
list(APPEND srcs "rmt_hal.c")
|
|
endif()
|
|
|
|
if(CONFIG_SOC_PCNT_SUPPORTED)
|
|
list(APPEND srcs "pcnt_hal.c")
|
|
endif()
|
|
|
|
if(CONFIG_SOC_MCPWM_SUPPORTED)
|
|
list(APPEND srcs "mcpwm_hal.c")
|
|
endif()
|
|
|
|
if(CONFIG_SOC_TWAI_SUPPORTED)
|
|
list(APPEND srcs "twai_hal.c" "twai_hal_iram.c")
|
|
endif()
|
|
|
|
if(CONFIG_SOC_GDMA_SUPPORTED)
|
|
list(APPEND srcs "gdma_hal.c")
|
|
endif()
|
|
|
|
if(CONFIG_SOC_I2S_SUPPORTED)
|
|
list(APPEND srcs "i2s_hal.c")
|
|
endif()
|
|
|
|
if(CONFIG_SOC_SIGMADELTA_SUPPORTED)
|
|
list(APPEND srcs "sigmadelta_hal.c")
|
|
endif()
|
|
|
|
if(CONFIG_ETH_USE_ESP32_EMAC)
|
|
list(APPEND srcs "emac_hal.c")
|
|
endif()
|
|
|
|
if(${target} STREQUAL "esp32")
|
|
list(APPEND srcs
|
|
"dac_hal.c"
|
|
"sdio_slave_hal.c"
|
|
"touch_sensor_hal.c"
|
|
"aes_hal.c"
|
|
"esp32/adc_hal.c"
|
|
"esp32/brownout_hal.c"
|
|
"esp32/interrupt_descriptor_table.c"
|
|
"esp32/touch_sensor_hal.c"
|
|
"esp32/gpio_hal_workaround.c")
|
|
endif()
|
|
|
|
if(${target} STREQUAL "esp32s2")
|
|
list(APPEND srcs
|
|
"dac_hal.c"
|
|
"spi_flash_hal_gpspi.c"
|
|
"spi_slave_hd_hal.c"
|
|
"touch_sensor_hal.c"
|
|
"usb_hal.c"
|
|
"usb_phy_hal.c"
|
|
"xt_wdt_hal.c"
|
|
"aes_hal.c"
|
|
"esp32s2/brownout_hal.c"
|
|
"esp32s2/cp_dma_hal.c"
|
|
"esp32s2/touch_sensor_hal.c"
|
|
"esp32s2/dac_hal.c"
|
|
"esp32s2/interrupt_descriptor_table.c"
|
|
"usbh_hal.c")
|
|
endif()
|
|
|
|
if(${target} STREQUAL "esp32s3")
|
|
list(APPEND srcs
|
|
"ds_hal.c"
|
|
"lcd_hal.c"
|
|
"spi_flash_hal_gpspi.c"
|
|
"spi_slave_hd_hal.c"
|
|
"touch_sensor_hal.c"
|
|
"usb_hal.c"
|
|
"usb_phy_hal.c"
|
|
"xt_wdt_hal.c"
|
|
"aes_hal.c"
|
|
"esp32s3/brownout_hal.c"
|
|
"esp32s3/hmac_hal.c"
|
|
"esp32s3/interrupt_descriptor_table.c"
|
|
"esp32s3/touch_sensor_hal.c"
|
|
"esp32s3/rtc_cntl_hal.c"
|
|
"usbh_hal.c")
|
|
endif()
|
|
|
|
if(${target} STREQUAL "esp32c3")
|
|
list(APPEND srcs
|
|
"ds_hal.c"
|
|
"spi_flash_hal_gpspi.c"
|
|
"spi_slave_hd_hal.c"
|
|
"xt_wdt_hal.c"
|
|
"aes_hal.c"
|
|
"esp32c3/adc_hal.c"
|
|
"esp32c3/brownout_hal.c"
|
|
"esp32c3/hmac_hal.c"
|
|
"esp32c3/rtc_cntl_hal.c")
|
|
endif()
|
|
|
|
if(${target} STREQUAL "esp32h2")
|
|
list(APPEND srcs
|
|
"ds_hal.c"
|
|
"spi_flash_hal_gpspi.c"
|
|
"spi_slave_hd_hal.c"
|
|
"aes_hal.c"
|
|
"esp32h2/brownout_hal.c"
|
|
"esp32h2/hmac_hal.c"
|
|
"esp32h2/rtc_cntl_hal.c")
|
|
endif()
|
|
|
|
if(${target} STREQUAL "esp32c2")
|
|
list(APPEND srcs
|
|
"ecc_hal.c"
|
|
"spi_flash_hal_gpspi.c"
|
|
"spi_slave_hd_hal.c"
|
|
"esp32c2/brownout_hal.c"
|
|
"esp32c2/rtc_cntl_hal.c")
|
|
endif()
|
|
endif()
|
|
|
|
idf_component_register(SRCS ${srcs}
|
|
INCLUDE_DIRS ${includes}
|
|
PRIV_INCLUDE_DIRS ${priv_include}
|
|
REQUIRES soc esp_rom
|
|
LDFRAGMENTS linker.lf)
|
|
|
|
if(CONFIG_HAL_DEFAULT_ASSERTION_LEVEL EQUAL 1)
|
|
target_link_libraries(${COMPONENT_LIB} INTERFACE "-u abort")
|
|
elseif(CONFIG_HAL_DEFAULT_ASSERTION_LEVEL EQUAL 2)
|
|
target_link_libraries(${COMPONENT_LIB} INTERFACE "-u __assert_func")
|
|
endif()
|