Home
last modified time | relevance | path

Searched refs:arq (Results 1 – 13 of 13) sorted by relevance

/Linux-v4.19/drivers/net/ethernet/intel/i40evf/
Di40e_adminq.c35 hw->aq.arq.tail = I40E_VF_ARQT1; in i40e_adminq_init_regs()
36 hw->aq.arq.head = I40E_VF_ARQH1; in i40e_adminq_init_regs()
37 hw->aq.arq.len = I40E_VF_ARQLEN1; in i40e_adminq_init_regs()
38 hw->aq.arq.bal = I40E_VF_ARQBAL1; in i40e_adminq_init_regs()
39 hw->aq.arq.bah = I40E_VF_ARQBAH1; in i40e_adminq_init_regs()
78 ret_code = i40e_allocate_dma_mem(hw, &hw->aq.arq.desc_buf, in i40e_alloc_adminq_arq_ring()
108 i40e_free_dma_mem(hw, &hw->aq.arq.desc_buf); in i40e_free_adminq_arq()
127 ret_code = i40e_allocate_virt_mem(hw, &hw->aq.arq.dma_head, in i40e_alloc_arq_bufs()
131 hw->aq.arq.r.arq_bi = (struct i40e_dma_mem *)hw->aq.arq.dma_head.va; in i40e_alloc_arq_bufs()
135 bi = &hw->aq.arq.r.arq_bi[i]; in i40e_alloc_arq_bufs()
[all …]
Di40e_adminq.h65 struct i40e_adminq_ring arq; /* receive queue */ member
Di40evf_main.c2060 val = rd32(hw, hw->aq.arq.len); in i40evf_adminq_task()
2077 wr32(hw, hw->aq.arq.len, val); in i40evf_adminq_task()
/Linux-v4.19/drivers/net/ethernet/intel/i40e/
Di40e_adminq.c27 hw->aq.arq.tail = I40E_VF_ARQT1; in i40e_adminq_init_regs()
28 hw->aq.arq.head = I40E_VF_ARQH1; in i40e_adminq_init_regs()
29 hw->aq.arq.len = I40E_VF_ARQLEN1; in i40e_adminq_init_regs()
30 hw->aq.arq.bal = I40E_VF_ARQBAL1; in i40e_adminq_init_regs()
31 hw->aq.arq.bah = I40E_VF_ARQBAH1; in i40e_adminq_init_regs()
38 hw->aq.arq.tail = I40E_PF_ARQT; in i40e_adminq_init_regs()
39 hw->aq.arq.head = I40E_PF_ARQH; in i40e_adminq_init_regs()
40 hw->aq.arq.len = I40E_PF_ARQLEN; in i40e_adminq_init_regs()
41 hw->aq.arq.bal = I40E_PF_ARQBAL; in i40e_adminq_init_regs()
42 hw->aq.arq.bah = I40E_PF_ARQBAH; in i40e_adminq_init_regs()
[all …]
Di40e_adminq.h65 struct i40e_adminq_ring arq; /* receive queue */ member
Di40e_debugfs.c473 ring = &(hw->aq.arq); in i40e_dbg_dump_aq_desc()
Di40e_main.c8639 val = rd32(&pf->hw, pf->hw.aq.arq.len); in i40e_clean_adminq_subtask()
8658 wr32(&pf->hw, pf->hw.aq.arq.len, val); in i40e_clean_adminq_subtask()
/Linux-v4.19/drivers/net/ethernet/hisilicon/hns3/hns3vf/
Dhclgevf_mbx.c202 if (hdev->arq.count >= HCLGE_MBX_MAX_ARQ_MSG_NUM) { in hclgevf_mbx_handler()
210 msg_q = hdev->arq.msg_q[hdev->arq.tail]; in hclgevf_mbx_handler()
213 hclge_mbx_tail_ptr_move_arq(hdev->arq); in hclgevf_mbx_handler()
214 hdev->arq.count++; in hclgevf_mbx_handler()
247 tail = hdev->arq.tail; in hclgevf_mbx_async_handler()
250 while (tail != hdev->arq.head) { in hclgevf_mbx_async_handler()
251 msg_q = hdev->arq.msg_q[hdev->arq.head]; in hclgevf_mbx_async_handler()
282 hclge_mbx_head_ptr_move_arq(hdev->arq); in hclgevf_mbx_async_handler()
283 hdev->arq.count--; in hclgevf_mbx_async_handler()
284 msg_q = hdev->arq.msg_q[hdev->arq.head]; in hclgevf_mbx_async_handler()
Dhclgevf_cmd.c311 hdev->arq.hdev = hdev; in hclgevf_cmd_init()
312 hdev->arq.head = 0; in hclgevf_cmd_init()
313 hdev->arq.tail = 0; in hclgevf_cmd_init()
314 hdev->arq.count = 0; in hclgevf_cmd_init()
Dhclgevf_main.h163 struct hclgevf_mbx_arq_ring arq; /* mailbox async rx queue */ member
/Linux-v4.19/drivers/net/ethernet/hisilicon/hns3/
Dhclge_mbx.h104 #define hclge_mbx_tail_ptr_move_arq(arq) \ argument
105 (arq.tail = (arq.tail + 1) % HCLGE_MBX_MAX_ARQ_MSG_SIZE)
106 #define hclge_mbx_head_ptr_move_arq(arq) \ argument
107 (arq.head = (arq.head + 1) % HCLGE_MBX_MAX_ARQ_MSG_SIZE)
/Linux-v4.19/drivers/crypto/
Dmxs-dcp.c249 static int mxs_dcp_aes_block_crypt(struct crypto_async_request *arq) in mxs_dcp_aes_block_crypt() argument
253 struct ablkcipher_request *req = ablkcipher_request_cast(arq); in mxs_dcp_aes_block_crypt()
254 struct dcp_async_ctx *actx = crypto_tfm_ctx(arq->tfm); in mxs_dcp_aes_block_crypt()
348 struct crypto_async_request *arq; in dcp_chan_thread_aes() local
357 arq = crypto_dequeue_request(&sdcp->queue[chan]); in dcp_chan_thread_aes()
360 if (!backlog && !arq) { in dcp_chan_thread_aes()
370 if (arq) { in dcp_chan_thread_aes()
371 ret = mxs_dcp_aes_block_crypt(arq); in dcp_chan_thread_aes()
372 arq->complete(arq, ret); in dcp_chan_thread_aes()
404 struct crypto_async_request *arq = &req->base; in mxs_dcp_aes_enqueue() local
[all …]
/Linux-v4.19/net/netfilter/
Dnf_conntrack_h323_main.c1492 unsigned char **data, AdmissionRequest *arq) in process_arq() argument
1503 if ((arq->options & eAdmissionRequest_destCallSignalAddress) && in process_arq()
1504 get_h225_addr(ct, *data, &arq->destCallSignalAddress, in process_arq()
1512 &arq->destCallSignalAddress, in process_arq()
1517 if ((arq->options & eAdmissionRequest_srcCallSignalAddress) && in process_arq()
1518 get_h225_addr(ct, *data, &arq->srcCallSignalAddress, in process_arq()
1525 &arq->srcCallSignalAddress, in process_arq()