1 /* SPDX-License-Identifier: BSD-3-Clause
2 * Copyright 2008-2017 Cisco Systems, Inc. All rights reserved.
3 * Copyright 2007 Nuova Systems, Inc. All rights reserved.
9 void vnic_rq_free(struct vnic_rq *rq)
11 struct vnic_dev *vdev;
15 vnic_dev_free_desc_ring(vdev, &rq->ring);
20 int vnic_rq_alloc(struct vnic_dev *vdev, struct vnic_rq *rq, unsigned int index,
21 unsigned int desc_count, unsigned int desc_size)
24 char res_name[NAME_MAX];
30 rq->ctrl = vnic_dev_get_res(vdev, RES_TYPE_RQ, index);
32 pr_err("Failed to hook RQ[%u] resource\n", index);
38 snprintf(res_name, sizeof(res_name), "%d-rq-%u", instance++, index);
39 rc = vnic_dev_alloc_desc_ring(vdev, &rq->ring, desc_count, desc_size,
40 rq->socket_id, res_name);
44 void vnic_rq_init_start(struct vnic_rq *rq, unsigned int cq_index,
45 unsigned int fetch_index, unsigned int posted_index,
46 unsigned int error_interrupt_enable,
47 unsigned int error_interrupt_offset)
50 unsigned int count = rq->ring.desc_count;
52 paddr = (u64)rq->ring.base_addr | VNIC_PADDR_TARGET;
53 writeq(paddr, &rq->ctrl->ring_base);
54 iowrite32(count, &rq->ctrl->ring_size);
55 iowrite32(cq_index, &rq->ctrl->cq_index);
56 iowrite32(error_interrupt_enable, &rq->ctrl->error_interrupt_enable);
57 iowrite32(error_interrupt_offset, &rq->ctrl->error_interrupt_offset);
58 iowrite32(0, &rq->ctrl->error_status);
59 iowrite32(fetch_index, &rq->ctrl->fetch_index);
60 iowrite32(posted_index, &rq->ctrl->posted_index);
61 if (rq->data_queue_enable)
62 iowrite32(((1 << 10) | rq->data_queue_idx),
63 &rq->ctrl->data_ring);
65 iowrite32(0, &rq->ctrl->data_ring);
68 void vnic_rq_init(struct vnic_rq *rq, unsigned int cq_index,
69 unsigned int error_interrupt_enable,
70 unsigned int error_interrupt_offset)
74 /* Use current fetch_index as the ring starting point */
75 fetch_index = ioread32(&rq->ctrl->fetch_index);
77 if (fetch_index == 0xFFFFFFFF) { /* check for hardware gone */
78 /* Hardware surprise removal: reset fetch_index */
82 vnic_rq_init_start(rq, cq_index,
83 fetch_index, fetch_index,
84 error_interrupt_enable,
85 error_interrupt_offset);
88 rq->pkt_first_seg = NULL;
89 rq->pkt_last_seg = NULL;
92 unsigned int vnic_rq_error_status(struct vnic_rq *rq)
94 return ioread32(&rq->ctrl->error_status);
97 void vnic_rq_enable(struct vnic_rq *rq)
99 iowrite32(1, &rq->ctrl->enable);
102 int vnic_rq_disable(struct vnic_rq *rq)
106 iowrite32(0, &rq->ctrl->enable);
108 /* Wait for HW to ACK disable request */
109 for (wait = 0; wait < 1000; wait++) {
110 if (!(ioread32(&rq->ctrl->running)))
115 pr_err("Failed to disable RQ[%d]\n", rq->index);
120 void vnic_rq_clean(struct vnic_rq *rq,
121 void (*buf_clean)(struct rte_mbuf **buf))
123 struct rte_mbuf **buf;
125 unsigned int count = rq->ring.desc_count;
127 buf = &rq->mbuf_ring[0];
129 for (i = 0; i < count; i++) {
133 rq->ring.desc_avail = count - 1;
136 /* Use current fetch_index as the ring starting point */
137 fetch_index = ioread32(&rq->ctrl->fetch_index);
139 if (fetch_index == 0xFFFFFFFF) { /* check for hardware gone */
140 /* Hardware surprise removal: reset fetch_index */
144 iowrite32(fetch_index, &rq->ctrl->posted_index);
146 vnic_dev_clear_desc_ring(&rq->ring);