Searched refs:bi (Results 1 – 8 of 8) sorted by relevance
| /dpdk/drivers/net/txgbe/base/ |
| H A D | txgbe_mng.c | 117 u32 bi; in txgbe_host_interface_command() local 141 for (bi = 0; bi < dword_len; bi++) in txgbe_host_interface_command() 142 buffer[bi] = rd32a(hw, TXGBE_MNGMBX, bi); in txgbe_host_interface_command() 150 for (; bi < dword_len + 2; bi++) in txgbe_host_interface_command() 151 buffer[bi] = rd32a(hw, TXGBE_MNGMBX, bi); in txgbe_host_interface_command() 172 for (; bi <= dword_len; bi++) in txgbe_host_interface_command() 173 buffer[bi] = rd32a(hw, TXGBE_MNGMBX, bi); in txgbe_host_interface_command()
|
| /dpdk/drivers/net/ngbe/base/ |
| H A D | ngbe_mng.c | 93 u32 bi; in ngbe_host_interface_command() local 117 for (bi = 0; bi < dword_len; bi++) in ngbe_host_interface_command() 118 buffer[bi] = rd32a(hw, NGBE_MNGMBX, bi); in ngbe_host_interface_command() 126 for (; bi < dword_len + 2; bi++) in ngbe_host_interface_command() 127 buffer[bi] = rd32a(hw, NGBE_MNGMBX, bi); in ngbe_host_interface_command() 148 for (; bi <= dword_len; bi++) in ngbe_host_interface_command() 149 buffer[bi] = rd32a(hw, NGBE_MNGMBX, bi); in ngbe_host_interface_command()
|
| /dpdk/drivers/net/ice/base/ |
| H A D | ice_controlq.c | 165 struct ice_dma_mem *bi; in ice_alloc_rq_bufs() local 167 bi = &cq->rq.r.rq_bi[i]; in ice_alloc_rq_bufs() 168 bi->va = ice_alloc_dma_mem(hw, bi, cq->rq_buf_size); in ice_alloc_rq_bufs() 169 if (!bi->va) in ice_alloc_rq_bufs() 187 CPU_TO_LE32(ICE_HI_DWORD(bi->pa)); in ice_alloc_rq_bufs() 226 struct ice_dma_mem *bi; in ice_alloc_sq_bufs() local 228 bi = &cq->sq.r.sq_bi[i]; in ice_alloc_sq_bufs() 229 bi->va = ice_alloc_dma_mem(hw, bi, cq->sq_buf_size); in ice_alloc_sq_bufs() 230 if (!bi->va) in ice_alloc_sq_bufs() 1166 struct ice_dma_mem *bi; in ice_clean_rq_elem() local [all …]
|
| /dpdk/drivers/common/iavf/ |
| H A D | iavf_adminq.c | 109 struct iavf_dma_mem *bi; in iavf_alloc_arq_bufs() local 125 bi = &hw->aq.arq.r.arq_bi[i]; in iavf_alloc_arq_bufs() 126 ret_code = iavf_allocate_dma_mem(hw, bi, in iavf_alloc_arq_bufs() 143 desc->datalen = CPU_TO_LE16((u16)bi->size); in iavf_alloc_arq_bufs() 148 CPU_TO_LE32(IAVF_HI_DWORD(bi->pa)); in iavf_alloc_arq_bufs() 150 CPU_TO_LE32(IAVF_LO_DWORD(bi->pa)); in iavf_alloc_arq_bufs() 175 struct iavf_dma_mem *bi; in iavf_alloc_asq_bufs() local 187 bi = &hw->aq.asq.r.asq_bi[i]; in iavf_alloc_asq_bufs() 188 ret_code = iavf_allocate_dma_mem(hw, bi, in iavf_alloc_asq_bufs() 879 struct iavf_dma_mem *bi; in iavf_clean_arq_element() local [all …]
|
| /dpdk/drivers/net/i40e/base/ |
| H A D | i40e_adminq.c | 124 struct i40e_dma_mem *bi; in i40e_alloc_arq_bufs() local 140 bi = &hw->aq.arq.r.arq_bi[i]; in i40e_alloc_arq_bufs() 141 ret_code = i40e_allocate_dma_mem(hw, bi, in i40e_alloc_arq_bufs() 158 desc->datalen = CPU_TO_LE16((u16)bi->size); in i40e_alloc_arq_bufs() 163 CPU_TO_LE32(I40E_HI_DWORD(bi->pa)); in i40e_alloc_arq_bufs() 165 CPU_TO_LE32(I40E_LO_DWORD(bi->pa)); in i40e_alloc_arq_bufs() 190 struct i40e_dma_mem *bi; in i40e_alloc_asq_bufs() local 202 bi = &hw->aq.asq.r.asq_bi[i]; in i40e_alloc_asq_bufs() 203 ret_code = i40e_allocate_dma_mem(hw, bi, in i40e_alloc_asq_bufs() 1146 struct i40e_dma_mem *bi; local [all …]
|
| /dpdk/drivers/net/ixgbe/base/ |
| H A D | ixgbe_common.c | 4561 u32 bi; in ixgbe_host_interface_command() local 4587 for (bi = 0; bi < dword_len; bi++) { in ixgbe_host_interface_command() 4588 buffer[bi] = IXGBE_READ_REG_ARRAY(hw, IXGBE_FLEX_MNG, bi); in ixgbe_host_interface_command() 4589 IXGBE_LE32_TO_CPUS((uintptr_t)&buffer[bi]); in ixgbe_host_interface_command() 4599 for (; bi < dword_len + 2; bi++) { in ixgbe_host_interface_command() 4600 buffer[bi] = IXGBE_READ_REG_ARRAY(hw, IXGBE_FLEX_MNG, in ixgbe_host_interface_command() 4601 bi); in ixgbe_host_interface_command() 4602 IXGBE_LE32_TO_CPUS(&buffer[bi]); in ixgbe_host_interface_command() 4623 for (; bi <= dword_len; bi++) { in ixgbe_host_interface_command() 4624 buffer[bi] = IXGBE_READ_REG_ARRAY(hw, IXGBE_FLEX_MNG, bi); in ixgbe_host_interface_command() [all …]
|
| /dpdk/doc/guides/nics/ |
| H A D | i40e.rst | 811 …n ``l3fwd`` will be used for performance testing, with using two ports for bi-directional forwardi…
|
| H A D | bnxt.rst | 864 with scalar instructions, for example by leveraging 128-bit and 256-bi
|