2020-08-08 08:15:27 -04:00
|
|
|
idf_build_get_property(target IDF_TARGET)
|
|
|
|
|
2022-04-16 03:06:40 -04:00
|
|
|
set(srcs "mpu_hal.c"
|
2021-12-22 09:18:43 -05:00
|
|
|
"cpu_hal.c"
|
|
|
|
"efuse_hal.c"
|
2022-02-11 02:30:54 -05:00
|
|
|
"${target}/efuse_hal.c"
|
|
|
|
"mmu_hal.c")
|
2021-02-07 02:03:51 -05:00
|
|
|
|
2021-05-18 22:53:21 -04:00
|
|
|
set(includes "${target}/include" "include" "platform_port/include")
|
2020-08-08 08:15:27 -04:00
|
|
|
|
2022-05-06 06:57:14 -04:00
|
|
|
if(NOT CONFIG_HAL_WDT_USE_ROM_IMPL)
|
2022-04-16 03:06:40 -04:00
|
|
|
list(APPEND srcs "wdt_hal_iram.c")
|
|
|
|
endif()
|
|
|
|
|
2022-02-11 02:30:54 -05:00
|
|
|
if(NOT ${target} STREQUAL "esp32")
|
|
|
|
list(APPEND srcs "cache_hal.c")
|
|
|
|
endif()
|
|
|
|
|
2022-05-06 06:57:14 -04:00
|
|
|
if(${target} STREQUAL "esp32h2")
|
2021-12-30 07:31:38 -05:00
|
|
|
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()
|
|
|
|
|
2020-08-08 08:15:27 -04:00
|
|
|
if(NOT BOOTLOADER_BUILD)
|
|
|
|
list(APPEND srcs
|
2021-08-24 11:53:45 -04:00
|
|
|
"rtc_io_hal.c"
|
|
|
|
"spi_hal.c"
|
|
|
|
"spi_hal_iram.c"
|
|
|
|
"spi_slave_hal.c"
|
|
|
|
"spi_slave_hal_iram.c"
|
|
|
|
"timer_hal.c"
|
2022-01-02 03:14:17 -05:00
|
|
|
"timer_hal_iram.c"
|
2021-08-24 11:53:45 -04:00
|
|
|
"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"
|
2022-03-24 05:45:58 -04:00
|
|
|
"adc_hal_common.c"
|
2021-08-24 11:53:45 -04:00
|
|
|
"adc_hal.c")
|
2020-08-08 08:15:27 -04:00
|
|
|
|
2022-05-06 06:57:14 -04:00
|
|
|
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")
|
2022-04-24 04:40:32 -04:00
|
|
|
endif()
|
|
|
|
|
2020-08-08 08:15:27 -04:00
|
|
|
if(${target} STREQUAL "esp32")
|
|
|
|
list(APPEND srcs
|
2021-08-24 11:53:45 -04:00
|
|
|
"dac_hal.c"
|
|
|
|
"sdio_slave_hal.c"
|
|
|
|
"touch_sensor_hal.c"
|
2021-11-06 05:24:45 -04:00
|
|
|
"aes_hal.c"
|
2021-08-24 11:53:45 -04:00
|
|
|
"esp32/adc_hal.c"
|
|
|
|
"esp32/brownout_hal.c"
|
|
|
|
"esp32/interrupt_descriptor_table.c"
|
|
|
|
"esp32/touch_sensor_hal.c"
|
|
|
|
"esp32/gpio_hal_workaround.c")
|
2020-08-08 08:15:27 -04:00
|
|
|
endif()
|
|
|
|
|
|
|
|
if(${target} STREQUAL "esp32s2")
|
|
|
|
list(APPEND srcs
|
2020-11-26 00:06:21 -05:00
|
|
|
"dac_hal.c"
|
2020-08-08 08:15:27 -04:00
|
|
|
"spi_flash_hal_gpspi.c"
|
|
|
|
"spi_slave_hd_hal.c"
|
2020-11-26 00:06:21 -05:00
|
|
|
"touch_sensor_hal.c"
|
2021-05-06 04:20:54 -04:00
|
|
|
"usb_hal.c"
|
2021-08-19 08:28:28 -04:00
|
|
|
"usb_phy_hal.c"
|
2021-08-29 23:30:12 -04:00
|
|
|
"xt_wdt_hal.c"
|
2021-11-06 05:24:45 -04:00
|
|
|
"aes_hal.c"
|
2020-08-08 08:15:27 -04:00
|
|
|
"esp32s2/brownout_hal.c"
|
|
|
|
"esp32s2/cp_dma_hal.c"
|
|
|
|
"esp32s2/touch_sensor_hal.c"
|
2020-09-17 07:59:37 -04:00
|
|
|
"esp32s2/dac_hal.c"
|
2020-12-25 08:44:22 -05:00
|
|
|
"esp32s2/interrupt_descriptor_table.c"
|
2021-06-02 05:57:50 -04:00
|
|
|
"usbh_hal.c")
|
2020-08-08 08:15:27 -04:00
|
|
|
endif()
|
|
|
|
|
|
|
|
if(${target} STREQUAL "esp32s3")
|
|
|
|
list(APPEND srcs
|
2021-08-24 11:53:45 -04:00
|
|
|
"ds_hal.c"
|
2021-02-26 00:58:04 -05:00
|
|
|
"lcd_hal.c"
|
2020-08-18 05:11:46 -04:00
|
|
|
"spi_flash_hal_gpspi.c"
|
2020-09-08 05:05:49 -04:00
|
|
|
"spi_slave_hd_hal.c"
|
2020-11-26 00:06:21 -05:00
|
|
|
"touch_sensor_hal.c"
|
2021-05-06 04:20:54 -04:00
|
|
|
"usb_hal.c"
|
2021-08-19 08:28:28 -04:00
|
|
|
"usb_phy_hal.c"
|
2021-08-29 23:30:12 -04:00
|
|
|
"xt_wdt_hal.c"
|
2021-11-06 05:24:45 -04:00
|
|
|
"aes_hal.c"
|
2020-08-08 08:15:27 -04:00
|
|
|
"esp32s3/brownout_hal.c"
|
2021-08-02 02:31:43 -04:00
|
|
|
"esp32s3/hmac_hal.c"
|
2020-12-25 08:44:22 -05:00
|
|
|
"esp32s3/interrupt_descriptor_table.c"
|
2021-06-02 05:57:50 -04:00
|
|
|
"esp32s3/touch_sensor_hal.c"
|
2021-06-18 05:25:04 -04:00
|
|
|
"esp32s3/rtc_cntl_hal.c"
|
2021-06-02 05:57:50 -04:00
|
|
|
"usbh_hal.c")
|
2020-08-08 08:15:27 -04:00
|
|
|
endif()
|
2020-11-26 00:06:21 -05:00
|
|
|
|
|
|
|
if(${target} STREQUAL "esp32c3")
|
|
|
|
list(APPEND srcs
|
2020-09-30 05:27:33 -04:00
|
|
|
"ds_hal.c"
|
2021-04-02 00:41:21 -04:00
|
|
|
"spi_flash_hal_gpspi.c"
|
|
|
|
"spi_slave_hd_hal.c"
|
2021-08-29 23:30:12 -04:00
|
|
|
"xt_wdt_hal.c"
|
2021-11-06 05:24:45 -04:00
|
|
|
"aes_hal.c"
|
2020-11-26 00:06:21 -05:00
|
|
|
"esp32c3/adc_hal.c"
|
|
|
|
"esp32c3/brownout_hal.c"
|
|
|
|
"esp32c3/hmac_hal.c"
|
2020-12-24 08:02:32 -05:00
|
|
|
"esp32c3/rtc_cntl_hal.c")
|
2020-11-26 00:06:21 -05:00
|
|
|
endif()
|
2021-06-09 22:28:23 -04:00
|
|
|
|
|
|
|
if(${target} STREQUAL "esp32h2")
|
|
|
|
list(APPEND srcs
|
2021-08-24 11:53:45 -04:00
|
|
|
"ds_hal.c"
|
|
|
|
"spi_flash_hal_gpspi.c"
|
|
|
|
"spi_slave_hd_hal.c"
|
2021-11-06 05:24:45 -04:00
|
|
|
"aes_hal.c"
|
2021-08-24 11:53:45 -04:00
|
|
|
"esp32h2/brownout_hal.c"
|
|
|
|
"esp32h2/hmac_hal.c"
|
|
|
|
"esp32h2/rtc_cntl_hal.c")
|
2021-06-09 22:28:23 -04:00
|
|
|
endif()
|
2021-11-06 05:24:45 -04:00
|
|
|
|
2022-01-17 21:32:56 -05:00
|
|
|
if(${target} STREQUAL "esp32c2")
|
2021-11-06 05:24:45 -04:00
|
|
|
list(APPEND srcs
|
2022-01-05 12:17:44 -05:00
|
|
|
"ecc_hal.c"
|
2021-11-06 05:24:45 -04:00
|
|
|
"spi_flash_hal_gpspi.c"
|
|
|
|
"spi_slave_hd_hal.c"
|
2022-01-17 21:32:56 -05:00
|
|
|
"esp32c2/brownout_hal.c"
|
|
|
|
"esp32c2/rtc_cntl_hal.c")
|
2021-11-06 05:24:45 -04:00
|
|
|
endif()
|
2020-08-08 08:15:27 -04:00
|
|
|
endif()
|
|
|
|
|
|
|
|
idf_component_register(SRCS ${srcs}
|
|
|
|
INCLUDE_DIRS ${includes}
|
|
|
|
PRIV_INCLUDE_DIRS ${priv_include}
|
2021-12-22 09:18:43 -05:00
|
|
|
REQUIRES soc esp_rom
|
2020-08-08 08:15:27 -04:00
|
|
|
LDFRAGMENTS linker.lf)
|
2021-05-18 22:53:21 -04:00
|
|
|
|
|
|
|
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()
|