Lines Matching refs:buf_phys_addr
740 u32 buf_phys_addr; /* physical addr of transmitted buffer */ member
750 u32 buf_phys_addr; /* physical address of the buffer */ member
3527 dma_addr_t *buf_phys_addr, in mvpp2_skb_alloc() argument
3544 *buf_phys_addr = phys_addr; in mvpp2_skb_alloc()
3568 u32 buf_phys_addr, u32 buf_virt_addr) in mvpp2_bm_pool_put() argument
3571 mvpp2_write(port->priv, MVPP2_BM_PHY_RLS_REG(pool), buf_phys_addr); in mvpp2_bm_pool_put()
3576 u32 buf_phys_addr, u32 buf_virt_addr, in mvpp2_bm_pool_mc_put() argument
3585 buf_phys_addr | MVPP2_BM_PHY_RLS_MC_BUFF_MASK, in mvpp2_bm_pool_mc_put()
4419 dma_unmap_single(port->dev->dev.parent, tx_desc->buf_phys_addr, in mvpp2_txq_bufs_free()
4552 mvpp2_pool_refill(port, bm, rx_desc->buf_phys_addr, in mvpp2_rxq_drop_pkts()
5000 buff_phys_addr = rx_desc->buf_phys_addr; in mvpp2_buff_hdr_rx()
5065 mvpp2_pool_refill(port, bm, rx_desc->buf_phys_addr, in mvpp2_rx()
5110 dma_unmap_single(dev, desc->buf_phys_addr, in tx_desc_unmap_put()
5123 dma_addr_t buf_phys_addr; in mvpp2_tx_frag_process() local
5133 buf_phys_addr = dma_map_single(port->dev->dev.parent, addr, in mvpp2_tx_frag_process()
5136 if (dma_mapping_error(port->dev->dev.parent, buf_phys_addr)) { in mvpp2_tx_frag_process()
5141 tx_desc->packet_offset = buf_phys_addr & MVPP2_TX_DESC_ALIGN; in mvpp2_tx_frag_process()
5142 tx_desc->buf_phys_addr = buf_phys_addr & (~MVPP2_TX_DESC_ALIGN); in mvpp2_tx_frag_process()
5176 dma_addr_t buf_phys_addr; in mvpp2_tx() local
5201 buf_phys_addr = dma_map_single(dev->dev.parent, skb->data, in mvpp2_tx()
5203 if (unlikely(dma_mapping_error(dev->dev.parent, buf_phys_addr))) { in mvpp2_tx()
5208 tx_desc->packet_offset = buf_phys_addr & MVPP2_TX_DESC_ALIGN; in mvpp2_tx()
5209 tx_desc->buf_phys_addr = buf_phys_addr & ~MVPP2_TX_DESC_ALIGN; in mvpp2_tx()