Imported Upstream version 16.07-rc2
[deb_dpdk.git] / drivers / net / enic / enic_main.c
1 /*
2  * Copyright 2008-2014 Cisco Systems, Inc.  All rights reserved.
3  * Copyright 2007 Nuova Systems, Inc.  All rights reserved.
4  *
5  * Copyright (c) 2014, Cisco Systems, Inc.
6  * All rights reserved.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions
10  * are met:
11  *
12  * 1. Redistributions of source code must retain the above copyright
13  * notice, this list of conditions and the following disclaimer.
14  *
15  * 2. Redistributions in binary form must reproduce the above copyright
16  * notice, this list of conditions and the following disclaimer in
17  * the documentation and/or other materials provided with the
18  * distribution.
19  *
20  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
23  * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
24  * COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
25  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
26  * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
27  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
28  * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
30  * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
31  * POSSIBILITY OF SUCH DAMAGE.
32  *
33  */
34
35 #include <stdio.h>
36
37 #include <sys/stat.h>
38 #include <sys/mman.h>
39 #include <fcntl.h>
40 #include <libgen.h>
41
42 #include <rte_pci.h>
43 #include <rte_memzone.h>
44 #include <rte_malloc.h>
45 #include <rte_mbuf.h>
46 #include <rte_string_fns.h>
47 #include <rte_ethdev.h>
48
49 #include "enic_compat.h"
50 #include "enic.h"
51 #include "wq_enet_desc.h"
52 #include "rq_enet_desc.h"
53 #include "cq_enet_desc.h"
54 #include "vnic_enet.h"
55 #include "vnic_dev.h"
56 #include "vnic_wq.h"
57 #include "vnic_rq.h"
58 #include "vnic_cq.h"
59 #include "vnic_intr.h"
60 #include "vnic_nic.h"
61
62 static inline int enic_is_sriov_vf(struct enic *enic)
63 {
64         return enic->pdev->id.device_id == PCI_DEVICE_ID_CISCO_VIC_ENET_VF;
65 }
66
67 static int is_zero_addr(uint8_t *addr)
68 {
69         return !(addr[0] |  addr[1] | addr[2] | addr[3] | addr[4] | addr[5]);
70 }
71
72 static int is_mcast_addr(uint8_t *addr)
73 {
74         return addr[0] & 1;
75 }
76
77 static int is_eth_addr_valid(uint8_t *addr)
78 {
79         return !is_mcast_addr(addr) && !is_zero_addr(addr);
80 }
81
82 static void
83 enic_rxmbuf_queue_release(__rte_unused struct enic *enic, struct vnic_rq *rq)
84 {
85         uint16_t i;
86
87         if (!rq || !rq->mbuf_ring) {
88                 dev_debug(enic, "Pointer to rq or mbuf_ring is NULL");
89                 return;
90         }
91
92         for (i = 0; i < rq->ring.desc_count; i++) {
93                 if (rq->mbuf_ring[i]) {
94                         rte_pktmbuf_free_seg(rq->mbuf_ring[i]);
95                         rq->mbuf_ring[i] = NULL;
96                 }
97         }
98 }
99
100 void enic_set_hdr_split_size(struct enic *enic, u16 split_hdr_size)
101 {
102         vnic_set_hdr_split_size(enic->vdev, split_hdr_size);
103 }
104
105 static void enic_free_wq_buf(struct vnic_wq_buf *buf)
106 {
107         struct rte_mbuf *mbuf = (struct rte_mbuf *)buf->mb;
108
109         rte_mempool_put(mbuf->pool, mbuf);
110         buf->mb = NULL;
111 }
112
113 static void enic_log_q_error(struct enic *enic)
114 {
115         unsigned int i;
116         u32 error_status;
117
118         for (i = 0; i < enic->wq_count; i++) {
119                 error_status = vnic_wq_error_status(&enic->wq[i]);
120                 if (error_status)
121                         dev_err(enic, "WQ[%d] error_status %d\n", i,
122                                 error_status);
123         }
124
125         for (i = 0; i < enic_vnic_rq_count(enic); i++) {
126                 error_status = vnic_rq_error_status(&enic->rq[i]);
127                 if (error_status)
128                         dev_err(enic, "RQ[%d] error_status %d\n", i,
129                                 error_status);
130         }
131 }
132
133 static void enic_clear_soft_stats(struct enic *enic)
134 {
135         struct enic_soft_stats *soft_stats = &enic->soft_stats;
136         rte_atomic64_clear(&soft_stats->rx_nombuf);
137         rte_atomic64_clear(&soft_stats->rx_packet_errors);
138 }
139
140 static void enic_init_soft_stats(struct enic *enic)
141 {
142         struct enic_soft_stats *soft_stats = &enic->soft_stats;
143         rte_atomic64_init(&soft_stats->rx_nombuf);
144         rte_atomic64_init(&soft_stats->rx_packet_errors);
145         enic_clear_soft_stats(enic);
146 }
147
148 void enic_dev_stats_clear(struct enic *enic)
149 {
150         if (vnic_dev_stats_clear(enic->vdev))
151                 dev_err(enic, "Error in clearing stats\n");
152         enic_clear_soft_stats(enic);
153 }
154
155 void enic_dev_stats_get(struct enic *enic, struct rte_eth_stats *r_stats)
156 {
157         struct vnic_stats *stats;
158         struct enic_soft_stats *soft_stats = &enic->soft_stats;
159         int64_t rx_truncated;
160         uint64_t rx_packet_errors;
161
162         if (vnic_dev_stats_dump(enic->vdev, &stats)) {
163                 dev_err(enic, "Error in getting stats\n");
164                 return;
165         }
166
167         /* The number of truncated packets can only be calculated by
168          * subtracting a hardware counter from error packets received by
169          * the driver. Note: this causes transient inaccuracies in the
170          * ipackets count. Also, the length of truncated packets are
171          * counted in ibytes even though truncated packets are dropped
172          * which can make ibytes be slightly higher than it should be.
173          */
174         rx_packet_errors = rte_atomic64_read(&soft_stats->rx_packet_errors);
175         rx_truncated = rx_packet_errors - stats->rx.rx_errors;
176
177         r_stats->ipackets = stats->rx.rx_frames_ok - rx_truncated;
178         r_stats->opackets = stats->tx.tx_frames_ok;
179
180         r_stats->ibytes = stats->rx.rx_bytes_ok;
181         r_stats->obytes = stats->tx.tx_bytes_ok;
182
183         r_stats->ierrors = stats->rx.rx_errors + stats->rx.rx_drop;
184         r_stats->oerrors = stats->tx.tx_errors;
185
186         r_stats->imissed = stats->rx.rx_no_bufs + rx_truncated;
187
188         r_stats->rx_nombuf = rte_atomic64_read(&soft_stats->rx_nombuf);
189 }
190
191 void enic_del_mac_address(struct enic *enic)
192 {
193         if (vnic_dev_del_addr(enic->vdev, enic->mac_addr))
194                 dev_err(enic, "del mac addr failed\n");
195 }
196
197 void enic_set_mac_address(struct enic *enic, uint8_t *mac_addr)
198 {
199         int err;
200
201         if (!is_eth_addr_valid(mac_addr)) {
202                 dev_err(enic, "invalid mac address\n");
203                 return;
204         }
205
206         err = vnic_dev_del_addr(enic->vdev, enic->mac_addr);
207         if (err) {
208                 dev_err(enic, "del mac addr failed\n");
209                 return;
210         }
211
212         ether_addr_copy((struct ether_addr *)mac_addr,
213                 (struct ether_addr *)enic->mac_addr);
214
215         err = vnic_dev_add_addr(enic->vdev, mac_addr);
216         if (err) {
217                 dev_err(enic, "add mac addr failed\n");
218                 return;
219         }
220 }
221
222 static void
223 enic_free_rq_buf(struct rte_mbuf **mbuf)
224 {
225         if (*mbuf == NULL)
226                 return;
227
228         rte_pktmbuf_free(*mbuf);
229         mbuf = NULL;
230 }
231
232 void enic_init_vnic_resources(struct enic *enic)
233 {
234         unsigned int error_interrupt_enable = 1;
235         unsigned int error_interrupt_offset = 0;
236         unsigned int index = 0;
237         unsigned int cq_idx;
238         struct vnic_rq *data_rq;
239
240         for (index = 0; index < enic->rq_count; index++) {
241                 cq_idx = enic_cq_rq(enic, enic_sop_rq(index));
242
243                 vnic_rq_init(&enic->rq[enic_sop_rq(index)],
244                         cq_idx,
245                         error_interrupt_enable,
246                         error_interrupt_offset);
247
248                 data_rq = &enic->rq[enic_data_rq(index)];
249                 if (data_rq->in_use)
250                         vnic_rq_init(data_rq,
251                                      cq_idx,
252                                      error_interrupt_enable,
253                                      error_interrupt_offset);
254
255                 vnic_cq_init(&enic->cq[cq_idx],
256                         0 /* flow_control_enable */,
257                         1 /* color_enable */,
258                         0 /* cq_head */,
259                         0 /* cq_tail */,
260                         1 /* cq_tail_color */,
261                         0 /* interrupt_enable */,
262                         1 /* cq_entry_enable */,
263                         0 /* cq_message_enable */,
264                         0 /* interrupt offset */,
265                         0 /* cq_message_addr */);
266         }
267
268         for (index = 0; index < enic->wq_count; index++) {
269                 vnic_wq_init(&enic->wq[index],
270                         enic_cq_wq(enic, index),
271                         error_interrupt_enable,
272                         error_interrupt_offset);
273
274                 cq_idx = enic_cq_wq(enic, index);
275                 vnic_cq_init(&enic->cq[cq_idx],
276                         0 /* flow_control_enable */,
277                         1 /* color_enable */,
278                         0 /* cq_head */,
279                         0 /* cq_tail */,
280                         1 /* cq_tail_color */,
281                         0 /* interrupt_enable */,
282                         0 /* cq_entry_enable */,
283                         1 /* cq_message_enable */,
284                         0 /* interrupt offset */,
285                         (u64)enic->wq[index].cqmsg_rz->phys_addr);
286         }
287
288         vnic_intr_init(&enic->intr,
289                 enic->config.intr_timer_usec,
290                 enic->config.intr_timer_type,
291                 /*mask_on_assertion*/1);
292 }
293
294
295 static int
296 enic_alloc_rx_queue_mbufs(struct enic *enic, struct vnic_rq *rq)
297 {
298         struct rte_mbuf *mb;
299         struct rq_enet_desc *rqd = rq->ring.descs;
300         unsigned i;
301         dma_addr_t dma_addr;
302
303         if (!rq->in_use)
304                 return 0;
305
306         dev_debug(enic, "queue %u, allocating %u rx queue mbufs\n", rq->index,
307                   rq->ring.desc_count);
308
309         for (i = 0; i < rq->ring.desc_count; i++, rqd++) {
310                 mb = rte_mbuf_raw_alloc(rq->mp);
311                 if (mb == NULL) {
312                         dev_err(enic, "RX mbuf alloc failed queue_id=%u\n",
313                         (unsigned)rq->index);
314                         return -ENOMEM;
315                 }
316
317                 dma_addr = (dma_addr_t)(mb->buf_physaddr
318                            + RTE_PKTMBUF_HEADROOM);
319                 rq_enet_desc_enc(rqd, dma_addr,
320                                 (rq->is_sop ? RQ_ENET_TYPE_ONLY_SOP
321                                 : RQ_ENET_TYPE_NOT_SOP),
322                                 mb->buf_len - RTE_PKTMBUF_HEADROOM);
323                 rq->mbuf_ring[i] = mb;
324         }
325
326         /* make sure all prior writes are complete before doing the PIO write */
327         rte_rmb();
328
329         /* Post all but the last buffer to VIC. */
330         rq->posted_index = rq->ring.desc_count - 1;
331
332         rq->rx_nb_hold = 0;
333
334         dev_debug(enic, "port=%u, qidx=%u, Write %u posted idx, %u sw held\n",
335                 enic->port_id, rq->index, rq->posted_index, rq->rx_nb_hold);
336         iowrite32(rq->posted_index, &rq->ctrl->posted_index);
337         iowrite32(0, &rq->ctrl->fetch_index);
338         rte_rmb();
339
340         return 0;
341
342 }
343
344 static void *
345 enic_alloc_consistent(void *priv, size_t size,
346         dma_addr_t *dma_handle, u8 *name)
347 {
348         void *vaddr;
349         const struct rte_memzone *rz;
350         *dma_handle = 0;
351         struct enic *enic = (struct enic *)priv;
352         struct enic_memzone_entry *mze;
353
354         rz = rte_memzone_reserve_aligned((const char *)name,
355                                          size, SOCKET_ID_ANY, 0, ENIC_ALIGN);
356         if (!rz) {
357                 pr_err("%s : Failed to allocate memory requested for %s\n",
358                         __func__, name);
359                 return NULL;
360         }
361
362         vaddr = rz->addr;
363         *dma_handle = (dma_addr_t)rz->phys_addr;
364
365         mze = rte_malloc("enic memzone entry",
366                          sizeof(struct enic_memzone_entry), 0);
367
368         if (!mze) {
369                 pr_err("%s : Failed to allocate memory for memzone list\n",
370                        __func__);
371                 rte_memzone_free(rz);
372         }
373
374         mze->rz = rz;
375
376         rte_spinlock_lock(&enic->memzone_list_lock);
377         LIST_INSERT_HEAD(&enic->memzone_list, mze, entries);
378         rte_spinlock_unlock(&enic->memzone_list_lock);
379
380         return vaddr;
381 }
382
383 static void
384 enic_free_consistent(void *priv,
385                      __rte_unused size_t size,
386                      void *vaddr,
387                      dma_addr_t dma_handle)
388 {
389         struct enic_memzone_entry *mze;
390         struct enic *enic = (struct enic *)priv;
391
392         rte_spinlock_lock(&enic->memzone_list_lock);
393         LIST_FOREACH(mze, &enic->memzone_list, entries) {
394                 if (mze->rz->addr == vaddr &&
395                     mze->rz->phys_addr == dma_handle)
396                         break;
397         }
398         if (mze == NULL) {
399                 rte_spinlock_unlock(&enic->memzone_list_lock);
400                 dev_warning(enic,
401                             "Tried to free memory, but couldn't find it in the memzone list\n");
402                 return;
403         }
404         LIST_REMOVE(mze, entries);
405         rte_spinlock_unlock(&enic->memzone_list_lock);
406         rte_memzone_free(mze->rz);
407         rte_free(mze);
408 }
409
410 static void
411 enic_intr_handler(__rte_unused struct rte_intr_handle *handle,
412         void *arg)
413 {
414         struct enic *enic = pmd_priv((struct rte_eth_dev *)arg);
415
416         vnic_intr_return_all_credits(&enic->intr);
417
418         enic_log_q_error(enic);
419 }
420
421 int enic_enable(struct enic *enic)
422 {
423         unsigned int index;
424         int err;
425         struct rte_eth_dev *eth_dev = enic->rte_dev;
426
427         eth_dev->data->dev_link.link_speed = vnic_dev_port_speed(enic->vdev);
428         eth_dev->data->dev_link.link_duplex = ETH_LINK_FULL_DUPLEX;
429         vnic_dev_notify_set(enic->vdev, -1); /* No Intr for notify */
430
431         if (enic_clsf_init(enic))
432                 dev_warning(enic, "Init of hash table for clsf failed."\
433                         "Flow director feature will not work\n");
434
435         for (index = 0; index < enic->rq_count; index++) {
436                 err = enic_alloc_rx_queue_mbufs(enic,
437                         &enic->rq[enic_sop_rq(index)]);
438                 if (err) {
439                         dev_err(enic, "Failed to alloc sop RX queue mbufs\n");
440                         return err;
441                 }
442                 err = enic_alloc_rx_queue_mbufs(enic,
443                         &enic->rq[enic_data_rq(index)]);
444                 if (err) {
445                         /* release the allocated mbufs for the sop rq*/
446                         enic_rxmbuf_queue_release(enic,
447                                 &enic->rq[enic_sop_rq(index)]);
448
449                         dev_err(enic, "Failed to alloc data RX queue mbufs\n");
450                         return err;
451                 }
452         }
453
454         for (index = 0; index < enic->wq_count; index++)
455                 enic_start_wq(enic, index);
456         for (index = 0; index < enic->rq_count; index++)
457                 enic_start_rq(enic, index);
458
459         vnic_dev_add_addr(enic->vdev, enic->mac_addr);
460
461         vnic_dev_enable_wait(enic->vdev);
462
463         /* Register and enable error interrupt */
464         rte_intr_callback_register(&(enic->pdev->intr_handle),
465                 enic_intr_handler, (void *)enic->rte_dev);
466
467         rte_intr_enable(&(enic->pdev->intr_handle));
468         vnic_intr_unmask(&enic->intr);
469
470         return 0;
471 }
472
473 int enic_alloc_intr_resources(struct enic *enic)
474 {
475         int err;
476
477         dev_info(enic, "vNIC resources used:  "\
478                 "wq %d rq %d cq %d intr %d\n",
479                 enic->wq_count, enic_vnic_rq_count(enic),
480                 enic->cq_count, enic->intr_count);
481
482         err = vnic_intr_alloc(enic->vdev, &enic->intr, 0);
483         if (err)
484                 enic_free_vnic_resources(enic);
485
486         return err;
487 }
488
489 void enic_free_rq(void *rxq)
490 {
491         struct vnic_rq *rq_sop, *rq_data;
492         struct enic *enic;
493
494         if (rxq == NULL)
495                 return;
496
497         rq_sop = (struct vnic_rq *)rxq;
498         enic = vnic_dev_priv(rq_sop->vdev);
499         rq_data = &enic->rq[rq_sop->data_queue_idx];
500
501         enic_rxmbuf_queue_release(enic, rq_sop);
502         if (rq_data->in_use)
503                 enic_rxmbuf_queue_release(enic, rq_data);
504
505         rte_free(rq_sop->mbuf_ring);
506         if (rq_data->in_use)
507                 rte_free(rq_data->mbuf_ring);
508
509         rq_sop->mbuf_ring = NULL;
510         rq_data->mbuf_ring = NULL;
511
512         vnic_rq_free(rq_sop);
513         if (rq_data->in_use)
514                 vnic_rq_free(rq_data);
515
516         vnic_cq_free(&enic->cq[rq_sop->index]);
517 }
518
519 void enic_start_wq(struct enic *enic, uint16_t queue_idx)
520 {
521         vnic_wq_enable(&enic->wq[queue_idx]);
522 }
523
524 int enic_stop_wq(struct enic *enic, uint16_t queue_idx)
525 {
526         return vnic_wq_disable(&enic->wq[queue_idx]);
527 }
528
529 void enic_start_rq(struct enic *enic, uint16_t queue_idx)
530 {
531         struct vnic_rq *rq_sop = &enic->rq[enic_sop_rq(queue_idx)];
532         struct vnic_rq *rq_data = &enic->rq[rq_sop->data_queue_idx];
533
534         if (rq_data->in_use)
535                 vnic_rq_enable(rq_data);
536         rte_mb();
537         vnic_rq_enable(rq_sop);
538
539 }
540
541 int enic_stop_rq(struct enic *enic, uint16_t queue_idx)
542 {
543         int ret1 = 0, ret2 = 0;
544
545         struct vnic_rq *rq_sop = &enic->rq[enic_sop_rq(queue_idx)];
546         struct vnic_rq *rq_data = &enic->rq[rq_sop->data_queue_idx];
547
548         ret2 = vnic_rq_disable(rq_sop);
549         rte_mb();
550         if (rq_data->in_use)
551                 ret1 = vnic_rq_disable(rq_data);
552
553         if (ret2)
554                 return ret2;
555         else
556                 return ret1;
557 }
558
559 int enic_alloc_rq(struct enic *enic, uint16_t queue_idx,
560         unsigned int socket_id, struct rte_mempool *mp,
561         uint16_t nb_desc)
562 {
563         int rc;
564         uint16_t sop_queue_idx = enic_sop_rq(queue_idx);
565         uint16_t data_queue_idx = enic_data_rq(queue_idx);
566         struct vnic_rq *rq_sop = &enic->rq[sop_queue_idx];
567         struct vnic_rq *rq_data = &enic->rq[data_queue_idx];
568         unsigned int mbuf_size, mbufs_per_pkt;
569         unsigned int nb_sop_desc, nb_data_desc;
570         uint16_t min_sop, max_sop, min_data, max_data;
571
572         rq_sop->is_sop = 1;
573         rq_sop->data_queue_idx = data_queue_idx;
574         rq_data->is_sop = 0;
575         rq_data->data_queue_idx = 0;
576         rq_sop->socket_id = socket_id;
577         rq_sop->mp = mp;
578         rq_data->socket_id = socket_id;
579         rq_data->mp = mp;
580         rq_sop->in_use = 1;
581
582         mbuf_size = (uint16_t)(rte_pktmbuf_data_room_size(mp) -
583                                RTE_PKTMBUF_HEADROOM);
584
585         if (enic->rte_dev->data->dev_conf.rxmode.enable_scatter) {
586                 dev_info(enic, "Scatter rx mode enabled\n");
587                 /* ceil((mtu + ETHER_HDR_LEN + 4)/mbuf_size) */
588                 mbufs_per_pkt = ((enic->config.mtu + ETHER_HDR_LEN + 4) +
589                                  (mbuf_size - 1)) / mbuf_size;
590         } else {
591                 dev_info(enic, "Scatter rx mode disabled\n");
592                 mbufs_per_pkt = 1;
593         }
594
595         if (mbufs_per_pkt > 1) {
596                 dev_info(enic, "Scatter rx mode in use\n");
597                 rq_data->in_use = 1;
598         } else {
599                 dev_info(enic, "Scatter rx mode not being used\n");
600                 rq_data->in_use = 0;
601         }
602
603         /* number of descriptors have to be a multiple of 32 */
604         nb_sop_desc = (nb_desc / mbufs_per_pkt) & ~0x1F;
605         nb_data_desc = (nb_desc - nb_sop_desc) & ~0x1F;
606
607         rq_sop->max_mbufs_per_pkt = mbufs_per_pkt;
608         rq_data->max_mbufs_per_pkt = mbufs_per_pkt;
609
610         if (mbufs_per_pkt > 1) {
611                 min_sop = 64;
612                 max_sop = ((enic->config.rq_desc_count /
613                             (mbufs_per_pkt - 1)) & ~0x1F);
614                 min_data = min_sop * (mbufs_per_pkt - 1);
615                 max_data = enic->config.rq_desc_count;
616         } else {
617                 min_sop = 64;
618                 max_sop = enic->config.rq_desc_count;
619                 min_data = 0;
620                 max_data = 0;
621         }
622
623         if (nb_desc < (min_sop + min_data)) {
624                 dev_warning(enic,
625                             "Number of rx descs too low, adjusting to minimum\n");
626                 nb_sop_desc = min_sop;
627                 nb_data_desc = min_data;
628         } else if (nb_desc > (max_sop + max_data)) {
629                 dev_warning(enic,
630                             "Number of rx_descs too high, adjusting to maximum\n");
631                 nb_sop_desc = max_sop;
632                 nb_data_desc = max_data;
633         }
634         if (mbufs_per_pkt > 1) {
635                 dev_info(enic, "For mtu %d and mbuf size %d valid rx descriptor range is %d to %d\n",
636                          enic->config.mtu, mbuf_size, min_sop + min_data,
637                          max_sop + max_data);
638         }
639         dev_info(enic, "Using %d rx descriptors (sop %d, data %d)\n",
640                  nb_sop_desc + nb_data_desc, nb_sop_desc, nb_data_desc);
641
642         /* Allocate sop queue resources */
643         rc = vnic_rq_alloc(enic->vdev, rq_sop, sop_queue_idx,
644                 nb_sop_desc, sizeof(struct rq_enet_desc));
645         if (rc) {
646                 dev_err(enic, "error in allocation of sop rq\n");
647                 goto err_exit;
648         }
649         nb_sop_desc = rq_sop->ring.desc_count;
650
651         if (rq_data->in_use) {
652                 /* Allocate data queue resources */
653                 rc = vnic_rq_alloc(enic->vdev, rq_data, data_queue_idx,
654                                    nb_data_desc,
655                                    sizeof(struct rq_enet_desc));
656                 if (rc) {
657                         dev_err(enic, "error in allocation of data rq\n");
658                         goto err_free_rq_sop;
659                 }
660                 nb_data_desc = rq_data->ring.desc_count;
661         }
662         rc = vnic_cq_alloc(enic->vdev, &enic->cq[queue_idx], queue_idx,
663                            socket_id, nb_sop_desc + nb_data_desc,
664                            sizeof(struct cq_enet_rq_desc));
665         if (rc) {
666                 dev_err(enic, "error in allocation of cq for rq\n");
667                 goto err_free_rq_data;
668         }
669
670         /* Allocate the mbuf rings */
671         rq_sop->mbuf_ring = (struct rte_mbuf **)
672                 rte_zmalloc_socket("rq->mbuf_ring",
673                                    sizeof(struct rte_mbuf *) * nb_sop_desc,
674                                    RTE_CACHE_LINE_SIZE, rq_sop->socket_id);
675         if (rq_sop->mbuf_ring == NULL)
676                 goto err_free_cq;
677
678         if (rq_data->in_use) {
679                 rq_data->mbuf_ring = (struct rte_mbuf **)
680                         rte_zmalloc_socket("rq->mbuf_ring",
681                                 sizeof(struct rte_mbuf *) * nb_data_desc,
682                                 RTE_CACHE_LINE_SIZE, rq_sop->socket_id);
683                 if (rq_data->mbuf_ring == NULL)
684                         goto err_free_sop_mbuf;
685         }
686
687         return 0;
688
689 err_free_sop_mbuf:
690         rte_free(rq_sop->mbuf_ring);
691 err_free_cq:
692         /* cleanup on error */
693         vnic_cq_free(&enic->cq[queue_idx]);
694 err_free_rq_data:
695         if (rq_data->in_use)
696                 vnic_rq_free(rq_data);
697 err_free_rq_sop:
698         vnic_rq_free(rq_sop);
699 err_exit:
700         return -ENOMEM;
701 }
702
703 void enic_free_wq(void *txq)
704 {
705         struct vnic_wq *wq;
706         struct enic *enic;
707
708         if (txq == NULL)
709                 return;
710
711         wq = (struct vnic_wq *)txq;
712         enic = vnic_dev_priv(wq->vdev);
713         rte_memzone_free(wq->cqmsg_rz);
714         vnic_wq_free(wq);
715         vnic_cq_free(&enic->cq[enic->rq_count + wq->index]);
716 }
717
718 int enic_alloc_wq(struct enic *enic, uint16_t queue_idx,
719         unsigned int socket_id, uint16_t nb_desc)
720 {
721         int err;
722         struct vnic_wq *wq = &enic->wq[queue_idx];
723         unsigned int cq_index = enic_cq_wq(enic, queue_idx);
724         char name[NAME_MAX];
725         static int instance;
726
727         wq->socket_id = socket_id;
728         if (nb_desc) {
729                 if (nb_desc > enic->config.wq_desc_count) {
730                         dev_warning(enic,
731                                 "WQ %d - number of tx desc in cmd line (%d)"\
732                                 "is greater than that in the UCSM/CIMC adapter"\
733                                 "policy.  Applying the value in the adapter "\
734                                 "policy (%d)\n",
735                                 queue_idx, nb_desc, enic->config.wq_desc_count);
736                 } else if (nb_desc != enic->config.wq_desc_count) {
737                         enic->config.wq_desc_count = nb_desc;
738                         dev_info(enic,
739                                 "TX Queues - effective number of descs:%d\n",
740                                 nb_desc);
741                 }
742         }
743
744         /* Allocate queue resources */
745         err = vnic_wq_alloc(enic->vdev, &enic->wq[queue_idx], queue_idx,
746                 enic->config.wq_desc_count,
747                 sizeof(struct wq_enet_desc));
748         if (err) {
749                 dev_err(enic, "error in allocation of wq\n");
750                 return err;
751         }
752
753         err = vnic_cq_alloc(enic->vdev, &enic->cq[cq_index], cq_index,
754                 socket_id, enic->config.wq_desc_count,
755                 sizeof(struct cq_enet_wq_desc));
756         if (err) {
757                 vnic_wq_free(wq);
758                 dev_err(enic, "error in allocation of cq for wq\n");
759         }
760
761         /* setup up CQ message */
762         snprintf((char *)name, sizeof(name),
763                  "vnic_cqmsg-%s-%d-%d", enic->bdf_name, queue_idx,
764                 instance++);
765
766         wq->cqmsg_rz = rte_memzone_reserve_aligned((const char *)name,
767                                                    sizeof(uint32_t),
768                                                    SOCKET_ID_ANY, 0,
769                                                    ENIC_ALIGN);
770         if (!wq->cqmsg_rz)
771                 return -ENOMEM;
772
773         return err;
774 }
775
776 int enic_disable(struct enic *enic)
777 {
778         unsigned int i;
779         int err;
780
781         vnic_intr_mask(&enic->intr);
782         (void)vnic_intr_masked(&enic->intr); /* flush write */
783
784         vnic_dev_disable(enic->vdev);
785
786         enic_clsf_destroy(enic);
787
788         if (!enic_is_sriov_vf(enic))
789                 vnic_dev_del_addr(enic->vdev, enic->mac_addr);
790
791         for (i = 0; i < enic->wq_count; i++) {
792                 err = vnic_wq_disable(&enic->wq[i]);
793                 if (err)
794                         return err;
795         }
796         for (i = 0; i < enic_vnic_rq_count(enic); i++) {
797                 if (enic->rq[i].in_use) {
798                         err = vnic_rq_disable(&enic->rq[i]);
799                         if (err)
800                                 return err;
801                 }
802         }
803
804         vnic_dev_set_reset_flag(enic->vdev, 1);
805         vnic_dev_notify_unset(enic->vdev);
806
807         for (i = 0; i < enic->wq_count; i++)
808                 vnic_wq_clean(&enic->wq[i], enic_free_wq_buf);
809
810         for (i = 0; i < enic_vnic_rq_count(enic); i++)
811                 if (enic->rq[i].in_use)
812                         vnic_rq_clean(&enic->rq[i], enic_free_rq_buf);
813         for (i = 0; i < enic->cq_count; i++)
814                 vnic_cq_clean(&enic->cq[i]);
815         vnic_intr_clean(&enic->intr);
816
817         return 0;
818 }
819
820 static int enic_dev_wait(struct vnic_dev *vdev,
821         int (*start)(struct vnic_dev *, int),
822         int (*finished)(struct vnic_dev *, int *),
823         int arg)
824 {
825         int done;
826         int err;
827         int i;
828
829         err = start(vdev, arg);
830         if (err)
831                 return err;
832
833         /* Wait for func to complete...2 seconds max */
834         for (i = 0; i < 2000; i++) {
835                 err = finished(vdev, &done);
836                 if (err)
837                         return err;
838                 if (done)
839                         return 0;
840                 usleep(1000);
841         }
842         return -ETIMEDOUT;
843 }
844
845 static int enic_dev_open(struct enic *enic)
846 {
847         int err;
848
849         err = enic_dev_wait(enic->vdev, vnic_dev_open,
850                 vnic_dev_open_done, 0);
851         if (err)
852                 dev_err(enic_get_dev(enic),
853                         "vNIC device open failed, err %d\n", err);
854
855         return err;
856 }
857
858 static int enic_set_rsskey(struct enic *enic)
859 {
860         dma_addr_t rss_key_buf_pa;
861         union vnic_rss_key *rss_key_buf_va = NULL;
862         static union vnic_rss_key rss_key = {
863                 .key = {
864                         [0] = {.b = {85, 67, 83, 97, 119, 101, 115, 111, 109, 101}},
865                         [1] = {.b = {80, 65, 76, 79, 117, 110, 105, 113, 117, 101}},
866                         [2] = {.b = {76, 73, 78, 85, 88, 114, 111, 99, 107, 115}},
867                         [3] = {.b = {69, 78, 73, 67, 105, 115, 99, 111, 111, 108}},
868                 }
869         };
870         int err;
871         u8 name[NAME_MAX];
872
873         snprintf((char *)name, NAME_MAX, "rss_key-%s", enic->bdf_name);
874         rss_key_buf_va = enic_alloc_consistent(enic, sizeof(union vnic_rss_key),
875                 &rss_key_buf_pa, name);
876         if (!rss_key_buf_va)
877                 return -ENOMEM;
878
879         rte_memcpy(rss_key_buf_va, &rss_key, sizeof(union vnic_rss_key));
880
881         err = enic_set_rss_key(enic,
882                 rss_key_buf_pa,
883                 sizeof(union vnic_rss_key));
884
885         enic_free_consistent(enic, sizeof(union vnic_rss_key),
886                 rss_key_buf_va, rss_key_buf_pa);
887
888         return err;
889 }
890
891 static int enic_set_rsscpu(struct enic *enic, u8 rss_hash_bits)
892 {
893         dma_addr_t rss_cpu_buf_pa;
894         union vnic_rss_cpu *rss_cpu_buf_va = NULL;
895         int i;
896         int err;
897         u8 name[NAME_MAX];
898
899         snprintf((char *)name, NAME_MAX, "rss_cpu-%s", enic->bdf_name);
900         rss_cpu_buf_va = enic_alloc_consistent(enic, sizeof(union vnic_rss_cpu),
901                 &rss_cpu_buf_pa, name);
902         if (!rss_cpu_buf_va)
903                 return -ENOMEM;
904
905         for (i = 0; i < (1 << rss_hash_bits); i++)
906                 (*rss_cpu_buf_va).cpu[i / 4].b[i % 4] =
907                         enic_sop_rq(i % enic->rq_count);
908
909         err = enic_set_rss_cpu(enic,
910                 rss_cpu_buf_pa,
911                 sizeof(union vnic_rss_cpu));
912
913         enic_free_consistent(enic, sizeof(union vnic_rss_cpu),
914                 rss_cpu_buf_va, rss_cpu_buf_pa);
915
916         return err;
917 }
918
919 static int enic_set_niccfg(struct enic *enic, u8 rss_default_cpu,
920         u8 rss_hash_type, u8 rss_hash_bits, u8 rss_base_cpu, u8 rss_enable)
921 {
922         const u8 tso_ipid_split_en = 0;
923         int err;
924
925         /* Enable VLAN tag stripping */
926
927         err = enic_set_nic_cfg(enic,
928                 rss_default_cpu, rss_hash_type,
929                 rss_hash_bits, rss_base_cpu,
930                 rss_enable, tso_ipid_split_en,
931                 enic->ig_vlan_strip_en);
932
933         return err;
934 }
935
936 int enic_set_rss_nic_cfg(struct enic *enic)
937 {
938         const u8 rss_default_cpu = 0;
939         const u8 rss_hash_type = NIC_CFG_RSS_HASH_TYPE_IPV4 |
940             NIC_CFG_RSS_HASH_TYPE_TCP_IPV4 |
941             NIC_CFG_RSS_HASH_TYPE_IPV6 |
942             NIC_CFG_RSS_HASH_TYPE_TCP_IPV6;
943         const u8 rss_hash_bits = 7;
944         const u8 rss_base_cpu = 0;
945         u8 rss_enable = ENIC_SETTING(enic, RSS) && (enic->rq_count > 1);
946
947         if (rss_enable) {
948                 if (!enic_set_rsskey(enic)) {
949                         if (enic_set_rsscpu(enic, rss_hash_bits)) {
950                                 rss_enable = 0;
951                                 dev_warning(enic, "RSS disabled, "\
952                                         "Failed to set RSS cpu indirection table.");
953                         }
954                 } else {
955                         rss_enable = 0;
956                         dev_warning(enic,
957                                 "RSS disabled, Failed to set RSS key.\n");
958                 }
959         }
960
961         return enic_set_niccfg(enic, rss_default_cpu, rss_hash_type,
962                 rss_hash_bits, rss_base_cpu, rss_enable);
963 }
964
965 int enic_setup_finish(struct enic *enic)
966 {
967         int ret;
968
969         enic_init_soft_stats(enic);
970
971         ret = enic_set_rss_nic_cfg(enic);
972         if (ret) {
973                 dev_err(enic, "Failed to config nic, aborting.\n");
974                 return -1;
975         }
976
977         /* Default conf */
978         vnic_dev_packet_filter(enic->vdev,
979                 1 /* directed  */,
980                 1 /* multicast */,
981                 1 /* broadcast */,
982                 0 /* promisc   */,
983                 1 /* allmulti  */);
984
985         enic->promisc = 0;
986         enic->allmulti = 1;
987
988         return 0;
989 }
990
991 void enic_add_packet_filter(struct enic *enic)
992 {
993         /* Args -> directed, multicast, broadcast, promisc, allmulti */
994         vnic_dev_packet_filter(enic->vdev, 1, 1, 1,
995                 enic->promisc, enic->allmulti);
996 }
997
998 int enic_get_link_status(struct enic *enic)
999 {
1000         return vnic_dev_link_status(enic->vdev);
1001 }
1002
1003 static void enic_dev_deinit(struct enic *enic)
1004 {
1005         struct rte_eth_dev *eth_dev = enic->rte_dev;
1006
1007         rte_free(eth_dev->data->mac_addrs);
1008 }
1009
1010
1011 int enic_set_vnic_res(struct enic *enic)
1012 {
1013         struct rte_eth_dev *eth_dev = enic->rte_dev;
1014         int rc = 0;
1015
1016         /* With Rx scatter support, two RQs are now used per RQ used by
1017          * the application.
1018          */
1019         if (enic->conf_rq_count < eth_dev->data->nb_rx_queues) {
1020                 dev_err(dev, "Not enough Receive queues. Requested:%u which uses %d RQs on VIC, Configured:%u\n",
1021                         eth_dev->data->nb_rx_queues,
1022                         eth_dev->data->nb_rx_queues * 2, enic->conf_rq_count);
1023                 rc = -EINVAL;
1024         }
1025         if (enic->conf_wq_count < eth_dev->data->nb_tx_queues) {
1026                 dev_err(dev, "Not enough Transmit queues. Requested:%u, Configured:%u\n",
1027                         eth_dev->data->nb_tx_queues, enic->conf_wq_count);
1028                 rc = -EINVAL;
1029         }
1030
1031         if (enic->conf_cq_count < (eth_dev->data->nb_rx_queues +
1032                                    eth_dev->data->nb_tx_queues)) {
1033                 dev_err(dev, "Not enough Completion queues. Required:%u, Configured:%u\n",
1034                         (eth_dev->data->nb_rx_queues +
1035                          eth_dev->data->nb_tx_queues), enic->conf_cq_count);
1036                 rc = -EINVAL;
1037         }
1038
1039         if (rc == 0) {
1040                 enic->rq_count = eth_dev->data->nb_rx_queues;
1041                 enic->wq_count = eth_dev->data->nb_tx_queues;
1042                 enic->cq_count = enic->rq_count + enic->wq_count;
1043         }
1044
1045         return rc;
1046 }
1047
1048 /* The Cisco NIC can send and receive packets up to a max packet size
1049  * determined by the NIC type and firmware. There is also an MTU
1050  * configured into the NIC via the CIMC/UCSM management interface
1051  * which can be overridden by this function (up to the max packet size).
1052  * Depending on the network setup, doing so may cause packet drops
1053  * and unexpected behavior.
1054  */
1055 int enic_set_mtu(struct enic *enic, uint16_t new_mtu)
1056 {
1057         uint16_t old_mtu;       /* previous setting */
1058         uint16_t config_mtu;    /* Value configured into NIC via CIMC/UCSM */
1059         struct rte_eth_dev *eth_dev = enic->rte_dev;
1060
1061         old_mtu = eth_dev->data->mtu;
1062         config_mtu = enic->config.mtu;
1063
1064         /* only works with Rx scatter disabled */
1065         if (enic->rte_dev->data->dev_conf.rxmode.enable_scatter)
1066                 return -ENOTSUP;
1067
1068         if (new_mtu > enic->max_mtu) {
1069                 dev_err(enic,
1070                         "MTU not updated: requested (%u) greater than max (%u)\n",
1071                         new_mtu, enic->max_mtu);
1072                 return -EINVAL;
1073         }
1074         if (new_mtu < ENIC_MIN_MTU) {
1075                 dev_info(enic,
1076                         "MTU not updated: requested (%u) less than min (%u)\n",
1077                         new_mtu, ENIC_MIN_MTU);
1078                 return -EINVAL;
1079         }
1080         if (new_mtu > config_mtu)
1081                 dev_warning(enic,
1082                         "MTU (%u) is greater than value configured in NIC (%u)\n",
1083                         new_mtu, config_mtu);
1084
1085         /* update the mtu */
1086         eth_dev->data->mtu = new_mtu;
1087
1088         dev_info(enic, "MTU changed from %u to %u\n",  old_mtu, new_mtu);
1089         return 0;
1090 }
1091
1092 static int enic_dev_init(struct enic *enic)
1093 {
1094         int err;
1095         struct rte_eth_dev *eth_dev = enic->rte_dev;
1096
1097         vnic_dev_intr_coal_timer_info_default(enic->vdev);
1098
1099         /* Get vNIC configuration
1100         */
1101         err = enic_get_vnic_config(enic);
1102         if (err) {
1103                 dev_err(dev, "Get vNIC configuration failed, aborting\n");
1104                 return err;
1105         }
1106
1107         eth_dev->data->mac_addrs = rte_zmalloc("enic_mac_addr", ETH_ALEN, 0);
1108         if (!eth_dev->data->mac_addrs) {
1109                 dev_err(enic, "mac addr storage alloc failed, aborting.\n");
1110                 return -1;
1111         }
1112         ether_addr_copy((struct ether_addr *) enic->mac_addr,
1113                 &eth_dev->data->mac_addrs[0]);
1114
1115
1116         /* Get available resource counts
1117         */
1118         enic_get_res_counts(enic);
1119
1120         vnic_dev_set_reset_flag(enic->vdev, 0);
1121
1122         return 0;
1123
1124 }
1125
1126 int enic_probe(struct enic *enic)
1127 {
1128         struct rte_pci_device *pdev = enic->pdev;
1129         int err = -1;
1130
1131         dev_debug(enic, " Initializing ENIC PMD version %s\n", DRV_VERSION);
1132
1133         enic->bar0.vaddr = (void *)pdev->mem_resource[0].addr;
1134         enic->bar0.len = pdev->mem_resource[0].len;
1135
1136         /* Register vNIC device */
1137         enic->vdev = vnic_dev_register(NULL, enic, enic->pdev, &enic->bar0, 1);
1138         if (!enic->vdev) {
1139                 dev_err(enic, "vNIC registration failed, aborting\n");
1140                 goto err_out;
1141         }
1142
1143         LIST_INIT(&enic->memzone_list);
1144         rte_spinlock_init(&enic->memzone_list_lock);
1145
1146         vnic_register_cbacks(enic->vdev,
1147                 enic_alloc_consistent,
1148                 enic_free_consistent);
1149
1150         /* Issue device open to get device in known state */
1151         err = enic_dev_open(enic);
1152         if (err) {
1153                 dev_err(enic, "vNIC dev open failed, aborting\n");
1154                 goto err_out_unregister;
1155         }
1156
1157         /* Set ingress vlan rewrite mode before vnic initialization */
1158         err = vnic_dev_set_ig_vlan_rewrite_mode(enic->vdev,
1159                 IG_VLAN_REWRITE_MODE_PASS_THRU);
1160         if (err) {
1161                 dev_err(enic,
1162                         "Failed to set ingress vlan rewrite mode, aborting.\n");
1163                 goto err_out_dev_close;
1164         }
1165
1166         /* Issue device init to initialize the vnic-to-switch link.
1167          * We'll start with carrier off and wait for link UP
1168          * notification later to turn on carrier.  We don't need
1169          * to wait here for the vnic-to-switch link initialization
1170          * to complete; link UP notification is the indication that
1171          * the process is complete.
1172          */
1173
1174         err = vnic_dev_init(enic->vdev, 0);
1175         if (err) {
1176                 dev_err(enic, "vNIC dev init failed, aborting\n");
1177                 goto err_out_dev_close;
1178         }
1179
1180         err = enic_dev_init(enic);
1181         if (err) {
1182                 dev_err(enic, "Device initialization failed, aborting\n");
1183                 goto err_out_dev_close;
1184         }
1185
1186         return 0;
1187
1188 err_out_dev_close:
1189         vnic_dev_close(enic->vdev);
1190 err_out_unregister:
1191         vnic_dev_unregister(enic->vdev);
1192 err_out:
1193         return err;
1194 }
1195
1196 void enic_remove(struct enic *enic)
1197 {
1198         enic_dev_deinit(enic);
1199         vnic_dev_close(enic->vdev);
1200         vnic_dev_unregister(enic->vdev);
1201 }