Searched refs:gdma_channel_handle_t (Results 1 – 14 of 14) sorted by relevance
| /hal_espressif-latest/components/esp_hw_support/include/esp_private/ |
| D | gdma.h | 26 typedef struct gdma_channel_t *gdma_channel_handle_t; typedef 33 …gdma_channel_handle_t sibling_chan; /*!< DMA sibling channel handle (NULL means having sibling is … 74 typedef bool (*gdma_event_callback_t)(gdma_channel_handle_t dma_chan, gdma_event_data_t *event_data… 135 esp_err_t gdma_new_channel(const gdma_channel_alloc_config_t *config, gdma_channel_handle_t *ret_ch… 151 esp_err_t gdma_connect(gdma_channel_handle_t dma_chan, gdma_trigger_t trig_periph); 163 esp_err_t gdma_disconnect(gdma_channel_handle_t dma_chan); 175 esp_err_t gdma_set_transfer_ability(gdma_channel_handle_t dma_chan, const gdma_transfer_ability_t *… 186 esp_err_t gdma_apply_strategy(gdma_channel_handle_t dma_chan, const gdma_strategy_config_t *config); 200 esp_err_t gdma_set_priority(gdma_channel_handle_t dma_chan, uint32_t priority); 212 esp_err_t gdma_del_channel(gdma_channel_handle_t dma_chan); [all …]
|
| /hal_espressif-latest/components/mbedtls/port/crypto_shared_gdma/ |
| D | esp_crypto_shared_gdma.c | 23 static gdma_channel_handle_t rx_channel; 24 static gdma_channel_handle_t tx_channel; 27 …hared_gdma_new_channel(gdma_channel_alloc_config_t *channel_config, gdma_channel_handle_t *channel) in crypto_shared_gdma_new_channel()
|
| /hal_espressif-latest/components/esp_hw_support/port/include/ |
| D | esp_async_memcpy_impl.h | 39 gdma_channel_handle_t tx_channel; 40 gdma_channel_handle_t rx_channel;
|
| /hal_espressif-latest/components/esp_hw_support/dma/ |
| D | gdma.c | 66 esp_err_t gdma_new_channel(const gdma_channel_alloc_config_t *config, gdma_channel_handle_t *ret_ch… in gdma_new_channel() 166 esp_err_t gdma_del_channel(gdma_channel_handle_t dma_chan) in gdma_del_channel() 177 esp_err_t gdma_get_channel_id(gdma_channel_handle_t dma_chan, int *channel_id) in gdma_get_channel_id() 188 esp_err_t gdma_connect(gdma_channel_handle_t dma_chan, gdma_trigger_t trig_periph) in gdma_connect() 233 esp_err_t gdma_disconnect(gdma_channel_handle_t dma_chan) in gdma_disconnect() 264 esp_err_t gdma_get_free_m2m_trig_id_mask(gdma_channel_handle_t dma_chan, uint32_t *mask) in gdma_get_free_m2m_trig_id_mask() 283 esp_err_t gdma_set_transfer_ability(gdma_channel_handle_t dma_chan, const gdma_transfer_ability_t *… in gdma_set_transfer_ability() 346 esp_err_t gdma_apply_strategy(gdma_channel_handle_t dma_chan, const gdma_strategy_config_t *config) in gdma_apply_strategy() 366 esp_err_t gdma_set_priority(gdma_channel_handle_t dma_chan, uint32_t priority) in gdma_set_priority() 384 esp_err_t gdma_register_tx_event_callbacks(gdma_channel_handle_t dma_chan, gdma_tx_event_callbacks_… in gdma_register_tx_event_callbacks() [all …]
|
| D | gdma_etm.c | 53 esp_err_t gdma_new_etm_event(gdma_channel_handle_t dma_chan, const gdma_etm_event_config_t *config,… in gdma_new_etm_event() 87 esp_err_t gdma_new_etm_task(gdma_channel_handle_t dma_chan, const gdma_etm_task_config_t *config, e… in gdma_new_etm_task()
|
| D | async_memcpy_impl_gdma.c | 22 IRAM_ATTR static bool async_memcpy_impl_rx_eof_callback(gdma_channel_handle_t dma_chan, gdma_event_… in async_memcpy_impl_rx_eof_callback()
|
| /hal_espressif-latest/components/esp_adc/ |
| D | adc_continuous_internal.h | 59 gdma_channel_handle_t rx_dma_channel; //dma rx channel handle
|
| D | adc_continuous.c | 63 static bool adc_dma_in_suc_eof_callback(gdma_channel_handle_t dma_chan, gdma_event_data_t *event_da… 254 static IRAM_ATTR bool adc_dma_in_suc_eof_callback(gdma_channel_handle_t dma_chan, gdma_event_data_t… in adc_dma_in_suc_eof_callback()
|
| /hal_espressif-latest/components/bt/porting/transport/driver/uart/ |
| D | hci_driver_uart_dma.c | 125 static DRAM_ATTR gdma_channel_handle_t s_rx_channel; 126 static DRAM_ATTR gdma_channel_handle_t s_tx_channel; 225 static IRAM_ATTR bool hci_uart_tl_rx_eof_callback(gdma_channel_handle_t dma_chan, gdma_event_data_t… in hci_uart_tl_rx_eof_callback() 239 static IRAM_ATTR bool hci_uart_tl_tx_eof_callback(gdma_channel_handle_t dma_chan, gdma_event_data_t… in hci_uart_tl_tx_eof_callback()
|
| /hal_espressif-latest/components/driver/spi/gpspi/ |
| D | spi_slave_hd.c | 33 gdma_channel_handle_t gdma_handle_tx; //varible for storge gdma handle 34 gdma_channel_handle_t gdma_handle_rx; 59 static bool spi_gdma_tx_channel_callback(gdma_channel_handle_t dma_chan, gdma_event_data_t *event_d… 471 static IRAM_ATTR bool spi_gdma_tx_channel_callback(gdma_channel_handle_t dma_chan, gdma_event_data_… in spi_gdma_tx_channel_callback()
|
| D | spi_common.c | 60 gdma_channel_handle_t tx_channel; 61 gdma_channel_handle_t rx_channel; 304 esp_err_t spicommon_gdma_get_handle(spi_host_device_t host_id, gdma_channel_handle_t *gdma_handle, … in spicommon_gdma_get_handle()
|
| /hal_espressif-latest/components/driver/deprecated/ |
| D | adc_dma_legacy.c | 67 gdma_channel_handle_t rx_dma_channel; //dma rx channel handle 100 static bool adc_dma_in_suc_eof_callback(gdma_channel_handle_t dma_chan, gdma_event_data_t *event_da… 340 static IRAM_ATTR bool adc_dma_in_suc_eof_callback(gdma_channel_handle_t dma_chan, gdma_event_data_t… in adc_dma_in_suc_eof_callback()
|
| D | i2s_legacy.c | 110 gdma_channel_handle_t rx_dma_chan; /*!< I2S rx gDMA channel handle*/ 111 gdma_channel_handle_t tx_dma_chan; /*!< I2S tx gDMA channel handle*/ 159 static bool IRAM_ATTR i2s_dma_rx_callback(gdma_channel_handle_t dma_chan, gdma_event_data_t *event_… in i2s_dma_rx_callback() 191 static bool IRAM_ATTR i2s_dma_tx_callback(gdma_channel_handle_t dma_chan, gdma_event_data_t *event_… in i2s_dma_tx_callback()
|
| /hal_espressif-latest/components/driver/include/esp_private/ |
| D | spi_common_internal.h | 150 esp_err_t spicommon_gdma_get_handle(spi_host_device_t host_id, gdma_channel_handle_t *gdma_handle, …
|