net/dpaa: add check for parsing default Rx queue
[dpdk.git] / drivers / bus / dpaa / include / fman.h
index 9890e09..3a6dd55 100644 (file)
@@ -1,41 +1,9 @@
-/*-
- * This file is provided under a dual BSD/GPLv2 license. When using or
- * redistributing this file, you may do so under either license.
- *
- *   BSD LICENSE
+/* SPDX-License-Identifier: (BSD-3-Clause OR GPL-2.0)
  *
  * Copyright 2010-2012 Freescale Semiconductor, Inc.
  * All rights reserved.
+ * Copyright 2019-2021 NXP
  *
- * 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 the above-listed copyright holders nor the
- * names of any contributors may be used to endorse or promote products
- * derived from this software without specific prior written permission.
- *
- *   GPL LICENSE SUMMARY
- *
- * ALTERNATIVELY, this software may be distributed under the terms of the
- * GNU General Public License ("GPL") as published by the Free Software
- * Foundation, either version 2 of that License or (at your option) any
- * later version.
- *
- * 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 HOLDERS 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.
  */
 
 #ifndef __FMAN_H
 #include <stdbool.h>
 #include <net/if.h>
 
-#include <rte_ethdev.h>
+#include <ethdev_driver.h>
 #include <rte_ether.h>
 
 #include <compat.h>
+#include <dpaa_list.h>
 
 #ifndef FMAN_DEVICE_PATH
 #define FMAN_DEVICE_PATH "/dev/mem"
@@ -104,6 +73,7 @@ enum fman_mac_type {
        fman_offline = 0,
        fman_mac_1g,
        fman_mac_10g,
+       fman_mac_2_5g,
 };
 
 struct mac_addr {
@@ -256,6 +226,8 @@ struct memac_regs {
        uint32_t thm;                   /**< 0x37C tx messages counter */
 };
 
+#define BMI_PORT_CFG_FDOVR 0x02000000
+
 struct rx_bmi_regs {
        uint32_t fmbm_rcfg;             /**< Rx Configuration */
        uint32_t fmbm_rst;              /**< Rx Status */
@@ -347,13 +319,21 @@ struct fman_if {
        /* The index of this MAC (within the Fman it belongs to) */
        uint8_t mac_idx;
        /* The MAC address */
-       struct ether_addr mac_addr;
+       struct rte_ether_addr mac_addr;
        /* The Qman channel to schedule Tx FQs to */
        u16 tx_channel_id;
+
+       uint8_t base_profile_id;
+       uint8_t num_profiles;
+
+       uint8_t is_shared_mac;
        /* The hard-coded FQIDs for this interface. Note: this doesn't cover
         * the PCD nor the "Rx default" FQIDs, which are configured via FMC
-        * and its XML-based configuration.
+        * and its XML-based configuration. These values are being parsed from
+        * kernel device tree.
         */
+       uint32_t fqid_rx_pcd;
+       uint32_t fqid_rx_pcd_count;
        uint32_t fqid_rx_def;
        uint32_t fqid_rx_err;
        uint32_t fqid_tx_err;
@@ -392,6 +372,7 @@ struct fman_if_ic_params {
  */
 struct __fman_if {
        struct fman_if __if;
+       char node_name[IF_NAME_MAX_LEN];
        char node_path[PATH_MAX];
        uint64_t regs_size;
        void *ccsr_map;