Home
last modified time | relevance | path

Searched refs:eqresp (Results 1 – 5 of 5) sorted by relevance

/f-stack/dpdk/drivers/bus/fslmc/portal/
H A Ddpaa2_hw_dpio.c500 dpio_dev->eqresp = rte_zmalloc(NULL, MAX_EQ_RESP_ENTRIES * in dpaa2_create_dpio_device()
504 if (!dpio_dev->eqresp) { in dpaa2_create_dpio_device()
508 dpio_dev->eqresp_meta = (struct eqresp_metadata *)(dpio_dev->eqresp + in dpaa2_create_dpio_device()
538 rte_free(dpio_dev->eqresp); in dpaa2_create_dpio_device()
597 struct qbman_result *eqresp; in dpaa2_free_eq_descriptors() local
602 eqresp = &dpio_dev->eqresp[dpio_dev->eqresp_ci]; in dpaa2_free_eq_descriptors()
605 if (!qbman_result_eqresp_rspid(eqresp)) in dpaa2_free_eq_descriptors()
608 if (qbman_result_eqresp_rc(eqresp)) { in dpaa2_free_eq_descriptors()
612 qbman_result_eqresp_set_rspid(eqresp, 0); in dpaa2_free_eq_descriptors()
H A Ddpaa2_hw_pvt.h105 struct qbman_result *eqresp; member
/f-stack/dpdk/drivers/bus/fslmc/qbman/include/
H A Dfsl_qbman_portal.h1028 struct qbman_fd *qbman_result_eqresp_fd(struct qbman_result *eqresp);
1039 void qbman_result_eqresp_set_rspid(struct qbman_result *eqresp, uint8_t val);
1052 uint8_t qbman_result_eqresp_rspid(struct qbman_result *eqresp);
1061 uint8_t qbman_result_eqresp_rc(struct qbman_result *eqresp);
/f-stack/dpdk/drivers/bus/fslmc/qbman/
H A Dqbman_portal.c2455 struct qbman_fd *qbman_result_eqresp_fd(struct qbman_result *eqresp) in qbman_result_eqresp_fd() argument
2457 return (struct qbman_fd *)&eqresp->eq_resp.fd[0]; in qbman_result_eqresp_fd()
2460 void qbman_result_eqresp_set_rspid(struct qbman_result *eqresp, uint8_t val) in qbman_result_eqresp_set_rspid() argument
2462 eqresp->eq_resp.rspid = val; in qbman_result_eqresp_set_rspid()
2465 uint8_t qbman_result_eqresp_rspid(struct qbman_result *eqresp) in qbman_result_eqresp_rspid() argument
2467 return eqresp->eq_resp.rspid; in qbman_result_eqresp_rspid()
2470 uint8_t qbman_result_eqresp_rc(struct qbman_result *eqresp) in qbman_result_eqresp_rc() argument
2472 if (eqresp->eq_resp.rc == 0xE) in qbman_result_eqresp_rc()
/f-stack/dpdk/drivers/net/dpaa2/
H A Ddpaa2_rxtx.c1223 fd = qbman_result_eqresp_fd(&dpio_dev->eqresp[eqresp_ci]); in dpaa2_dev_free_eqresp_buf()
1253 DPAA2_VADDR_TO_IOVA(&dpio_dev->eqresp[ in dpaa2_set_enqueue_descriptor()