Lines Matching refs:buf_phys_addr
754 u32 buf_phys_addr; /* physical addr of transmitted buffer */ member
764 u32 buf_phys_addr; /* physical address of the buffer */ member
987 tx_desc->buf_phys_addr; in mvpp2_txq_inc_put()
3422 dma_addr_t buf_phys_addr; in mvpp2_bm_bufs_free() local
3426 buf_phys_addr = mvpp2_read(priv, in mvpp2_bm_bufs_free()
3430 dma_unmap_single(dev, buf_phys_addr, in mvpp2_bm_bufs_free()
3552 dma_addr_t *buf_phys_addr, in mvpp2_skb_alloc() argument
3569 *buf_phys_addr = phys_addr; in mvpp2_skb_alloc()
3593 u32 buf_phys_addr, u32 buf_virt_addr) in mvpp2_bm_pool_put() argument
3596 mvpp2_write(port->priv, MVPP2_BM_PHY_RLS_REG(pool), buf_phys_addr); in mvpp2_bm_pool_put()
3601 u32 buf_phys_addr, u32 buf_virt_addr, in mvpp2_bm_pool_mc_put() argument
3610 buf_phys_addr | MVPP2_BM_PHY_RLS_MC_BUFF_MASK, in mvpp2_bm_pool_mc_put()
4406 dma_addr_t buf_phys_addr = in mvpp2_txq_bufs_free() local
4412 dma_unmap_single(port->dev->dev.parent, buf_phys_addr, in mvpp2_txq_bufs_free()
4570 mvpp2_pool_refill(port, bm, rx_desc->buf_phys_addr, in mvpp2_rxq_drop_pkts()
5075 buff_phys_addr = rx_desc->buf_phys_addr; in mvpp2_buff_hdr_rx()
5123 phys_addr = rx_desc->buf_phys_addr; in mvpp2_rx()
5144 mvpp2_pool_refill(port, bm, rx_desc->buf_phys_addr, in mvpp2_rx()
5192 dma_unmap_single(dev, desc->buf_phys_addr, in tx_desc_unmap_put()
5205 dma_addr_t buf_phys_addr; in mvpp2_tx_frag_process() local
5215 buf_phys_addr = dma_map_single(port->dev->dev.parent, addr, in mvpp2_tx_frag_process()
5218 if (dma_mapping_error(port->dev->dev.parent, buf_phys_addr)) { in mvpp2_tx_frag_process()
5223 tx_desc->packet_offset = buf_phys_addr & MVPP2_TX_DESC_ALIGN; in mvpp2_tx_frag_process()
5224 tx_desc->buf_phys_addr = buf_phys_addr & (~MVPP2_TX_DESC_ALIGN); in mvpp2_tx_frag_process()
5258 dma_addr_t buf_phys_addr; in mvpp2_tx() local
5283 buf_phys_addr = dma_map_single(dev->dev.parent, skb->data, in mvpp2_tx()
5285 if (unlikely(dma_mapping_error(dev->dev.parent, buf_phys_addr))) { in mvpp2_tx()
5290 tx_desc->packet_offset = buf_phys_addr & MVPP2_TX_DESC_ALIGN; in mvpp2_tx()
5291 tx_desc->buf_phys_addr = buf_phys_addr & ~MVPP2_TX_DESC_ALIGN; in mvpp2_tx()