]> git.droids-corp.org - dpdk.git/commitdiff
net/qede/base: use default MTU from shared memory
authorRasesh Mody <rasesh.mody@cavium.com>
Wed, 29 Mar 2017 20:36:12 +0000 (13:36 -0700)
committerFerruh Yigit <ferruh.yigit@intel.com>
Tue, 4 Apr 2017 17:02:50 +0000 (19:02 +0200)
Read and use the default MTU value from shared-memory.

Signed-off-by: Rasesh Mody <rasesh.mody@cavium.com>
drivers/net/qede/base/ecore.h
drivers/net/qede/base/ecore_dev.c
drivers/net/qede/base/ecore_mcp.c
drivers/net/qede/base/ecore_mcp_api.h
drivers/net/qede/qede_if.h
drivers/net/qede/qede_main.c

index a6cf52e4b1d797a058754cdae9abfe7f4660e442..25c96f83ef7cc7dd87aa9288e9f9802308c2d9dc 100644 (file)
@@ -377,6 +377,8 @@ struct ecore_hw_info {
 
        /* Default DCBX mode */
        u8 dcbx_mode;
+
+       u16 mtu;
 };
 
 struct ecore_hw_cid_data {
index ee5009060f0b6703485198105f36f534d650faa6..87c1c23f9a2dc91a09225b7b8c5cca4e967c77f9 100644 (file)
@@ -2879,6 +2879,9 @@ ecore_get_hw_info(struct ecore_hwfn *p_hwfn, struct ecore_ptt *p_ptt,
 
        ecore_get_num_funcs(p_hwfn, p_ptt);
 
+       if (ecore_mcp_is_init(p_hwfn))
+               p_hwfn->hw_info.mtu = p_hwfn->mcp_info->func_info.mtu;
+
        /* In case of forcing the driver's default resource allocation, calling
         * ecore_hw_get_resc() should come after initializing the personality
         * and after getting the number of functions, since the calculation of
index df6ebd2a81e58a96dabd8e88b73d1830245a36cc..8720ae7f8cbcdcf420f764984707421236e7b192 100644 (file)
@@ -1431,6 +1431,16 @@ enum _ecore_status_t ecore_mcp_fill_shmem_func_info(struct ecore_hwfn *p_hwfn,
 
        info->ovlan = (u16)(shmem_info.ovlan_stag & FUNC_MF_CFG_OV_STAG_MASK);
 
+       info->mtu = (u16)shmem_info.mtu_size;
+
+       if (info->mtu == 0)
+               info->mtu = 1500;
+
+       info->mtu = (u16)shmem_info.mtu_size;
+
+       if (info->mtu == 0)
+               info->mtu = 1500;
+
        DP_VERBOSE(p_hwfn, (ECORE_MSG_SP | ECORE_MSG_IFUP),
                   "Read configuration from shmem: pause_on_host %02x"
                    " protocol %02x BW [%02x - %02x]"
index 72a58e45e86de6668fa5ae44b8e2485acaecc967..1be22dd2c0878e0874261bc3621cdbc51f0c5918 100644 (file)
@@ -84,6 +84,8 @@ struct ecore_mcp_function_info {
 
 #define ECORE_MCP_VLAN_UNSET           (0xffff)
        u16 ovlan;
+
+       u16 mtu;
 };
 
 struct ecore_mcp_nvm_common {
index 4b23bb95dd501f2150641298d5b96817ba7a5802..18404fbdc9b6e84bf3e8539020b8590d683ee4cb 100644 (file)
@@ -34,6 +34,7 @@ struct qed_dev_info {
        uint32_t flash_size;
        uint8_t mf_mode;
        bool tx_switching;
+       u16 mtu;
        /* To be added... */
 };
 
index 332b1f8d02a81e8564ecbade36bfc4ab238536fc..e76346ecbedc3133e09f6882f1e1e01b4ab382d5 100644 (file)
@@ -365,6 +365,8 @@ qed_fill_dev_info(struct ecore_dev *edev, struct qed_dev_info *dev_info)
                                      &dev_info->mfw_rev, NULL);
        }
 
+       dev_info->mtu = ECORE_LEADING_HWFN(edev)->hw_info.mtu;
+
        return 0;
 }