2 * Copyright 2008-2014 Cisco Systems, Inc. All rights reserved.
3 * Copyright 2007 Nuova Systems, Inc. All rights reserved.
5 * Copyright (c) 2014, Cisco Systems, Inc.
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
12 * 1. Redistributions of source code must retain the above copyright
13 * notice, this list of conditions and the following disclaimer.
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
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.
43 #include <rte_memzone.h>
44 #include <rte_malloc.h>
46 #include <rte_string_fns.h>
47 #include <rte_ethdev.h>
49 #include "enic_compat.h"
51 #include "wq_enet_desc.h"
52 #include "rq_enet_desc.h"
53 #include "cq_enet_desc.h"
54 #include "vnic_enet.h"
59 #include "vnic_intr.h"
61 #include "enic_vnic_wq.h"
63 static inline struct rte_mbuf *
64 rte_rxmbuf_alloc(struct rte_mempool *mp)
68 m = __rte_mbuf_raw_alloc(mp);
69 __rte_mbuf_sanity_check_raw(m, 0);
74 static inline int enic_is_sriov_vf(struct enic *enic)
76 return enic->pdev->id.device_id == PCI_DEVICE_ID_CISCO_VIC_ENET_VF;
79 static int is_zero_addr(uint8_t *addr)
81 return !(addr[0] | addr[1] | addr[2] | addr[3] | addr[4] | addr[5]);
84 static int is_mcast_addr(uint8_t *addr)
89 static int is_eth_addr_valid(uint8_t *addr)
91 return !is_mcast_addr(addr) && !is_zero_addr(addr);
95 enic_rxmbuf_queue_release(struct enic *enic, struct vnic_rq *rq)
99 if (!rq || !rq->mbuf_ring) {
100 dev_debug(enic, "Pointer to rq or mbuf_ring is NULL");
104 for (i = 0; i < enic->config.rq_desc_count; i++) {
105 if (rq->mbuf_ring[i]) {
106 rte_pktmbuf_free_seg(rq->mbuf_ring[i]);
107 rq->mbuf_ring[i] = NULL;
113 void enic_set_hdr_split_size(struct enic *enic, u16 split_hdr_size)
115 vnic_set_hdr_split_size(enic->vdev, split_hdr_size);
118 static void enic_free_wq_buf(__rte_unused struct vnic_wq *wq, struct vnic_wq_buf *buf)
120 struct rte_mbuf *mbuf = (struct rte_mbuf *)buf->os_buf;
122 rte_mempool_put(mbuf->pool, mbuf);
126 static void enic_wq_free_buf(struct vnic_wq *wq,
127 __rte_unused struct cq_desc *cq_desc,
128 struct vnic_wq_buf *buf,
129 __rte_unused void *opaque)
131 enic_free_wq_buf(wq, buf);
134 static int enic_wq_service(struct vnic_dev *vdev, struct cq_desc *cq_desc,
135 __rte_unused u8 type, u16 q_number, u16 completed_index, void *opaque)
137 struct enic *enic = vnic_dev_priv(vdev);
139 vnic_wq_service(&enic->wq[q_number], cq_desc,
140 completed_index, enic_wq_free_buf,
146 static void enic_log_q_error(struct enic *enic)
151 for (i = 0; i < enic->wq_count; i++) {
152 error_status = vnic_wq_error_status(&enic->wq[i]);
154 dev_err(enic, "WQ[%d] error_status %d\n", i,
158 for (i = 0; i < enic->rq_count; i++) {
159 error_status = vnic_rq_error_status(&enic->rq[i]);
161 dev_err(enic, "RQ[%d] error_status %d\n", i,
166 unsigned int enic_cleanup_wq(struct enic *enic, struct vnic_wq *wq)
168 unsigned int cq = enic_cq_wq(enic, wq->index);
170 /* Return the work done */
171 return vnic_cq_service(&enic->cq[cq],
172 -1 /*wq_work_to_do*/, enic_wq_service, NULL);
175 void enic_post_wq_index(struct vnic_wq *wq)
177 enic_vnic_post_wq_index(wq);
180 void enic_send_pkt(struct enic *enic, struct vnic_wq *wq,
181 struct rte_mbuf *tx_pkt, unsigned short len,
182 uint8_t sop, uint8_t eop, uint8_t cq_entry,
183 uint16_t ol_flags, uint16_t vlan_tag)
185 struct wq_enet_desc *desc = vnic_wq_next_desc(wq);
187 uint8_t vlan_tag_insert = 0;
188 uint64_t bus_addr = (dma_addr_t)
189 (tx_pkt->buf_physaddr + tx_pkt->data_off);
192 if (ol_flags & PKT_TX_VLAN_PKT)
195 if (enic->hw_ip_checksum) {
196 if (ol_flags & PKT_TX_IP_CKSUM)
197 mss |= ENIC_CALC_IP_CKSUM;
199 if (ol_flags & PKT_TX_TCP_UDP_CKSUM)
200 mss |= ENIC_CALC_TCP_UDP_CKSUM;
204 wq_enet_desc_enc(desc,
208 0 /* header_length */,
209 0 /* offload_mode WQ_ENET_OFFLOAD_MODE_CSUM */,
217 enic_vnic_post_wq(wq, (void *)tx_pkt, bus_addr, len,
221 0 /*compressed send*/,
225 void enic_dev_stats_clear(struct enic *enic)
227 if (vnic_dev_stats_clear(enic->vdev))
228 dev_err(enic, "Error in clearing stats\n");
231 void enic_dev_stats_get(struct enic *enic, struct rte_eth_stats *r_stats)
233 struct vnic_stats *stats;
235 if (vnic_dev_stats_dump(enic->vdev, &stats)) {
236 dev_err(enic, "Error in getting stats\n");
240 r_stats->ipackets = stats->rx.rx_frames_ok;
241 r_stats->opackets = stats->tx.tx_frames_ok;
243 r_stats->ibytes = stats->rx.rx_bytes_ok;
244 r_stats->obytes = stats->tx.tx_bytes_ok;
246 r_stats->ierrors = stats->rx.rx_errors;
247 r_stats->oerrors = stats->tx.tx_errors;
249 r_stats->imcasts = stats->rx.rx_multicast_frames_ok;
250 r_stats->rx_nombuf = stats->rx.rx_no_bufs;
253 void enic_del_mac_address(struct enic *enic)
255 if (vnic_dev_del_addr(enic->vdev, enic->mac_addr))
256 dev_err(enic, "del mac addr failed\n");
259 void enic_set_mac_address(struct enic *enic, uint8_t *mac_addr)
263 if (!is_eth_addr_valid(mac_addr)) {
264 dev_err(enic, "invalid mac address\n");
268 err = vnic_dev_del_addr(enic->vdev, mac_addr);
270 dev_err(enic, "del mac addr failed\n");
274 ether_addr_copy((struct ether_addr *)mac_addr,
275 (struct ether_addr *)enic->mac_addr);
277 err = vnic_dev_add_addr(enic->vdev, mac_addr);
279 dev_err(enic, "add mac addr failed\n");
285 enic_free_rq_buf(struct rte_mbuf **mbuf)
290 rte_pktmbuf_free(*mbuf);
294 void enic_init_vnic_resources(struct enic *enic)
296 unsigned int error_interrupt_enable = 1;
297 unsigned int error_interrupt_offset = 0;
298 unsigned int index = 0;
300 for (index = 0; index < enic->rq_count; index++) {
301 vnic_rq_init(&enic->rq[index],
302 enic_cq_rq(enic, index),
303 error_interrupt_enable,
304 error_interrupt_offset);
307 for (index = 0; index < enic->wq_count; index++) {
308 vnic_wq_init(&enic->wq[index],
309 enic_cq_wq(enic, index),
310 error_interrupt_enable,
311 error_interrupt_offset);
314 vnic_dev_stats_clear(enic->vdev);
316 for (index = 0; index < enic->cq_count; index++) {
317 vnic_cq_init(&enic->cq[index],
318 0 /* flow_control_enable */,
319 1 /* color_enable */,
322 1 /* cq_tail_color */,
323 0 /* interrupt_enable */,
324 1 /* cq_entry_enable */,
325 0 /* cq_message_enable */,
326 0 /* interrupt offset */,
327 0 /* cq_message_addr */);
330 vnic_intr_init(&enic->intr,
331 enic->config.intr_timer_usec,
332 enic->config.intr_timer_type,
333 /*mask_on_assertion*/1);
338 enic_alloc_rx_queue_mbufs(struct enic *enic, struct vnic_rq *rq)
341 struct rq_enet_desc *rqd = rq->ring.descs;
345 dev_debug(enic, "queue %u, allocating %u rx queue mbufs", rq->index,
346 rq->ring.desc_count);
348 for (i = 0; i < rq->ring.desc_count; i++, rqd++) {
349 mb = rte_rxmbuf_alloc(rq->mp);
351 dev_err(enic, "RX mbuf alloc failed queue_id=%u",
352 (unsigned)rq->index);
356 dma_addr = (dma_addr_t)(mb->buf_physaddr + mb->data_off);
358 rq_enet_desc_enc(rqd, dma_addr, RQ_ENET_TYPE_ONLY_SOP,
360 rq->mbuf_ring[i] = mb;
363 /* make sure all prior writes are complete before doing the PIO write */
366 /* Post all but the last 2 cache lines' worth of descriptors */
367 rq->posted_index = rq->ring.desc_count - (2 * RTE_CACHE_LINE_SIZE
368 / sizeof(struct rq_enet_desc));
371 dev_debug(enic, "port=%u, qidx=%u, Write %u posted idx, %u sw held\n",
372 enic->port_id, rq->index, rq->posted_index, rq->rx_nb_hold);
373 iowrite32(rq->posted_index, &rq->ctrl->posted_index);
381 enic_alloc_consistent(__rte_unused void *priv, size_t size,
382 dma_addr_t *dma_handle, u8 *name)
385 const struct rte_memzone *rz;
388 rz = rte_memzone_reserve_aligned((const char *)name,
389 size, SOCKET_ID_ANY, 0, ENIC_ALIGN);
391 pr_err("%s : Failed to allocate memory requested for %s",
397 *dma_handle = (dma_addr_t)rz->phys_addr;
403 enic_free_consistent(__rte_unused struct rte_pci_device *hwdev,
404 __rte_unused size_t size,
405 __rte_unused void *vaddr,
406 __rte_unused dma_addr_t dma_handle)
408 /* Nothing to be done */
412 enic_intr_handler(__rte_unused struct rte_intr_handle *handle,
415 struct enic *enic = pmd_priv((struct rte_eth_dev *)arg);
417 vnic_intr_return_all_credits(&enic->intr);
419 enic_log_q_error(enic);
422 int enic_enable(struct enic *enic)
426 struct rte_eth_dev *eth_dev = enic->rte_dev;
428 eth_dev->data->dev_link.link_speed = vnic_dev_port_speed(enic->vdev);
429 eth_dev->data->dev_link.link_duplex = ETH_LINK_FULL_DUPLEX;
430 vnic_dev_notify_set(enic->vdev, -1); /* No Intr for notify */
432 if (enic_clsf_init(enic))
433 dev_warning(enic, "Init of hash table for clsf failed."\
434 "Flow director feature will not work\n");
436 for (index = 0; index < enic->rq_count; index++) {
437 err = enic_alloc_rx_queue_mbufs(enic, &enic->rq[index]);
439 dev_err(enic, "Failed to alloc RX queue mbufs\n");
444 for (index = 0; index < enic->wq_count; index++)
445 vnic_wq_enable(&enic->wq[index]);
446 for (index = 0; index < enic->rq_count; index++)
447 vnic_rq_enable(&enic->rq[index]);
449 vnic_dev_enable_wait(enic->vdev);
451 /* Register and enable error interrupt */
452 rte_intr_callback_register(&(enic->pdev->intr_handle),
453 enic_intr_handler, (void *)enic->rte_dev);
455 rte_intr_enable(&(enic->pdev->intr_handle));
456 vnic_intr_unmask(&enic->intr);
461 int enic_alloc_intr_resources(struct enic *enic)
465 dev_info(enic, "vNIC resources used: "\
466 "wq %d rq %d cq %d intr %d\n",
467 enic->wq_count, enic->rq_count,
468 enic->cq_count, enic->intr_count);
470 err = vnic_intr_alloc(enic->vdev, &enic->intr, 0);
472 enic_free_vnic_resources(enic);
477 void enic_free_rq(void *rxq)
479 struct vnic_rq *rq = (struct vnic_rq *)rxq;
480 struct enic *enic = vnic_dev_priv(rq->vdev);
482 enic_rxmbuf_queue_release(enic, rq);
483 rte_free(rq->mbuf_ring);
484 rq->mbuf_ring = NULL;
486 vnic_cq_free(&enic->cq[rq->index]);
489 void enic_start_wq(struct enic *enic, uint16_t queue_idx)
491 vnic_wq_enable(&enic->wq[queue_idx]);
494 int enic_stop_wq(struct enic *enic, uint16_t queue_idx)
496 return vnic_wq_disable(&enic->wq[queue_idx]);
499 void enic_start_rq(struct enic *enic, uint16_t queue_idx)
501 vnic_rq_enable(&enic->rq[queue_idx]);
504 int enic_stop_rq(struct enic *enic, uint16_t queue_idx)
506 return vnic_rq_disable(&enic->rq[queue_idx]);
509 int enic_alloc_rq(struct enic *enic, uint16_t queue_idx,
510 unsigned int socket_id, struct rte_mempool *mp,
514 struct vnic_rq *rq = &enic->rq[queue_idx];
516 rq->socket_id = socket_id;
520 if (nb_desc > enic->config.rq_desc_count) {
522 "RQ %d - number of rx desc in cmd line (%d)"\
523 "is greater than that in the UCSM/CIMC adapter"\
524 "policy. Applying the value in the adapter "\
526 queue_idx, nb_desc, enic->config.rq_desc_count);
527 } else if (nb_desc != enic->config.rq_desc_count) {
528 enic->config.rq_desc_count = nb_desc;
530 "RX Queues - effective number of descs:%d\n",
535 /* Allocate queue resources */
536 rc = vnic_rq_alloc(enic->vdev, rq, queue_idx,
537 enic->config.rq_desc_count, sizeof(struct rq_enet_desc));
539 dev_err(enic, "error in allocation of rq\n");
543 rc = vnic_cq_alloc(enic->vdev, &enic->cq[queue_idx], queue_idx,
544 socket_id, enic->config.rq_desc_count,
545 sizeof(struct cq_enet_rq_desc));
547 dev_err(enic, "error in allocation of cq for rq\n");
548 goto err_free_rq_exit;
551 /* Allocate the mbuf ring */
552 rq->mbuf_ring = (struct rte_mbuf **)rte_zmalloc_socket("rq->mbuf_ring",
553 sizeof(struct rte_mbuf *) * enic->config.rq_desc_count,
554 RTE_CACHE_LINE_SIZE, rq->socket_id);
556 if (rq->mbuf_ring != NULL)
559 /* cleanup on error */
560 vnic_cq_free(&enic->cq[queue_idx]);
567 void enic_free_wq(void *txq)
569 struct vnic_wq *wq = (struct vnic_wq *)txq;
570 struct enic *enic = vnic_dev_priv(wq->vdev);
573 vnic_cq_free(&enic->cq[enic->rq_count + wq->index]);
576 int enic_alloc_wq(struct enic *enic, uint16_t queue_idx,
577 unsigned int socket_id, uint16_t nb_desc)
580 struct vnic_wq *wq = &enic->wq[queue_idx];
581 unsigned int cq_index = enic_cq_wq(enic, queue_idx);
583 wq->socket_id = socket_id;
585 if (nb_desc > enic->config.wq_desc_count) {
587 "WQ %d - number of tx desc in cmd line (%d)"\
588 "is greater than that in the UCSM/CIMC adapter"\
589 "policy. Applying the value in the adapter "\
591 queue_idx, nb_desc, enic->config.wq_desc_count);
592 } else if (nb_desc != enic->config.wq_desc_count) {
593 enic->config.wq_desc_count = nb_desc;
595 "TX Queues - effective number of descs:%d\n",
600 /* Allocate queue resources */
601 err = vnic_wq_alloc(enic->vdev, &enic->wq[queue_idx], queue_idx,
602 enic->config.wq_desc_count,
603 sizeof(struct wq_enet_desc));
605 dev_err(enic, "error in allocation of wq\n");
609 err = vnic_cq_alloc(enic->vdev, &enic->cq[cq_index], cq_index,
610 socket_id, enic->config.wq_desc_count,
611 sizeof(struct cq_enet_wq_desc));
614 dev_err(enic, "error in allocation of cq for wq\n");
620 int enic_disable(struct enic *enic)
625 vnic_intr_mask(&enic->intr);
626 (void)vnic_intr_masked(&enic->intr); /* flush write */
628 vnic_dev_disable(enic->vdev);
630 enic_clsf_destroy(enic);
632 if (!enic_is_sriov_vf(enic))
633 vnic_dev_del_addr(enic->vdev, enic->mac_addr);
635 for (i = 0; i < enic->wq_count; i++) {
636 err = vnic_wq_disable(&enic->wq[i]);
640 for (i = 0; i < enic->rq_count; i++) {
641 err = vnic_rq_disable(&enic->rq[i]);
646 vnic_dev_set_reset_flag(enic->vdev, 1);
647 vnic_dev_notify_unset(enic->vdev);
649 for (i = 0; i < enic->wq_count; i++)
650 vnic_wq_clean(&enic->wq[i], enic_free_wq_buf);
652 for (i = 0; i < enic->rq_count; i++)
653 vnic_rq_clean(&enic->rq[i], enic_free_rq_buf);
654 for (i = 0; i < enic->cq_count; i++)
655 vnic_cq_clean(&enic->cq[i]);
656 vnic_intr_clean(&enic->intr);
661 static int enic_dev_wait(struct vnic_dev *vdev,
662 int (*start)(struct vnic_dev *, int),
663 int (*finished)(struct vnic_dev *, int *),
670 err = start(vdev, arg);
674 /* Wait for func to complete...2 seconds max */
675 for (i = 0; i < 2000; i++) {
676 err = finished(vdev, &done);
686 static int enic_dev_open(struct enic *enic)
690 err = enic_dev_wait(enic->vdev, vnic_dev_open,
691 vnic_dev_open_done, 0);
693 dev_err(enic_get_dev(enic),
694 "vNIC device open failed, err %d\n", err);
699 static int enic_set_rsskey(struct enic *enic)
701 dma_addr_t rss_key_buf_pa;
702 union vnic_rss_key *rss_key_buf_va = NULL;
703 static union vnic_rss_key rss_key = {
705 [0] = {.b = {85, 67, 83, 97, 119, 101, 115, 111, 109, 101}},
706 [1] = {.b = {80, 65, 76, 79, 117, 110, 105, 113, 117, 101}},
707 [2] = {.b = {76, 73, 78, 85, 88, 114, 111, 99, 107, 115}},
708 [3] = {.b = {69, 78, 73, 67, 105, 115, 99, 111, 111, 108}},
714 snprintf((char *)name, NAME_MAX, "rss_key-%s", enic->bdf_name);
715 rss_key_buf_va = enic_alloc_consistent(enic, sizeof(union vnic_rss_key),
716 &rss_key_buf_pa, name);
720 rte_memcpy(rss_key_buf_va, &rss_key, sizeof(union vnic_rss_key));
722 err = enic_set_rss_key(enic,
724 sizeof(union vnic_rss_key));
726 enic_free_consistent(enic->pdev, sizeof(union vnic_rss_key),
727 rss_key_buf_va, rss_key_buf_pa);
732 static int enic_set_rsscpu(struct enic *enic, u8 rss_hash_bits)
734 dma_addr_t rss_cpu_buf_pa;
735 union vnic_rss_cpu *rss_cpu_buf_va = NULL;
740 snprintf((char *)name, NAME_MAX, "rss_cpu-%s", enic->bdf_name);
741 rss_cpu_buf_va = enic_alloc_consistent(enic, sizeof(union vnic_rss_cpu),
742 &rss_cpu_buf_pa, name);
746 for (i = 0; i < (1 << rss_hash_bits); i++)
747 (*rss_cpu_buf_va).cpu[i/4].b[i%4] = i % enic->rq_count;
749 err = enic_set_rss_cpu(enic,
751 sizeof(union vnic_rss_cpu));
753 enic_free_consistent(enic->pdev, sizeof(union vnic_rss_cpu),
754 rss_cpu_buf_va, rss_cpu_buf_pa);
759 static int enic_set_niccfg(struct enic *enic, u8 rss_default_cpu,
760 u8 rss_hash_type, u8 rss_hash_bits, u8 rss_base_cpu, u8 rss_enable)
762 const u8 tso_ipid_split_en = 0;
765 /* Enable VLAN tag stripping */
767 err = enic_set_nic_cfg(enic,
768 rss_default_cpu, rss_hash_type,
769 rss_hash_bits, rss_base_cpu,
770 rss_enable, tso_ipid_split_en,
771 enic->ig_vlan_strip_en);
776 int enic_set_rss_nic_cfg(struct enic *enic)
778 const u8 rss_default_cpu = 0;
779 const u8 rss_hash_type = NIC_CFG_RSS_HASH_TYPE_IPV4 |
780 NIC_CFG_RSS_HASH_TYPE_TCP_IPV4 |
781 NIC_CFG_RSS_HASH_TYPE_IPV6 |
782 NIC_CFG_RSS_HASH_TYPE_TCP_IPV6;
783 const u8 rss_hash_bits = 7;
784 const u8 rss_base_cpu = 0;
785 u8 rss_enable = ENIC_SETTING(enic, RSS) && (enic->rq_count > 1);
788 if (!enic_set_rsskey(enic)) {
789 if (enic_set_rsscpu(enic, rss_hash_bits)) {
791 dev_warning(enic, "RSS disabled, "\
792 "Failed to set RSS cpu indirection table.");
797 "RSS disabled, Failed to set RSS key.\n");
801 return enic_set_niccfg(enic, rss_default_cpu, rss_hash_type,
802 rss_hash_bits, rss_base_cpu, rss_enable);
805 int enic_setup_finish(struct enic *enic)
809 ret = enic_set_rss_nic_cfg(enic);
811 dev_err(enic, "Failed to config nic, aborting.\n");
815 vnic_dev_add_addr(enic->vdev, enic->mac_addr);
818 vnic_dev_packet_filter(enic->vdev,
831 void enic_add_packet_filter(struct enic *enic)
833 /* Args -> directed, multicast, broadcast, promisc, allmulti */
834 vnic_dev_packet_filter(enic->vdev, 1, 1, 1,
835 enic->promisc, enic->allmulti);
838 int enic_get_link_status(struct enic *enic)
840 return vnic_dev_link_status(enic->vdev);
843 static void enic_dev_deinit(struct enic *enic)
845 struct rte_eth_dev *eth_dev = enic->rte_dev;
847 rte_free(eth_dev->data->mac_addrs);
851 int enic_set_vnic_res(struct enic *enic)
853 struct rte_eth_dev *eth_dev = enic->rte_dev;
855 if ((enic->rq_count < eth_dev->data->nb_rx_queues) ||
856 (enic->wq_count < eth_dev->data->nb_tx_queues)) {
857 dev_err(dev, "Not enough resources configured, aborting\n");
861 enic->rq_count = eth_dev->data->nb_rx_queues;
862 enic->wq_count = eth_dev->data->nb_tx_queues;
863 if (enic->cq_count < (enic->rq_count + enic->wq_count)) {
864 dev_err(dev, "Not enough resources configured, aborting\n");
868 enic->cq_count = enic->rq_count + enic->wq_count;
872 static int enic_dev_init(struct enic *enic)
875 struct rte_eth_dev *eth_dev = enic->rte_dev;
877 vnic_dev_intr_coal_timer_info_default(enic->vdev);
879 /* Get vNIC configuration
881 err = enic_get_vnic_config(enic);
883 dev_err(dev, "Get vNIC configuration failed, aborting\n");
887 eth_dev->data->mac_addrs = rte_zmalloc("enic_mac_addr", ETH_ALEN, 0);
888 if (!eth_dev->data->mac_addrs) {
889 dev_err(enic, "mac addr storage alloc failed, aborting.\n");
892 ether_addr_copy((struct ether_addr *) enic->mac_addr,
893 ð_dev->data->mac_addrs[0]);
896 /* Get available resource counts
898 enic_get_res_counts(enic);
900 vnic_dev_set_reset_flag(enic->vdev, 0);
906 int enic_probe(struct enic *enic)
908 struct rte_pci_device *pdev = enic->pdev;
911 dev_debug(enic, " Initializing ENIC PMD version %s\n", DRV_VERSION);
913 enic->bar0.vaddr = (void *)pdev->mem_resource[0].addr;
914 enic->bar0.len = pdev->mem_resource[0].len;
916 /* Register vNIC device */
917 enic->vdev = vnic_dev_register(NULL, enic, enic->pdev, &enic->bar0, 1);
919 dev_err(enic, "vNIC registration failed, aborting\n");
923 vnic_register_cbacks(enic->vdev,
924 enic_alloc_consistent,
925 enic_free_consistent);
927 /* Issue device open to get device in known state */
928 err = enic_dev_open(enic);
930 dev_err(enic, "vNIC dev open failed, aborting\n");
931 goto err_out_unregister;
934 /* Set ingress vlan rewrite mode before vnic initialization */
935 err = vnic_dev_set_ig_vlan_rewrite_mode(enic->vdev,
936 IG_VLAN_REWRITE_MODE_PASS_THRU);
939 "Failed to set ingress vlan rewrite mode, aborting.\n");
940 goto err_out_dev_close;
943 /* Issue device init to initialize the vnic-to-switch link.
944 * We'll start with carrier off and wait for link UP
945 * notification later to turn on carrier. We don't need
946 * to wait here for the vnic-to-switch link initialization
947 * to complete; link UP notification is the indication that
948 * the process is complete.
951 err = vnic_dev_init(enic->vdev, 0);
953 dev_err(enic, "vNIC dev init failed, aborting\n");
954 goto err_out_dev_close;
957 err = enic_dev_init(enic);
959 dev_err(enic, "Device initialization failed, aborting\n");
960 goto err_out_dev_close;
966 vnic_dev_close(enic->vdev);
968 vnic_dev_unregister(enic->vdev);
973 void enic_remove(struct enic *enic)
975 enic_dev_deinit(enic);
976 vnic_dev_close(enic->vdev);
977 vnic_dev_unregister(enic->vdev);