4 * Copyright (c) 2016 Freescale Semiconductor, Inc. All rights reserved.
5 * Copyright (c) 2016 NXP. All rights reserved.
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
11 * * Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * * Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in
15 * the documentation and/or other materials provided with the
17 * * Neither the name of Freescale Semiconductor, Inc nor the names of its
18 * contributors may be used to endorse or promote products derived
19 * from this software without specific prior written permission.
21 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
24 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
25 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
26 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
27 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
28 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
29 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
30 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
31 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
38 #include <rte_ethdev.h>
39 #include <rte_malloc.h>
40 #include <rte_memcpy.h>
41 #include <rte_string_fns.h>
43 #include <rte_ethdev.h>
45 #include <fslmc_logs.h>
46 #include <fslmc_vfio.h>
47 #include <dpaa2_hw_pvt.h>
48 #include <dpaa2_hw_dpio.h>
49 #include <dpaa2_hw_mempool.h>
51 #include "dpaa2_ethdev.h"
52 #include "base/dpaa2_hw_dpni_annot.h"
54 static inline uint32_t __attribute__((hot))
55 dpaa2_dev_rx_parse(uint64_t hw_annot_addr)
57 uint32_t pkt_type = RTE_PTYPE_UNKNOWN;
58 struct dpaa2_annot_hdr *annotation =
59 (struct dpaa2_annot_hdr *)hw_annot_addr;
61 PMD_RX_LOG(DEBUG, "annotation = 0x%lx ", annotation->word4);
63 if (BIT_ISSET_AT_POS(annotation->word3, L2_ARP_PRESENT)) {
64 pkt_type = RTE_PTYPE_L2_ETHER_ARP;
66 } else if (BIT_ISSET_AT_POS(annotation->word3, L2_ETH_MAC_PRESENT)) {
67 pkt_type = RTE_PTYPE_L2_ETHER;
72 if (BIT_ISSET_AT_POS(annotation->word4, L3_IPV4_1_PRESENT |
74 pkt_type |= RTE_PTYPE_L3_IPV4;
75 if (BIT_ISSET_AT_POS(annotation->word4, L3_IP_1_OPT_PRESENT |
77 pkt_type |= RTE_PTYPE_L3_IPV4_EXT;
79 } else if (BIT_ISSET_AT_POS(annotation->word4, L3_IPV6_1_PRESENT |
81 pkt_type |= RTE_PTYPE_L3_IPV6;
82 if (BIT_ISSET_AT_POS(annotation->word4, L3_IP_1_OPT_PRESENT |
84 pkt_type |= RTE_PTYPE_L3_IPV6_EXT;
89 if (BIT_ISSET_AT_POS(annotation->word4, L3_IP_1_FIRST_FRAGMENT |
90 L3_IP_1_MORE_FRAGMENT |
91 L3_IP_N_FIRST_FRAGMENT |
92 L3_IP_N_MORE_FRAGMENT)) {
93 pkt_type |= RTE_PTYPE_L4_FRAG;
96 pkt_type |= RTE_PTYPE_L4_NONFRAG;
99 if (BIT_ISSET_AT_POS(annotation->word4, L3_PROTO_UDP_PRESENT))
100 pkt_type |= RTE_PTYPE_L4_UDP;
102 else if (BIT_ISSET_AT_POS(annotation->word4, L3_PROTO_TCP_PRESENT))
103 pkt_type |= RTE_PTYPE_L4_TCP;
105 else if (BIT_ISSET_AT_POS(annotation->word4, L3_PROTO_SCTP_PRESENT))
106 pkt_type |= RTE_PTYPE_L4_SCTP;
108 else if (BIT_ISSET_AT_POS(annotation->word4, L3_PROTO_ICMP_PRESENT))
109 pkt_type |= RTE_PTYPE_L4_ICMP;
111 else if (BIT_ISSET_AT_POS(annotation->word4, L3_IP_UNKNOWN_PROTOCOL))
112 pkt_type |= RTE_PTYPE_UNKNOWN;
118 static inline void __attribute__((hot))
119 dpaa2_dev_rx_offload(uint64_t hw_annot_addr, struct rte_mbuf *mbuf)
121 struct dpaa2_annot_hdr *annotation =
122 (struct dpaa2_annot_hdr *)hw_annot_addr;
124 if (BIT_ISSET_AT_POS(annotation->word3,
125 L2_VLAN_1_PRESENT | L2_VLAN_N_PRESENT))
126 mbuf->ol_flags |= PKT_RX_VLAN_PKT;
128 if (BIT_ISSET_AT_POS(annotation->word8, DPAA2_ETH_FAS_L3CE))
129 mbuf->ol_flags |= PKT_RX_IP_CKSUM_BAD;
131 if (BIT_ISSET_AT_POS(annotation->word8, DPAA2_ETH_FAS_L4CE))
132 mbuf->ol_flags |= PKT_RX_L4_CKSUM_BAD;
135 static inline struct rte_mbuf *__attribute__((hot))
136 eth_fd_to_mbuf(const struct qbman_fd *fd)
138 struct rte_mbuf *mbuf = DPAA2_INLINE_MBUF_FROM_BUF(
139 DPAA2_IOVA_TO_VADDR(DPAA2_GET_FD_ADDR(fd)),
140 rte_dpaa2_bpid_info[DPAA2_GET_FD_BPID(fd)].meta_data_size);
142 /* need to repopulated some of the fields,
143 * as they may have changed in last transmission
147 mbuf->data_off = DPAA2_GET_FD_OFFSET(fd);
148 mbuf->data_len = DPAA2_GET_FD_LEN(fd);
149 mbuf->pkt_len = mbuf->data_len;
151 /* Parse the packet */
152 /* parse results are after the private - sw annotation area */
153 mbuf->packet_type = dpaa2_dev_rx_parse(
154 (uint64_t)DPAA2_IOVA_TO_VADDR(DPAA2_GET_FD_ADDR(fd))
155 + DPAA2_FD_PTA_SIZE);
157 dpaa2_dev_rx_offload((uint64_t)DPAA2_IOVA_TO_VADDR(
158 DPAA2_GET_FD_ADDR(fd)) +
159 DPAA2_FD_PTA_SIZE, mbuf);
162 rte_mbuf_refcnt_set(mbuf, 1);
164 PMD_RX_LOG(DEBUG, "to mbuf - mbuf =%p, mbuf->buf_addr =%p, off = %d,"
165 "fd_off=%d fd =%lx, meta = %d bpid =%d, len=%d\n",
166 mbuf, mbuf->buf_addr, mbuf->data_off,
167 DPAA2_GET_FD_OFFSET(fd), DPAA2_GET_FD_ADDR(fd),
168 rte_dpaa2_bpid_info[DPAA2_GET_FD_BPID(fd)].meta_data_size,
169 DPAA2_GET_FD_BPID(fd), DPAA2_GET_FD_LEN(fd));
174 static void __rte_noinline __attribute__((hot))
175 eth_mbuf_to_fd(struct rte_mbuf *mbuf,
176 struct qbman_fd *fd, uint16_t bpid)
178 /*Resetting the buffer pool id and offset field*/
179 fd->simple.bpid_offset = 0;
181 DPAA2_SET_FD_ADDR(fd, DPAA2_MBUF_VADDR_TO_IOVA(mbuf));
182 DPAA2_SET_FD_LEN(fd, mbuf->data_len);
183 DPAA2_SET_FD_BPID(fd, bpid);
184 DPAA2_SET_FD_OFFSET(fd, mbuf->data_off);
185 DPAA2_SET_FD_ASAL(fd, DPAA2_ASAL_VAL);
187 PMD_TX_LOG(DEBUG, "mbuf =%p, mbuf->buf_addr =%p, off = %d,"
188 "fd_off=%d fd =%lx, meta = %d bpid =%d, len=%d\n",
189 mbuf, mbuf->buf_addr, mbuf->data_off,
190 DPAA2_GET_FD_OFFSET(fd), DPAA2_GET_FD_ADDR(fd),
191 rte_dpaa2_bpid_info[DPAA2_GET_FD_BPID(fd)].meta_data_size,
192 DPAA2_GET_FD_BPID(fd), DPAA2_GET_FD_LEN(fd));
196 static inline int __attribute__((hot))
197 eth_copy_mbuf_to_fd(struct rte_mbuf *mbuf,
198 struct qbman_fd *fd, uint16_t bpid)
203 if (rte_dpaa2_mbuf_alloc_bulk(
204 rte_dpaa2_bpid_info[bpid].bp_list->mp, &mb, 1)) {
205 PMD_TX_LOG(WARNING, "Unable to allocated DPAA2 buffer");
206 rte_pktmbuf_free(mbuf);
209 m = (struct rte_mbuf *)mb;
210 memcpy((char *)m->buf_addr + mbuf->data_off,
211 (void *)((char *)mbuf->buf_addr + mbuf->data_off),
214 /* Copy required fields */
215 m->data_off = mbuf->data_off;
216 m->ol_flags = mbuf->ol_flags;
217 m->packet_type = mbuf->packet_type;
218 m->tx_offload = mbuf->tx_offload;
220 /*Resetting the buffer pool id and offset field*/
221 fd->simple.bpid_offset = 0;
223 DPAA2_SET_FD_ADDR(fd, DPAA2_MBUF_VADDR_TO_IOVA(m));
224 DPAA2_SET_FD_LEN(fd, mbuf->data_len);
225 DPAA2_SET_FD_BPID(fd, bpid);
226 DPAA2_SET_FD_OFFSET(fd, mbuf->data_off);
227 DPAA2_SET_FD_ASAL(fd, DPAA2_ASAL_VAL);
229 PMD_TX_LOG(DEBUG, " mbuf %p BMAN buf addr %p",
230 (void *)mbuf, mbuf->buf_addr);
232 PMD_TX_LOG(DEBUG, " fdaddr =%lx bpid =%d meta =%d off =%d, len =%d",
233 DPAA2_GET_FD_ADDR(fd),
234 DPAA2_GET_FD_BPID(fd),
235 rte_dpaa2_bpid_info[DPAA2_GET_FD_BPID(fd)].meta_data_size,
236 DPAA2_GET_FD_OFFSET(fd),
237 DPAA2_GET_FD_LEN(fd));
238 /*free the original packet */
239 rte_pktmbuf_free(mbuf);
245 dpaa2_dev_prefetch_rx(void *queue, struct rte_mbuf **bufs, uint16_t nb_pkts)
247 /* Function receive frames for a given device and VQ*/
248 struct dpaa2_queue *dpaa2_q = (struct dpaa2_queue *)queue;
249 struct qbman_result *dq_storage;
250 uint32_t fqid = dpaa2_q->fqid;
252 uint8_t is_last = 0, status;
253 struct qbman_swp *swp;
254 const struct qbman_fd *fd[DPAA2_DQRR_RING_SIZE];
255 struct qbman_pull_desc pulldesc;
256 struct queue_storage_info_t *q_storage = dpaa2_q->q_storage;
257 struct rte_eth_dev *dev = dpaa2_q->dev;
259 if (unlikely(!DPAA2_PER_LCORE_DPIO)) {
260 ret = dpaa2_affine_qbman_swp();
262 RTE_LOG(ERR, PMD, "Failure in affining portal\n");
266 swp = DPAA2_PER_LCORE_PORTAL;
267 if (!q_storage->active_dqs) {
268 q_storage->toggle = 0;
269 dq_storage = q_storage->dq_storage[q_storage->toggle];
270 qbman_pull_desc_clear(&pulldesc);
271 qbman_pull_desc_set_numframes(&pulldesc,
272 (nb_pkts > DPAA2_DQRR_RING_SIZE) ?
273 DPAA2_DQRR_RING_SIZE : nb_pkts);
274 qbman_pull_desc_set_fq(&pulldesc, fqid);
275 qbman_pull_desc_set_storage(&pulldesc, dq_storage,
276 (dma_addr_t)(DPAA2_VADDR_TO_IOVA(dq_storage)), 1);
277 if (check_swp_active_dqs(DPAA2_PER_LCORE_DPIO->index)) {
278 while (!qbman_check_command_complete(swp,
279 get_swp_active_dqs(DPAA2_PER_LCORE_DPIO->index)))
281 clear_swp_active_dqs(DPAA2_PER_LCORE_DPIO->index);
284 if (qbman_swp_pull(swp, &pulldesc)) {
285 PMD_RX_LOG(WARNING, "VDQ command is not issued."
287 /* Portal was busy, try again */
292 q_storage->active_dqs = dq_storage;
293 q_storage->active_dpio_id = DPAA2_PER_LCORE_DPIO->index;
294 set_swp_active_dqs(DPAA2_PER_LCORE_DPIO->index, dq_storage);
296 dq_storage = q_storage->active_dqs;
297 /* Check if the previous issued command is completed.
298 * Also seems like the SWP is shared between the Ethernet Driver
299 * and the SEC driver.
301 while (!qbman_check_command_complete(swp, dq_storage))
303 if (dq_storage == get_swp_active_dqs(q_storage->active_dpio_id))
304 clear_swp_active_dqs(q_storage->active_dpio_id);
306 /* Loop until the dq_storage is updated with
309 while (!qbman_result_has_new_result(swp, dq_storage))
311 rte_prefetch0((void *)((uint64_t)(dq_storage + 1)));
312 /* Check whether Last Pull command is Expired and
313 * setting Condition for Loop termination
315 if (qbman_result_DQ_is_pull_complete(dq_storage)) {
317 /* Check for valid frame. */
318 status = (uint8_t)qbman_result_DQ_flags(dq_storage);
319 if (unlikely((status & QBMAN_DQ_STAT_VALIDFRAME) == 0))
322 fd[num_rx] = qbman_result_DQ_fd(dq_storage);
324 /* Prefetch Annotation address for the parse results */
325 rte_prefetch0((void *)((uint64_t)DPAA2_GET_FD_ADDR(fd[num_rx])
326 + DPAA2_FD_PTA_SIZE + 16));
328 bufs[num_rx] = eth_fd_to_mbuf(fd[num_rx]);
329 bufs[num_rx]->port = dev->data->port_id;
330 if (dev->data->dev_conf.rxmode.hw_vlan_strip)
331 rte_vlan_strip(bufs[num_rx]);
337 if (check_swp_active_dqs(DPAA2_PER_LCORE_DPIO->index)) {
338 while (!qbman_check_command_complete(swp,
339 get_swp_active_dqs(DPAA2_PER_LCORE_DPIO->index)))
341 clear_swp_active_dqs(DPAA2_PER_LCORE_DPIO->index);
343 q_storage->toggle ^= 1;
344 dq_storage = q_storage->dq_storage[q_storage->toggle];
345 qbman_pull_desc_clear(&pulldesc);
346 qbman_pull_desc_set_numframes(&pulldesc, DPAA2_DQRR_RING_SIZE);
347 qbman_pull_desc_set_fq(&pulldesc, fqid);
348 qbman_pull_desc_set_storage(&pulldesc, dq_storage,
349 (dma_addr_t)(DPAA2_VADDR_TO_IOVA(dq_storage)), 1);
350 /* Issue a volatile dequeue command. */
352 if (qbman_swp_pull(swp, &pulldesc)) {
353 PMD_RX_LOG(WARNING, "VDQ command is not issued."
359 q_storage->active_dqs = dq_storage;
360 q_storage->active_dpio_id = DPAA2_PER_LCORE_DPIO->index;
361 set_swp_active_dqs(DPAA2_PER_LCORE_DPIO->index, dq_storage);
363 dpaa2_q->rx_pkts += num_rx;
365 /* Return the total number of packets received to DPAA2 app */
370 * Callback to handle sending packets through WRIOP based interface
373 dpaa2_dev_tx(void *queue, struct rte_mbuf **bufs, uint16_t nb_pkts)
375 /* Function to transmit the frames to given device and VQ*/
378 struct qbman_fd fd_arr[MAX_TX_RING_SLOTS];
379 uint32_t frames_to_send;
380 struct rte_mempool *mp;
381 struct qbman_eq_desc eqdesc;
382 struct dpaa2_queue *dpaa2_q = (struct dpaa2_queue *)queue;
383 struct qbman_swp *swp;
386 struct rte_eth_dev *dev = dpaa2_q->dev;
387 struct dpaa2_dev_priv *priv = dev->data->dev_private;
389 if (unlikely(!DPAA2_PER_LCORE_DPIO)) {
390 ret = dpaa2_affine_qbman_swp();
392 RTE_LOG(ERR, PMD, "Failure in affining portal\n");
396 swp = DPAA2_PER_LCORE_PORTAL;
398 PMD_TX_LOG(DEBUG, "===> dev =%p, fqid =%d", dev, dpaa2_q->fqid);
400 /*Prepare enqueue descriptor*/
401 qbman_eq_desc_clear(&eqdesc);
402 qbman_eq_desc_set_no_orp(&eqdesc, DPAA2_EQ_RESP_ERR_FQ);
403 qbman_eq_desc_set_response(&eqdesc, 0, 0);
404 qbman_eq_desc_set_qd(&eqdesc, priv->qdid,
405 dpaa2_q->flow_id, dpaa2_q->tc_index);
407 /*Clear the unused FD fields before sending*/
409 /*Check if the queue is congested*/
410 if (qbman_result_SCN_state_in_mem(dpaa2_q->cscn))
413 frames_to_send = (nb_pkts >> 3) ? MAX_TX_RING_SLOTS : nb_pkts;
415 for (loop = 0; loop < frames_to_send; loop++) {
416 fd_arr[loop].simple.frc = 0;
417 DPAA2_RESET_FD_CTRL((&fd_arr[loop]));
418 DPAA2_SET_FD_FLC((&fd_arr[loop]), NULL);
420 /* Not a hw_pkt pool allocated frame */
421 if (mp->ops_index != priv->bp_list->dpaa2_ops_index) {
422 PMD_TX_LOG(ERR, "non hw offload bufffer ");
423 /* alloc should be from the default buffer pool
424 * attached to this interface
427 bpid = priv->bp_list->buf_pool.bpid;
429 PMD_TX_LOG(ERR, "errr: why no bpool"
434 if (eth_copy_mbuf_to_fd(*bufs,
435 &fd_arr[loop], bpid)) {
440 bpid = mempool_to_bpid(mp);
441 eth_mbuf_to_fd(*bufs, &fd_arr[loop], bpid);
446 while (loop < frames_to_send) {
447 loop += qbman_swp_send_multiple(swp, &eqdesc,
448 &fd_arr[loop], frames_to_send - loop);
451 num_tx += frames_to_send;
452 dpaa2_q->tx_pkts += frames_to_send;
453 nb_pkts -= frames_to_send;