Lines Matching refs:aggr_txq
4060 struct mvpp2_tx_queue *aggr_txq, in mvpp2_aggr_txq_init() argument
4067 aggr_txq->descs = buffer_loc.aggr_tx_descs; in mvpp2_aggr_txq_init()
4068 aggr_txq->descs_dma = (dma_addr_t)buffer_loc.aggr_tx_descs; in mvpp2_aggr_txq_init()
4069 if (!aggr_txq->descs) in mvpp2_aggr_txq_init()
4073 BUG_ON(aggr_txq->descs != in mvpp2_aggr_txq_init()
4074 PTR_ALIGN(aggr_txq->descs, MVPP2_CPU_D_CACHE_LINE_SIZE)); in mvpp2_aggr_txq_init()
4076 aggr_txq->last_desc = aggr_txq->size - 1; in mvpp2_aggr_txq_init()
4079 aggr_txq->next_desc_to_proc = mvpp2_read(priv, in mvpp2_aggr_txq_init()
4086 txq_dma = aggr_txq->descs_dma; in mvpp2_aggr_txq_init()
4088 txq_dma = aggr_txq->descs_dma >> in mvpp2_aggr_txq_init()
5257 struct mvpp2_tx_queue *txq, *aggr_txq; in mvpp2_send() local
5263 aggr_txq = &port->priv->aggr_txqs[smp_processor_id()]; in mvpp2_send()
5266 tx_desc = mvpp2_txq_next_desc_get(aggr_txq); in mvpp2_send()