Home
last modified time | relevance | path

Searched refs:MTK_FQ_DMA_LENGTH (Results 1 – 2 of 2) sorted by relevance

/linux/drivers/net/ethernet/mediatek/
H A Dmtk_eth_soc.c1316 for (j = 0; j < DIV_ROUND_UP(soc->tx.fq_dma_size, MTK_FQ_DMA_LENGTH); j++) { in mtk_init_fq_dma()
1317 len = min_t(int, cnt - j * MTK_FQ_DMA_LENGTH, MTK_FQ_DMA_LENGTH); in mtk_init_fq_dma()
1333 txd = eth->scratch_ring + (j * MTK_FQ_DMA_LENGTH + i) * soc->tx.desc_size; in mtk_init_fq_dma()
1335 if (j * MTK_FQ_DMA_LENGTH + i < cnt) in mtk_init_fq_dma()
1337 (j * MTK_FQ_DMA_LENGTH + i + 1) * soc->tx.desc_size; in mtk_init_fq_dma()
3317 for (i = 0; i < DIV_ROUND_UP(soc->tx.fq_dma_size, MTK_FQ_DMA_LENGTH); i++) { in mtk_dma_free()
H A Dmtk_eth_soc.h37 #define MTK_FQ_DMA_LENGTH 2048 macro