net/ark: integrate PMD
[dpdk.git] / drivers / net / ark / ark_ethdev.c
1 /*-
2  * BSD LICENSE
3  *
4  * Copyright (c) 2015-2017 Atomic Rules LLC
5  * All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  *
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
16  * distribution.
17  * * Neither the name of copyright holder 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.
20  *
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.
32  */
33
34 #include <unistd.h>
35 #include <sys/stat.h>
36 #include <dlfcn.h>
37
38 #include <rte_ethdev_pci.h>
39 #include <rte_kvargs.h>
40
41 #include "ark_global.h"
42 #include "ark_logs.h"
43 #include "ark_ethdev.h"
44 #include "ark_ethdev_tx.h"
45 #include "ark_ethdev_rx.h"
46 #include "ark_mpu.h"
47 #include "ark_ddm.h"
48 #include "ark_udm.h"
49 #include "ark_rqp.h"
50 #include "ark_pktdir.h"
51 #include "ark_pktgen.h"
52 #include "ark_pktchkr.h"
53
54 /*  Internal prototypes */
55 static int eth_ark_check_args(struct ark_adapter *ark, const char *params);
56 static int eth_ark_dev_init(struct rte_eth_dev *dev);
57 static int ark_config_device(struct rte_eth_dev *dev);
58 static int eth_ark_dev_uninit(struct rte_eth_dev *eth_dev);
59 static int eth_ark_dev_configure(struct rte_eth_dev *dev);
60 static int eth_ark_dev_start(struct rte_eth_dev *dev);
61 static void eth_ark_dev_stop(struct rte_eth_dev *dev);
62 static void eth_ark_dev_close(struct rte_eth_dev *dev);
63 static void eth_ark_dev_info_get(struct rte_eth_dev *dev,
64                                  struct rte_eth_dev_info *dev_info);
65 static int eth_ark_dev_link_update(struct rte_eth_dev *dev,
66                                    int wait_to_complete);
67 static int eth_ark_dev_set_link_up(struct rte_eth_dev *dev);
68 static int eth_ark_dev_set_link_down(struct rte_eth_dev *dev);
69 static void eth_ark_dev_stats_get(struct rte_eth_dev *dev,
70                                   struct rte_eth_stats *stats);
71 static void eth_ark_dev_stats_reset(struct rte_eth_dev *dev);
72 static void eth_ark_set_default_mac_addr(struct rte_eth_dev *dev,
73                                          struct ether_addr *mac_addr);
74 static void eth_ark_macaddr_add(struct rte_eth_dev *dev,
75                                 struct ether_addr *mac_addr,
76                                 uint32_t index,
77                                 uint32_t pool);
78 static void eth_ark_macaddr_remove(struct rte_eth_dev *dev,
79                                    uint32_t index);
80
81 /*
82  * The packet generator is a functional block used to generate packet
83  * patterns for testing.  It is not intended for nominal use.
84  */
85 #define ARK_PKTGEN_ARG "Pkt_gen"
86
87 /*
88  * The packet checker is a functional block used to verify packet
89  * patterns for testing.  It is not intended for nominal use.
90  */
91 #define ARK_PKTCHKR_ARG "Pkt_chkr"
92
93 /*
94  * The packet director is used to select the internal ingress and
95  * egress packets paths during testing.  It is not intended for
96  * nominal use.
97  */
98 #define ARK_PKTDIR_ARG "Pkt_dir"
99
100 /* Devinfo configurations */
101 #define ARK_RX_MAX_QUEUE (4096 * 4)
102 #define ARK_RX_MIN_QUEUE (512)
103 #define ARK_RX_MAX_PKT_LEN ((16 * 1024) - 128)
104 #define ARK_RX_MIN_BUFSIZE (1024)
105
106 #define ARK_TX_MAX_QUEUE (4096 * 4)
107 #define ARK_TX_MIN_QUEUE (256)
108
109 static const char * const valid_arguments[] = {
110         ARK_PKTGEN_ARG,
111         ARK_PKTCHKR_ARG,
112         ARK_PKTDIR_ARG,
113         NULL
114 };
115
116 static const struct rte_pci_id pci_id_ark_map[] = {
117         {RTE_PCI_DEVICE(0x1d6c, 0x100d)},
118         {RTE_PCI_DEVICE(0x1d6c, 0x100e)},
119         {.vendor_id = 0, /* sentinel */ },
120 };
121
122 static int
123 eth_ark_pci_probe(struct rte_pci_driver *pci_drv __rte_unused,
124                 struct rte_pci_device *pci_dev)
125 {
126         struct rte_eth_dev *eth_dev;
127         int ret;
128
129         eth_dev = rte_eth_dev_pci_allocate(pci_dev, sizeof(struct ark_adapter));
130
131         if (eth_dev == NULL)
132                 return -ENOMEM;
133
134         ret = eth_ark_dev_init(eth_dev);
135         if (ret)
136                 rte_eth_dev_pci_release(eth_dev);
137
138         return ret;
139 }
140
141 static int
142 eth_ark_pci_remove(struct rte_pci_device *pci_dev)
143 {
144         return rte_eth_dev_pci_generic_remove(pci_dev, eth_ark_dev_uninit);
145 }
146
147 static struct rte_pci_driver rte_ark_pmd = {
148         .id_table = pci_id_ark_map,
149         .drv_flags = RTE_PCI_DRV_NEED_MAPPING | RTE_PCI_DRV_INTR_LSC,
150         .probe = eth_ark_pci_probe,
151         .remove = eth_ark_pci_remove,
152 };
153
154 static const struct eth_dev_ops ark_eth_dev_ops = {
155         .dev_configure = eth_ark_dev_configure,
156         .dev_start = eth_ark_dev_start,
157         .dev_stop = eth_ark_dev_stop,
158         .dev_close = eth_ark_dev_close,
159
160         .dev_infos_get = eth_ark_dev_info_get,
161
162         .rx_queue_setup = eth_ark_dev_rx_queue_setup,
163         .rx_queue_count = eth_ark_dev_rx_queue_count,
164         .tx_queue_setup = eth_ark_tx_queue_setup,
165
166         .link_update = eth_ark_dev_link_update,
167         .dev_set_link_up = eth_ark_dev_set_link_up,
168         .dev_set_link_down = eth_ark_dev_set_link_down,
169
170         .rx_queue_start = eth_ark_rx_start_queue,
171         .rx_queue_stop = eth_ark_rx_stop_queue,
172
173         .tx_queue_start = eth_ark_tx_queue_start,
174         .tx_queue_stop = eth_ark_tx_queue_stop,
175
176         .stats_get = eth_ark_dev_stats_get,
177         .stats_reset = eth_ark_dev_stats_reset,
178
179         .mac_addr_add = eth_ark_macaddr_add,
180         .mac_addr_remove = eth_ark_macaddr_remove,
181         .mac_addr_set = eth_ark_set_default_mac_addr,
182 };
183
184 static int
185 check_for_ext(struct ark_adapter *ark)
186 {
187         int found = 0;
188
189         /* Get the env */
190         const char *dllpath = getenv("ARK_EXT_PATH");
191
192         if (dllpath == NULL) {
193                 PMD_DEBUG_LOG(DEBUG, "ARK EXT NO dll path specified\n");
194                 return 0;
195         }
196         PMD_DRV_LOG(INFO, "ARK EXT found dll path at %s\n", dllpath);
197
198         /* Open and load the .so */
199         ark->d_handle = dlopen(dllpath, RTLD_LOCAL | RTLD_LAZY);
200         if (ark->d_handle == NULL) {
201                 PMD_DRV_LOG(ERR, "Could not load user extension %s\n",
202                             dllpath);
203                 return -1;
204         }
205         PMD_DRV_LOG(INFO, "SUCCESS: loaded user extension %s\n",
206                             dllpath);
207
208         /* Get the entry points */
209         ark->user_ext.dev_init =
210                 (void *(*)(struct rte_eth_dev *, void *, int))
211                 dlsym(ark->d_handle, "dev_init");
212         PMD_DEBUG_LOG(DEBUG, "device ext init pointer = %p\n",
213                       ark->user_ext.dev_init);
214         ark->user_ext.dev_get_port_count =
215                 (int (*)(struct rte_eth_dev *, void *))
216                 dlsym(ark->d_handle, "dev_get_port_count");
217         ark->user_ext.dev_uninit =
218                 (void (*)(struct rte_eth_dev *, void *))
219                 dlsym(ark->d_handle, "dev_uninit");
220         ark->user_ext.dev_configure =
221                 (int (*)(struct rte_eth_dev *, void *))
222                 dlsym(ark->d_handle, "dev_configure");
223         ark->user_ext.dev_start =
224                 (int (*)(struct rte_eth_dev *, void *))
225                 dlsym(ark->d_handle, "dev_start");
226         ark->user_ext.dev_stop =
227                 (void (*)(struct rte_eth_dev *, void *))
228                 dlsym(ark->d_handle, "dev_stop");
229         ark->user_ext.dev_close =
230                 (void (*)(struct rte_eth_dev *, void *))
231                 dlsym(ark->d_handle, "dev_close");
232         ark->user_ext.link_update =
233                 (int (*)(struct rte_eth_dev *, int, void *))
234                 dlsym(ark->d_handle, "link_update");
235         ark->user_ext.dev_set_link_up =
236                 (int (*)(struct rte_eth_dev *, void *))
237                 dlsym(ark->d_handle, "dev_set_link_up");
238         ark->user_ext.dev_set_link_down =
239                 (int (*)(struct rte_eth_dev *, void *))
240                 dlsym(ark->d_handle, "dev_set_link_down");
241         ark->user_ext.stats_get =
242                 (void (*)(struct rte_eth_dev *, struct rte_eth_stats *,
243                           void *))
244                 dlsym(ark->d_handle, "stats_get");
245         ark->user_ext.stats_reset =
246                 (void (*)(struct rte_eth_dev *, void *))
247                 dlsym(ark->d_handle, "stats_reset");
248         ark->user_ext.mac_addr_add =
249                 (void (*)(struct rte_eth_dev *, struct ether_addr *, uint32_t,
250                           uint32_t, void *))
251                 dlsym(ark->d_handle, "mac_addr_add");
252         ark->user_ext.mac_addr_remove =
253                 (void (*)(struct rte_eth_dev *, uint32_t, void *))
254                 dlsym(ark->d_handle, "mac_addr_remove");
255         ark->user_ext.mac_addr_set =
256                 (void (*)(struct rte_eth_dev *, struct ether_addr *,
257                           void *))
258                 dlsym(ark->d_handle, "mac_addr_set");
259
260         return found;
261 }
262
263 static int
264 eth_ark_dev_init(struct rte_eth_dev *dev)
265 {
266         struct ark_adapter *ark =
267                 (struct ark_adapter *)dev->data->dev_private;
268         struct rte_pci_device *pci_dev;
269         int ret;
270         int port_count = 1;
271         int p;
272
273         ark->eth_dev = dev;
274
275         PMD_FUNC_LOG(DEBUG, "\n");
276
277         /* Check to see if there is an extension that we need to load */
278         ret = check_for_ext(ark);
279         if (ret)
280                 return ret;
281         pci_dev = ARK_DEV_TO_PCI(dev);
282         rte_eth_copy_pci_info(dev, pci_dev);
283
284         /* Use dummy function until setup */
285         dev->rx_pkt_burst = &eth_ark_recv_pkts_noop;
286         dev->tx_pkt_burst = &eth_ark_xmit_pkts_noop;
287
288         ark->bar0 = (uint8_t *)pci_dev->mem_resource[0].addr;
289         ark->a_bar = (uint8_t *)pci_dev->mem_resource[2].addr;
290
291         ark->sysctrl.v  = (void *)&ark->bar0[ARK_SYSCTRL_BASE];
292         ark->mpurx.v  = (void *)&ark->bar0[ARK_MPU_RX_BASE];
293         ark->udm.v  = (void *)&ark->bar0[ARK_UDM_BASE];
294         ark->mputx.v  = (void *)&ark->bar0[ARK_MPU_TX_BASE];
295         ark->ddm.v  = (void *)&ark->bar0[ARK_DDM_BASE];
296         ark->cmac.v  = (void *)&ark->bar0[ARK_CMAC_BASE];
297         ark->external.v  = (void *)&ark->bar0[ARK_EXTERNAL_BASE];
298         ark->pktdir.v  = (void *)&ark->bar0[ARK_PKTDIR_BASE];
299         ark->pktgen.v  = (void *)&ark->bar0[ARK_PKTGEN_BASE];
300         ark->pktchkr.v  = (void *)&ark->bar0[ARK_PKTCHKR_BASE];
301
302         ark->rqpacing =
303                 (struct ark_rqpace_t *)(ark->bar0 + ARK_RCPACING_BASE);
304         ark->started = 0;
305
306         PMD_DEBUG_LOG(INFO, "Sys Ctrl Const = 0x%x  HW Commit_ID: %08x\n",
307                       ark->sysctrl.t32[4],
308                       rte_be_to_cpu_32(ark->sysctrl.t32[0x20 / 4]));
309         PMD_DRV_LOG(INFO, "Arkville HW Commit_ID: %08x\n",
310                     rte_be_to_cpu_32(ark->sysctrl.t32[0x20 / 4]));
311
312         /* If HW sanity test fails, return an error */
313         if (ark->sysctrl.t32[4] != 0xcafef00d) {
314                 PMD_DRV_LOG(ERR,
315                             "HW Sanity test has failed, expected constant"
316                             " 0x%x, read 0x%x (%s)\n",
317                             0xcafef00d,
318                             ark->sysctrl.t32[4], __func__);
319                 return -1;
320         }
321
322         PMD_DRV_LOG(INFO,
323                     "HW Sanity test has PASSED, expected constant"
324                     " 0x%x, read 0x%x (%s)\n",
325                     0xcafef00d, ark->sysctrl.t32[4], __func__);
326
327         /* We are a single function multi-port device. */
328         ret = ark_config_device(dev);
329         dev->dev_ops = &ark_eth_dev_ops;
330         dev->data->dev_flags |= RTE_ETH_DEV_DETACHABLE;
331
332         dev->data->mac_addrs = rte_zmalloc("ark", ETHER_ADDR_LEN, 0);
333         if (!dev->data->mac_addrs) {
334                 PMD_DRV_LOG(ERR,
335                             "Failed to allocated memory for storing mac address"
336                             );
337         }
338
339         if (ark->user_ext.dev_init) {
340                 ark->user_data = ark->user_ext.dev_init(dev, ark->a_bar, 0);
341                 if (!ark->user_data) {
342                         PMD_DRV_LOG(INFO,
343                                     "Failed to initialize PMD extension!"
344                                     " continuing without it\n");
345                         memset(&ark->user_ext, 0, sizeof(struct ark_user_ext));
346                         dlclose(ark->d_handle);
347                 }
348         }
349
350         if (pci_dev->device.devargs)
351                 ret = eth_ark_check_args(ark, pci_dev->device.devargs->args);
352         else
353                 PMD_DRV_LOG(INFO, "No Device args found\n");
354
355         if (ret)
356                 goto error;
357         /*
358          * We will create additional devices based on the number of requested
359          * ports
360          */
361         if (ark->user_ext.dev_get_port_count)
362                 port_count =
363                         ark->user_ext.dev_get_port_count(dev, ark->user_data);
364         ark->num_ports = port_count;
365
366         for (p = 0; p < port_count; p++) {
367                 struct rte_eth_dev *eth_dev;
368                 char name[RTE_ETH_NAME_MAX_LEN];
369
370                 snprintf(name, sizeof(name), "arketh%d",
371                          dev->data->port_id + p);
372
373                 if (p == 0) {
374                         /* First port is already allocated by DPDK */
375                         eth_dev = ark->eth_dev;
376                         continue;
377                 }
378
379                 /* reserve an ethdev entry */
380                 eth_dev = rte_eth_dev_allocate(name);
381                 if (!eth_dev) {
382                         PMD_DRV_LOG(ERR,
383                                     "Could not allocate eth_dev for port %d\n",
384                                     p);
385                         goto error;
386                 }
387
388                 eth_dev->device = &pci_dev->device;
389                 eth_dev->data->dev_private = ark;
390                 eth_dev->dev_ops = ark->eth_dev->dev_ops;
391                 eth_dev->tx_pkt_burst = ark->eth_dev->tx_pkt_burst;
392                 eth_dev->rx_pkt_burst = ark->eth_dev->rx_pkt_burst;
393
394                 rte_eth_copy_pci_info(eth_dev, pci_dev);
395
396                 eth_dev->data->mac_addrs = rte_zmalloc(name, ETHER_ADDR_LEN, 0);
397                 if (!eth_dev->data->mac_addrs) {
398                         PMD_DRV_LOG(ERR,
399                                     "Memory allocation for MAC failed!"
400                                     " Exiting.\n");
401                         goto error;
402                 }
403
404                 if (ark->user_ext.dev_init)
405                         ark->user_data =
406                                 ark->user_ext.dev_init(dev, ark->a_bar, p);
407         }
408
409         return ret;
410
411  error:
412         if (dev->data->mac_addrs)
413                 rte_free(dev->data->mac_addrs);
414         return -1;
415 }
416
417 /*
418  *Initial device configuration when device is opened
419  * setup the DDM, and UDM
420  * Called once per PCIE device
421  */
422 static int
423 ark_config_device(struct rte_eth_dev *dev)
424 {
425         struct ark_adapter *ark =
426                 (struct ark_adapter *)dev->data->dev_private;
427         uint16_t num_q, i;
428         struct ark_mpu_t *mpu;
429
430         /*
431          * Make sure that the packet director, generator and checker are in a
432          * known state
433          */
434         ark->start_pg = 0;
435         ark->pg = ark_pktgen_init(ark->pktgen.v, 0, 1);
436         ark_pktgen_reset(ark->pg);
437         ark->pc = ark_pktchkr_init(ark->pktchkr.v, 0, 1);
438         ark_pktchkr_stop(ark->pc);
439         ark->pd = ark_pktdir_init(ark->pktdir.v);
440
441         /* Verify HW */
442         if (ark_udm_verify(ark->udm.v))
443                 return -1;
444         if (ark_ddm_verify(ark->ddm.v))
445                 return -1;
446
447         /* UDM */
448         if (ark_udm_reset(ark->udm.v)) {
449                 PMD_DRV_LOG(ERR, "Unable to stop and reset UDM\n");
450                 return -1;
451         }
452         /* Keep in reset until the MPU are cleared */
453
454         /* MPU reset */
455         mpu = ark->mpurx.v;
456         num_q = ark_api_num_queues(mpu);
457         ark->rx_queues = num_q;
458         for (i = 0; i < num_q; i++) {
459                 ark_mpu_reset(mpu);
460                 mpu = RTE_PTR_ADD(mpu, ARK_MPU_QOFFSET);
461         }
462
463         ark_udm_stop(ark->udm.v, 0);
464         ark_udm_configure(ark->udm.v,
465                           RTE_PKTMBUF_HEADROOM,
466                           RTE_MBUF_DEFAULT_DATAROOM,
467                           ARK_RX_WRITE_TIME_NS);
468         ark_udm_stats_reset(ark->udm.v);
469         ark_udm_stop(ark->udm.v, 0);
470
471         /* TX -- DDM */
472         if (ark_ddm_stop(ark->ddm.v, 1))
473                 PMD_DRV_LOG(ERR, "Unable to stop DDM\n");
474
475         mpu = ark->mputx.v;
476         num_q = ark_api_num_queues(mpu);
477         ark->tx_queues = num_q;
478         for (i = 0; i < num_q; i++) {
479                 ark_mpu_reset(mpu);
480                 mpu = RTE_PTR_ADD(mpu, ARK_MPU_QOFFSET);
481         }
482
483         ark_ddm_reset(ark->ddm.v);
484         ark_ddm_stats_reset(ark->ddm.v);
485
486         ark_ddm_stop(ark->ddm.v, 0);
487         ark_rqp_stats_reset(ark->rqpacing);
488
489         return 0;
490 }
491
492 static int
493 eth_ark_dev_uninit(struct rte_eth_dev *dev)
494 {
495         struct ark_adapter *ark =
496                 (struct ark_adapter *)dev->data->dev_private;
497
498         if (rte_eal_process_type() != RTE_PROC_PRIMARY)
499                 return 0;
500
501         if (ark->user_ext.dev_uninit)
502                 ark->user_ext.dev_uninit(dev, ark->user_data);
503
504         ark_pktgen_uninit(ark->pg);
505         ark_pktchkr_uninit(ark->pc);
506
507         dev->dev_ops = NULL;
508         dev->rx_pkt_burst = NULL;
509         dev->tx_pkt_burst = NULL;
510         if (dev->data->mac_addrs)
511                 rte_free(dev->data->mac_addrs);
512         if (dev->data)
513                 rte_free(dev->data);
514
515         return 0;
516 }
517
518 static int
519 eth_ark_dev_configure(struct rte_eth_dev *dev)
520 {
521         PMD_FUNC_LOG(DEBUG, "\n");
522         struct ark_adapter *ark =
523                 (struct ark_adapter *)dev->data->dev_private;
524
525         eth_ark_dev_set_link_up(dev);
526         if (ark->user_ext.dev_configure)
527                 return ark->user_ext.dev_configure(dev, ark->user_data);
528         return 0;
529 }
530
531 static void *
532 delay_pg_start(void *arg)
533 {
534         struct ark_adapter *ark = (struct ark_adapter *)arg;
535
536         /* This function is used exclusively for regression testing, We
537          * perform a blind sleep here to ensure that the external test
538          * application has time to setup the test before we generate packets
539          */
540         usleep(100000);
541         ark_pktgen_run(ark->pg);
542         return NULL;
543 }
544
545 static int
546 eth_ark_dev_start(struct rte_eth_dev *dev)
547 {
548         struct ark_adapter *ark =
549                 (struct ark_adapter *)dev->data->dev_private;
550         int i;
551
552         PMD_FUNC_LOG(DEBUG, "\n");
553
554         /* RX Side */
555         /* start UDM */
556         ark_udm_start(ark->udm.v);
557
558         for (i = 0; i < dev->data->nb_rx_queues; i++)
559                 eth_ark_rx_start_queue(dev, i);
560
561         /* TX Side */
562         for (i = 0; i < dev->data->nb_tx_queues; i++)
563                 eth_ark_tx_queue_start(dev, i);
564
565         /* start DDM */
566         ark_ddm_start(ark->ddm.v);
567
568         ark->started = 1;
569         /* set xmit and receive function */
570         dev->rx_pkt_burst = &eth_ark_recv_pkts;
571         dev->tx_pkt_burst = &eth_ark_xmit_pkts;
572
573         if (ark->start_pg)
574                 ark_pktchkr_run(ark->pc);
575
576         if (ark->start_pg && (dev->data->port_id == 0)) {
577                 pthread_t thread;
578
579                 /* Delay packet generatpr start allow the hardware to be ready
580                  * This is only used for sanity checking with internal generator
581                  */
582                 pthread_create(&thread, NULL, delay_pg_start, ark);
583         }
584
585         if (ark->user_ext.dev_start)
586                 ark->user_ext.dev_start(dev, ark->user_data);
587
588         return 0;
589 }
590
591 static void
592 eth_ark_dev_stop(struct rte_eth_dev *dev)
593 {
594         uint16_t i;
595         int status;
596         struct ark_adapter *ark =
597                 (struct ark_adapter *)dev->data->dev_private;
598         struct ark_mpu_t *mpu;
599
600         PMD_FUNC_LOG(DEBUG, "\n");
601
602         if (ark->started == 0)
603                 return;
604         ark->started = 0;
605
606         /* Stop the extension first */
607         if (ark->user_ext.dev_stop)
608                 ark->user_ext.dev_stop(dev, ark->user_data);
609
610         /* Stop the packet generator */
611         if (ark->start_pg)
612                 ark_pktgen_pause(ark->pg);
613
614         dev->rx_pkt_burst = &eth_ark_recv_pkts_noop;
615         dev->tx_pkt_burst = &eth_ark_xmit_pkts_noop;
616
617         /* STOP TX Side */
618         for (i = 0; i < dev->data->nb_tx_queues; i++) {
619                 status = eth_ark_tx_queue_stop(dev, i);
620                 if (status != 0) {
621                         uint8_t port = dev->data->port_id;
622                         PMD_DRV_LOG(ERR,
623                                     "tx_queue stop anomaly"
624                                     " port %u, queue %u\n",
625                                     port, i);
626                 }
627         }
628
629         /* Stop DDM */
630         /* Wait up to 0.1 second.  each stop is upto 1000 * 10 useconds */
631         for (i = 0; i < 10; i++) {
632                 status = ark_ddm_stop(ark->ddm.v, 1);
633                 if (status == 0)
634                         break;
635         }
636         if (status || i != 0) {
637                 PMD_DRV_LOG(ERR, "DDM stop anomaly. status:"
638                             " %d iter: %u. (%s)\n",
639                             status,
640                             i,
641                             __func__);
642                 ark_ddm_dump(ark->ddm.v, "Stop anomaly");
643
644                 mpu = ark->mputx.v;
645                 for (i = 0; i < ark->tx_queues; i++) {
646                         ark_mpu_dump(mpu, "DDM failure dump", i);
647                         mpu = RTE_PTR_ADD(mpu, ARK_MPU_QOFFSET);
648                 }
649         }
650
651         /* STOP RX Side */
652         /* Stop UDM  multiple tries attempted */
653         for (i = 0; i < 10; i++) {
654                 status = ark_udm_stop(ark->udm.v, 1);
655                 if (status == 0)
656                         break;
657         }
658         if (status || i != 0) {
659                 PMD_DRV_LOG(ERR, "UDM stop anomaly. status %d iter: %u. (%s)\n",
660                             status, i, __func__);
661                 ark_udm_dump(ark->udm.v, "Stop anomaly");
662
663                 mpu = ark->mpurx.v;
664                 for (i = 0; i < ark->rx_queues; i++) {
665                         ark_mpu_dump(mpu, "UDM Stop anomaly", i);
666                         mpu = RTE_PTR_ADD(mpu, ARK_MPU_QOFFSET);
667                 }
668         }
669
670         ark_udm_dump_stats(ark->udm.v, "Post stop");
671         ark_udm_dump_perf(ark->udm.v, "Post stop");
672
673         for (i = 0; i < dev->data->nb_tx_queues; i++)
674                 eth_ark_rx_dump_queue(dev, i, __func__);
675
676         /* Stop the packet checker if it is running */
677         if (ark->start_pg) {
678                 ark_pktchkr_dump_stats(ark->pc);
679                 ark_pktchkr_stop(ark->pc);
680         }
681 }
682
683 static void
684 eth_ark_dev_close(struct rte_eth_dev *dev)
685 {
686         struct ark_adapter *ark =
687                 (struct ark_adapter *)dev->data->dev_private;
688         uint16_t i;
689
690         if (ark->user_ext.dev_close)
691                 ark->user_ext.dev_close(dev, ark->user_data);
692
693         eth_ark_dev_stop(dev);
694         eth_ark_udm_force_close(dev);
695
696         /*
697          * TODO This should only be called once for the device during shutdown
698          */
699         ark_rqp_dump(ark->rqpacing);
700
701         for (i = 0; i < dev->data->nb_tx_queues; i++) {
702                 eth_ark_tx_queue_release(dev->data->tx_queues[i]);
703                 dev->data->tx_queues[i] = 0;
704         }
705
706         for (i = 0; i < dev->data->nb_rx_queues; i++) {
707                 eth_ark_dev_rx_queue_release(dev->data->rx_queues[i]);
708                 dev->data->rx_queues[i] = 0;
709         }
710 }
711
712 static void
713 eth_ark_dev_info_get(struct rte_eth_dev *dev,
714                      struct rte_eth_dev_info *dev_info)
715 {
716         struct ark_adapter *ark =
717                 (struct ark_adapter *)dev->data->dev_private;
718         struct ark_mpu_t *tx_mpu = RTE_PTR_ADD(ark->bar0, ARK_MPU_TX_BASE);
719         struct ark_mpu_t *rx_mpu = RTE_PTR_ADD(ark->bar0, ARK_MPU_RX_BASE);
720         uint16_t ports = ark->num_ports;
721
722         dev_info->max_rx_pktlen = ARK_RX_MAX_PKT_LEN;
723         dev_info->min_rx_bufsize = ARK_RX_MIN_BUFSIZE;
724
725         dev_info->max_rx_queues = ark_api_num_queues_per_port(rx_mpu, ports);
726         dev_info->max_tx_queues = ark_api_num_queues_per_port(tx_mpu, ports);
727
728         dev_info->rx_desc_lim = (struct rte_eth_desc_lim) {
729                 .nb_max = ARK_RX_MAX_QUEUE,
730                 .nb_min = ARK_RX_MIN_QUEUE,
731                 .nb_align = ARK_RX_MIN_QUEUE}; /* power of 2 */
732
733         dev_info->tx_desc_lim = (struct rte_eth_desc_lim) {
734                 .nb_max = ARK_TX_MAX_QUEUE,
735                 .nb_min = ARK_TX_MIN_QUEUE,
736                 .nb_align = ARK_TX_MIN_QUEUE}; /* power of 2 */
737
738         /* ARK PMD supports all line rates, how do we indicate that here ?? */
739         dev_info->speed_capa = (ETH_LINK_SPEED_1G |
740                                 ETH_LINK_SPEED_10G |
741                                 ETH_LINK_SPEED_25G |
742                                 ETH_LINK_SPEED_40G |
743                                 ETH_LINK_SPEED_50G |
744                                 ETH_LINK_SPEED_100G);
745         dev_info->pci_dev = ARK_DEV_TO_PCI(dev);
746 }
747
748 static int
749 eth_ark_dev_link_update(struct rte_eth_dev *dev, int wait_to_complete)
750 {
751         PMD_DEBUG_LOG(DEBUG, "link status = %d\n",
752                         dev->data->dev_link.link_status);
753         struct ark_adapter *ark =
754                 (struct ark_adapter *)dev->data->dev_private;
755
756         if (ark->user_ext.link_update) {
757                 return ark->user_ext.link_update
758                         (dev, wait_to_complete,
759                          ark->user_data);
760         }
761         return 0;
762 }
763
764 static int
765 eth_ark_dev_set_link_up(struct rte_eth_dev *dev)
766 {
767         dev->data->dev_link.link_status = 1;
768         struct ark_adapter *ark =
769                 (struct ark_adapter *)dev->data->dev_private;
770
771         if (ark->user_ext.dev_set_link_up)
772                 return ark->user_ext.dev_set_link_up(dev, ark->user_data);
773         return 0;
774 }
775
776 static int
777 eth_ark_dev_set_link_down(struct rte_eth_dev *dev)
778 {
779         dev->data->dev_link.link_status = 0;
780         struct ark_adapter *ark =
781                 (struct ark_adapter *)dev->data->dev_private;
782
783         if (ark->user_ext.dev_set_link_down)
784                 return ark->user_ext.dev_set_link_down(dev, ark->user_data);
785         return 0;
786 }
787
788 static void
789 eth_ark_dev_stats_get(struct rte_eth_dev *dev, struct rte_eth_stats *stats)
790 {
791         uint16_t i;
792         struct ark_adapter *ark =
793                 (struct ark_adapter *)dev->data->dev_private;
794
795         stats->ipackets = 0;
796         stats->ibytes = 0;
797         stats->opackets = 0;
798         stats->obytes = 0;
799         stats->imissed = 0;
800         stats->oerrors = 0;
801
802         for (i = 0; i < dev->data->nb_tx_queues; i++)
803                 eth_tx_queue_stats_get(dev->data->tx_queues[i], stats);
804         for (i = 0; i < dev->data->nb_rx_queues; i++)
805                 eth_rx_queue_stats_get(dev->data->rx_queues[i], stats);
806         if (ark->user_ext.stats_get)
807                 ark->user_ext.stats_get(dev, stats, ark->user_data);
808 }
809
810 static void
811 eth_ark_dev_stats_reset(struct rte_eth_dev *dev)
812 {
813         uint16_t i;
814         struct ark_adapter *ark =
815                 (struct ark_adapter *)dev->data->dev_private;
816
817         for (i = 0; i < dev->data->nb_tx_queues; i++)
818                 eth_tx_queue_stats_reset(dev->data->rx_queues[i]);
819         for (i = 0; i < dev->data->nb_rx_queues; i++)
820                 eth_rx_queue_stats_reset(dev->data->rx_queues[i]);
821         if (ark->user_ext.stats_reset)
822                 ark->user_ext.stats_reset(dev, ark->user_data);
823 }
824
825 static void
826 eth_ark_macaddr_add(struct rte_eth_dev *dev,
827                     struct ether_addr *mac_addr,
828                     uint32_t index,
829                     uint32_t pool)
830 {
831         struct ark_adapter *ark =
832                 (struct ark_adapter *)dev->data->dev_private;
833
834         if (ark->user_ext.mac_addr_add)
835                 ark->user_ext.mac_addr_add(dev,
836                                            mac_addr,
837                                            index,
838                                            pool,
839                                            ark->user_data);
840 }
841
842 static void
843 eth_ark_macaddr_remove(struct rte_eth_dev *dev, uint32_t index)
844 {
845         struct ark_adapter *ark =
846                 (struct ark_adapter *)dev->data->dev_private;
847
848         if (ark->user_ext.mac_addr_remove)
849                 ark->user_ext.mac_addr_remove(dev, index, ark->user_data);
850 }
851
852 static void
853 eth_ark_set_default_mac_addr(struct rte_eth_dev *dev,
854                              struct ether_addr *mac_addr)
855 {
856         struct ark_adapter *ark =
857                 (struct ark_adapter *)dev->data->dev_private;
858
859         if (ark->user_ext.mac_addr_set)
860                 ark->user_ext.mac_addr_set(dev, mac_addr, ark->user_data);
861 }
862
863 static inline int
864 process_pktdir_arg(const char *key, const char *value,
865                    void *extra_args)
866 {
867         PMD_FUNC_LOG(DEBUG, "key = %s, value = %s\n",
868                     key, value);
869         struct ark_adapter *ark =
870                 (struct ark_adapter *)extra_args;
871
872         ark->pkt_dir_v = strtol(value, NULL, 16);
873         PMD_FUNC_LOG(DEBUG, "pkt_dir_v = 0x%x\n", ark->pkt_dir_v);
874         return 0;
875 }
876
877 static inline int
878 process_file_args(const char *key, const char *value, void *extra_args)
879 {
880         PMD_FUNC_LOG(DEBUG, "key = %s, value = %s\n",
881                     key, value);
882         char *args = (char *)extra_args;
883
884         /* Open the configuration file */
885         FILE *file = fopen(value, "r");
886         char line[ARK_MAX_ARG_LEN];
887         int  size = 0;
888         int first = 1;
889
890         while (fgets(line, sizeof(line), file)) {
891                 size += strlen(line);
892                 if (size >= ARK_MAX_ARG_LEN) {
893                         PMD_DRV_LOG(ERR, "Unable to parse file %s args, "
894                                     "parameter list is too long\n", value);
895                         fclose(file);
896                         return -1;
897                 }
898                 if (first) {
899                         strncpy(args, line, ARK_MAX_ARG_LEN);
900                         first = 0;
901                 } else {
902                         strncat(args, line, ARK_MAX_ARG_LEN);
903                 }
904         }
905         PMD_FUNC_LOG(DEBUG, "file = %s\n", args);
906         fclose(file);
907         return 0;
908 }
909
910 static int
911 eth_ark_check_args(struct ark_adapter *ark, const char *params)
912 {
913         struct rte_kvargs *kvlist;
914         unsigned int k_idx;
915         struct rte_kvargs_pair *pair = NULL;
916
917         kvlist = rte_kvargs_parse(params, valid_arguments);
918         if (kvlist == NULL)
919                 return 0;
920
921         ark->pkt_gen_args[0] = 0;
922         ark->pkt_chkr_args[0] = 0;
923
924         for (k_idx = 0; k_idx < kvlist->count; k_idx++) {
925                 pair = &kvlist->pairs[k_idx];
926                 PMD_FUNC_LOG(DEBUG, "**** Arg passed to PMD = %s:%s\n",
927                              pair->key,
928                              pair->value);
929         }
930
931         if (rte_kvargs_process(kvlist,
932                                ARK_PKTDIR_ARG,
933                                &process_pktdir_arg,
934                                ark) != 0) {
935                 PMD_DRV_LOG(ERR, "Unable to parse arg %s\n", ARK_PKTDIR_ARG);
936                 return -1;
937         }
938
939         if (rte_kvargs_process(kvlist,
940                                ARK_PKTGEN_ARG,
941                                &process_file_args,
942                                ark->pkt_gen_args) != 0) {
943                 PMD_DRV_LOG(ERR, "Unable to parse arg %s\n", ARK_PKTGEN_ARG);
944                 return -1;
945         }
946
947         if (rte_kvargs_process(kvlist,
948                                ARK_PKTCHKR_ARG,
949                                &process_file_args,
950                                ark->pkt_chkr_args) != 0) {
951                 PMD_DRV_LOG(ERR, "Unable to parse arg %s\n", ARK_PKTCHKR_ARG);
952                 return -1;
953         }
954
955         PMD_DRV_LOG(INFO, "packet director set to 0x%x\n", ark->pkt_dir_v);
956         /* Setup the packet director */
957         ark_pktdir_setup(ark->pd, ark->pkt_dir_v);
958
959         /* Setup the packet generator */
960         if (ark->pkt_gen_args[0]) {
961                 PMD_DRV_LOG(INFO, "Setting up the packet generator\n");
962                 ark_pktgen_parse(ark->pkt_gen_args);
963                 ark_pktgen_reset(ark->pg);
964                 ark_pktgen_setup(ark->pg);
965                 ark->start_pg = 1;
966         }
967
968         /* Setup the packet checker */
969         if (ark->pkt_chkr_args[0]) {
970                 ark_pktchkr_parse(ark->pkt_chkr_args);
971                 ark_pktchkr_setup(ark->pc);
972         }
973
974         return 0;
975 }
976
977 RTE_PMD_REGISTER_PCI(net_ark, rte_ark_pmd);
978 RTE_PMD_REGISTER_KMOD_DEP(net_ark, "* igb_uio | uio_pci_generic ");
979 RTE_PMD_REGISTER_PCI_TABLE(net_ark, pci_id_ark_map);
980 RTE_PMD_REGISTER_PARAM_STRING(net_ark,
981                               ARK_PKTGEN_ARG "=<filename> "
982                               ARK_PKTCHKR_ARG "=<filename> "
983                               ARK_PKTDIR_ARG "=<bitmap>");