Lines Matching full:busy
99 /* The busy channel is pertinent if not overridden by the HAL */ in dma_stm32_irq_handler()
100 if ((stream->hal_override != true) && (stream->busy == false)) { in dma_stm32_irq_handler()
103 * ignore irq if the channel is not busy anymore in dma_stm32_irq_handler()
124 stream->busy = false; in dma_stm32_irq_handler()
137 stream->busy = false; in dma_stm32_irq_handler()
292 if (stream->busy) { in dma_stm32_configure()
293 LOG_ERR("dma stream %d is busy.", id); in dma_stm32_configure()
307 * Retain that the channel is busy and proceed to the minimal in dma_stm32_configure()
310 stream->busy = true; in dma_stm32_configure()
358 stream->busy = true; in dma_stm32_configure()
557 /* When reloading the dma, the stream is busy again before enabling */ in dma_stm32_reload()
558 stream->busy = true; in dma_stm32_reload()
584 /* When starting the dma, the stream is busy before enabling */ in dma_stm32_start()
586 stream->busy = true; in dma_stm32_start()
608 stream->busy = false; in dma_stm32_stop()
630 stream->busy = false; in dma_stm32_stop()
654 config->streams[i].busy = false; in dma_stm32_init()
684 stat->busy = stream->busy; in dma_stm32_get_status()