Home
last modified time | relevance | path

Searched refs:ESP_INTR_FLAG_IRAM (Results 1 – 23 of 23) sorted by relevance

/hal_espressif-latest/components/esp_system/
Dcrosscore_int.c119 …err = esp_intr_alloc(ETS_FROM_CPU_INTR0_SOURCE, ESP_INTR_FLAG_IRAM, esp_crosscore_isr, (void*)&rea… in esp_crosscore_int_init()
121 …err = esp_intr_alloc(ETS_FROM_CPU_INTR1_SOURCE, ESP_INTR_FLAG_IRAM, esp_crosscore_isr, (void*)&rea… in esp_crosscore_int_init()
124 …err = esp_intr_alloc(ETS_FROM_CPU_INTR0_SOURCE, ESP_INTR_FLAG_IRAM, esp_crosscore_isr, (void*)&rea… in esp_crosscore_int_init()
/hal_espressif-latest/components/esp_system/port/
Dbrownout.c83 …esp_intr_alloc(ETS_LP_RTC_TIMER_INTR_SOURCE, ESP_INTR_FLAG_IRAM, &rtc_brownout_isr_handler, NULL, … in esp_brownout_init()
Dusb_console.c85 #define ISR_FLAG ESP_INTR_FLAG_IRAM
/hal_espressif-latest/components/esp_hw_support/dma/
Dgdma_priv.h28 #define GDMA_INTR_ALLOC_FLAGS (ESP_INTR_FLAG_IRAM | ESP_INTR_FLAG_INTRDISABLED)
Dasync_memcpy_impl_cp_dma.c47 …ret = esp_intr_alloc(ETS_DMA_COPY_INTR_SOURCE, ESP_INTR_FLAG_IRAM, async_memcpy_impl_default_isr_h… in async_memcpy_impl_init()
/hal_espressif-latest/components/esp_hw_support/include/
Desp_intr_alloc.h40 #define ESP_INTR_FLAG_IRAM (1<<10) ///< ISR can be called if cache is disabled macro
/hal_espressif-latest/components/esp_timer/src/
Desp_timer_impl_systimer.c156 | ESP_INTR_FLAG_IRAM; in esp_timer_impl_init()
Desp_timer_impl_lac.c232 int isr_flags = ((1 << 1) & ESP_INTR_FLAG_LEVELMASK) | ESP_INTR_FLAG_IRAM; in esp_timer_impl_init()
/hal_espressif-latest/components/esp_hw_support/
Drtc_module.c93 …err = esp_intr_alloc(ETS_RTC_CORE_INTR_SOURCE, ESP_INTR_FLAG_IRAM, &rtc_isr, NULL, &s_rtc_isr_hand… in rtc_isr_ensure_installed()
Dintr_alloc.c284 bool in_iram_flag = ((flags & ESP_INTR_FLAG_IRAM) != 0); in is_vect_desc_usable()
495 …if ((flags & ESP_INTR_FLAG_IRAM) && handler && !esp_ptr_in_iram(handler) && !esp_ptr_in_rtc_iram_f… in esp_intr_alloc_intrstatus()
601 if (flags & ESP_INTR_FLAG_IRAM) { in esp_intr_alloc_intrstatus()
/hal_espressif-latest/components/driver/deprecated/
Drmt_legacy.c996 if (intr_alloc_flags & ESP_INTR_FLAG_IRAM ) { in rmt_driver_install()
1005 if (!(intr_alloc_flags & ESP_INTR_FLAG_IRAM)) { in rmt_driver_install()
1031 if (!(intr_alloc_flags & ESP_INTR_FLAG_IRAM)) { in rmt_driver_install()
1048 if (!(p_rmt_obj[channel]->intr_alloc_flags & ESP_INTR_FLAG_IRAM)) { in rmt_driver_install()
1093 if (p_rmt_obj[channel]->intr_alloc_flags & ESP_INTR_FLAG_IRAM) { in rmt_write_items()
1189 if (p_rmt_obj[channel]->intr_alloc_flags & ESP_INTR_FLAG_IRAM) { in rmt_translator_init()
1237 if (p_rmt_obj[channel]->intr_alloc_flags & ESP_INTR_FLAG_IRAM) { in rmt_write_sample()
Dmcpwm_legacy.c43 #define MCPWM_INTR_FLAG ESP_INTR_FLAG_IRAM
/hal_espressif-latest/components/esp_adc/
Dadc_continuous.c198 …ret = esp_intr_alloc(spicommon_irqdma_source_for_host(adc_ctx->spi_host), ESP_INTR_FLAG_IRAM, adc_… in adc_continuous_new_handle()
214 …ret = esp_intr_alloc(i2s_periph_signal[adc_ctx->i2s_host].irq, ESP_INTR_FLAG_IRAM, adc_dma_intr_ha… in adc_continuous_new_handle()
/hal_espressif-latest/components/bt/controller/esp32/
Dhli_api.c204 …ESP_ERROR_CHECK(esp_intr_alloc(ETS_INTERNAL_SW1_INTR_SOURCE, ESP_INTR_FLAG_IRAM, queue_isr_handler… in hli_queue_setup()
/hal_espressif-latest/components/driver/uart/
Duart.c1530 if ((intr_alloc_flags & ESP_INTR_FLAG_IRAM) == 0) { in uart_driver_install()
1532 intr_alloc_flags |= ESP_INTR_FLAG_IRAM; in uart_driver_install()
1535 if ((intr_alloc_flags & ESP_INTR_FLAG_IRAM) != 0) { in uart_driver_install()
1537 intr_alloc_flags &= ~ESP_INTR_FLAG_IRAM; in uart_driver_install()
/hal_espressif-latest/components/driver/spi/gpspi/
Dspi_slave.c141 …SPI_CHECK((bus_config->intr_flags & ESP_INTR_FLAG_IRAM)==0, "ESP_INTR_FLAG_IRAM should be disabled… in spi_slave_initialize()
Dspi_common.c778 …SPI_CHECK((bus_config->intr_flags & ESP_INTR_FLAG_IRAM)==0, "ESP_INTR_FLAG_IRAM should be disabled… in spi_bus_initialize()
/hal_espressif-latest/components/bt/controller/esp32c2/
Dbt.c556 …int rc = esp_intr_alloc(source, flags | ESP_INTR_FLAG_IRAM, handler, arg, (intr_handle_t *)ret_han… in esp_intr_alloc_wrapper()
/hal_espressif-latest/zephyr/esp32c3/src/bt/
Desp_bt_adapter.c447 p.flags = ESP_INTR_FLAG_LEVEL3 | ESP_INTR_FLAG_IRAM; in interrupt_alloc_wrapper()
/hal_espressif-latest/zephyr/esp32s3/src/bt/
Desp_bt_adapter.c445 p.flags = ESP_INTR_FLAG_LEVEL3 | ESP_INTR_FLAG_IRAM; in interrupt_alloc_wrapper()
/hal_espressif-latest/components/bt/controller/esp32c6/
Dbt.c501 int rc = esp_intr_alloc(source, flags | ESP_INTR_FLAG_IRAM, handler, in esp_intr_alloc_wrapper()
/hal_espressif-latest/components/bt/controller/esp32h2/
Dbt.c498 int rc = esp_intr_alloc(source, flags | ESP_INTR_FLAG_IRAM, handler, in esp_intr_alloc_wrapper()
/hal_espressif-latest/components/bt/controller/esp32c3/
Dbt.c503 p.flags = ESP_INTR_FLAG_LEVEL3 | ESP_INTR_FLAG_IRAM; in interrupt_alloc_wrapper()