2020-07-29 13:13:51 +08:00
|
|
|
idf_build_get_property(target IDF_TARGET)
|
|
|
|
|
2020-01-17 11:47:08 +08:00
|
|
|
set(srcs
|
2022-04-29 13:40:23 +08:00
|
|
|
"gpio/gpio.c"
|
|
|
|
"gpio/rtc_io.c"
|
2022-10-11 18:04:54 +08:00
|
|
|
"gpio/gpio_glitch_filter_ops.c"
|
2022-07-13 13:17:32 +08:00
|
|
|
"gptimer/gptimer.c"
|
2019-04-28 15:38:23 +08:00
|
|
|
"sdspi_crc.c"
|
|
|
|
"sdspi_host.c"
|
|
|
|
"sdspi_transaction.c"
|
|
|
|
"spi_common.c"
|
|
|
|
"spi_master.c"
|
|
|
|
"spi_slave.c"
|
2019-10-24 19:00:26 +08:00
|
|
|
"spi_bus_lock.c"
|
2019-04-28 15:38:23 +08:00
|
|
|
"uart.c")
|
2019-06-12 15:53:57 +08:00
|
|
|
|
2022-03-21 10:57:58 +08:00
|
|
|
# deprecated source files
|
|
|
|
list(APPEND srcs "deprecated/timer_legacy.c")
|
|
|
|
|
2022-03-04 18:04:20 +08:00
|
|
|
set(includes "include" "deprecated")
|
|
|
|
if(EXISTS "${CMAKE_CURRENT_SOURCE_DIR}/${target}/include")
|
|
|
|
list(APPEND includes "${target}/include")
|
|
|
|
endif()
|
2019-08-16 19:06:34 +10:00
|
|
|
|
2022-08-31 20:12:24 +08:00
|
|
|
if(CONFIG_SOC_LEDC_SUPPORTED)
|
|
|
|
list(APPEND srcs "ledc.c")
|
|
|
|
endif()
|
|
|
|
|
2022-07-13 13:17:32 +08:00
|
|
|
if(CONFIG_SOC_TIMER_SUPPORT_ETM)
|
|
|
|
list(APPEND srcs "gptimer/gptimer_etm.c")
|
|
|
|
endif()
|
|
|
|
|
2022-08-31 20:12:24 +08:00
|
|
|
if(CONFIG_SOC_I2C_SUPPORTED)
|
|
|
|
list(APPEND srcs "i2c.c")
|
|
|
|
endif()
|
|
|
|
|
2021-12-15 14:15:32 +08:00
|
|
|
if(CONFIG_SOC_ADC_SUPPORTED)
|
2022-07-15 12:52:44 +08:00
|
|
|
list(APPEND srcs "deprecated/adc_legacy.c")
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if(CONFIG_SOC_ADC_DMA_SUPPORTED)
|
|
|
|
list(APPEND srcs "deprecated/adc_dma_legacy.c")
|
2021-12-15 14:15:32 +08:00
|
|
|
endif()
|
|
|
|
|
2021-11-05 17:23:24 +08:00
|
|
|
if(CONFIG_SOC_MCPWM_SUPPORTED)
|
2022-05-28 17:03:05 +08:00
|
|
|
list(APPEND srcs "mcpwm/mcpwm_cap.c"
|
|
|
|
"mcpwm/mcpwm_cmpr.c"
|
|
|
|
"mcpwm/mcpwm_com.c"
|
|
|
|
"mcpwm/mcpwm_fault.c"
|
|
|
|
"mcpwm/mcpwm_gen.c"
|
|
|
|
"mcpwm/mcpwm_oper.c"
|
|
|
|
"mcpwm/mcpwm_sync.c"
|
|
|
|
"mcpwm/mcpwm_timer.c"
|
|
|
|
"deprecated/mcpwm_legacy.c")
|
2021-12-14 10:08:26 +08:00
|
|
|
endif()
|
|
|
|
|
2021-12-01 20:15:05 +08:00
|
|
|
if(CONFIG_SOC_DEDICATED_GPIO_SUPPORTED)
|
2022-04-29 13:40:23 +08:00
|
|
|
list(APPEND srcs "gpio/dedic_gpio.c")
|
2021-12-01 20:15:05 +08:00
|
|
|
endif()
|
|
|
|
|
2022-10-11 18:04:54 +08:00
|
|
|
if(CONFIG_SOC_GPIO_SUPPORT_PIN_GLITCH_FILTER)
|
|
|
|
list(APPEND srcs "gpio/gpio_pin_glitch_filter.c")
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if(CONFIG_SOC_GPIO_FLEX_GLITCH_FILTER_NUM GREATER 0)
|
|
|
|
list(APPEND srcs "gpio/gpio_flex_glitch_filter.c")
|
|
|
|
endif()
|
|
|
|
|
2022-06-22 16:36:35 +08:00
|
|
|
if(CONFIG_SOC_SDM_SUPPORTED)
|
|
|
|
list(APPEND srcs "sdm.c" "deprecated/sigma_delta_legacy.c")
|
2021-12-24 11:10:38 +08:00
|
|
|
endif()
|
|
|
|
|
|
|
|
if(CONFIG_SOC_RMT_SUPPORTED)
|
2022-04-07 11:59:46 +08:00
|
|
|
list(APPEND srcs "rmt/rmt_common.c" "rmt/rmt_encoder.c" "rmt/rmt_rx.c" "rmt/rmt_tx.c" "deprecated/rmt_legacy.c")
|
2021-12-24 11:10:38 +08:00
|
|
|
endif()
|
|
|
|
|
|
|
|
if(CONFIG_SOC_PCNT_SUPPORTED)
|
2022-03-21 10:57:58 +08:00
|
|
|
list(APPEND srcs "pulse_cnt.c" "deprecated/pcnt_legacy.c")
|
2021-12-24 11:10:38 +08:00
|
|
|
endif()
|
|
|
|
|
2022-08-22 22:03:30 +08:00
|
|
|
if(CONFIG_SOC_GPIO_SUPPORT_ETM)
|
|
|
|
list(APPEND srcs "gpio/gpio_etm.c")
|
|
|
|
endif()
|
|
|
|
|
2022-02-08 21:22:36 +01:00
|
|
|
if(CONFIG_SOC_SDMMC_HOST_SUPPORTED)
|
|
|
|
list(APPEND srcs "sdmmc_transaction.c" "sdmmc_host.c")
|
|
|
|
endif()
|
|
|
|
|
2022-02-16 10:22:46 +08:00
|
|
|
if(CONFIG_SOC_I2S_SUPPORTED)
|
2021-08-18 19:45:51 +08:00
|
|
|
list(APPEND srcs "i2s/i2s_common.c"
|
|
|
|
"i2s/i2s_std.c"
|
2022-04-07 15:32:46 +08:00
|
|
|
"deprecated/i2s_legacy.c")
|
2021-08-18 19:45:51 +08:00
|
|
|
if(CONFIG_SOC_I2S_SUPPORTS_PDM)
|
|
|
|
list(APPEND srcs "i2s/i2s_pdm.c")
|
|
|
|
endif()
|
|
|
|
if(CONFIG_SOC_I2S_SUPPORTS_TDM)
|
|
|
|
list(APPEND srcs "i2s/i2s_tdm.c")
|
|
|
|
endif()
|
2022-02-16 10:22:46 +08:00
|
|
|
endif()
|
|
|
|
|
2022-03-04 18:04:20 +08:00
|
|
|
if(CONFIG_SOC_TEMP_SENSOR_SUPPORTED)
|
|
|
|
list(APPEND srcs "temperature_sensor.c"
|
2022-03-21 10:57:58 +08:00
|
|
|
"deprecated/rtc_temperature_legacy.c")
|
2022-03-04 18:04:20 +08:00
|
|
|
endif()
|
|
|
|
|
2022-02-16 10:22:46 +08:00
|
|
|
if(CONFIG_SOC_TWAI_SUPPORTED)
|
|
|
|
list(APPEND srcs "twai.c")
|
|
|
|
endif()
|
2021-12-24 11:10:38 +08:00
|
|
|
|
2022-04-29 13:40:23 +08:00
|
|
|
if(CONFIG_SOC_USB_SERIAL_JTAG_SUPPORTED)
|
|
|
|
list(APPEND srcs "usb_serial_jtag.c")
|
|
|
|
endif()
|
|
|
|
|
2022-02-16 18:30:38 +08:00
|
|
|
if(CONFIG_SOC_SPI_SUPPORT_SLAVE_HD_VER2)
|
|
|
|
list(APPEND srcs "spi_slave_hd.c")
|
|
|
|
endif()
|
|
|
|
|
2022-07-21 13:42:25 +08:00
|
|
|
if(CONFIG_SOC_TOUCH_SENSOR_SUPPORTED)
|
2022-05-09 17:33:51 +08:00
|
|
|
list(APPEND srcs "touch_sensor_common.c"
|
|
|
|
"${target}/touch_sensor.c")
|
|
|
|
endif()
|
|
|
|
|
2022-05-28 17:03:05 +08:00
|
|
|
if(CONFIG_SOC_SDIO_SLAVE_SUPPORTED)
|
|
|
|
list(APPEND srcs "sdio_slave.c")
|
|
|
|
endif()
|
|
|
|
|
2022-10-10 19:17:22 +08:00
|
|
|
if(CONFIG_SOC_DAC_SUPPORTED)
|
|
|
|
list(APPEND srcs "dac/dac_oneshot.c"
|
|
|
|
"dac/dac_cosine.c"
|
2022-11-03 12:13:58 +08:00
|
|
|
"dac/dac_continuous.c"
|
2022-10-10 19:17:22 +08:00
|
|
|
"dac/dac_common.c"
|
|
|
|
"dac/${target}/dac_dma.c"
|
|
|
|
"deprecated/dac_common_legacy.c"
|
|
|
|
"deprecated/${target}/dac_legacy.c")
|
|
|
|
endif()
|
|
|
|
|
2020-07-29 13:13:51 +08:00
|
|
|
if(${target} STREQUAL "esp32")
|
2022-05-24 17:26:36 +08:00
|
|
|
list(APPEND srcs "deprecated/adc_i2s_deprecated.c")
|
2019-06-20 16:13:47 +08:00
|
|
|
endif()
|
|
|
|
|
2022-01-28 19:47:04 +08:00
|
|
|
if(BOOTLOADER_BUILD)
|
|
|
|
# Bootloader shall NOT depend on the drivers
|
|
|
|
idf_component_register()
|
|
|
|
else()
|
|
|
|
# (REQUIRES cannot hide soc headers, since many arguments in the driver headers are chip-dependent)
|
2022-07-15 12:52:44 +08:00
|
|
|
# (Legacy drivers requires `esp_adc`, due to ADC HW resource mutex logics are there.
|
|
|
|
# Can be removed together with legacy drivers)
|
2022-01-28 19:47:04 +08:00
|
|
|
idf_component_register(SRCS "${srcs}"
|
|
|
|
INCLUDE_DIRS ${includes}
|
|
|
|
PRIV_INCLUDE_DIRS "include/driver"
|
2022-07-21 15:25:33 +08:00
|
|
|
PRIV_REQUIRES efuse esp_timer
|
2022-01-28 19:47:04 +08:00
|
|
|
REQUIRES esp_pm esp_ringbuf freertos soc hal esp_hw_support
|
|
|
|
LDFRAGMENTS linker.lf)
|
|
|
|
endif()
|