7b36cece6c6eea299b0759e2f9f7a5f07a831036
[dpdk.git] / drivers / net / dpaa / dpaa_ethdev.c
1 /* SPDX-License-Identifier: BSD-3-Clause
2  *
3  *   Copyright 2016 Freescale Semiconductor, Inc. All rights reserved.
4  *   Copyright 2017 NXP
5  *
6  */
7 /* System headers */
8 #include <stdio.h>
9 #include <inttypes.h>
10 #include <unistd.h>
11 #include <limits.h>
12 #include <sched.h>
13 #include <signal.h>
14 #include <pthread.h>
15 #include <sys/types.h>
16 #include <sys/syscall.h>
17
18 #include <rte_string_fns.h>
19 #include <rte_byteorder.h>
20 #include <rte_common.h>
21 #include <rte_interrupts.h>
22 #include <rte_log.h>
23 #include <rte_debug.h>
24 #include <rte_pci.h>
25 #include <rte_atomic.h>
26 #include <rte_branch_prediction.h>
27 #include <rte_memory.h>
28 #include <rte_tailq.h>
29 #include <rte_eal.h>
30 #include <rte_alarm.h>
31 #include <rte_ether.h>
32 #include <rte_ethdev_driver.h>
33 #include <rte_malloc.h>
34 #include <rte_ring.h>
35
36 #include <rte_dpaa_bus.h>
37 #include <rte_dpaa_logs.h>
38 #include <dpaa_mempool.h>
39
40 #include <dpaa_ethdev.h>
41 #include <dpaa_rxtx.h>
42 #include <rte_pmd_dpaa.h>
43
44 #include <fsl_usd.h>
45 #include <fsl_qman.h>
46 #include <fsl_bman.h>
47 #include <fsl_fman.h>
48
49 /* Supported Rx offloads */
50 static uint64_t dev_rx_offloads_sup =
51                 DEV_RX_OFFLOAD_JUMBO_FRAME |
52                 DEV_RX_OFFLOAD_SCATTER;
53
54 /* Rx offloads which cannot be disabled */
55 static uint64_t dev_rx_offloads_nodis =
56                 DEV_RX_OFFLOAD_IPV4_CKSUM |
57                 DEV_RX_OFFLOAD_UDP_CKSUM |
58                 DEV_RX_OFFLOAD_TCP_CKSUM |
59                 DEV_RX_OFFLOAD_OUTER_IPV4_CKSUM;
60
61 /* Supported Tx offloads */
62 static uint64_t dev_tx_offloads_sup =
63                 DEV_TX_OFFLOAD_MT_LOCKFREE |
64                 DEV_TX_OFFLOAD_MBUF_FAST_FREE;
65
66 /* Tx offloads which cannot be disabled */
67 static uint64_t dev_tx_offloads_nodis =
68                 DEV_TX_OFFLOAD_IPV4_CKSUM |
69                 DEV_TX_OFFLOAD_UDP_CKSUM |
70                 DEV_TX_OFFLOAD_TCP_CKSUM |
71                 DEV_TX_OFFLOAD_SCTP_CKSUM |
72                 DEV_TX_OFFLOAD_OUTER_IPV4_CKSUM |
73                 DEV_TX_OFFLOAD_MULTI_SEGS;
74
75 /* Keep track of whether QMAN and BMAN have been globally initialized */
76 static int is_global_init;
77 static int default_q;   /* use default queue - FMC is not executed*/
78 /* At present we only allow up to 4 push mode queues as default - as each of
79  * this queue need dedicated portal and we are short of portals.
80  */
81 #define DPAA_MAX_PUSH_MODE_QUEUE       8
82 #define DPAA_DEFAULT_PUSH_MODE_QUEUE   4
83
84 static int dpaa_push_mode_max_queue = DPAA_DEFAULT_PUSH_MODE_QUEUE;
85 static int dpaa_push_queue_idx; /* Queue index which are in push mode*/
86
87
88 /* Per FQ Taildrop in frame count */
89 static unsigned int td_threshold = CGR_RX_PERFQ_THRESH;
90
91 struct rte_dpaa_xstats_name_off {
92         char name[RTE_ETH_XSTATS_NAME_SIZE];
93         uint32_t offset;
94 };
95
96 static const struct rte_dpaa_xstats_name_off dpaa_xstats_strings[] = {
97         {"rx_align_err",
98                 offsetof(struct dpaa_if_stats, raln)},
99         {"rx_valid_pause",
100                 offsetof(struct dpaa_if_stats, rxpf)},
101         {"rx_fcs_err",
102                 offsetof(struct dpaa_if_stats, rfcs)},
103         {"rx_vlan_frame",
104                 offsetof(struct dpaa_if_stats, rvlan)},
105         {"rx_frame_err",
106                 offsetof(struct dpaa_if_stats, rerr)},
107         {"rx_drop_err",
108                 offsetof(struct dpaa_if_stats, rdrp)},
109         {"rx_undersized",
110                 offsetof(struct dpaa_if_stats, rund)},
111         {"rx_oversize_err",
112                 offsetof(struct dpaa_if_stats, rovr)},
113         {"rx_fragment_pkt",
114                 offsetof(struct dpaa_if_stats, rfrg)},
115         {"tx_valid_pause",
116                 offsetof(struct dpaa_if_stats, txpf)},
117         {"tx_fcs_err",
118                 offsetof(struct dpaa_if_stats, terr)},
119         {"tx_vlan_frame",
120                 offsetof(struct dpaa_if_stats, tvlan)},
121         {"rx_undersized",
122                 offsetof(struct dpaa_if_stats, tund)},
123 };
124
125 static struct rte_dpaa_driver rte_dpaa_pmd;
126
127 static int
128 dpaa_eth_dev_info(struct rte_eth_dev *dev, struct rte_eth_dev_info *dev_info);
129
130 static inline void
131 dpaa_poll_queue_default_config(struct qm_mcc_initfq *opts)
132 {
133         memset(opts, 0, sizeof(struct qm_mcc_initfq));
134         opts->we_mask = QM_INITFQ_WE_FQCTRL | QM_INITFQ_WE_CONTEXTA;
135         opts->fqd.fq_ctrl = QM_FQCTRL_AVOIDBLOCK | QM_FQCTRL_CTXASTASHING |
136                            QM_FQCTRL_PREFERINCACHE;
137         opts->fqd.context_a.stashing.exclusive = 0;
138         if (dpaa_svr_family != SVR_LS1046A_FAMILY)
139                 opts->fqd.context_a.stashing.annotation_cl =
140                                                 DPAA_IF_RX_ANNOTATION_STASH;
141         opts->fqd.context_a.stashing.data_cl = DPAA_IF_RX_DATA_STASH;
142         opts->fqd.context_a.stashing.context_cl = DPAA_IF_RX_CONTEXT_STASH;
143 }
144
145 static int
146 dpaa_mtu_set(struct rte_eth_dev *dev, uint16_t mtu)
147 {
148         struct dpaa_if *dpaa_intf = dev->data->dev_private;
149         uint32_t frame_size = mtu + RTE_ETHER_HDR_LEN + RTE_ETHER_CRC_LEN
150                                 + VLAN_TAG_SIZE;
151         uint32_t buffsz = dev->data->min_rx_buf_size - RTE_PKTMBUF_HEADROOM;
152
153         PMD_INIT_FUNC_TRACE();
154
155         if (mtu < RTE_ETHER_MIN_MTU || frame_size > DPAA_MAX_RX_PKT_LEN)
156                 return -EINVAL;
157         /*
158          * Refuse mtu that requires the support of scattered packets
159          * when this feature has not been enabled before.
160          */
161         if (dev->data->min_rx_buf_size &&
162                 !dev->data->scattered_rx && frame_size > buffsz) {
163                 DPAA_PMD_ERR("SG not enabled, will not fit in one buffer");
164                 return -EINVAL;
165         }
166
167         /* check <seg size> * <max_seg>  >= max_frame */
168         if (dev->data->min_rx_buf_size && dev->data->scattered_rx &&
169                 (frame_size > buffsz * DPAA_SGT_MAX_ENTRIES)) {
170                 DPAA_PMD_ERR("Too big to fit for Max SG list %d",
171                                 buffsz * DPAA_SGT_MAX_ENTRIES);
172                 return -EINVAL;
173         }
174
175         if (frame_size > RTE_ETHER_MAX_LEN)
176                 dev->data->dev_conf.rxmode.offloads &=
177                                                 DEV_RX_OFFLOAD_JUMBO_FRAME;
178         else
179                 dev->data->dev_conf.rxmode.offloads &=
180                                                 ~DEV_RX_OFFLOAD_JUMBO_FRAME;
181
182         dev->data->dev_conf.rxmode.max_rx_pkt_len = frame_size;
183
184         fman_if_set_maxfrm(dpaa_intf->fif, frame_size);
185
186         return 0;
187 }
188
189 static int
190 dpaa_eth_dev_configure(struct rte_eth_dev *dev)
191 {
192         struct dpaa_if *dpaa_intf = dev->data->dev_private;
193         struct rte_eth_conf *eth_conf = &dev->data->dev_conf;
194         uint64_t rx_offloads = eth_conf->rxmode.offloads;
195         uint64_t tx_offloads = eth_conf->txmode.offloads;
196
197         PMD_INIT_FUNC_TRACE();
198
199         /* Rx offloads which are enabled by default */
200         if (dev_rx_offloads_nodis & ~rx_offloads) {
201                 DPAA_PMD_INFO(
202                 "Some of rx offloads enabled by default - requested 0x%" PRIx64
203                 " fixed are 0x%" PRIx64,
204                 rx_offloads, dev_rx_offloads_nodis);
205         }
206
207         /* Tx offloads which are enabled by default */
208         if (dev_tx_offloads_nodis & ~tx_offloads) {
209                 DPAA_PMD_INFO(
210                 "Some of tx offloads enabled by default - requested 0x%" PRIx64
211                 " fixed are 0x%" PRIx64,
212                 tx_offloads, dev_tx_offloads_nodis);
213         }
214
215         if (rx_offloads & DEV_RX_OFFLOAD_JUMBO_FRAME) {
216                 uint32_t max_len;
217
218                 DPAA_PMD_DEBUG("enabling jumbo");
219
220                 if (dev->data->dev_conf.rxmode.max_rx_pkt_len <=
221                     DPAA_MAX_RX_PKT_LEN)
222                         max_len = dev->data->dev_conf.rxmode.max_rx_pkt_len;
223                 else {
224                         DPAA_PMD_INFO("enabling jumbo override conf max len=%d "
225                                 "supported is %d",
226                                 dev->data->dev_conf.rxmode.max_rx_pkt_len,
227                                 DPAA_MAX_RX_PKT_LEN);
228                         max_len = DPAA_MAX_RX_PKT_LEN;
229                 }
230
231                 fman_if_set_maxfrm(dpaa_intf->fif, max_len);
232                 dev->data->mtu = max_len
233                         - RTE_ETHER_HDR_LEN - RTE_ETHER_CRC_LEN - VLAN_TAG_SIZE;
234         }
235
236         if (rx_offloads & DEV_RX_OFFLOAD_SCATTER) {
237                 DPAA_PMD_DEBUG("enabling scatter mode");
238                 fman_if_set_sg(dpaa_intf->fif, 1);
239                 dev->data->scattered_rx = 1;
240         }
241
242         return 0;
243 }
244
245 static const uint32_t *
246 dpaa_supported_ptypes_get(struct rte_eth_dev *dev)
247 {
248         static const uint32_t ptypes[] = {
249                 RTE_PTYPE_L2_ETHER,
250                 RTE_PTYPE_L2_ETHER_VLAN,
251                 RTE_PTYPE_L2_ETHER_ARP,
252                 RTE_PTYPE_L3_IPV4_EXT_UNKNOWN,
253                 RTE_PTYPE_L3_IPV6_EXT_UNKNOWN,
254                 RTE_PTYPE_L4_ICMP,
255                 RTE_PTYPE_L4_TCP,
256                 RTE_PTYPE_L4_UDP,
257                 RTE_PTYPE_L4_FRAG,
258                 RTE_PTYPE_L4_TCP,
259                 RTE_PTYPE_L4_UDP,
260                 RTE_PTYPE_L4_SCTP
261         };
262
263         PMD_INIT_FUNC_TRACE();
264
265         if (dev->rx_pkt_burst == dpaa_eth_queue_rx)
266                 return ptypes;
267         return NULL;
268 }
269
270 static int dpaa_eth_dev_start(struct rte_eth_dev *dev)
271 {
272         struct dpaa_if *dpaa_intf = dev->data->dev_private;
273
274         PMD_INIT_FUNC_TRACE();
275
276         /* Change tx callback to the real one */
277         dev->tx_pkt_burst = dpaa_eth_queue_tx;
278         fman_if_enable_rx(dpaa_intf->fif);
279
280         return 0;
281 }
282
283 static void dpaa_eth_dev_stop(struct rte_eth_dev *dev)
284 {
285         struct dpaa_if *dpaa_intf = dev->data->dev_private;
286
287         PMD_INIT_FUNC_TRACE();
288
289         fman_if_disable_rx(dpaa_intf->fif);
290         dev->tx_pkt_burst = dpaa_eth_tx_drop_all;
291 }
292
293 static void dpaa_eth_dev_close(struct rte_eth_dev *dev)
294 {
295         PMD_INIT_FUNC_TRACE();
296
297         dpaa_eth_dev_stop(dev);
298 }
299
300 static int
301 dpaa_fw_version_get(struct rte_eth_dev *dev __rte_unused,
302                      char *fw_version,
303                      size_t fw_size)
304 {
305         int ret;
306         FILE *svr_file = NULL;
307         unsigned int svr_ver = 0;
308
309         PMD_INIT_FUNC_TRACE();
310
311         svr_file = fopen(DPAA_SOC_ID_FILE, "r");
312         if (!svr_file) {
313                 DPAA_PMD_ERR("Unable to open SoC device");
314                 return -ENOTSUP; /* Not supported on this infra */
315         }
316         if (fscanf(svr_file, "svr:%x", &svr_ver) > 0)
317                 dpaa_svr_family = svr_ver & SVR_MASK;
318         else
319                 DPAA_PMD_ERR("Unable to read SoC device");
320
321         fclose(svr_file);
322
323         ret = snprintf(fw_version, fw_size, "SVR:%x-fman-v%x",
324                        svr_ver, fman_ip_rev);
325         ret += 1; /* add the size of '\0' */
326
327         if (fw_size < (uint32_t)ret)
328                 return ret;
329         else
330                 return 0;
331 }
332
333 static int dpaa_eth_dev_info(struct rte_eth_dev *dev,
334                              struct rte_eth_dev_info *dev_info)
335 {
336         struct dpaa_if *dpaa_intf = dev->data->dev_private;
337
338         PMD_INIT_FUNC_TRACE();
339
340         dev_info->max_rx_queues = dpaa_intf->nb_rx_queues;
341         dev_info->max_tx_queues = dpaa_intf->nb_tx_queues;
342         dev_info->max_rx_pktlen = DPAA_MAX_RX_PKT_LEN;
343         dev_info->max_mac_addrs = DPAA_MAX_MAC_FILTER;
344         dev_info->max_hash_mac_addrs = 0;
345         dev_info->max_vfs = 0;
346         dev_info->max_vmdq_pools = ETH_16_POOLS;
347         dev_info->flow_type_rss_offloads = DPAA_RSS_OFFLOAD_ALL;
348
349         if (dpaa_intf->fif->mac_type == fman_mac_1g) {
350                 dev_info->speed_capa = ETH_LINK_SPEED_1G;
351         } else if (dpaa_intf->fif->mac_type == fman_mac_10g) {
352                 dev_info->speed_capa = (ETH_LINK_SPEED_1G | ETH_LINK_SPEED_10G);
353         } else {
354                 DPAA_PMD_ERR("invalid link_speed: %s, %d",
355                              dpaa_intf->name, dpaa_intf->fif->mac_type);
356                 return -EINVAL;
357         }
358
359         dev_info->rx_offload_capa = dev_rx_offloads_sup |
360                                         dev_rx_offloads_nodis;
361         dev_info->tx_offload_capa = dev_tx_offloads_sup |
362                                         dev_tx_offloads_nodis;
363         dev_info->default_rxportconf.burst_size = DPAA_DEF_RX_BURST_SIZE;
364         dev_info->default_txportconf.burst_size = DPAA_DEF_TX_BURST_SIZE;
365
366         return 0;
367 }
368
369 static int dpaa_eth_link_update(struct rte_eth_dev *dev,
370                                 int wait_to_complete __rte_unused)
371 {
372         struct dpaa_if *dpaa_intf = dev->data->dev_private;
373         struct rte_eth_link *link = &dev->data->dev_link;
374
375         PMD_INIT_FUNC_TRACE();
376
377         if (dpaa_intf->fif->mac_type == fman_mac_1g)
378                 link->link_speed = ETH_SPEED_NUM_1G;
379         else if (dpaa_intf->fif->mac_type == fman_mac_10g)
380                 link->link_speed = ETH_SPEED_NUM_10G;
381         else
382                 DPAA_PMD_ERR("invalid link_speed: %s, %d",
383                              dpaa_intf->name, dpaa_intf->fif->mac_type);
384
385         link->link_status = dpaa_intf->valid;
386         link->link_duplex = ETH_LINK_FULL_DUPLEX;
387         link->link_autoneg = ETH_LINK_AUTONEG;
388         return 0;
389 }
390
391 static int dpaa_eth_stats_get(struct rte_eth_dev *dev,
392                                struct rte_eth_stats *stats)
393 {
394         struct dpaa_if *dpaa_intf = dev->data->dev_private;
395
396         PMD_INIT_FUNC_TRACE();
397
398         fman_if_stats_get(dpaa_intf->fif, stats);
399         return 0;
400 }
401
402 static int dpaa_eth_stats_reset(struct rte_eth_dev *dev)
403 {
404         struct dpaa_if *dpaa_intf = dev->data->dev_private;
405
406         PMD_INIT_FUNC_TRACE();
407
408         fman_if_stats_reset(dpaa_intf->fif);
409
410         return 0;
411 }
412
413 static int
414 dpaa_dev_xstats_get(struct rte_eth_dev *dev, struct rte_eth_xstat *xstats,
415                     unsigned int n)
416 {
417         struct dpaa_if *dpaa_intf = dev->data->dev_private;
418         unsigned int i = 0, num = RTE_DIM(dpaa_xstats_strings);
419         uint64_t values[sizeof(struct dpaa_if_stats) / 8];
420
421         if (n < num)
422                 return num;
423
424         if (xstats == NULL)
425                 return 0;
426
427         fman_if_stats_get_all(dpaa_intf->fif, values,
428                               sizeof(struct dpaa_if_stats) / 8);
429
430         for (i = 0; i < num; i++) {
431                 xstats[i].id = i;
432                 xstats[i].value = values[dpaa_xstats_strings[i].offset / 8];
433         }
434         return i;
435 }
436
437 static int
438 dpaa_xstats_get_names(__rte_unused struct rte_eth_dev *dev,
439                       struct rte_eth_xstat_name *xstats_names,
440                       unsigned int limit)
441 {
442         unsigned int i, stat_cnt = RTE_DIM(dpaa_xstats_strings);
443
444         if (limit < stat_cnt)
445                 return stat_cnt;
446
447         if (xstats_names != NULL)
448                 for (i = 0; i < stat_cnt; i++)
449                         strlcpy(xstats_names[i].name,
450                                 dpaa_xstats_strings[i].name,
451                                 sizeof(xstats_names[i].name));
452
453         return stat_cnt;
454 }
455
456 static int
457 dpaa_xstats_get_by_id(struct rte_eth_dev *dev, const uint64_t *ids,
458                       uint64_t *values, unsigned int n)
459 {
460         unsigned int i, stat_cnt = RTE_DIM(dpaa_xstats_strings);
461         uint64_t values_copy[sizeof(struct dpaa_if_stats) / 8];
462
463         if (!ids) {
464                 struct dpaa_if *dpaa_intf = dev->data->dev_private;
465
466                 if (n < stat_cnt)
467                         return stat_cnt;
468
469                 if (!values)
470                         return 0;
471
472                 fman_if_stats_get_all(dpaa_intf->fif, values_copy,
473                                       sizeof(struct dpaa_if_stats) / 8);
474
475                 for (i = 0; i < stat_cnt; i++)
476                         values[i] =
477                                 values_copy[dpaa_xstats_strings[i].offset / 8];
478
479                 return stat_cnt;
480         }
481
482         dpaa_xstats_get_by_id(dev, NULL, values_copy, stat_cnt);
483
484         for (i = 0; i < n; i++) {
485                 if (ids[i] >= stat_cnt) {
486                         DPAA_PMD_ERR("id value isn't valid");
487                         return -1;
488                 }
489                 values[i] = values_copy[ids[i]];
490         }
491         return n;
492 }
493
494 static int
495 dpaa_xstats_get_names_by_id(
496         struct rte_eth_dev *dev,
497         struct rte_eth_xstat_name *xstats_names,
498         const uint64_t *ids,
499         unsigned int limit)
500 {
501         unsigned int i, stat_cnt = RTE_DIM(dpaa_xstats_strings);
502         struct rte_eth_xstat_name xstats_names_copy[stat_cnt];
503
504         if (!ids)
505                 return dpaa_xstats_get_names(dev, xstats_names, limit);
506
507         dpaa_xstats_get_names(dev, xstats_names_copy, limit);
508
509         for (i = 0; i < limit; i++) {
510                 if (ids[i] >= stat_cnt) {
511                         DPAA_PMD_ERR("id value isn't valid");
512                         return -1;
513                 }
514                 strcpy(xstats_names[i].name, xstats_names_copy[ids[i]].name);
515         }
516         return limit;
517 }
518
519 static int dpaa_eth_promiscuous_enable(struct rte_eth_dev *dev)
520 {
521         struct dpaa_if *dpaa_intf = dev->data->dev_private;
522
523         PMD_INIT_FUNC_TRACE();
524
525         fman_if_promiscuous_enable(dpaa_intf->fif);
526
527         return 0;
528 }
529
530 static int dpaa_eth_promiscuous_disable(struct rte_eth_dev *dev)
531 {
532         struct dpaa_if *dpaa_intf = dev->data->dev_private;
533
534         PMD_INIT_FUNC_TRACE();
535
536         fman_if_promiscuous_disable(dpaa_intf->fif);
537
538         return 0;
539 }
540
541 static int dpaa_eth_multicast_enable(struct rte_eth_dev *dev)
542 {
543         struct dpaa_if *dpaa_intf = dev->data->dev_private;
544
545         PMD_INIT_FUNC_TRACE();
546
547         fman_if_set_mcast_filter_table(dpaa_intf->fif);
548
549         return 0;
550 }
551
552 static int dpaa_eth_multicast_disable(struct rte_eth_dev *dev)
553 {
554         struct dpaa_if *dpaa_intf = dev->data->dev_private;
555
556         PMD_INIT_FUNC_TRACE();
557
558         fman_if_reset_mcast_filter_table(dpaa_intf->fif);
559
560         return 0;
561 }
562
563 static
564 int dpaa_eth_rx_queue_setup(struct rte_eth_dev *dev, uint16_t queue_idx,
565                             uint16_t nb_desc,
566                             unsigned int socket_id __rte_unused,
567                             const struct rte_eth_rxconf *rx_conf __rte_unused,
568                             struct rte_mempool *mp)
569 {
570         struct dpaa_if *dpaa_intf = dev->data->dev_private;
571         struct qman_fq *rxq = &dpaa_intf->rx_queues[queue_idx];
572         struct qm_mcc_initfq opts = {0};
573         u32 flags = 0;
574         int ret;
575         u32 buffsz = rte_pktmbuf_data_room_size(mp) - RTE_PKTMBUF_HEADROOM;
576
577         PMD_INIT_FUNC_TRACE();
578
579         if (queue_idx >= dev->data->nb_rx_queues) {
580                 rte_errno = EOVERFLOW;
581                 DPAA_PMD_ERR("%p: queue index out of range (%u >= %u)",
582                       (void *)dev, queue_idx, dev->data->nb_rx_queues);
583                 return -rte_errno;
584         }
585
586         DPAA_PMD_INFO("Rx queue setup for queue index: %d fq_id (0x%x)",
587                         queue_idx, rxq->fqid);
588
589         /* Max packet can fit in single buffer */
590         if (dev->data->dev_conf.rxmode.max_rx_pkt_len <= buffsz) {
591                 ;
592         } else if (dev->data->dev_conf.rxmode.offloads &
593                         DEV_RX_OFFLOAD_SCATTER) {
594                 if (dev->data->dev_conf.rxmode.max_rx_pkt_len >
595                         buffsz * DPAA_SGT_MAX_ENTRIES) {
596                         DPAA_PMD_ERR("max RxPkt size %d too big to fit "
597                                 "MaxSGlist %d",
598                                 dev->data->dev_conf.rxmode.max_rx_pkt_len,
599                                 buffsz * DPAA_SGT_MAX_ENTRIES);
600                         rte_errno = EOVERFLOW;
601                         return -rte_errno;
602                 }
603         } else {
604                 DPAA_PMD_WARN("The requested maximum Rx packet size (%u) is"
605                      " larger than a single mbuf (%u) and scattered"
606                      " mode has not been requested",
607                      dev->data->dev_conf.rxmode.max_rx_pkt_len,
608                      buffsz - RTE_PKTMBUF_HEADROOM);
609         }
610
611         if (!dpaa_intf->bp_info || dpaa_intf->bp_info->mp != mp) {
612                 struct fman_if_ic_params icp;
613                 uint32_t fd_offset;
614                 uint32_t bp_size;
615
616                 if (!mp->pool_data) {
617                         DPAA_PMD_ERR("Not an offloaded buffer pool!");
618                         return -1;
619                 }
620                 dpaa_intf->bp_info = DPAA_MEMPOOL_TO_POOL_INFO(mp);
621
622                 memset(&icp, 0, sizeof(icp));
623                 /* set ICEOF for to the default value , which is 0*/
624                 icp.iciof = DEFAULT_ICIOF;
625                 icp.iceof = DEFAULT_RX_ICEOF;
626                 icp.icsz = DEFAULT_ICSZ;
627                 fman_if_set_ic_params(dpaa_intf->fif, &icp);
628
629                 fd_offset = RTE_PKTMBUF_HEADROOM + DPAA_HW_BUF_RESERVE;
630                 fman_if_set_fdoff(dpaa_intf->fif, fd_offset);
631
632                 /* Buffer pool size should be equal to Dataroom Size*/
633                 bp_size = rte_pktmbuf_data_room_size(mp);
634                 fman_if_set_bp(dpaa_intf->fif, mp->size,
635                                dpaa_intf->bp_info->bpid, bp_size);
636                 dpaa_intf->valid = 1;
637                 DPAA_PMD_DEBUG("if:%s fd_offset = %d offset = %d",
638                                 dpaa_intf->name, fd_offset,
639                                 fman_if_get_fdoff(dpaa_intf->fif));
640         }
641         DPAA_PMD_DEBUG("if:%s sg_on = %d, max_frm =%d", dpaa_intf->name,
642                 fman_if_get_sg_enable(dpaa_intf->fif),
643                 dev->data->dev_conf.rxmode.max_rx_pkt_len);
644         /* checking if push mode only, no error check for now */
645         if (!rxq->is_static &&
646             dpaa_push_mode_max_queue > dpaa_push_queue_idx) {
647                 struct qman_portal *qp;
648                 int q_fd;
649
650                 dpaa_push_queue_idx++;
651                 opts.we_mask = QM_INITFQ_WE_FQCTRL | QM_INITFQ_WE_CONTEXTA;
652                 opts.fqd.fq_ctrl = QM_FQCTRL_AVOIDBLOCK |
653                                    QM_FQCTRL_CTXASTASHING |
654                                    QM_FQCTRL_PREFERINCACHE;
655                 opts.fqd.context_a.stashing.exclusive = 0;
656                 /* In muticore scenario stashing becomes a bottleneck on LS1046.
657                  * So do not enable stashing in this case
658                  */
659                 if (dpaa_svr_family != SVR_LS1046A_FAMILY)
660                         opts.fqd.context_a.stashing.annotation_cl =
661                                                 DPAA_IF_RX_ANNOTATION_STASH;
662                 opts.fqd.context_a.stashing.data_cl = DPAA_IF_RX_DATA_STASH;
663                 opts.fqd.context_a.stashing.context_cl =
664                                                 DPAA_IF_RX_CONTEXT_STASH;
665
666                 /*Create a channel and associate given queue with the channel*/
667                 qman_alloc_pool_range((u32 *)&rxq->ch_id, 1, 1, 0);
668                 opts.we_mask = opts.we_mask | QM_INITFQ_WE_DESTWQ;
669                 opts.fqd.dest.channel = rxq->ch_id;
670                 opts.fqd.dest.wq = DPAA_IF_RX_PRIORITY;
671                 flags = QMAN_INITFQ_FLAG_SCHED;
672
673                 /* Configure tail drop */
674                 if (dpaa_intf->cgr_rx) {
675                         opts.we_mask |= QM_INITFQ_WE_CGID;
676                         opts.fqd.cgid = dpaa_intf->cgr_rx[queue_idx].cgrid;
677                         opts.fqd.fq_ctrl |= QM_FQCTRL_CGE;
678                 }
679                 ret = qman_init_fq(rxq, flags, &opts);
680                 if (ret) {
681                         DPAA_PMD_ERR("Channel/Q association failed. fqid 0x%x "
682                                 "ret:%d(%s)", rxq->fqid, ret, strerror(ret));
683                         return ret;
684                 }
685                 if (dpaa_svr_family == SVR_LS1043A_FAMILY) {
686                         rxq->cb.dqrr_dpdk_pull_cb = dpaa_rx_cb_no_prefetch;
687                 } else {
688                         rxq->cb.dqrr_dpdk_pull_cb = dpaa_rx_cb;
689                         rxq->cb.dqrr_prepare = dpaa_rx_cb_prepare;
690                 }
691
692                 rxq->is_static = true;
693
694                 /* Allocate qman specific portals */
695                 qp = fsl_qman_fq_portal_create(&q_fd);
696                 if (!qp) {
697                         DPAA_PMD_ERR("Unable to alloc fq portal");
698                         return -1;
699                 }
700                 rxq->qp = qp;
701
702                 /* Set up the device interrupt handler */
703                 if (!dev->intr_handle) {
704                         struct rte_dpaa_device *dpaa_dev;
705                         struct rte_device *rdev = dev->device;
706
707                         dpaa_dev = container_of(rdev, struct rte_dpaa_device,
708                                                 device);
709                         dev->intr_handle = &dpaa_dev->intr_handle;
710                         dev->intr_handle->intr_vec = rte_zmalloc(NULL,
711                                         dpaa_push_mode_max_queue, 0);
712                         if (!dev->intr_handle->intr_vec) {
713                                 DPAA_PMD_ERR("intr_vec alloc failed");
714                                 return -ENOMEM;
715                         }
716                         dev->intr_handle->nb_efd = dpaa_push_mode_max_queue;
717                         dev->intr_handle->max_intr = dpaa_push_mode_max_queue;
718                 }
719
720                 dev->intr_handle->type = RTE_INTR_HANDLE_EXT;
721                 dev->intr_handle->intr_vec[queue_idx] = queue_idx + 1;
722                 dev->intr_handle->efds[queue_idx] = q_fd;
723                 rxq->q_fd = q_fd;
724         }
725         rxq->bp_array = rte_dpaa_bpid_info;
726         dev->data->rx_queues[queue_idx] = rxq;
727
728         /* configure the CGR size as per the desc size */
729         if (dpaa_intf->cgr_rx) {
730                 struct qm_mcc_initcgr cgr_opts = {0};
731
732                 /* Enable tail drop with cgr on this queue */
733                 qm_cgr_cs_thres_set64(&cgr_opts.cgr.cs_thres, nb_desc, 0);
734                 ret = qman_modify_cgr(dpaa_intf->cgr_rx, 0, &cgr_opts);
735                 if (ret) {
736                         DPAA_PMD_WARN(
737                                 "rx taildrop modify fail on fqid %d (ret=%d)",
738                                 rxq->fqid, ret);
739                 }
740         }
741
742         return 0;
743 }
744
745 int
746 dpaa_eth_eventq_attach(const struct rte_eth_dev *dev,
747                 int eth_rx_queue_id,
748                 u16 ch_id,
749                 const struct rte_event_eth_rx_adapter_queue_conf *queue_conf)
750 {
751         int ret;
752         u32 flags = 0;
753         struct dpaa_if *dpaa_intf = dev->data->dev_private;
754         struct qman_fq *rxq = &dpaa_intf->rx_queues[eth_rx_queue_id];
755         struct qm_mcc_initfq opts = {0};
756
757         if (dpaa_push_mode_max_queue)
758                 DPAA_PMD_WARN("PUSH mode q and EVENTDEV are not compatible\n"
759                               "PUSH mode already enabled for first %d queues.\n"
760                               "To disable set DPAA_PUSH_QUEUES_NUMBER to 0\n",
761                               dpaa_push_mode_max_queue);
762
763         dpaa_poll_queue_default_config(&opts);
764
765         switch (queue_conf->ev.sched_type) {
766         case RTE_SCHED_TYPE_ATOMIC:
767                 opts.fqd.fq_ctrl |= QM_FQCTRL_HOLDACTIVE;
768                 /* Reset FQCTRL_AVOIDBLOCK bit as it is unnecessary
769                  * configuration with HOLD_ACTIVE setting
770                  */
771                 opts.fqd.fq_ctrl &= (~QM_FQCTRL_AVOIDBLOCK);
772                 rxq->cb.dqrr_dpdk_cb = dpaa_rx_cb_atomic;
773                 break;
774         case RTE_SCHED_TYPE_ORDERED:
775                 DPAA_PMD_ERR("Ordered queue schedule type is not supported\n");
776                 return -1;
777         default:
778                 opts.fqd.fq_ctrl |= QM_FQCTRL_AVOIDBLOCK;
779                 rxq->cb.dqrr_dpdk_cb = dpaa_rx_cb_parallel;
780                 break;
781         }
782
783         opts.we_mask = opts.we_mask | QM_INITFQ_WE_DESTWQ;
784         opts.fqd.dest.channel = ch_id;
785         opts.fqd.dest.wq = queue_conf->ev.priority;
786
787         if (dpaa_intf->cgr_rx) {
788                 opts.we_mask |= QM_INITFQ_WE_CGID;
789                 opts.fqd.cgid = dpaa_intf->cgr_rx[eth_rx_queue_id].cgrid;
790                 opts.fqd.fq_ctrl |= QM_FQCTRL_CGE;
791         }
792
793         flags = QMAN_INITFQ_FLAG_SCHED;
794
795         ret = qman_init_fq(rxq, flags, &opts);
796         if (ret) {
797                 DPAA_PMD_ERR("Ev-Channel/Q association failed. fqid 0x%x "
798                                 "ret:%d(%s)", rxq->fqid, ret, strerror(ret));
799                 return ret;
800         }
801
802         /* copy configuration which needs to be filled during dequeue */
803         memcpy(&rxq->ev, &queue_conf->ev, sizeof(struct rte_event));
804         dev->data->rx_queues[eth_rx_queue_id] = rxq;
805
806         return ret;
807 }
808
809 int
810 dpaa_eth_eventq_detach(const struct rte_eth_dev *dev,
811                 int eth_rx_queue_id)
812 {
813         struct qm_mcc_initfq opts;
814         int ret;
815         u32 flags = 0;
816         struct dpaa_if *dpaa_intf = dev->data->dev_private;
817         struct qman_fq *rxq = &dpaa_intf->rx_queues[eth_rx_queue_id];
818
819         dpaa_poll_queue_default_config(&opts);
820
821         if (dpaa_intf->cgr_rx) {
822                 opts.we_mask |= QM_INITFQ_WE_CGID;
823                 opts.fqd.cgid = dpaa_intf->cgr_rx[eth_rx_queue_id].cgrid;
824                 opts.fqd.fq_ctrl |= QM_FQCTRL_CGE;
825         }
826
827         ret = qman_init_fq(rxq, flags, &opts);
828         if (ret) {
829                 DPAA_PMD_ERR("init rx fqid %d failed with ret: %d",
830                              rxq->fqid, ret);
831         }
832
833         rxq->cb.dqrr_dpdk_cb = NULL;
834         dev->data->rx_queues[eth_rx_queue_id] = NULL;
835
836         return 0;
837 }
838
839 static
840 void dpaa_eth_rx_queue_release(void *rxq __rte_unused)
841 {
842         PMD_INIT_FUNC_TRACE();
843 }
844
845 static
846 int dpaa_eth_tx_queue_setup(struct rte_eth_dev *dev, uint16_t queue_idx,
847                             uint16_t nb_desc __rte_unused,
848                 unsigned int socket_id __rte_unused,
849                 const struct rte_eth_txconf *tx_conf __rte_unused)
850 {
851         struct dpaa_if *dpaa_intf = dev->data->dev_private;
852
853         PMD_INIT_FUNC_TRACE();
854
855         if (queue_idx >= dev->data->nb_tx_queues) {
856                 rte_errno = EOVERFLOW;
857                 DPAA_PMD_ERR("%p: queue index out of range (%u >= %u)",
858                       (void *)dev, queue_idx, dev->data->nb_tx_queues);
859                 return -rte_errno;
860         }
861
862         DPAA_PMD_INFO("Tx queue setup for queue index: %d fq_id (0x%x)",
863                         queue_idx, dpaa_intf->tx_queues[queue_idx].fqid);
864         dev->data->tx_queues[queue_idx] = &dpaa_intf->tx_queues[queue_idx];
865         return 0;
866 }
867
868 static void dpaa_eth_tx_queue_release(void *txq __rte_unused)
869 {
870         PMD_INIT_FUNC_TRACE();
871 }
872
873 static uint32_t
874 dpaa_dev_rx_queue_count(struct rte_eth_dev *dev, uint16_t rx_queue_id)
875 {
876         struct dpaa_if *dpaa_intf = dev->data->dev_private;
877         struct qman_fq *rxq = &dpaa_intf->rx_queues[rx_queue_id];
878         u32 frm_cnt = 0;
879
880         PMD_INIT_FUNC_TRACE();
881
882         if (qman_query_fq_frm_cnt(rxq, &frm_cnt) == 0) {
883                 RTE_LOG(DEBUG, PMD, "RX frame count for q(%d) is %u\n",
884                         rx_queue_id, frm_cnt);
885         }
886         return frm_cnt;
887 }
888
889 static int dpaa_link_down(struct rte_eth_dev *dev)
890 {
891         PMD_INIT_FUNC_TRACE();
892
893         dpaa_eth_dev_stop(dev);
894         return 0;
895 }
896
897 static int dpaa_link_up(struct rte_eth_dev *dev)
898 {
899         PMD_INIT_FUNC_TRACE();
900
901         dpaa_eth_dev_start(dev);
902         return 0;
903 }
904
905 static int
906 dpaa_flow_ctrl_set(struct rte_eth_dev *dev,
907                    struct rte_eth_fc_conf *fc_conf)
908 {
909         struct dpaa_if *dpaa_intf = dev->data->dev_private;
910         struct rte_eth_fc_conf *net_fc;
911
912         PMD_INIT_FUNC_TRACE();
913
914         if (!(dpaa_intf->fc_conf)) {
915                 dpaa_intf->fc_conf = rte_zmalloc(NULL,
916                         sizeof(struct rte_eth_fc_conf), MAX_CACHELINE);
917                 if (!dpaa_intf->fc_conf) {
918                         DPAA_PMD_ERR("unable to save flow control info");
919                         return -ENOMEM;
920                 }
921         }
922         net_fc = dpaa_intf->fc_conf;
923
924         if (fc_conf->high_water < fc_conf->low_water) {
925                 DPAA_PMD_ERR("Incorrect Flow Control Configuration");
926                 return -EINVAL;
927         }
928
929         if (fc_conf->mode == RTE_FC_NONE) {
930                 return 0;
931         } else if (fc_conf->mode == RTE_FC_TX_PAUSE ||
932                  fc_conf->mode == RTE_FC_FULL) {
933                 fman_if_set_fc_threshold(dpaa_intf->fif, fc_conf->high_water,
934                                          fc_conf->low_water,
935                                 dpaa_intf->bp_info->bpid);
936                 if (fc_conf->pause_time)
937                         fman_if_set_fc_quanta(dpaa_intf->fif,
938                                               fc_conf->pause_time);
939         }
940
941         /* Save the information in dpaa device */
942         net_fc->pause_time = fc_conf->pause_time;
943         net_fc->high_water = fc_conf->high_water;
944         net_fc->low_water = fc_conf->low_water;
945         net_fc->send_xon = fc_conf->send_xon;
946         net_fc->mac_ctrl_frame_fwd = fc_conf->mac_ctrl_frame_fwd;
947         net_fc->mode = fc_conf->mode;
948         net_fc->autoneg = fc_conf->autoneg;
949
950         return 0;
951 }
952
953 static int
954 dpaa_flow_ctrl_get(struct rte_eth_dev *dev,
955                    struct rte_eth_fc_conf *fc_conf)
956 {
957         struct dpaa_if *dpaa_intf = dev->data->dev_private;
958         struct rte_eth_fc_conf *net_fc = dpaa_intf->fc_conf;
959         int ret;
960
961         PMD_INIT_FUNC_TRACE();
962
963         if (net_fc) {
964                 fc_conf->pause_time = net_fc->pause_time;
965                 fc_conf->high_water = net_fc->high_water;
966                 fc_conf->low_water = net_fc->low_water;
967                 fc_conf->send_xon = net_fc->send_xon;
968                 fc_conf->mac_ctrl_frame_fwd = net_fc->mac_ctrl_frame_fwd;
969                 fc_conf->mode = net_fc->mode;
970                 fc_conf->autoneg = net_fc->autoneg;
971                 return 0;
972         }
973         ret = fman_if_get_fc_threshold(dpaa_intf->fif);
974         if (ret) {
975                 fc_conf->mode = RTE_FC_TX_PAUSE;
976                 fc_conf->pause_time = fman_if_get_fc_quanta(dpaa_intf->fif);
977         } else {
978                 fc_conf->mode = RTE_FC_NONE;
979         }
980
981         return 0;
982 }
983
984 static int
985 dpaa_dev_add_mac_addr(struct rte_eth_dev *dev,
986                              struct rte_ether_addr *addr,
987                              uint32_t index,
988                              __rte_unused uint32_t pool)
989 {
990         int ret;
991         struct dpaa_if *dpaa_intf = dev->data->dev_private;
992
993         PMD_INIT_FUNC_TRACE();
994
995         ret = fman_if_add_mac_addr(dpaa_intf->fif, addr->addr_bytes, index);
996
997         if (ret)
998                 RTE_LOG(ERR, PMD, "error: Adding the MAC ADDR failed:"
999                         " err = %d", ret);
1000         return 0;
1001 }
1002
1003 static void
1004 dpaa_dev_remove_mac_addr(struct rte_eth_dev *dev,
1005                           uint32_t index)
1006 {
1007         struct dpaa_if *dpaa_intf = dev->data->dev_private;
1008
1009         PMD_INIT_FUNC_TRACE();
1010
1011         fman_if_clear_mac_addr(dpaa_intf->fif, index);
1012 }
1013
1014 static int
1015 dpaa_dev_set_mac_addr(struct rte_eth_dev *dev,
1016                        struct rte_ether_addr *addr)
1017 {
1018         int ret;
1019         struct dpaa_if *dpaa_intf = dev->data->dev_private;
1020
1021         PMD_INIT_FUNC_TRACE();
1022
1023         ret = fman_if_add_mac_addr(dpaa_intf->fif, addr->addr_bytes, 0);
1024         if (ret)
1025                 RTE_LOG(ERR, PMD, "error: Setting the MAC ADDR failed %d", ret);
1026
1027         return ret;
1028 }
1029
1030 static struct eth_dev_ops dpaa_devops = {
1031         .dev_configure            = dpaa_eth_dev_configure,
1032         .dev_start                = dpaa_eth_dev_start,
1033         .dev_stop                 = dpaa_eth_dev_stop,
1034         .dev_close                = dpaa_eth_dev_close,
1035         .dev_infos_get            = dpaa_eth_dev_info,
1036         .dev_supported_ptypes_get = dpaa_supported_ptypes_get,
1037
1038         .rx_queue_setup           = dpaa_eth_rx_queue_setup,
1039         .tx_queue_setup           = dpaa_eth_tx_queue_setup,
1040         .rx_queue_release         = dpaa_eth_rx_queue_release,
1041         .tx_queue_release         = dpaa_eth_tx_queue_release,
1042         .rx_queue_count           = dpaa_dev_rx_queue_count,
1043
1044         .flow_ctrl_get            = dpaa_flow_ctrl_get,
1045         .flow_ctrl_set            = dpaa_flow_ctrl_set,
1046
1047         .link_update              = dpaa_eth_link_update,
1048         .stats_get                = dpaa_eth_stats_get,
1049         .xstats_get               = dpaa_dev_xstats_get,
1050         .xstats_get_by_id         = dpaa_xstats_get_by_id,
1051         .xstats_get_names_by_id   = dpaa_xstats_get_names_by_id,
1052         .xstats_get_names         = dpaa_xstats_get_names,
1053         .xstats_reset             = dpaa_eth_stats_reset,
1054         .stats_reset              = dpaa_eth_stats_reset,
1055         .promiscuous_enable       = dpaa_eth_promiscuous_enable,
1056         .promiscuous_disable      = dpaa_eth_promiscuous_disable,
1057         .allmulticast_enable      = dpaa_eth_multicast_enable,
1058         .allmulticast_disable     = dpaa_eth_multicast_disable,
1059         .mtu_set                  = dpaa_mtu_set,
1060         .dev_set_link_down        = dpaa_link_down,
1061         .dev_set_link_up          = dpaa_link_up,
1062         .mac_addr_add             = dpaa_dev_add_mac_addr,
1063         .mac_addr_remove          = dpaa_dev_remove_mac_addr,
1064         .mac_addr_set             = dpaa_dev_set_mac_addr,
1065
1066         .fw_version_get           = dpaa_fw_version_get,
1067 };
1068
1069 static bool
1070 is_device_supported(struct rte_eth_dev *dev, struct rte_dpaa_driver *drv)
1071 {
1072         if (strcmp(dev->device->driver->name,
1073                    drv->driver.name))
1074                 return false;
1075
1076         return true;
1077 }
1078
1079 static bool
1080 is_dpaa_supported(struct rte_eth_dev *dev)
1081 {
1082         return is_device_supported(dev, &rte_dpaa_pmd);
1083 }
1084
1085 int
1086 rte_pmd_dpaa_set_tx_loopback(uint8_t port, uint8_t on)
1087 {
1088         struct rte_eth_dev *dev;
1089         struct dpaa_if *dpaa_intf;
1090
1091         RTE_ETH_VALID_PORTID_OR_ERR_RET(port, -ENODEV);
1092
1093         dev = &rte_eth_devices[port];
1094
1095         if (!is_dpaa_supported(dev))
1096                 return -ENOTSUP;
1097
1098         dpaa_intf = dev->data->dev_private;
1099
1100         if (on)
1101                 fman_if_loopback_enable(dpaa_intf->fif);
1102         else
1103                 fman_if_loopback_disable(dpaa_intf->fif);
1104
1105         return 0;
1106 }
1107
1108 static int dpaa_fc_set_default(struct dpaa_if *dpaa_intf)
1109 {
1110         struct rte_eth_fc_conf *fc_conf;
1111         int ret;
1112
1113         PMD_INIT_FUNC_TRACE();
1114
1115         if (!(dpaa_intf->fc_conf)) {
1116                 dpaa_intf->fc_conf = rte_zmalloc(NULL,
1117                         sizeof(struct rte_eth_fc_conf), MAX_CACHELINE);
1118                 if (!dpaa_intf->fc_conf) {
1119                         DPAA_PMD_ERR("unable to save flow control info");
1120                         return -ENOMEM;
1121                 }
1122         }
1123         fc_conf = dpaa_intf->fc_conf;
1124         ret = fman_if_get_fc_threshold(dpaa_intf->fif);
1125         if (ret) {
1126                 fc_conf->mode = RTE_FC_TX_PAUSE;
1127                 fc_conf->pause_time = fman_if_get_fc_quanta(dpaa_intf->fif);
1128         } else {
1129                 fc_conf->mode = RTE_FC_NONE;
1130         }
1131
1132         return 0;
1133 }
1134
1135 /* Initialise an Rx FQ */
1136 static int dpaa_rx_queue_init(struct qman_fq *fq, struct qman_cgr *cgr_rx,
1137                               uint32_t fqid)
1138 {
1139         struct qm_mcc_initfq opts = {0};
1140         int ret;
1141         u32 flags = QMAN_FQ_FLAG_NO_ENQUEUE;
1142         struct qm_mcc_initcgr cgr_opts = {
1143                 .we_mask = QM_CGR_WE_CS_THRES |
1144                                 QM_CGR_WE_CSTD_EN |
1145                                 QM_CGR_WE_MODE,
1146                 .cgr = {
1147                         .cstd_en = QM_CGR_EN,
1148                         .mode = QMAN_CGR_MODE_FRAME
1149                 }
1150         };
1151
1152         PMD_INIT_FUNC_TRACE();
1153
1154         if (fqid) {
1155                 ret = qman_reserve_fqid(fqid);
1156                 if (ret) {
1157                         DPAA_PMD_ERR("reserve rx fqid 0x%x failed with ret: %d",
1158                                      fqid, ret);
1159                         return -EINVAL;
1160                 }
1161         } else {
1162                 flags |= QMAN_FQ_FLAG_DYNAMIC_FQID;
1163         }
1164         DPAA_PMD_DEBUG("creating rx fq %p, fqid 0x%x", fq, fqid);
1165         ret = qman_create_fq(fqid, flags, fq);
1166         if (ret) {
1167                 DPAA_PMD_ERR("create rx fqid 0x%x failed with ret: %d",
1168                         fqid, ret);
1169                 return ret;
1170         }
1171         fq->is_static = false;
1172
1173         dpaa_poll_queue_default_config(&opts);
1174
1175         if (cgr_rx) {
1176                 /* Enable tail drop with cgr on this queue */
1177                 qm_cgr_cs_thres_set64(&cgr_opts.cgr.cs_thres, td_threshold, 0);
1178                 cgr_rx->cb = NULL;
1179                 ret = qman_create_cgr(cgr_rx, QMAN_CGR_FLAG_USE_INIT,
1180                                       &cgr_opts);
1181                 if (ret) {
1182                         DPAA_PMD_WARN(
1183                                 "rx taildrop init fail on rx fqid 0x%x(ret=%d)",
1184                                 fq->fqid, ret);
1185                         goto without_cgr;
1186                 }
1187                 opts.we_mask |= QM_INITFQ_WE_CGID;
1188                 opts.fqd.cgid = cgr_rx->cgrid;
1189                 opts.fqd.fq_ctrl |= QM_FQCTRL_CGE;
1190         }
1191 without_cgr:
1192         ret = qman_init_fq(fq, 0, &opts);
1193         if (ret)
1194                 DPAA_PMD_ERR("init rx fqid 0x%x failed with ret:%d", fqid, ret);
1195         return ret;
1196 }
1197
1198 /* Initialise a Tx FQ */
1199 static int dpaa_tx_queue_init(struct qman_fq *fq,
1200                               struct fman_if *fman_intf)
1201 {
1202         struct qm_mcc_initfq opts = {0};
1203         int ret;
1204
1205         PMD_INIT_FUNC_TRACE();
1206
1207         ret = qman_create_fq(0, QMAN_FQ_FLAG_DYNAMIC_FQID |
1208                              QMAN_FQ_FLAG_TO_DCPORTAL, fq);
1209         if (ret) {
1210                 DPAA_PMD_ERR("create tx fq failed with ret: %d", ret);
1211                 return ret;
1212         }
1213         opts.we_mask = QM_INITFQ_WE_DESTWQ | QM_INITFQ_WE_FQCTRL |
1214                        QM_INITFQ_WE_CONTEXTB | QM_INITFQ_WE_CONTEXTA;
1215         opts.fqd.dest.channel = fman_intf->tx_channel_id;
1216         opts.fqd.dest.wq = DPAA_IF_TX_PRIORITY;
1217         opts.fqd.fq_ctrl = QM_FQCTRL_PREFERINCACHE;
1218         opts.fqd.context_b = 0;
1219         /* no tx-confirmation */
1220         opts.fqd.context_a.hi = 0x80000000 | fman_dealloc_bufs_mask_hi;
1221         opts.fqd.context_a.lo = 0 | fman_dealloc_bufs_mask_lo;
1222         DPAA_PMD_DEBUG("init tx fq %p, fqid 0x%x", fq, fq->fqid);
1223         ret = qman_init_fq(fq, QMAN_INITFQ_FLAG_SCHED, &opts);
1224         if (ret)
1225                 DPAA_PMD_ERR("init tx fqid 0x%x failed %d", fq->fqid, ret);
1226         return ret;
1227 }
1228
1229 #ifdef RTE_LIBRTE_DPAA_DEBUG_DRIVER
1230 /* Initialise a DEBUG FQ ([rt]x_error, rx_default). */
1231 static int dpaa_debug_queue_init(struct qman_fq *fq, uint32_t fqid)
1232 {
1233         struct qm_mcc_initfq opts = {0};
1234         int ret;
1235
1236         PMD_INIT_FUNC_TRACE();
1237
1238         ret = qman_reserve_fqid(fqid);
1239         if (ret) {
1240                 DPAA_PMD_ERR("Reserve debug fqid %d failed with ret: %d",
1241                         fqid, ret);
1242                 return -EINVAL;
1243         }
1244         /* "map" this Rx FQ to one of the interfaces Tx FQID */
1245         DPAA_PMD_DEBUG("Creating debug fq %p, fqid %d", fq, fqid);
1246         ret = qman_create_fq(fqid, QMAN_FQ_FLAG_NO_ENQUEUE, fq);
1247         if (ret) {
1248                 DPAA_PMD_ERR("create debug fqid %d failed with ret: %d",
1249                         fqid, ret);
1250                 return ret;
1251         }
1252         opts.we_mask = QM_INITFQ_WE_DESTWQ | QM_INITFQ_WE_FQCTRL;
1253         opts.fqd.dest.wq = DPAA_IF_DEBUG_PRIORITY;
1254         ret = qman_init_fq(fq, 0, &opts);
1255         if (ret)
1256                 DPAA_PMD_ERR("init debug fqid %d failed with ret: %d",
1257                             fqid, ret);
1258         return ret;
1259 }
1260 #endif
1261
1262 /* Initialise a network interface */
1263 static int
1264 dpaa_dev_init(struct rte_eth_dev *eth_dev)
1265 {
1266         int num_rx_fqs, fqid;
1267         int loop, ret = 0;
1268         int dev_id;
1269         struct rte_dpaa_device *dpaa_device;
1270         struct dpaa_if *dpaa_intf;
1271         struct fm_eth_port_cfg *cfg;
1272         struct fman_if *fman_intf;
1273         struct fman_if_bpool *bp, *tmp_bp;
1274         uint32_t cgrid[DPAA_MAX_NUM_PCD_QUEUES];
1275
1276         PMD_INIT_FUNC_TRACE();
1277
1278         dpaa_intf = eth_dev->data->dev_private;
1279         /* For secondary processes, the primary has done all the work */
1280         if (rte_eal_process_type() != RTE_PROC_PRIMARY) {
1281                 eth_dev->dev_ops = &dpaa_devops;
1282                 /* Plugging of UCODE burst API not supported in Secondary */
1283                 eth_dev->rx_pkt_burst = dpaa_eth_queue_rx;
1284                 eth_dev->tx_pkt_burst = dpaa_eth_queue_tx;
1285 #ifdef CONFIG_FSL_QMAN_FQ_LOOKUP
1286                 qman_set_fq_lookup_table(
1287                                 dpaa_intf->rx_queues->qman_fq_lookup_table);
1288 #endif
1289                 return 0;
1290         }
1291
1292         dpaa_device = DEV_TO_DPAA_DEVICE(eth_dev->device);
1293         dev_id = dpaa_device->id.dev_id;
1294         dpaa_intf = eth_dev->data->dev_private;
1295         cfg = &dpaa_netcfg->port_cfg[dev_id];
1296         fman_intf = cfg->fman_if;
1297
1298         dpaa_intf->name = dpaa_device->name;
1299
1300         /* save fman_if & cfg in the interface struture */
1301         dpaa_intf->fif = fman_intf;
1302         dpaa_intf->ifid = dev_id;
1303         dpaa_intf->cfg = cfg;
1304
1305         /* Initialize Rx FQ's */
1306         if (default_q) {
1307                 num_rx_fqs = DPAA_DEFAULT_NUM_PCD_QUEUES;
1308         } else {
1309                 if (getenv("DPAA_NUM_RX_QUEUES"))
1310                         num_rx_fqs = atoi(getenv("DPAA_NUM_RX_QUEUES"));
1311                 else
1312                         num_rx_fqs = DPAA_DEFAULT_NUM_PCD_QUEUES;
1313         }
1314
1315
1316         /* Each device can not have more than DPAA_MAX_NUM_PCD_QUEUES RX
1317          * queues.
1318          */
1319         if (num_rx_fqs <= 0 || num_rx_fqs > DPAA_MAX_NUM_PCD_QUEUES) {
1320                 DPAA_PMD_ERR("Invalid number of RX queues\n");
1321                 return -EINVAL;
1322         }
1323
1324         dpaa_intf->rx_queues = rte_zmalloc(NULL,
1325                 sizeof(struct qman_fq) * num_rx_fqs, MAX_CACHELINE);
1326         if (!dpaa_intf->rx_queues) {
1327                 DPAA_PMD_ERR("Failed to alloc mem for RX queues\n");
1328                 return -ENOMEM;
1329         }
1330
1331         /* If congestion control is enabled globally*/
1332         if (td_threshold) {
1333                 dpaa_intf->cgr_rx = rte_zmalloc(NULL,
1334                         sizeof(struct qman_cgr) * num_rx_fqs, MAX_CACHELINE);
1335                 if (!dpaa_intf->cgr_rx) {
1336                         DPAA_PMD_ERR("Failed to alloc mem for cgr_rx\n");
1337                         ret = -ENOMEM;
1338                         goto free_rx;
1339                 }
1340
1341                 ret = qman_alloc_cgrid_range(&cgrid[0], num_rx_fqs, 1, 0);
1342                 if (ret != num_rx_fqs) {
1343                         DPAA_PMD_WARN("insufficient CGRIDs available");
1344                         ret = -EINVAL;
1345                         goto free_rx;
1346                 }
1347         } else {
1348                 dpaa_intf->cgr_rx = NULL;
1349         }
1350
1351         for (loop = 0; loop < num_rx_fqs; loop++) {
1352                 if (default_q)
1353                         fqid = cfg->rx_def;
1354                 else
1355                         fqid = DPAA_PCD_FQID_START + dpaa_intf->fif->mac_idx *
1356                                 DPAA_PCD_FQID_MULTIPLIER + loop;
1357
1358                 if (dpaa_intf->cgr_rx)
1359                         dpaa_intf->cgr_rx[loop].cgrid = cgrid[loop];
1360
1361                 ret = dpaa_rx_queue_init(&dpaa_intf->rx_queues[loop],
1362                         dpaa_intf->cgr_rx ? &dpaa_intf->cgr_rx[loop] : NULL,
1363                         fqid);
1364                 if (ret)
1365                         goto free_rx;
1366                 dpaa_intf->rx_queues[loop].dpaa_intf = dpaa_intf;
1367         }
1368         dpaa_intf->nb_rx_queues = num_rx_fqs;
1369
1370         /* Initialise Tx FQs.free_rx Have as many Tx FQ's as number of cores */
1371         dpaa_intf->tx_queues = rte_zmalloc(NULL, sizeof(struct qman_fq) *
1372                 MAX_DPAA_CORES, MAX_CACHELINE);
1373         if (!dpaa_intf->tx_queues) {
1374                 DPAA_PMD_ERR("Failed to alloc mem for TX queues\n");
1375                 ret = -ENOMEM;
1376                 goto free_rx;
1377         }
1378
1379         for (loop = 0; loop < MAX_DPAA_CORES; loop++) {
1380                 ret = dpaa_tx_queue_init(&dpaa_intf->tx_queues[loop],
1381                                          fman_intf);
1382                 if (ret)
1383                         goto free_tx;
1384                 dpaa_intf->tx_queues[loop].dpaa_intf = dpaa_intf;
1385         }
1386         dpaa_intf->nb_tx_queues = MAX_DPAA_CORES;
1387
1388 #ifdef RTE_LIBRTE_DPAA_DEBUG_DRIVER
1389         dpaa_debug_queue_init(&dpaa_intf->debug_queues[
1390                 DPAA_DEBUG_FQ_RX_ERROR], fman_intf->fqid_rx_err);
1391         dpaa_intf->debug_queues[DPAA_DEBUG_FQ_RX_ERROR].dpaa_intf = dpaa_intf;
1392         dpaa_debug_queue_init(&dpaa_intf->debug_queues[
1393                 DPAA_DEBUG_FQ_TX_ERROR], fman_intf->fqid_tx_err);
1394         dpaa_intf->debug_queues[DPAA_DEBUG_FQ_TX_ERROR].dpaa_intf = dpaa_intf;
1395 #endif
1396
1397         DPAA_PMD_DEBUG("All frame queues created");
1398
1399         /* Get the initial configuration for flow control */
1400         dpaa_fc_set_default(dpaa_intf);
1401
1402         /* reset bpool list, initialize bpool dynamically */
1403         list_for_each_entry_safe(bp, tmp_bp, &cfg->fman_if->bpool_list, node) {
1404                 list_del(&bp->node);
1405                 rte_free(bp);
1406         }
1407
1408         /* Populate ethdev structure */
1409         eth_dev->dev_ops = &dpaa_devops;
1410         eth_dev->rx_pkt_burst = dpaa_eth_queue_rx;
1411         eth_dev->tx_pkt_burst = dpaa_eth_tx_drop_all;
1412
1413         /* Allocate memory for storing MAC addresses */
1414         eth_dev->data->mac_addrs = rte_zmalloc("mac_addr",
1415                 RTE_ETHER_ADDR_LEN * DPAA_MAX_MAC_FILTER, 0);
1416         if (eth_dev->data->mac_addrs == NULL) {
1417                 DPAA_PMD_ERR("Failed to allocate %d bytes needed to "
1418                                                 "store MAC addresses",
1419                                 RTE_ETHER_ADDR_LEN * DPAA_MAX_MAC_FILTER);
1420                 ret = -ENOMEM;
1421                 goto free_tx;
1422         }
1423
1424         /* copy the primary mac address */
1425         rte_ether_addr_copy(&fman_intf->mac_addr, &eth_dev->data->mac_addrs[0]);
1426
1427         RTE_LOG(INFO, PMD, "net: dpaa: %s: %02x:%02x:%02x:%02x:%02x:%02x\n",
1428                 dpaa_device->name,
1429                 fman_intf->mac_addr.addr_bytes[0],
1430                 fman_intf->mac_addr.addr_bytes[1],
1431                 fman_intf->mac_addr.addr_bytes[2],
1432                 fman_intf->mac_addr.addr_bytes[3],
1433                 fman_intf->mac_addr.addr_bytes[4],
1434                 fman_intf->mac_addr.addr_bytes[5]);
1435
1436         /* Disable RX mode */
1437         fman_if_discard_rx_errors(fman_intf);
1438         fman_if_disable_rx(fman_intf);
1439         /* Disable promiscuous mode */
1440         fman_if_promiscuous_disable(fman_intf);
1441         /* Disable multicast */
1442         fman_if_reset_mcast_filter_table(fman_intf);
1443         /* Reset interface statistics */
1444         fman_if_stats_reset(fman_intf);
1445         /* Disable SG by default */
1446         fman_if_set_sg(fman_intf, 0);
1447         fman_if_set_maxfrm(fman_intf, RTE_ETHER_MAX_LEN + VLAN_TAG_SIZE);
1448
1449         return 0;
1450
1451 free_tx:
1452         rte_free(dpaa_intf->tx_queues);
1453         dpaa_intf->tx_queues = NULL;
1454         dpaa_intf->nb_tx_queues = 0;
1455
1456 free_rx:
1457         rte_free(dpaa_intf->cgr_rx);
1458         rte_free(dpaa_intf->rx_queues);
1459         dpaa_intf->rx_queues = NULL;
1460         dpaa_intf->nb_rx_queues = 0;
1461         return ret;
1462 }
1463
1464 static int
1465 dpaa_dev_uninit(struct rte_eth_dev *dev)
1466 {
1467         struct dpaa_if *dpaa_intf = dev->data->dev_private;
1468         int loop;
1469
1470         PMD_INIT_FUNC_TRACE();
1471
1472         if (rte_eal_process_type() != RTE_PROC_PRIMARY)
1473                 return -EPERM;
1474
1475         if (!dpaa_intf) {
1476                 DPAA_PMD_WARN("Already closed or not started");
1477                 return -1;
1478         }
1479
1480         dpaa_eth_dev_close(dev);
1481
1482         /* release configuration memory */
1483         if (dpaa_intf->fc_conf)
1484                 rte_free(dpaa_intf->fc_conf);
1485
1486         /* Release RX congestion Groups */
1487         if (dpaa_intf->cgr_rx) {
1488                 for (loop = 0; loop < dpaa_intf->nb_rx_queues; loop++)
1489                         qman_delete_cgr(&dpaa_intf->cgr_rx[loop]);
1490
1491                 qman_release_cgrid_range(dpaa_intf->cgr_rx[loop].cgrid,
1492                                          dpaa_intf->nb_rx_queues);
1493         }
1494
1495         rte_free(dpaa_intf->cgr_rx);
1496         dpaa_intf->cgr_rx = NULL;
1497
1498         rte_free(dpaa_intf->rx_queues);
1499         dpaa_intf->rx_queues = NULL;
1500
1501         rte_free(dpaa_intf->tx_queues);
1502         dpaa_intf->tx_queues = NULL;
1503
1504         dev->dev_ops = NULL;
1505         dev->rx_pkt_burst = NULL;
1506         dev->tx_pkt_burst = NULL;
1507
1508         return 0;
1509 }
1510
1511 static int
1512 rte_dpaa_probe(struct rte_dpaa_driver *dpaa_drv __rte_unused,
1513                struct rte_dpaa_device *dpaa_dev)
1514 {
1515         int diag;
1516         int ret;
1517         struct rte_eth_dev *eth_dev;
1518
1519         PMD_INIT_FUNC_TRACE();
1520
1521         if ((DPAA_MBUF_HW_ANNOTATION + DPAA_FD_PTA_SIZE) >
1522                 RTE_PKTMBUF_HEADROOM) {
1523                 DPAA_PMD_ERR(
1524                 "RTE_PKTMBUF_HEADROOM(%d) shall be > DPAA Annotation req(%d)",
1525                 RTE_PKTMBUF_HEADROOM,
1526                 DPAA_MBUF_HW_ANNOTATION + DPAA_FD_PTA_SIZE);
1527
1528                 return -1;
1529         }
1530
1531         /* In case of secondary process, the device is already configured
1532          * and no further action is required, except portal initialization
1533          * and verifying secondary attachment to port name.
1534          */
1535         if (rte_eal_process_type() != RTE_PROC_PRIMARY) {
1536                 eth_dev = rte_eth_dev_attach_secondary(dpaa_dev->name);
1537                 if (!eth_dev)
1538                         return -ENOMEM;
1539                 eth_dev->device = &dpaa_dev->device;
1540                 eth_dev->dev_ops = &dpaa_devops;
1541                 rte_eth_dev_probing_finish(eth_dev);
1542                 return 0;
1543         }
1544
1545         if (!is_global_init && (rte_eal_process_type() == RTE_PROC_PRIMARY)) {
1546                 /* One time load of Qman/Bman drivers */
1547                 ret = qman_global_init();
1548                 if (ret) {
1549                         DPAA_PMD_ERR("QMAN initialization failed: %d",
1550                                      ret);
1551                         return ret;
1552                 }
1553                 ret = bman_global_init();
1554                 if (ret) {
1555                         DPAA_PMD_ERR("BMAN initialization failed: %d",
1556                                      ret);
1557                         return ret;
1558                 }
1559
1560                 if (access("/tmp/fmc.bin", F_OK) == -1) {
1561                         RTE_LOG(INFO, PMD,
1562                                 "* FMC not configured.Enabling default mode\n");
1563                         default_q = 1;
1564                 }
1565
1566                 /* disabling the default push mode for LS1043 */
1567                 if (dpaa_svr_family == SVR_LS1043A_FAMILY)
1568                         dpaa_push_mode_max_queue = 0;
1569
1570                 /* if push mode queues to be enabled. Currenly we are allowing
1571                  * only one queue per thread.
1572                  */
1573                 if (getenv("DPAA_PUSH_QUEUES_NUMBER")) {
1574                         dpaa_push_mode_max_queue =
1575                                         atoi(getenv("DPAA_PUSH_QUEUES_NUMBER"));
1576                         if (dpaa_push_mode_max_queue > DPAA_MAX_PUSH_MODE_QUEUE)
1577                             dpaa_push_mode_max_queue = DPAA_MAX_PUSH_MODE_QUEUE;
1578                 }
1579
1580                 is_global_init = 1;
1581         }
1582
1583         if (unlikely(!RTE_PER_LCORE(dpaa_io))) {
1584                 ret = rte_dpaa_portal_init((void *)1);
1585                 if (ret) {
1586                         DPAA_PMD_ERR("Unable to initialize portal");
1587                         return ret;
1588                 }
1589         }
1590
1591         /* In case of secondary process, the device is already configured
1592          * and no further action is required, except portal initialization
1593          * and verifying secondary attachment to port name.
1594          */
1595         if (rte_eal_process_type() != RTE_PROC_PRIMARY) {
1596                 eth_dev = rte_eth_dev_attach_secondary(dpaa_dev->name);
1597                 if (!eth_dev)
1598                         return -ENOMEM;
1599         } else {
1600                 eth_dev = rte_eth_dev_allocate(dpaa_dev->name);
1601                 if (eth_dev == NULL)
1602                         return -ENOMEM;
1603
1604                 eth_dev->data->dev_private = rte_zmalloc(
1605                                                 "ethdev private structure",
1606                                                 sizeof(struct dpaa_if),
1607                                                 RTE_CACHE_LINE_SIZE);
1608                 if (!eth_dev->data->dev_private) {
1609                         DPAA_PMD_ERR("Cannot allocate memzone for port data");
1610                         rte_eth_dev_release_port(eth_dev);
1611                         return -ENOMEM;
1612                 }
1613         }
1614         eth_dev->device = &dpaa_dev->device;
1615         dpaa_dev->eth_dev = eth_dev;
1616
1617         /* Invoke PMD device initialization function */
1618         diag = dpaa_dev_init(eth_dev);
1619         if (diag == 0) {
1620                 rte_eth_dev_probing_finish(eth_dev);
1621                 return 0;
1622         }
1623
1624         rte_eth_dev_release_port(eth_dev);
1625         return diag;
1626 }
1627
1628 static int
1629 rte_dpaa_remove(struct rte_dpaa_device *dpaa_dev)
1630 {
1631         struct rte_eth_dev *eth_dev;
1632
1633         PMD_INIT_FUNC_TRACE();
1634
1635         eth_dev = dpaa_dev->eth_dev;
1636         dpaa_dev_uninit(eth_dev);
1637
1638         rte_eth_dev_release_port(eth_dev);
1639
1640         return 0;
1641 }
1642
1643 static struct rte_dpaa_driver rte_dpaa_pmd = {
1644         .drv_type = FSL_DPAA_ETH,
1645         .probe = rte_dpaa_probe,
1646         .remove = rte_dpaa_remove,
1647 };
1648
1649 RTE_PMD_REGISTER_DPAA(net_dpaa, rte_dpaa_pmd);