Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 71f021cf authored by Vinod Koul's avatar Vinod Koul
Browse files

Merge branch 'topic/stm' into for-linus

parents 4b4447bf cc832dc8
Loading
Loading
Loading
Loading
+6 −14
Original line number Original line Diff line number Diff line
@@ -308,20 +308,12 @@ static bool stm32_dma_fifo_threshold_is_allowed(u32 burst, u32 threshold,


static bool stm32_dma_is_burst_possible(u32 buf_len, u32 threshold)
static bool stm32_dma_is_burst_possible(u32 buf_len, u32 threshold)
{
{
	switch (threshold) {
	/*
	case STM32_DMA_FIFO_THRESHOLD_FULL:
	 * Buffer or period length has to be aligned on FIFO depth.
		if (buf_len >= STM32_DMA_MAX_BURST)
	 * Otherwise bytes may be stuck within FIFO at buffer or period
			return true;
	 * length.
		else
	 */
			return false;
	return ((buf_len % ((threshold + 1) * 4)) == 0);
	case STM32_DMA_FIFO_THRESHOLD_HALFFULL:
		if (buf_len >= STM32_DMA_MAX_BURST / 2)
			return true;
		else
			return false;
	default:
		return false;
	}
}
}


static u32 stm32_dma_get_best_burst(u32 buf_len, u32 max_burst, u32 threshold,
static u32 stm32_dma_get_best_burst(u32 buf_len, u32 max_burst, u32 threshold,