net/bnxt: fix logical AND in if condition
[dpdk.git] / drivers / net / liquidio / lio_ethdev.h
index 7b5343a..74cd2fb 100644 (file)
@@ -1,34 +1,5 @@
-/*
- *   BSD LICENSE
- *
- *   Copyright(c) 2017 Cavium, Inc.. All rights reserved.
- *   All rights reserved.
- *
- *   Redistribution and use in source and binary forms, with or without
- *   modification, are permitted provided that the following conditions
- *   are met:
- *
- *     * Redistributions of source code must retain the above copyright
- *       notice, this list of conditions and the following disclaimer.
- *     * Redistributions in binary form must reproduce the above copyright
- *       notice, this list of conditions and the following disclaimer in
- *       the documentation and/or other materials provided with the
- *       distribution.
- *     * Neither the name of Cavium, Inc. nor the names of its
- *       contributors may be used to endorse or promote products derived
- *       from this software without specific prior written permission.
- *
- *   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- *   "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- *   LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
- *   A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
- *   OWNER(S) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- *   SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
- *   LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
- *   DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
- *   THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- *   (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- *   OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+/* SPDX-License-Identifier: BSD-3-Clause
+ * Copyright(c) 2017 Cavium, Inc
  */
 
 #ifndef _LIO_ETHDEV_H_
@@ -52,7 +23,8 @@ struct lio_dev_ctrl_cmd {
 
 enum lio_bus_speed {
        LIO_LINK_SPEED_UNKNOWN  = 0,
-       LIO_LINK_SPEED_10000    = 10000
+       LIO_LINK_SPEED_10000    = 10000,
+       LIO_LINK_SPEED_25000    = 25000
 };
 
 struct octeon_if_cfg_info {
@@ -62,6 +34,83 @@ struct octeon_if_cfg_info {
        char lio_firmware_version[LIO_FW_VERSION_LENGTH];
 };
 
+/** Stats for each NIC port in RX direction. */
+struct octeon_rx_stats {
+       /* link-level stats */
+       uint64_t total_rcvd;
+       uint64_t bytes_rcvd;
+       uint64_t total_bcst;
+       uint64_t total_mcst;
+       uint64_t runts;
+       uint64_t ctl_rcvd;
+       uint64_t fifo_err; /* Accounts for over/under-run of buffers */
+       uint64_t dmac_drop;
+       uint64_t fcs_err;
+       uint64_t jabber_err;
+       uint64_t l2_err;
+       uint64_t frame_err;
+
+       /* firmware stats */
+       uint64_t fw_total_rcvd;
+       uint64_t fw_total_fwd;
+       uint64_t fw_total_fwd_bytes;
+       uint64_t fw_err_pko;
+       uint64_t fw_err_link;
+       uint64_t fw_err_drop;
+       uint64_t fw_rx_vxlan;
+       uint64_t fw_rx_vxlan_err;
+
+       /* LRO */
+       uint64_t fw_lro_pkts;   /* Number of packets that are LROed */
+       uint64_t fw_lro_octs;   /* Number of octets that are LROed */
+       uint64_t fw_total_lro;  /* Number of LRO packets formed */
+       uint64_t fw_lro_aborts; /* Number of times lRO of packet aborted */
+       uint64_t fw_lro_aborts_port;
+       uint64_t fw_lro_aborts_seq;
+       uint64_t fw_lro_aborts_tsval;
+       uint64_t fw_lro_aborts_timer;
+       /* intrmod: packet forward rate */
+       uint64_t fwd_rate;
+};
+
+/** Stats for each NIC port in RX direction. */
+struct octeon_tx_stats {
+       /* link-level stats */
+       uint64_t total_pkts_sent;
+       uint64_t total_bytes_sent;
+       uint64_t mcast_pkts_sent;
+       uint64_t bcast_pkts_sent;
+       uint64_t ctl_sent;
+       uint64_t one_collision_sent;    /* Packets sent after one collision */
+       /* Packets sent after multiple collision */
+       uint64_t multi_collision_sent;
+       /* Packets not sent due to max collisions */
+       uint64_t max_collision_fail;
+       /* Packets not sent due to max deferrals */
+       uint64_t max_deferral_fail;
+       /* Accounts for over/under-run of buffers */
+       uint64_t fifo_err;
+       uint64_t runts;
+       uint64_t total_collisions; /* Total number of collisions detected */
+
+       /* firmware stats */
+       uint64_t fw_total_sent;
+       uint64_t fw_total_fwd;
+       uint64_t fw_total_fwd_bytes;
+       uint64_t fw_err_pko;
+       uint64_t fw_err_link;
+       uint64_t fw_err_drop;
+       uint64_t fw_err_tso;
+       uint64_t fw_tso;     /* number of tso requests */
+       uint64_t fw_tso_fwd; /* number of packets segmented in tso */
+       uint64_t fw_tx_vxlan;
+};
+
+struct octeon_link_stats {
+       struct octeon_rx_stats fromwire;
+       struct octeon_tx_stats fromhost;
+};
+
 union lio_if_cfg {
        uint64_t if_cfg64;
        struct {
@@ -87,9 +136,41 @@ struct lio_if_cfg_resp {
        uint64_t status;
 };
 
+struct lio_link_stats_resp {
+       uint64_t rh;
+       struct octeon_link_stats link_stats;
+       uint64_t status;
+};
+
 struct lio_link_status_resp {
        uint64_t rh;
        struct octeon_link_info link_info;
        uint64_t status;
 };
+
+struct lio_rss_set {
+       struct param {
+#if RTE_BYTE_ORDER == RTE_LITTLE_ENDIAN
+               uint64_t flags : 16;
+               uint64_t hashinfo : 32;
+               uint64_t itablesize : 16;
+               uint64_t hashkeysize : 16;
+               uint64_t reserved : 48;
+#elif RTE_BYTE_ORDER == RTE_BIG_ENDIAN
+               uint64_t itablesize : 16;
+               uint64_t hashinfo : 32;
+               uint64_t flags : 16;
+               uint64_t reserved : 48;
+               uint64_t hashkeysize : 16;
+#endif
+       } param;
+
+       uint8_t itable[LIO_RSS_MAX_TABLE_SZ];
+       uint8_t key[LIO_RSS_MAX_KEY_SZ];
+};
+
+void lio_dev_rx_queue_release(void *rxq);
+
+void lio_dev_tx_queue_release(void *txq);
+
 #endif /* _LIO_ETHDEV_H_ */