net: add rte prefix to ether defines
[dpdk.git] / drivers / net / ipn3ke / ipn3ke_representor.c
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright(c) 2019 Intel Corporation
3  */
4
5 #include <stdint.h>
6
7 #include <rte_bus_pci.h>
8 #include <rte_ethdev.h>
9 #include <rte_pci.h>
10 #include <rte_malloc.h>
11
12 #include <rte_mbuf.h>
13 #include <rte_sched.h>
14 #include <rte_ethdev_driver.h>
15 #include <rte_spinlock.h>
16
17 #include <rte_io.h>
18 #include <rte_rawdev.h>
19 #include <rte_rawdev_pmd.h>
20 #include <rte_bus_ifpga.h>
21 #include <ifpga_logs.h>
22
23 #include "ipn3ke_rawdev_api.h"
24 #include "ipn3ke_flow.h"
25 #include "ipn3ke_logs.h"
26 #include "ipn3ke_ethdev.h"
27
28 static int ipn3ke_rpst_scan_num;
29 static pthread_t ipn3ke_rpst_scan_thread;
30
31 /** Double linked list of representor port. */
32 TAILQ_HEAD(ipn3ke_rpst_list, ipn3ke_rpst);
33
34 static struct ipn3ke_rpst_list ipn3ke_rpst_list =
35         TAILQ_HEAD_INITIALIZER(ipn3ke_rpst_list);
36
37 static rte_spinlock_t ipn3ke_link_notify_list_lk = RTE_SPINLOCK_INITIALIZER;
38
39 static int
40 ipn3ke_rpst_link_check(struct ipn3ke_rpst *rpst);
41
42 static void
43 ipn3ke_rpst_dev_infos_get(struct rte_eth_dev *ethdev,
44         struct rte_eth_dev_info *dev_info)
45 {
46         struct ipn3ke_rpst *rpst = IPN3KE_DEV_PRIVATE_TO_RPST(ethdev);
47         struct ipn3ke_hw *hw = IPN3KE_DEV_PRIVATE_TO_HW(ethdev);
48
49         dev_info->speed_capa =
50                 (hw->retimer.mac_type ==
51                         IFPGA_RAWDEV_RETIMER_MAC_TYPE_10GE_XFI) ?
52                 ETH_LINK_SPEED_10G :
53                 ((hw->retimer.mac_type ==
54                         IFPGA_RAWDEV_RETIMER_MAC_TYPE_25GE_25GAUI) ?
55                 ETH_LINK_SPEED_25G :
56                 ETH_LINK_SPEED_AUTONEG);
57
58         dev_info->max_rx_queues  = 1;
59         dev_info->max_tx_queues  = 1;
60         dev_info->min_rx_bufsize = IPN3KE_AFU_BUF_SIZE_MIN;
61         dev_info->max_rx_pktlen  = IPN3KE_AFU_FRAME_SIZE_MAX;
62         dev_info->max_mac_addrs  = hw->port_num;
63         dev_info->max_vfs = 0;
64         dev_info->default_txconf = (struct rte_eth_txconf) {
65                 .offloads = 0,
66         };
67         dev_info->rx_queue_offload_capa = 0;
68         dev_info->rx_offload_capa =
69                 DEV_RX_OFFLOAD_VLAN_STRIP |
70                 DEV_RX_OFFLOAD_QINQ_STRIP |
71                 DEV_RX_OFFLOAD_IPV4_CKSUM |
72                 DEV_RX_OFFLOAD_UDP_CKSUM |
73                 DEV_RX_OFFLOAD_TCP_CKSUM |
74                 DEV_RX_OFFLOAD_OUTER_IPV4_CKSUM |
75                 DEV_RX_OFFLOAD_VLAN_EXTEND |
76                 DEV_RX_OFFLOAD_VLAN_FILTER |
77                 DEV_RX_OFFLOAD_JUMBO_FRAME;
78
79         dev_info->tx_queue_offload_capa = DEV_TX_OFFLOAD_MBUF_FAST_FREE;
80         dev_info->tx_offload_capa =
81                 DEV_TX_OFFLOAD_VLAN_INSERT |
82                 DEV_TX_OFFLOAD_QINQ_INSERT |
83                 DEV_TX_OFFLOAD_IPV4_CKSUM |
84                 DEV_TX_OFFLOAD_UDP_CKSUM |
85                 DEV_TX_OFFLOAD_TCP_CKSUM |
86                 DEV_TX_OFFLOAD_SCTP_CKSUM |
87                 DEV_TX_OFFLOAD_OUTER_IPV4_CKSUM |
88                 DEV_TX_OFFLOAD_TCP_TSO |
89                 DEV_TX_OFFLOAD_VXLAN_TNL_TSO |
90                 DEV_TX_OFFLOAD_GRE_TNL_TSO |
91                 DEV_TX_OFFLOAD_IPIP_TNL_TSO |
92                 DEV_TX_OFFLOAD_GENEVE_TNL_TSO |
93                 DEV_TX_OFFLOAD_MULTI_SEGS |
94                 dev_info->tx_queue_offload_capa;
95
96         dev_info->dev_capa =
97                 RTE_ETH_DEV_CAPA_RUNTIME_RX_QUEUE_SETUP |
98                 RTE_ETH_DEV_CAPA_RUNTIME_TX_QUEUE_SETUP;
99
100         dev_info->switch_info.name = ethdev->device->name;
101         dev_info->switch_info.domain_id = rpst->switch_domain_id;
102         dev_info->switch_info.port_id = rpst->port_id;
103 }
104
105 static int
106 ipn3ke_rpst_dev_configure(__rte_unused struct rte_eth_dev *dev)
107 {
108         return 0;
109 }
110
111 static int
112 ipn3ke_rpst_dev_start(struct rte_eth_dev *dev)
113 {
114         struct ipn3ke_hw *hw = IPN3KE_DEV_PRIVATE_TO_HW(dev);
115         struct ipn3ke_rpst *rpst = IPN3KE_DEV_PRIVATE_TO_RPST(dev);
116         struct rte_rawdev *rawdev;
117         uint64_t base_mac;
118         uint32_t val;
119         char attr_name[IPN3KE_RAWDEV_ATTR_LEN_MAX];
120
121         rawdev = hw->rawdev;
122
123         memset(attr_name, 0, sizeof(attr_name));
124         snprintf(attr_name, IPN3KE_RAWDEV_ATTR_LEN_MAX, "%s",
125                         "LineSideBaseMAC");
126         rawdev->dev_ops->attr_get(rawdev, attr_name, &base_mac);
127         rte_ether_addr_copy((struct rte_ether_addr *)&base_mac,
128                         &rpst->mac_addr);
129
130         rte_ether_addr_copy(&rpst->mac_addr, &dev->data->mac_addrs[0]);
131         dev->data->mac_addrs->addr_bytes[RTE_ETHER_ADDR_LEN - 1] =
132                 (uint8_t)rpst->port_id + 1;
133
134         if (hw->retimer.mac_type == IFPGA_RAWDEV_RETIMER_MAC_TYPE_10GE_XFI) {
135                 /* Set mac address */
136                 rte_memcpy(((char *)(&val)),
137                         (char *)&dev->data->mac_addrs->addr_bytes[0],
138                         sizeof(uint32_t));
139                 (*hw->f_mac_write)(hw,
140                                 val,
141                                 IPN3KE_MAC_PRIMARY_MAC_ADDR0,
142                                 rpst->port_id,
143                                 0);
144                 rte_memcpy(((char *)(&val)),
145                         (char *)&dev->data->mac_addrs->addr_bytes[4],
146                         sizeof(uint16_t));
147                 (*hw->f_mac_write)(hw,
148                                 val,
149                                 IPN3KE_MAC_PRIMARY_MAC_ADDR1,
150                                 rpst->port_id,
151                                 0);
152
153                 /* Enable the TX path */
154                 ipn3ke_xmac_tx_enable(hw, rpst->port_id, 0);
155
156                 /* Disables source address override */
157                 ipn3ke_xmac_smac_ovd_dis(hw, rpst->port_id, 0);
158
159                 /* Enable the RX path */
160                 ipn3ke_xmac_rx_enable(hw, rpst->port_id, 0);
161
162                 /* Clear all TX statistics counters */
163                 ipn3ke_xmac_tx_clr_stcs(hw, rpst->port_id, 0);
164
165                 /* Clear all RX statistics counters */
166                 ipn3ke_xmac_rx_clr_stcs(hw, rpst->port_id, 0);
167         }
168
169         ipn3ke_rpst_link_update(dev, 0);
170
171         return 0;
172 }
173
174 static void
175 ipn3ke_rpst_dev_stop(struct rte_eth_dev *dev)
176 {
177         struct ipn3ke_hw *hw = IPN3KE_DEV_PRIVATE_TO_HW(dev);
178         struct ipn3ke_rpst *rpst = IPN3KE_DEV_PRIVATE_TO_RPST(dev);
179
180         if (hw->retimer.mac_type == IFPGA_RAWDEV_RETIMER_MAC_TYPE_10GE_XFI) {
181                 /* Disable the TX path */
182                 ipn3ke_xmac_tx_disable(hw, rpst->port_id, 0);
183
184                 /* Disable the RX path */
185                 ipn3ke_xmac_rx_disable(hw, rpst->port_id, 0);
186         }
187 }
188
189 static void
190 ipn3ke_rpst_dev_close(struct rte_eth_dev *dev)
191 {
192         struct ipn3ke_hw *hw = IPN3KE_DEV_PRIVATE_TO_HW(dev);
193         struct ipn3ke_rpst *rpst = IPN3KE_DEV_PRIVATE_TO_RPST(dev);
194
195         if (hw->retimer.mac_type == IFPGA_RAWDEV_RETIMER_MAC_TYPE_10GE_XFI) {
196                 /* Disable the TX path */
197                 ipn3ke_xmac_tx_disable(hw, rpst->port_id, 0);
198
199                 /* Disable the RX path */
200                 ipn3ke_xmac_rx_disable(hw, rpst->port_id, 0);
201         }
202 }
203
204 /*
205  * Reset PF device only to re-initialize resources in PMD layer
206  */
207 static int
208 ipn3ke_rpst_dev_reset(struct rte_eth_dev *dev)
209 {
210         struct ipn3ke_hw *hw = IPN3KE_DEV_PRIVATE_TO_HW(dev);
211         struct ipn3ke_rpst *rpst = IPN3KE_DEV_PRIVATE_TO_RPST(dev);
212
213         if (hw->retimer.mac_type == IFPGA_RAWDEV_RETIMER_MAC_TYPE_10GE_XFI) {
214                 /* Disable the TX path */
215                 ipn3ke_xmac_tx_disable(hw, rpst->port_id, 0);
216
217                 /* Disable the RX path */
218                 ipn3ke_xmac_rx_disable(hw, rpst->port_id, 0);
219         }
220
221         return 0;
222 }
223
224 static int
225 ipn3ke_rpst_rx_queue_start(__rte_unused struct rte_eth_dev *dev,
226         __rte_unused uint16_t rx_queue_id)
227 {
228         return 0;
229 }
230
231 static int
232 ipn3ke_rpst_rx_queue_stop(__rte_unused struct rte_eth_dev *dev,
233         __rte_unused uint16_t rx_queue_id)
234 {
235         return 0;
236 }
237
238 static int
239 ipn3ke_rpst_tx_queue_start(__rte_unused struct rte_eth_dev *dev,
240         __rte_unused uint16_t tx_queue_id)
241 {
242         return 0;
243 }
244
245 static int
246 ipn3ke_rpst_tx_queue_stop(__rte_unused struct rte_eth_dev *dev,
247         __rte_unused uint16_t tx_queue_id)
248 {
249         return 0;
250 }
251
252 static int
253 ipn3ke_rpst_rx_queue_setup(__rte_unused struct rte_eth_dev *dev,
254         __rte_unused uint16_t queue_idx, __rte_unused uint16_t nb_desc,
255         __rte_unused unsigned int socket_id,
256         __rte_unused const struct rte_eth_rxconf *rx_conf,
257         __rte_unused struct rte_mempool *mp)
258 {
259         return 0;
260 }
261
262 static void
263 ipn3ke_rpst_rx_queue_release(__rte_unused void *rxq)
264 {
265 }
266
267 static int
268 ipn3ke_rpst_tx_queue_setup(__rte_unused struct rte_eth_dev *dev,
269         __rte_unused uint16_t queue_idx, __rte_unused uint16_t nb_desc,
270         __rte_unused unsigned int socket_id,
271         __rte_unused const struct rte_eth_txconf *tx_conf)
272 {
273         return 0;
274 }
275
276 static void
277 ipn3ke_rpst_tx_queue_release(__rte_unused void *txq)
278 {
279 }
280
281 static int
282 ipn3ke_rpst_stats_get(__rte_unused struct rte_eth_dev *ethdev,
283         __rte_unused struct rte_eth_stats *stats)
284 {
285         return 0;
286 }
287
288 static int
289 ipn3ke_rpst_xstats_get(__rte_unused struct rte_eth_dev *dev,
290         __rte_unused struct rte_eth_xstat *xstats, __rte_unused unsigned int n)
291 {
292         return 0;
293 }
294
295 static int
296 ipn3ke_rpst_xstats_get_names(__rte_unused struct rte_eth_dev *dev,
297                 __rte_unused struct rte_eth_xstat_name *xstats_names,
298                 __rte_unused unsigned int limit)
299 {
300         return 0;
301 }
302
303 static void
304 ipn3ke_rpst_stats_reset(__rte_unused struct rte_eth_dev *ethdev)
305 {
306 }
307
308 static void
309 ipn3ke_update_link(struct rte_rawdev *rawdev,
310         uint16_t port, struct rte_eth_link *link)
311 {
312         uint64_t line_link_bitmap = 0;
313         enum ifpga_rawdev_link_speed link_speed;
314
315         rawdev->dev_ops->attr_get(rawdev,
316                                 "LineSideLinkStatus",
317                                 (uint64_t *)&line_link_bitmap);
318
319         /* Parse the link status */
320         if ((1 << port) & line_link_bitmap)
321                 link->link_status = 1;
322         else
323                 link->link_status = 0;
324
325         IPN3KE_AFU_PMD_DEBUG("port is %d\n", port);
326         IPN3KE_AFU_PMD_DEBUG("link->link_status is %d\n", link->link_status);
327
328         rawdev->dev_ops->attr_get(rawdev,
329                                 "LineSideLinkSpeed",
330                                 (uint64_t *)&link_speed);
331         switch (link_speed) {
332         case IFPGA_RAWDEV_LINK_SPEED_10GB:
333                 link->link_speed = ETH_SPEED_NUM_10G;
334                 break;
335         case IFPGA_RAWDEV_LINK_SPEED_25GB:
336                 link->link_speed = ETH_SPEED_NUM_25G;
337                 break;
338         default:
339                 IPN3KE_AFU_PMD_ERR("Unknown link speed info %u", link_speed);
340                 break;
341         }
342 }
343
344 /*
345  * Set device link up.
346  */
347 int
348 ipn3ke_rpst_dev_set_link_up(struct rte_eth_dev *dev)
349 {
350         struct ipn3ke_rpst *rpst = IPN3KE_DEV_PRIVATE_TO_RPST(dev);
351         struct rte_eth_dev *pf;
352         int ret = 0;
353
354         if (rpst->i40e_pf_eth) {
355                 ret = rte_eth_dev_set_link_up(rpst->i40e_pf_eth_port_id);
356                 pf = rpst->i40e_pf_eth;
357                 (*rpst->i40e_pf_eth->dev_ops->link_update)(pf, 1);
358         }
359
360         return ret;
361 }
362
363 /*
364  * Set device link down.
365  */
366 int
367 ipn3ke_rpst_dev_set_link_down(struct rte_eth_dev *dev)
368 {
369         struct ipn3ke_rpst *rpst = IPN3KE_DEV_PRIVATE_TO_RPST(dev);
370         struct rte_eth_dev *pf;
371         int ret = 0;
372
373         if (rpst->i40e_pf_eth) {
374                 ret = rte_eth_dev_set_link_down(rpst->i40e_pf_eth_port_id);
375                 pf = rpst->i40e_pf_eth;
376                 (*rpst->i40e_pf_eth->dev_ops->link_update)(pf, 1);
377         }
378
379         return ret;
380 }
381
382 int
383 ipn3ke_rpst_link_update(struct rte_eth_dev *ethdev,
384         __rte_unused int wait_to_complete)
385 {
386         struct ipn3ke_hw *hw = IPN3KE_DEV_PRIVATE_TO_HW(ethdev);
387         struct ipn3ke_rpst *rpst = IPN3KE_DEV_PRIVATE_TO_RPST(ethdev);
388         struct rte_rawdev *rawdev;
389         struct rte_eth_link link;
390         struct rte_eth_dev *pf;
391
392         memset(&link, 0, sizeof(link));
393
394         link.link_duplex = ETH_LINK_FULL_DUPLEX;
395         link.link_autoneg = !(ethdev->data->dev_conf.link_speeds &
396                                 ETH_LINK_SPEED_FIXED);
397
398         rawdev = hw->rawdev;
399         ipn3ke_update_link(rawdev, rpst->port_id, &link);
400
401         if (!rpst->ori_linfo.link_status &&
402                 link.link_status) {
403                 IPN3KE_AFU_PMD_DEBUG("Update Rpst %d Up\n", rpst->port_id);
404                 rpst->ori_linfo.link_status = link.link_status;
405                 rpst->ori_linfo.link_speed = link.link_speed;
406
407                 rte_eth_linkstatus_set(ethdev, &link);
408
409                 if (rpst->i40e_pf_eth) {
410                         IPN3KE_AFU_PMD_DEBUG("Update FVL PF %d Up\n",
411                                 rpst->i40e_pf_eth_port_id);
412                         rte_eth_dev_set_link_up(rpst->i40e_pf_eth_port_id);
413                         pf = rpst->i40e_pf_eth;
414                         (*rpst->i40e_pf_eth->dev_ops->link_update)(pf, 1);
415                 }
416         } else if (rpst->ori_linfo.link_status &&
417                                 !link.link_status) {
418                 IPN3KE_AFU_PMD_DEBUG("Update Rpst %d Down\n",
419                         rpst->port_id);
420                 rpst->ori_linfo.link_status = link.link_status;
421                 rpst->ori_linfo.link_speed = link.link_speed;
422
423                 rte_eth_linkstatus_set(ethdev, &link);
424
425                 if (rpst->i40e_pf_eth) {
426                         IPN3KE_AFU_PMD_DEBUG("Update FVL PF %d Down\n",
427                                 rpst->i40e_pf_eth_port_id);
428                         rte_eth_dev_set_link_down(rpst->i40e_pf_eth_port_id);
429                         pf = rpst->i40e_pf_eth;
430                         (*rpst->i40e_pf_eth->dev_ops->link_update)(pf, 1);
431                 }
432         }
433
434         return 0;
435 }
436
437 static int
438 ipn3ke_rpst_link_check(struct ipn3ke_rpst *rpst)
439 {
440         struct ipn3ke_hw *hw;
441         struct rte_rawdev *rawdev;
442         struct rte_eth_link link;
443         struct rte_eth_dev *pf;
444
445         if (rpst == NULL)
446                 return -1;
447
448         hw = rpst->hw;
449
450         memset(&link, 0, sizeof(link));
451
452         link.link_duplex = ETH_LINK_FULL_DUPLEX;
453         link.link_autoneg = !(rpst->ethdev->data->dev_conf.link_speeds &
454                                 ETH_LINK_SPEED_FIXED);
455
456         rawdev = hw->rawdev;
457         ipn3ke_update_link(rawdev, rpst->port_id, &link);
458
459         if (!rpst->ori_linfo.link_status &&
460                                 link.link_status) {
461                 IPN3KE_AFU_PMD_DEBUG("Check Rpst %d Up\n", rpst->port_id);
462                 rpst->ori_linfo.link_status = link.link_status;
463                 rpst->ori_linfo.link_speed = link.link_speed;
464
465                 rte_eth_linkstatus_set(rpst->ethdev, &link);
466
467                 if (rpst->i40e_pf_eth) {
468                         IPN3KE_AFU_PMD_DEBUG("Check FVL PF %d Up\n",
469                                 rpst->i40e_pf_eth_port_id);
470                         rte_eth_dev_set_link_up(rpst->i40e_pf_eth_port_id);
471                         pf = rpst->i40e_pf_eth;
472                         (*rpst->i40e_pf_eth->dev_ops->link_update)(pf, 1);
473                 }
474         } else if (rpst->ori_linfo.link_status &&
475                 !link.link_status) {
476                 IPN3KE_AFU_PMD_DEBUG("Check Rpst %d Down\n", rpst->port_id);
477                 rpst->ori_linfo.link_status = link.link_status;
478                 rpst->ori_linfo.link_speed = link.link_speed;
479
480                 rte_eth_linkstatus_set(rpst->ethdev, &link);
481
482                 if (rpst->i40e_pf_eth) {
483                         IPN3KE_AFU_PMD_DEBUG("Check FVL PF %d Down\n",
484                                 rpst->i40e_pf_eth_port_id);
485                         rte_eth_dev_set_link_down(rpst->i40e_pf_eth_port_id);
486                         pf = rpst->i40e_pf_eth;
487                         (*rpst->i40e_pf_eth->dev_ops->link_update)(pf, 1);
488                 }
489         }
490
491         return 0;
492 }
493
494 static void *
495 ipn3ke_rpst_scan_handle_request(__rte_unused void *param)
496 {
497         struct ipn3ke_rpst *rpst;
498         int num = 0;
499 #define MS 1000
500 #define SCAN_NUM 32
501
502         for (;;) {
503                 num = 0;
504                 TAILQ_FOREACH(rpst, &ipn3ke_rpst_list, next) {
505                         if (rpst->i40e_pf_eth &&
506                                 rpst->ethdev->data->dev_started &&
507                                 rpst->i40e_pf_eth->data->dev_started)
508                                 ipn3ke_rpst_link_check(rpst);
509
510                         if (++num > SCAN_NUM)
511                                 rte_delay_us(1 * MS);
512                 }
513                 rte_delay_us(50 * MS);
514
515                 if (num == 0xffffff)
516                         return NULL;
517         }
518
519         return NULL;
520 }
521
522 static int
523 ipn3ke_rpst_scan_check(void)
524 {
525         int ret;
526
527         if (ipn3ke_rpst_scan_num == 1) {
528                 ret = pthread_create(&ipn3ke_rpst_scan_thread,
529                         NULL,
530                         ipn3ke_rpst_scan_handle_request, NULL);
531                 if (ret) {
532                         IPN3KE_AFU_PMD_ERR("Fail to create ipn3ke rpst scan thread");
533                         return -1;
534                 }
535         } else if (ipn3ke_rpst_scan_num == 0) {
536                 ret = pthread_cancel(ipn3ke_rpst_scan_thread);
537                 if (ret)
538                         IPN3KE_AFU_PMD_ERR("Can't cancel the thread");
539
540                 ret = pthread_join(ipn3ke_rpst_scan_thread, NULL);
541                 if (ret)
542                         IPN3KE_AFU_PMD_ERR("Can't join the thread");
543
544                 return ret;
545         }
546
547         return 0;
548 }
549
550 void
551 ipn3ke_rpst_promiscuous_enable(struct rte_eth_dev *ethdev)
552 {
553         struct ipn3ke_hw *hw = IPN3KE_DEV_PRIVATE_TO_HW(ethdev);
554         struct ipn3ke_rpst *rpst = IPN3KE_DEV_PRIVATE_TO_RPST(ethdev);
555         uint32_t rddata, val;
556
557         if (hw->retimer.mac_type == IFPGA_RAWDEV_RETIMER_MAC_TYPE_10GE_XFI) {
558                 /* Enable all unicast */
559                 (*hw->f_mac_read)(hw,
560                                 &rddata,
561                                 IPN3KE_MAC_RX_FRAME_CONTROL,
562                                 rpst->port_id,
563                                 0);
564                 val = 1;
565                 val &= IPN3KE_MAC_RX_FRAME_CONTROL_EN_ALLUCAST_MASK;
566                 val |= rddata;
567                 (*hw->f_mac_write)(hw,
568                                 val,
569                                 IPN3KE_MAC_RX_FRAME_CONTROL,
570                                 rpst->port_id,
571                                 0);
572         }
573 }
574
575 void
576 ipn3ke_rpst_promiscuous_disable(struct rte_eth_dev *ethdev)
577 {
578         struct ipn3ke_hw *hw = IPN3KE_DEV_PRIVATE_TO_HW(ethdev);
579         struct ipn3ke_rpst *rpst = IPN3KE_DEV_PRIVATE_TO_RPST(ethdev);
580         uint32_t rddata, val;
581
582         if (hw->retimer.mac_type == IFPGA_RAWDEV_RETIMER_MAC_TYPE_10GE_XFI) {
583                 /* Disable all unicast */
584                 (*hw->f_mac_read)(hw,
585                                 &rddata,
586                                 IPN3KE_MAC_RX_FRAME_CONTROL,
587                                 rpst->port_id,
588                                 0);
589                 val = 0;
590                 val &= IPN3KE_MAC_RX_FRAME_CONTROL_EN_ALLUCAST_MASK;
591                 val |= rddata;
592                 (*hw->f_mac_write)(hw,
593                                 val,
594                                 IPN3KE_MAC_RX_FRAME_CONTROL,
595                                 rpst->port_id,
596                                 0);
597         }
598 }
599
600 void
601 ipn3ke_rpst_allmulticast_enable(struct rte_eth_dev *ethdev)
602 {
603         struct ipn3ke_hw *hw = IPN3KE_DEV_PRIVATE_TO_HW(ethdev);
604         struct ipn3ke_rpst *rpst = IPN3KE_DEV_PRIVATE_TO_RPST(ethdev);
605         uint32_t rddata, val;
606
607         if (hw->retimer.mac_type == IFPGA_RAWDEV_RETIMER_MAC_TYPE_10GE_XFI) {
608                 /* Enable all unicast */
609                 (*hw->f_mac_read)(hw,
610                                 &rddata,
611                                 IPN3KE_MAC_RX_FRAME_CONTROL,
612                                 rpst->port_id,
613                                 0);
614                 val = 1;
615                 val <<= IPN3KE_MAC_RX_FRAME_CONTROL_EN_ALLMCAST_SHIFT;
616                 val &= IPN3KE_MAC_RX_FRAME_CONTROL_EN_ALLMCAST_MASK;
617                 val |= rddata;
618                 (*hw->f_mac_write)(hw,
619                                 val,
620                                 IPN3KE_MAC_RX_FRAME_CONTROL,
621                                 rpst->port_id,
622                                 0);
623         }
624 }
625
626 void
627 ipn3ke_rpst_allmulticast_disable(struct rte_eth_dev *ethdev)
628 {
629         struct ipn3ke_hw *hw = IPN3KE_DEV_PRIVATE_TO_HW(ethdev);
630         struct ipn3ke_rpst *rpst = IPN3KE_DEV_PRIVATE_TO_RPST(ethdev);
631         uint32_t rddata, val;
632
633         if (hw->retimer.mac_type == IFPGA_RAWDEV_RETIMER_MAC_TYPE_10GE_XFI) {
634                 /* Disable all unicast */
635                 (*hw->f_mac_read)(hw,
636                                 &rddata,
637                                 IPN3KE_MAC_RX_FRAME_CONTROL,
638                                 rpst->port_id,
639                                 0);
640                 val = 0;
641                 val <<= IPN3KE_MAC_RX_FRAME_CONTROL_EN_ALLMCAST_SHIFT;
642                 val &= IPN3KE_MAC_RX_FRAME_CONTROL_EN_ALLMCAST_MASK;
643                 val |= rddata;
644                 (*hw->f_mac_write)(hw,
645                                 val,
646                                 IPN3KE_MAC_RX_FRAME_CONTROL,
647                                 rpst->port_id,
648                                 0);
649         }
650 }
651
652 int
653 ipn3ke_rpst_mac_addr_set(struct rte_eth_dev *ethdev,
654                                 struct rte_ether_addr *mac_addr)
655 {
656         struct ipn3ke_hw *hw = IPN3KE_DEV_PRIVATE_TO_HW(ethdev);
657         struct ipn3ke_rpst *rpst = IPN3KE_DEV_PRIVATE_TO_RPST(ethdev);
658         uint32_t val;
659
660         if (!rte_is_valid_assigned_ether_addr(mac_addr)) {
661                 IPN3KE_AFU_PMD_ERR("Tried to set invalid MAC address.");
662                 return -EINVAL;
663         }
664
665         if (hw->retimer.mac_type == IFPGA_RAWDEV_RETIMER_MAC_TYPE_10GE_XFI) {
666                 rte_ether_addr_copy(&mac_addr[0], &rpst->mac_addr);
667
668                 /* Set mac address */
669                 rte_memcpy(((char *)(&val)), &mac_addr[0], sizeof(uint32_t));
670                 (*hw->f_mac_write)(hw,
671                                 val,
672                                 IPN3KE_MAC_PRIMARY_MAC_ADDR0,
673                                 rpst->port_id,
674                                 0);
675                 rte_memcpy(((char *)(&val)), &mac_addr[4], sizeof(uint16_t));
676                 (*hw->f_mac_write)(hw,
677                                 val,
678                                 IPN3KE_MAC_PRIMARY_MAC_ADDR0,
679                                 rpst->port_id,
680                                 0);
681         }
682
683         return 0;
684 }
685
686 int
687 ipn3ke_rpst_mtu_set(struct rte_eth_dev *ethdev, uint16_t mtu)
688 {
689         int ret = 0;
690         struct ipn3ke_rpst *rpst = IPN3KE_DEV_PRIVATE_TO_RPST(ethdev);
691         struct rte_eth_dev_data *dev_data = ethdev->data;
692         uint32_t frame_size = mtu  + IPN3KE_ETH_OVERHEAD;
693
694         /* check if mtu is within the allowed range */
695         if (mtu < RTE_ETHER_MIN_MTU ||
696                 frame_size > IPN3KE_MAC_FRAME_SIZE_MAX)
697                 return -EINVAL;
698
699         /* mtu setting is forbidden if port is start */
700         /* make sure NIC port is stopped */
701         if (rpst->i40e_pf_eth && rpst->i40e_pf_eth->data->dev_started) {
702                 IPN3KE_AFU_PMD_ERR("NIC port %d must "
703                         "be stopped before configuration",
704                         rpst->i40e_pf_eth->data->port_id);
705                 return -EBUSY;
706         }
707         /* mtu setting is forbidden if port is start */
708         if (dev_data->dev_started) {
709                 IPN3KE_AFU_PMD_ERR("FPGA port %d must "
710                         "be stopped before configuration",
711                         dev_data->port_id);
712                 return -EBUSY;
713         }
714
715         if (frame_size > RTE_ETHER_MAX_LEN)
716                 dev_data->dev_conf.rxmode.offloads |=
717                         (uint64_t)(DEV_RX_OFFLOAD_JUMBO_FRAME);
718         else
719                 dev_data->dev_conf.rxmode.offloads &=
720                         (uint64_t)(~DEV_RX_OFFLOAD_JUMBO_FRAME);
721
722         dev_data->dev_conf.rxmode.max_rx_pkt_len = frame_size;
723
724         if (rpst->i40e_pf_eth) {
725                 ret = rpst->i40e_pf_eth->dev_ops->mtu_set(rpst->i40e_pf_eth,
726                                                         mtu);
727                 if (!ret)
728                         rpst->i40e_pf_eth->data->mtu = mtu;
729         }
730
731         return ret;
732 }
733
734 static int
735 ipn3ke_afu_filter_ctrl(struct rte_eth_dev *ethdev,
736         enum rte_filter_type filter_type, enum rte_filter_op filter_op,
737         void *arg)
738 {
739         struct ipn3ke_hw *hw = IPN3KE_DEV_PRIVATE_TO_HW(ethdev);
740         struct ipn3ke_rpst *rpst = IPN3KE_DEV_PRIVATE_TO_RPST(ethdev);
741         int ret = 0;
742
743         if (ethdev == NULL)
744                 return -EINVAL;
745
746         if (hw->acc_flow)
747                 switch (filter_type) {
748                 case RTE_ETH_FILTER_GENERIC:
749                         if (filter_op != RTE_ETH_FILTER_GET)
750                                 return -EINVAL;
751                         *(const void **)arg = &ipn3ke_flow_ops;
752                         break;
753                 default:
754                         IPN3KE_AFU_PMD_WARN("Filter type (%d) not supported",
755                                         filter_type);
756                         ret = -EINVAL;
757                         break;
758                 }
759         else if (rpst->i40e_pf_eth)
760                 (*rpst->i40e_pf_eth->dev_ops->filter_ctrl)(ethdev,
761                                                         filter_type,
762                                                         filter_op,
763                                                         arg);
764         else
765                 return -EINVAL;
766
767         return ret;
768 }
769
770 static const struct eth_dev_ops ipn3ke_rpst_dev_ops = {
771         .dev_infos_get        = ipn3ke_rpst_dev_infos_get,
772
773         .dev_configure        = ipn3ke_rpst_dev_configure,
774         .dev_start            = ipn3ke_rpst_dev_start,
775         .dev_stop             = ipn3ke_rpst_dev_stop,
776         .dev_close            = ipn3ke_rpst_dev_close,
777         .dev_reset            = ipn3ke_rpst_dev_reset,
778
779         .stats_get            = ipn3ke_rpst_stats_get,
780         .xstats_get           = ipn3ke_rpst_xstats_get,
781         .xstats_get_names     = ipn3ke_rpst_xstats_get_names,
782         .stats_reset          = ipn3ke_rpst_stats_reset,
783         .xstats_reset         = ipn3ke_rpst_stats_reset,
784
785         .filter_ctrl          = ipn3ke_afu_filter_ctrl,
786
787         .rx_queue_start       = ipn3ke_rpst_rx_queue_start,
788         .rx_queue_stop        = ipn3ke_rpst_rx_queue_stop,
789         .tx_queue_start       = ipn3ke_rpst_tx_queue_start,
790         .tx_queue_stop        = ipn3ke_rpst_tx_queue_stop,
791         .rx_queue_setup       = ipn3ke_rpst_rx_queue_setup,
792         .rx_queue_release     = ipn3ke_rpst_rx_queue_release,
793         .tx_queue_setup       = ipn3ke_rpst_tx_queue_setup,
794         .tx_queue_release     = ipn3ke_rpst_tx_queue_release,
795
796         .dev_set_link_up      = ipn3ke_rpst_dev_set_link_up,
797         .dev_set_link_down    = ipn3ke_rpst_dev_set_link_down,
798         .link_update          = ipn3ke_rpst_link_update,
799
800         .promiscuous_enable   = ipn3ke_rpst_promiscuous_enable,
801         .promiscuous_disable  = ipn3ke_rpst_promiscuous_disable,
802         .allmulticast_enable  = ipn3ke_rpst_allmulticast_enable,
803         .allmulticast_disable = ipn3ke_rpst_allmulticast_disable,
804         .mac_addr_set         = ipn3ke_rpst_mac_addr_set,
805         .mtu_set              = ipn3ke_rpst_mtu_set,
806
807         .tm_ops_get           = ipn3ke_tm_ops_get,
808 };
809
810 static uint16_t ipn3ke_rpst_recv_pkts(__rte_unused void *rx_q,
811         __rte_unused struct rte_mbuf **rx_pkts, __rte_unused uint16_t nb_pkts)
812 {
813         return 0;
814 }
815
816 static uint16_t
817 ipn3ke_rpst_xmit_pkts(__rte_unused void *tx_queue,
818         __rte_unused struct rte_mbuf **tx_pkts, __rte_unused uint16_t nb_pkts)
819 {
820         return 0;
821 }
822
823 int
824 ipn3ke_rpst_init(struct rte_eth_dev *ethdev, void *init_params)
825 {
826         struct ipn3ke_rpst *rpst = IPN3KE_DEV_PRIVATE_TO_RPST(ethdev);
827         struct ipn3ke_rpst *representor_param =
828                         (struct ipn3ke_rpst *)init_params;
829
830         if (representor_param->port_id >= representor_param->hw->port_num)
831                 return -ENODEV;
832
833         rpst->ethdev = ethdev;
834         rpst->switch_domain_id = representor_param->switch_domain_id;
835         rpst->port_id = representor_param->port_id;
836         rpst->hw = representor_param->hw;
837         rpst->i40e_pf_eth = NULL;
838         rpst->i40e_pf_eth_port_id = 0xFFFF;
839
840         ethdev->data->mac_addrs = rte_zmalloc("ipn3ke", RTE_ETHER_ADDR_LEN, 0);
841         if (!ethdev->data->mac_addrs) {
842                 IPN3KE_AFU_PMD_ERR("Failed to "
843                         "allocated memory for storing mac address");
844                 return -ENODEV;
845         }
846
847         if (rpst->hw->tm_hw_enable)
848                 ipn3ke_tm_init(rpst);
849
850         /* Set representor device ops */
851         ethdev->dev_ops = &ipn3ke_rpst_dev_ops;
852
853         /* No data-path, but need stub Rx/Tx functions to avoid crash
854          * when testing with the likes of testpmd.
855          */
856         ethdev->rx_pkt_burst = ipn3ke_rpst_recv_pkts;
857         ethdev->tx_pkt_burst = ipn3ke_rpst_xmit_pkts;
858
859         ethdev->data->nb_rx_queues = 1;
860         ethdev->data->nb_tx_queues = 1;
861
862         ethdev->data->mac_addrs = rte_zmalloc("ipn3ke_afu_representor",
863                                                 RTE_ETHER_ADDR_LEN,
864                                                 0);
865         if (!ethdev->data->mac_addrs) {
866                 IPN3KE_AFU_PMD_ERR("Failed to "
867                         "allocated memory for storing mac address");
868                 return -ENODEV;
869         }
870
871         ethdev->data->dev_flags |= RTE_ETH_DEV_REPRESENTOR;
872
873         rte_spinlock_lock(&ipn3ke_link_notify_list_lk);
874         TAILQ_INSERT_TAIL(&ipn3ke_rpst_list, rpst, next);
875         ipn3ke_rpst_scan_num++;
876         ipn3ke_rpst_scan_check();
877         rte_spinlock_unlock(&ipn3ke_link_notify_list_lk);
878
879         return 0;
880 }
881
882 int
883 ipn3ke_rpst_uninit(struct rte_eth_dev *ethdev)
884 {
885         struct ipn3ke_rpst *rpst = IPN3KE_DEV_PRIVATE_TO_RPST(ethdev);
886
887         rte_spinlock_lock(&ipn3ke_link_notify_list_lk);
888         TAILQ_REMOVE(&ipn3ke_rpst_list, rpst, next);
889         ipn3ke_rpst_scan_num--;
890         ipn3ke_rpst_scan_check();
891         rte_spinlock_unlock(&ipn3ke_link_notify_list_lk);
892
893         return 0;
894 }