Lines Matching full:busy
257 /* The busy channel is pertinent if not overridden by the HAL */ in dma_stm32_irq_handler()
258 if ((stream->hal_override != true) && (stream->busy == false)) { in dma_stm32_irq_handler()
261 * ignore irq if the channel is not busy anymore in dma_stm32_irq_handler()
277 stream->busy = false; in dma_stm32_irq_handler()
285 stream->busy = false; in dma_stm32_irq_handler()
364 if (stream->busy) { in dma_stm32_configure()
365 LOG_ERR("dma stream %d is busy.", id); in dma_stm32_configure()
379 * Retain that the channel is busy and proceed to the minimal in dma_stm32_configure()
382 stream->busy = true; in dma_stm32_configure()
419 stream->busy = true; in dma_stm32_configure()
549 /* When reloading the dma, the stream is busy again before enabling */ in dma_stm32_reload()
550 stream->busy = true; in dma_stm32_reload()
576 /* When starting the dma, the stream is busy before enabling */ in dma_stm32_start()
578 stream->busy = true; in dma_stm32_start()
642 stream->busy = false; in dma_stm32_stop()
660 stream->busy = false; in dma_stm32_stop()
679 config->streams[i].busy = false; in dma_stm32_init()
705 stat->busy = stream->busy; in dma_stm32_get_status()