Home
last modified time | relevance | path

Searched refs:gdma_new_channel (Results 1 – 9 of 9) sorted by relevance

/hal_espressif-latest/components/esp_hw_support/dma/
Dasync_memcpy_impl_gdma.c39 ret = gdma_new_channel(&tx_alloc_config, &impl->tx_channel); in async_memcpy_impl_init()
49 ret = gdma_new_channel(&rx_alloc_config, &impl->rx_channel); in async_memcpy_impl_init()
Dgdma.c66 esp_err_t gdma_new_channel(const gdma_channel_alloc_config_t *config, gdma_channel_handle_t *ret_ch… in gdma_new_channel() function
/hal_espressif-latest/components/mbedtls/port/crypto_shared_gdma/
Desp_crypto_shared_gdma.c33 ret = gdma_new_channel(channel_config, channel); in crypto_shared_gdma_new_channel()
/hal_espressif-latest/components/esp_hw_support/include/esp_private/
Dgdma.h135 esp_err_t gdma_new_channel(const gdma_channel_alloc_config_t *config, gdma_channel_handle_t *ret_ch…
/hal_espressif-latest/components/bt/porting/transport/driver/uart/
Dhci_driver_uart_dma.c447 ESP_ERROR_CHECK(gdma_new_channel(&tx_channel_config, &s_tx_channel)); in hci_driver_uart_dma_install()
453 ESP_ERROR_CHECK(gdma_new_channel(&rx_channel_config, &s_rx_channel)); in hci_driver_uart_dma_install()
/hal_espressif-latest/components/driver/spi/gpspi/
Dspi_common.c234 ret = gdma_new_channel(&tx_alloc_config, &ctx->tx_channel); in alloc_dma_chan()
243 ret = gdma_new_channel(&rx_alloc_config, &ctx->rx_channel); in alloc_dma_chan()
/hal_espressif-latest/components/driver/deprecated/
Dadc_dma_legacy.c251 ret = gdma_new_channel(&rx_alloc_config, &s_adc_digi_ctx->rx_dma_channel); in adc_digi_initialize()
Di2s_legacy.c333 …ESP_RETURN_ON_ERROR(gdma_new_channel(&dma_cfg, &p_i2s[i2s_num]->tx_dma_chan), TAG, "Register tx dm… in i2s_dma_intr_init()
342 …ESP_RETURN_ON_ERROR(gdma_new_channel(&dma_cfg, &p_i2s[i2s_num]->rx_dma_chan), TAG, "Register rx dm… in i2s_dma_intr_init()
/hal_espressif-latest/components/esp_adc/
Dadc_continuous.c164 ret = gdma_new_channel(&rx_alloc_config, &adc_ctx->rx_dma_channel); in adc_continuous_new_handle()