Merge branch 'bnxt_en-Updates-for-net-next'
Michael Chan says: ==================== bnxt_en: Updates for net-next. This series includes the usual firmware spec update. The driver has added external phy loopback test and phy setup retry logic that is needed during hotplug. In the SRIOV space, the driver has added a new VF resource allocation mode that requires the VF driver to reserve resources during IFUP. IF state changes are now propagated to firmware so that firmware can release some resources during IFDOWN. ethtool method to get firmware core dump and hwmon temperature reading have been added. DSCP to user priority support has been added to the driver's DCBNL interface, and the CoS queue logic has been refined to make sure that the special RDMA Congestion Notification hardware CoS queue will not be used for networking traffic. ==================== Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
commit
c595be94c7
|
@ -230,4 +230,12 @@ config BNXT_DCB
|
|||
|
||||
If unsure, say N.
|
||||
|
||||
config BNXT_HWMON
|
||||
bool "Broadcom NetXtreme-C/E HWMON support"
|
||||
default y
|
||||
depends on BNXT && HWMON && !(BNXT=y && HWMON=m)
|
||||
---help---
|
||||
Say Y if you want to expose the thermal sensor data on NetXtreme-C/E
|
||||
devices, via the hwmon sysfs interface.
|
||||
|
||||
endif # NET_VENDOR_BROADCOM
|
||||
|
|
|
@ -51,6 +51,8 @@
|
|||
#include <linux/cpu_rmap.h>
|
||||
#include <linux/cpumask.h>
|
||||
#include <net/pkt_cls.h>
|
||||
#include <linux/hwmon.h>
|
||||
#include <linux/hwmon-sysfs.h>
|
||||
|
||||
#include "bnxt_hsi.h"
|
||||
#include "bnxt.h"
|
||||
|
@ -1115,7 +1117,7 @@ static void bnxt_tpa_start(struct bnxt *bp, struct bnxt_rx_ring_info *rxr,
|
|||
tpa_info->hash_type = PKT_HASH_TYPE_L4;
|
||||
tpa_info->gso_type = SKB_GSO_TCPV4;
|
||||
/* RSS profiles 1 and 3 with extract code 0 for inner 4-tuple */
|
||||
if (hash_type == 3)
|
||||
if (hash_type == 3 || TPA_START_IS_IPV6(tpa_start1))
|
||||
tpa_info->gso_type = SKB_GSO_TCPV6;
|
||||
tpa_info->rss_hash =
|
||||
le32_to_cpu(tpa_start->rx_tpa_start_cmp_rss_hash);
|
||||
|
@ -3445,7 +3447,7 @@ static int bnxt_hwrm_do_send_msg(struct bnxt *bp, void *msg, u32 msg_len,
|
|||
cp_ring_id = le16_to_cpu(req->cmpl_ring);
|
||||
intr_process = (cp_ring_id == INVALID_HW_RING_ID) ? 0 : 1;
|
||||
|
||||
if (bp->flags & BNXT_FLAG_SHORT_CMD) {
|
||||
if (bp->fw_cap & BNXT_FW_CAP_SHORT_CMD) {
|
||||
void *short_cmd_req = bp->hwrm_short_cmd_req_addr;
|
||||
|
||||
memcpy(short_cmd_req, req, msg_len);
|
||||
|
@ -3638,7 +3640,9 @@ int bnxt_hwrm_func_rgtr_async_events(struct bnxt *bp, unsigned long *bmap,
|
|||
|
||||
static int bnxt_hwrm_func_drv_rgtr(struct bnxt *bp)
|
||||
{
|
||||
struct hwrm_func_drv_rgtr_output *resp = bp->hwrm_cmd_resp_addr;
|
||||
struct hwrm_func_drv_rgtr_input req = {0};
|
||||
int rc;
|
||||
|
||||
bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_FUNC_DRV_RGTR, -1, -1);
|
||||
|
||||
|
@ -3676,7 +3680,15 @@ static int bnxt_hwrm_func_drv_rgtr(struct bnxt *bp)
|
|||
cpu_to_le32(FUNC_DRV_RGTR_REQ_ENABLES_VF_REQ_FWD);
|
||||
}
|
||||
|
||||
return hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT);
|
||||
mutex_lock(&bp->hwrm_cmd_lock);
|
||||
rc = _hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT);
|
||||
if (rc)
|
||||
rc = -EIO;
|
||||
else if (resp->flags &
|
||||
cpu_to_le32(FUNC_DRV_RGTR_RESP_FLAGS_IF_CHANGE_SUPPORTED))
|
||||
bp->fw_cap |= BNXT_FW_CAP_IF_CHANGE;
|
||||
mutex_unlock(&bp->hwrm_cmd_lock);
|
||||
return rc;
|
||||
}
|
||||
|
||||
static int bnxt_hwrm_func_drv_unrgtr(struct bnxt *bp)
|
||||
|
@ -3981,6 +3993,7 @@ static int bnxt_hwrm_vnic_set_rss(struct bnxt *bp, u16 vnic_id, bool set_rss)
|
|||
bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_VNIC_RSS_CFG, -1, -1);
|
||||
if (set_rss) {
|
||||
req.hash_type = cpu_to_le32(bp->rss_hash_cfg);
|
||||
req.hash_mode_flags = VNIC_RSS_CFG_REQ_HASH_MODE_FLAGS_DEFAULT;
|
||||
if (vnic->flags & BNXT_VNIC_RSS_FLAG) {
|
||||
if (BNXT_CHIP_TYPE_NITRO_A0(bp))
|
||||
max_rings = bp->rx_nr_rings - 1;
|
||||
|
@ -4578,7 +4591,7 @@ static int bnxt_hwrm_get_rings(struct bnxt *bp)
|
|||
}
|
||||
|
||||
hw_resc->resv_tx_rings = le16_to_cpu(resp->alloc_tx_rings);
|
||||
if (bp->flags & BNXT_FLAG_NEW_RM) {
|
||||
if (BNXT_NEW_RM(bp)) {
|
||||
u16 cp, stats;
|
||||
|
||||
hw_resc->resv_rx_rings = le16_to_cpu(resp->alloc_rx_rings);
|
||||
|
@ -4624,7 +4637,7 @@ __bnxt_hwrm_reserve_pf_rings(struct bnxt *bp, struct hwrm_func_cfg_input *req,
|
|||
req->fid = cpu_to_le16(0xffff);
|
||||
enables |= tx_rings ? FUNC_CFG_REQ_ENABLES_NUM_TX_RINGS : 0;
|
||||
req->num_tx_rings = cpu_to_le16(tx_rings);
|
||||
if (bp->flags & BNXT_FLAG_NEW_RM) {
|
||||
if (BNXT_NEW_RM(bp)) {
|
||||
enables |= rx_rings ? FUNC_CFG_REQ_ENABLES_NUM_RX_RINGS : 0;
|
||||
enables |= cp_rings ? FUNC_CFG_REQ_ENABLES_NUM_CMPL_RINGS |
|
||||
FUNC_CFG_REQ_ENABLES_NUM_STAT_CTXS : 0;
|
||||
|
@ -4697,7 +4710,7 @@ bnxt_hwrm_reserve_vf_rings(struct bnxt *bp, int tx_rings, int rx_rings,
|
|||
struct hwrm_func_vf_cfg_input req = {0};
|
||||
int rc;
|
||||
|
||||
if (!(bp->flags & BNXT_FLAG_NEW_RM)) {
|
||||
if (!BNXT_NEW_RM(bp)) {
|
||||
bp->hw_resc.resv_tx_rings = tx_rings;
|
||||
return 0;
|
||||
}
|
||||
|
@ -4757,7 +4770,7 @@ static bool bnxt_need_reserve_rings(struct bnxt *bp)
|
|||
vnic = rx + 1;
|
||||
if (bp->flags & BNXT_FLAG_AGG_RINGS)
|
||||
rx <<= 1;
|
||||
if ((bp->flags & BNXT_FLAG_NEW_RM) &&
|
||||
if (BNXT_NEW_RM(bp) &&
|
||||
(hw_resc->resv_rx_rings != rx || hw_resc->resv_cp_rings != cp ||
|
||||
hw_resc->resv_hw_ring_grps != grp || hw_resc->resv_vnics != vnic))
|
||||
return true;
|
||||
|
@ -4793,7 +4806,7 @@ static int __bnxt_reserve_rings(struct bnxt *bp)
|
|||
return rc;
|
||||
|
||||
tx = hw_resc->resv_tx_rings;
|
||||
if (bp->flags & BNXT_FLAG_NEW_RM) {
|
||||
if (BNXT_NEW_RM(bp)) {
|
||||
rx = hw_resc->resv_rx_rings;
|
||||
cp = hw_resc->resv_cp_rings;
|
||||
grp = hw_resc->resv_hw_ring_grps;
|
||||
|
@ -4837,7 +4850,7 @@ static int bnxt_hwrm_check_vf_rings(struct bnxt *bp, int tx_rings, int rx_rings,
|
|||
u32 flags;
|
||||
int rc;
|
||||
|
||||
if (!(bp->flags & BNXT_FLAG_NEW_RM))
|
||||
if (!BNXT_NEW_RM(bp))
|
||||
return 0;
|
||||
|
||||
__bnxt_hwrm_reserve_vf_rings(bp, &req, tx_rings, rx_rings, ring_grps,
|
||||
|
@ -4866,7 +4879,7 @@ static int bnxt_hwrm_check_pf_rings(struct bnxt *bp, int tx_rings, int rx_rings,
|
|||
__bnxt_hwrm_reserve_pf_rings(bp, &req, tx_rings, rx_rings, ring_grps,
|
||||
cp_rings, vnics);
|
||||
flags = FUNC_CFG_REQ_FLAGS_TX_ASSETS_TEST;
|
||||
if (bp->flags & BNXT_FLAG_NEW_RM)
|
||||
if (BNXT_NEW_RM(bp))
|
||||
flags |= FUNC_CFG_REQ_FLAGS_RX_ASSETS_TEST |
|
||||
FUNC_CFG_REQ_FLAGS_CMPL_ASSETS_TEST |
|
||||
FUNC_CFG_REQ_FLAGS_RING_GRP_ASSETS_TEST |
|
||||
|
@ -5088,9 +5101,9 @@ static int bnxt_hwrm_func_qcfg(struct bnxt *bp)
|
|||
flags = le16_to_cpu(resp->flags);
|
||||
if (flags & (FUNC_QCFG_RESP_FLAGS_FW_DCBX_AGENT_ENABLED |
|
||||
FUNC_QCFG_RESP_FLAGS_FW_LLDP_AGENT_ENABLED)) {
|
||||
bp->flags |= BNXT_FLAG_FW_LLDP_AGENT;
|
||||
bp->fw_cap |= BNXT_FW_CAP_LLDP_AGENT;
|
||||
if (flags & FUNC_QCFG_RESP_FLAGS_FW_DCBX_AGENT_ENABLED)
|
||||
bp->flags |= BNXT_FLAG_FW_DCBX_AGENT;
|
||||
bp->fw_cap |= BNXT_FW_CAP_DCBX_AGENT;
|
||||
}
|
||||
if (BNXT_PF(bp) && (flags & FUNC_QCFG_RESP_FLAGS_MULTI_HOST))
|
||||
bp->flags |= BNXT_FLAG_MULTI_HOST;
|
||||
|
@ -5162,7 +5175,7 @@ int bnxt_hwrm_func_resc_qcaps(struct bnxt *bp, bool all)
|
|||
|
||||
pf->vf_resv_strategy =
|
||||
le16_to_cpu(resp->vf_reservation_strategy);
|
||||
if (pf->vf_resv_strategy > BNXT_VF_RESV_STRATEGY_MINIMAL)
|
||||
if (pf->vf_resv_strategy > BNXT_VF_RESV_STRATEGY_MINIMAL_STATIC)
|
||||
pf->vf_resv_strategy = BNXT_VF_RESV_STRATEGY_MAXIMAL;
|
||||
}
|
||||
hwrm_func_resc_qcaps_exit:
|
||||
|
@ -5248,7 +5261,7 @@ static int bnxt_hwrm_func_qcaps(struct bnxt *bp)
|
|||
if (bp->hwrm_spec_code >= 0x10803) {
|
||||
rc = bnxt_hwrm_func_resc_qcaps(bp, true);
|
||||
if (!rc)
|
||||
bp->flags |= BNXT_FLAG_NEW_RM;
|
||||
bp->fw_cap |= BNXT_FW_CAP_NEW_RM;
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
@ -5268,7 +5281,8 @@ static int bnxt_hwrm_queue_qportcfg(struct bnxt *bp)
|
|||
int rc = 0;
|
||||
struct hwrm_queue_qportcfg_input req = {0};
|
||||
struct hwrm_queue_qportcfg_output *resp = bp->hwrm_cmd_resp_addr;
|
||||
u8 i, *qptr;
|
||||
u8 i, j, *qptr;
|
||||
bool no_rdma;
|
||||
|
||||
bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_QUEUE_QPORTCFG, -1, -1);
|
||||
|
||||
|
@ -5286,19 +5300,24 @@ static int bnxt_hwrm_queue_qportcfg(struct bnxt *bp)
|
|||
if (bp->max_tc > BNXT_MAX_QUEUE)
|
||||
bp->max_tc = BNXT_MAX_QUEUE;
|
||||
|
||||
no_rdma = !(bp->flags & BNXT_FLAG_ROCE_CAP);
|
||||
qptr = &resp->queue_id0;
|
||||
for (i = 0, j = 0; i < bp->max_tc; i++) {
|
||||
bp->q_info[j].queue_id = *qptr++;
|
||||
bp->q_info[j].queue_profile = *qptr++;
|
||||
bp->tc_to_qidx[j] = j;
|
||||
if (!BNXT_CNPQ(bp->q_info[j].queue_profile) ||
|
||||
(no_rdma && BNXT_PF(bp)))
|
||||
j++;
|
||||
}
|
||||
bp->max_tc = max_t(u8, j, 1);
|
||||
|
||||
if (resp->queue_cfg_info & QUEUE_QPORTCFG_RESP_QUEUE_CFG_INFO_ASYM_CFG)
|
||||
bp->max_tc = 1;
|
||||
|
||||
if (bp->max_lltc > bp->max_tc)
|
||||
bp->max_lltc = bp->max_tc;
|
||||
|
||||
qptr = &resp->queue_id0;
|
||||
for (i = 0; i < bp->max_tc; i++) {
|
||||
bp->q_info[i].queue_id = *qptr++;
|
||||
bp->q_info[i].queue_profile = *qptr++;
|
||||
bp->tc_to_qidx[i] = i;
|
||||
}
|
||||
|
||||
qportcfg_exit:
|
||||
mutex_unlock(&bp->hwrm_cmd_lock);
|
||||
return rc;
|
||||
|
@ -5351,7 +5370,7 @@ static int bnxt_hwrm_ver_get(struct bnxt *bp)
|
|||
dev_caps_cfg = le32_to_cpu(resp->dev_caps_cfg);
|
||||
if ((dev_caps_cfg & VER_GET_RESP_DEV_CAPS_CFG_SHORT_CMD_SUPPORTED) &&
|
||||
(dev_caps_cfg & VER_GET_RESP_DEV_CAPS_CFG_SHORT_CMD_REQUIRED))
|
||||
bp->flags |= BNXT_FLAG_SHORT_CMD;
|
||||
bp->fw_cap |= BNXT_FW_CAP_SHORT_CMD;
|
||||
|
||||
hwrm_ver_get_exit:
|
||||
mutex_unlock(&bp->hwrm_cmd_lock);
|
||||
|
@ -5920,7 +5939,7 @@ int bnxt_get_avail_msix(struct bnxt *bp, int num)
|
|||
|
||||
max_idx = min_t(int, bp->total_irqs, max_cp);
|
||||
avail_msix = max_idx - bp->cp_nr_rings;
|
||||
if (!(bp->flags & BNXT_FLAG_NEW_RM) || avail_msix >= num)
|
||||
if (!BNXT_NEW_RM(bp) || avail_msix >= num)
|
||||
return avail_msix;
|
||||
|
||||
if (max_irq < total_req) {
|
||||
|
@ -5933,7 +5952,7 @@ int bnxt_get_avail_msix(struct bnxt *bp, int num)
|
|||
|
||||
static int bnxt_get_num_msix(struct bnxt *bp)
|
||||
{
|
||||
if (!(bp->flags & BNXT_FLAG_NEW_RM))
|
||||
if (!BNXT_NEW_RM(bp))
|
||||
return bnxt_get_max_func_irqs(bp);
|
||||
|
||||
return bnxt_cp_rings_in_use(bp);
|
||||
|
@ -6056,8 +6075,7 @@ int bnxt_reserve_rings(struct bnxt *bp)
|
|||
netdev_err(bp->dev, "ring reservation failure rc: %d\n", rc);
|
||||
return rc;
|
||||
}
|
||||
if ((bp->flags & BNXT_FLAG_NEW_RM) &&
|
||||
(bnxt_get_num_msix(bp) != bp->total_irqs)) {
|
||||
if (BNXT_NEW_RM(bp) && (bnxt_get_num_msix(bp) != bp->total_irqs)) {
|
||||
bnxt_ulp_irq_stop(bp);
|
||||
bnxt_clear_int_mode(bp);
|
||||
rc = bnxt_init_int_mode(bp);
|
||||
|
@ -6337,6 +6355,10 @@ static int bnxt_hwrm_phy_qcaps(struct bnxt *bp)
|
|||
bp->lpi_tmr_hi = le32_to_cpu(resp->valid_tx_lpi_timer_high) &
|
||||
PORT_PHY_QCAPS_RESP_TX_LPI_TIMER_HIGH_MASK;
|
||||
}
|
||||
if (resp->flags & PORT_PHY_QCAPS_RESP_FLAGS_EXTERNAL_LPBK_SUPPORTED) {
|
||||
if (bp->test_info)
|
||||
bp->test_info->flags |= BNXT_TEST_FL_EXT_LPBK;
|
||||
}
|
||||
if (resp->supported_speeds_auto_mode)
|
||||
link_info->support_auto_speeds =
|
||||
le16_to_cpu(resp->supported_speeds_auto_mode);
|
||||
|
@ -6633,6 +6655,39 @@ static int bnxt_hwrm_shutdown_link(struct bnxt *bp)
|
|||
return hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT);
|
||||
}
|
||||
|
||||
static int bnxt_hwrm_if_change(struct bnxt *bp, bool up)
|
||||
{
|
||||
struct hwrm_func_drv_if_change_output *resp = bp->hwrm_cmd_resp_addr;
|
||||
struct hwrm_func_drv_if_change_input req = {0};
|
||||
bool resc_reinit = false;
|
||||
int rc;
|
||||
|
||||
if (!(bp->fw_cap & BNXT_FW_CAP_IF_CHANGE))
|
||||
return 0;
|
||||
|
||||
bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_FUNC_DRV_IF_CHANGE, -1, -1);
|
||||
if (up)
|
||||
req.flags = cpu_to_le32(FUNC_DRV_IF_CHANGE_REQ_FLAGS_UP);
|
||||
mutex_lock(&bp->hwrm_cmd_lock);
|
||||
rc = _hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT);
|
||||
if (!rc && (resp->flags &
|
||||
cpu_to_le32(FUNC_DRV_IF_CHANGE_RESP_FLAGS_RESC_CHANGE)))
|
||||
resc_reinit = true;
|
||||
mutex_unlock(&bp->hwrm_cmd_lock);
|
||||
|
||||
if (up && resc_reinit && BNXT_NEW_RM(bp)) {
|
||||
struct bnxt_hw_resc *hw_resc = &bp->hw_resc;
|
||||
|
||||
rc = bnxt_hwrm_func_resc_qcaps(bp, true);
|
||||
hw_resc->resv_cp_rings = 0;
|
||||
hw_resc->resv_tx_rings = 0;
|
||||
hw_resc->resv_rx_rings = 0;
|
||||
hw_resc->resv_hw_ring_grps = 0;
|
||||
hw_resc->resv_vnics = 0;
|
||||
}
|
||||
return rc;
|
||||
}
|
||||
|
||||
static int bnxt_hwrm_port_led_qcaps(struct bnxt *bp)
|
||||
{
|
||||
struct hwrm_port_led_qcaps_output *resp = bp->hwrm_cmd_resp_addr;
|
||||
|
@ -6742,6 +6797,62 @@ static void bnxt_get_wol_settings(struct bnxt *bp)
|
|||
} while (handle && handle != 0xffff);
|
||||
}
|
||||
|
||||
#ifdef CONFIG_BNXT_HWMON
|
||||
static ssize_t bnxt_show_temp(struct device *dev,
|
||||
struct device_attribute *devattr, char *buf)
|
||||
{
|
||||
struct hwrm_temp_monitor_query_input req = {0};
|
||||
struct hwrm_temp_monitor_query_output *resp;
|
||||
struct bnxt *bp = dev_get_drvdata(dev);
|
||||
u32 temp = 0;
|
||||
|
||||
resp = bp->hwrm_cmd_resp_addr;
|
||||
bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_TEMP_MONITOR_QUERY, -1, -1);
|
||||
mutex_lock(&bp->hwrm_cmd_lock);
|
||||
if (!_hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT))
|
||||
temp = resp->temp * 1000; /* display millidegree */
|
||||
mutex_unlock(&bp->hwrm_cmd_lock);
|
||||
|
||||
return sprintf(buf, "%u\n", temp);
|
||||
}
|
||||
static SENSOR_DEVICE_ATTR(temp1_input, 0444, bnxt_show_temp, NULL, 0);
|
||||
|
||||
static struct attribute *bnxt_attrs[] = {
|
||||
&sensor_dev_attr_temp1_input.dev_attr.attr,
|
||||
NULL
|
||||
};
|
||||
ATTRIBUTE_GROUPS(bnxt);
|
||||
|
||||
static void bnxt_hwmon_close(struct bnxt *bp)
|
||||
{
|
||||
if (bp->hwmon_dev) {
|
||||
hwmon_device_unregister(bp->hwmon_dev);
|
||||
bp->hwmon_dev = NULL;
|
||||
}
|
||||
}
|
||||
|
||||
static void bnxt_hwmon_open(struct bnxt *bp)
|
||||
{
|
||||
struct pci_dev *pdev = bp->pdev;
|
||||
|
||||
bp->hwmon_dev = hwmon_device_register_with_groups(&pdev->dev,
|
||||
DRV_MODULE_NAME, bp,
|
||||
bnxt_groups);
|
||||
if (IS_ERR(bp->hwmon_dev)) {
|
||||
bp->hwmon_dev = NULL;
|
||||
dev_warn(&pdev->dev, "Cannot register hwmon device\n");
|
||||
}
|
||||
}
|
||||
#else
|
||||
static void bnxt_hwmon_close(struct bnxt *bp)
|
||||
{
|
||||
}
|
||||
|
||||
static void bnxt_hwmon_open(struct bnxt *bp)
|
||||
{
|
||||
}
|
||||
#endif
|
||||
|
||||
static bool bnxt_eee_config_ok(struct bnxt *bp)
|
||||
{
|
||||
struct ethtool_eee *eee = &bp->eee;
|
||||
|
@ -6894,8 +7005,14 @@ static int __bnxt_open_nic(struct bnxt *bp, bool irq_re_init, bool link_re_init)
|
|||
mutex_lock(&bp->link_lock);
|
||||
rc = bnxt_update_phy_setting(bp);
|
||||
mutex_unlock(&bp->link_lock);
|
||||
if (rc)
|
||||
if (rc) {
|
||||
netdev_warn(bp->dev, "failed to update phy settings\n");
|
||||
if (BNXT_SINGLE_PF(bp)) {
|
||||
bp->link_info.phy_retry = true;
|
||||
bp->link_info.phy_retry_expires =
|
||||
jiffies + 5 * HZ;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if (irq_re_init)
|
||||
|
@ -6981,8 +7098,16 @@ void bnxt_half_close_nic(struct bnxt *bp)
|
|||
static int bnxt_open(struct net_device *dev)
|
||||
{
|
||||
struct bnxt *bp = netdev_priv(dev);
|
||||
int rc;
|
||||
|
||||
return __bnxt_open_nic(bp, true, true);
|
||||
bnxt_hwrm_if_change(bp, true);
|
||||
rc = __bnxt_open_nic(bp, true, true);
|
||||
if (rc)
|
||||
bnxt_hwrm_if_change(bp, false);
|
||||
|
||||
bnxt_hwmon_open(bp);
|
||||
|
||||
return rc;
|
||||
}
|
||||
|
||||
static bool bnxt_drv_busy(struct bnxt *bp)
|
||||
|
@ -7044,8 +7169,10 @@ static int bnxt_close(struct net_device *dev)
|
|||
{
|
||||
struct bnxt *bp = netdev_priv(dev);
|
||||
|
||||
bnxt_hwmon_close(bp);
|
||||
bnxt_close_nic(bp, true, true);
|
||||
bnxt_hwrm_shutdown_link(bp);
|
||||
bnxt_hwrm_if_change(bp, false);
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
@ -7295,7 +7422,7 @@ skip_uc:
|
|||
static bool bnxt_can_reserve_rings(struct bnxt *bp)
|
||||
{
|
||||
#ifdef CONFIG_BNXT_SRIOV
|
||||
if ((bp->flags & BNXT_FLAG_NEW_RM) && BNXT_VF(bp)) {
|
||||
if (BNXT_NEW_RM(bp) && BNXT_VF(bp)) {
|
||||
struct bnxt_hw_resc *hw_resc = &bp->hw_resc;
|
||||
|
||||
/* No minimum rings were provisioned by the PF. Don't
|
||||
|
@ -7345,7 +7472,7 @@ static bool bnxt_rfs_capable(struct bnxt *bp)
|
|||
return false;
|
||||
}
|
||||
|
||||
if (!(bp->flags & BNXT_FLAG_NEW_RM))
|
||||
if (!BNXT_NEW_RM(bp))
|
||||
return true;
|
||||
|
||||
if (vnics == bp->hw_resc.resv_vnics)
|
||||
|
@ -7579,6 +7706,16 @@ static void bnxt_timer(struct timer_list *t)
|
|||
set_bit(BNXT_FLOW_STATS_SP_EVENT, &bp->sp_event);
|
||||
bnxt_queue_sp_work(bp);
|
||||
}
|
||||
|
||||
if (bp->link_info.phy_retry) {
|
||||
if (time_after(jiffies, bp->link_info.phy_retry_expires)) {
|
||||
bp->link_info.phy_retry = 0;
|
||||
netdev_warn(bp->dev, "failed to update phy settings after maximum retries.\n");
|
||||
} else {
|
||||
set_bit(BNXT_UPDATE_PHY_SP_EVENT, &bp->sp_event);
|
||||
bnxt_queue_sp_work(bp);
|
||||
}
|
||||
}
|
||||
bnxt_restart_timer:
|
||||
mod_timer(&bp->timer, jiffies + bp->current_interval);
|
||||
}
|
||||
|
@ -7666,6 +7803,19 @@ static void bnxt_sp_task(struct work_struct *work)
|
|||
netdev_err(bp->dev, "SP task can't update link (rc: %x)\n",
|
||||
rc);
|
||||
}
|
||||
if (test_and_clear_bit(BNXT_UPDATE_PHY_SP_EVENT, &bp->sp_event)) {
|
||||
int rc;
|
||||
|
||||
mutex_lock(&bp->link_lock);
|
||||
rc = bnxt_update_phy_setting(bp);
|
||||
mutex_unlock(&bp->link_lock);
|
||||
if (rc) {
|
||||
netdev_warn(bp->dev, "update phy settings retry failed\n");
|
||||
} else {
|
||||
bp->link_info.phy_retry = false;
|
||||
netdev_info(bp->dev, "update phy settings retry succeeded\n");
|
||||
}
|
||||
}
|
||||
if (test_and_clear_bit(BNXT_HWRM_PORT_MODULE_SP_EVENT, &bp->sp_event)) {
|
||||
mutex_lock(&bp->link_lock);
|
||||
bnxt_get_port_module_status(bp);
|
||||
|
@ -7718,7 +7868,7 @@ int bnxt_check_rings(struct bnxt *bp, int tx, int rx, bool sh, int tcs,
|
|||
if (bp->flags & BNXT_FLAG_AGG_RINGS)
|
||||
rx_rings <<= 1;
|
||||
cp = sh ? max_t(int, tx_rings_needed, rx) : tx_rings_needed + rx;
|
||||
if (bp->flags & BNXT_FLAG_NEW_RM)
|
||||
if (BNXT_NEW_RM(bp))
|
||||
cp += bnxt_get_ulp_msix_num(bp);
|
||||
return bnxt_hwrm_check_rings(bp, tx_rings_needed, rx_rings, rx, cp,
|
||||
vnics);
|
||||
|
@ -8727,7 +8877,7 @@ static int bnxt_init_one(struct pci_dev *pdev, const struct pci_device_id *ent)
|
|||
if (rc)
|
||||
goto init_err_pci_clean;
|
||||
|
||||
if (bp->flags & BNXT_FLAG_SHORT_CMD) {
|
||||
if (bp->fw_cap & BNXT_FW_CAP_SHORT_CMD) {
|
||||
rc = bnxt_alloc_hwrm_short_cmd_req(bp);
|
||||
if (rc)
|
||||
goto init_err_pci_clean;
|
||||
|
|
|
@ -12,11 +12,11 @@
|
|||
#define BNXT_H
|
||||
|
||||
#define DRV_MODULE_NAME "bnxt_en"
|
||||
#define DRV_MODULE_VERSION "1.9.1"
|
||||
#define DRV_MODULE_VERSION "1.9.2"
|
||||
|
||||
#define DRV_VER_MAJ 1
|
||||
#define DRV_VER_MIN 9
|
||||
#define DRV_VER_UPD 1
|
||||
#define DRV_VER_UPD 2
|
||||
|
||||
#include <linux/interrupt.h>
|
||||
#include <linux/rhashtable.h>
|
||||
|
@ -326,6 +326,10 @@ struct rx_tpa_start_cmp_ext {
|
|||
((le32_to_cpu((rx_tpa_start)->rx_tpa_start_cmp_cfa_code_v2) & \
|
||||
RX_TPA_START_CMP_CFA_CODE) >> RX_TPA_START_CMPL_CFA_CODE_SHIFT)
|
||||
|
||||
#define TPA_START_IS_IPV6(rx_tpa_start) \
|
||||
(!!((rx_tpa_start)->rx_tpa_start_cmp_flags2 & \
|
||||
cpu_to_le32(RX_TPA_START_CMP_FLAGS2_IP_TYPE)))
|
||||
|
||||
struct rx_tpa_end_cmp {
|
||||
__le32 rx_tpa_end_cmp_len_flags_type;
|
||||
#define RX_TPA_END_CMP_TYPE (0x3f << 0)
|
||||
|
@ -862,6 +866,7 @@ struct bnxt_pf_info {
|
|||
u8 vf_resv_strategy;
|
||||
#define BNXT_VF_RESV_STRATEGY_MAXIMAL 0
|
||||
#define BNXT_VF_RESV_STRATEGY_MINIMAL 1
|
||||
#define BNXT_VF_RESV_STRATEGY_MINIMAL_STATIC 2
|
||||
void *hwrm_cmd_req_addr[4];
|
||||
dma_addr_t hwrm_cmd_req_dma_addr[4];
|
||||
struct bnxt_vf_info *vf;
|
||||
|
@ -959,6 +964,9 @@ struct bnxt_link_info {
|
|||
u16 advertising; /* user adv setting */
|
||||
bool force_link_chng;
|
||||
|
||||
bool phy_retry;
|
||||
unsigned long phy_retry_expires;
|
||||
|
||||
/* a copy of phy_qcfg output used to report link
|
||||
* info to VF
|
||||
*/
|
||||
|
@ -990,6 +998,8 @@ struct bnxt_led_info {
|
|||
|
||||
struct bnxt_test_info {
|
||||
u8 offline_mask;
|
||||
u8 flags;
|
||||
#define BNXT_TEST_FL_EXT_LPBK 0x1
|
||||
u16 timeout;
|
||||
char string[BNXT_MAX_TEST][ETH_GSTRING_LEN];
|
||||
};
|
||||
|
@ -1134,7 +1144,6 @@ struct bnxt {
|
|||
atomic_t intr_sem;
|
||||
|
||||
u32 flags;
|
||||
#define BNXT_FLAG_DCB_ENABLED 0x1
|
||||
#define BNXT_FLAG_VF 0x2
|
||||
#define BNXT_FLAG_LRO 0x4
|
||||
#ifdef CONFIG_INET
|
||||
|
@ -1163,15 +1172,11 @@ struct bnxt {
|
|||
BNXT_FLAG_ROCEV2_CAP)
|
||||
#define BNXT_FLAG_NO_AGG_RINGS 0x20000
|
||||
#define BNXT_FLAG_RX_PAGE_MODE 0x40000
|
||||
#define BNXT_FLAG_FW_LLDP_AGENT 0x80000
|
||||
#define BNXT_FLAG_MULTI_HOST 0x100000
|
||||
#define BNXT_FLAG_SHORT_CMD 0x200000
|
||||
#define BNXT_FLAG_DOUBLE_DB 0x400000
|
||||
#define BNXT_FLAG_FW_DCBX_AGENT 0x800000
|
||||
#define BNXT_FLAG_CHIP_NITRO_A0 0x1000000
|
||||
#define BNXT_FLAG_DIM 0x2000000
|
||||
#define BNXT_FLAG_ROCE_MIRROR_CAP 0x4000000
|
||||
#define BNXT_FLAG_NEW_RM 0x8000000
|
||||
#define BNXT_FLAG_PORT_STATS_EXT 0x10000000
|
||||
|
||||
#define BNXT_FLAG_ALL_CONFIG_FEATS (BNXT_FLAG_TPA | \
|
||||
|
@ -1276,10 +1281,19 @@ struct bnxt {
|
|||
struct ieee_ets *ieee_ets;
|
||||
u8 dcbx_cap;
|
||||
u8 default_pri;
|
||||
u8 max_dscp_value;
|
||||
#endif /* CONFIG_BNXT_DCB */
|
||||
|
||||
u32 msg_enable;
|
||||
|
||||
u32 fw_cap;
|
||||
#define BNXT_FW_CAP_SHORT_CMD 0x00000001
|
||||
#define BNXT_FW_CAP_LLDP_AGENT 0x00000002
|
||||
#define BNXT_FW_CAP_DCBX_AGENT 0x00000004
|
||||
#define BNXT_FW_CAP_NEW_RM 0x00000008
|
||||
#define BNXT_FW_CAP_IF_CHANGE 0x00000010
|
||||
|
||||
#define BNXT_NEW_RM(bp) ((bp)->fw_cap & BNXT_FW_CAP_NEW_RM)
|
||||
u32 hwrm_spec_code;
|
||||
u16 hwrm_cmd_seq;
|
||||
u32 hwrm_intr_seq_id;
|
||||
|
@ -1342,6 +1356,7 @@ struct bnxt {
|
|||
#define BNXT_GENEVE_DEL_PORT_SP_EVENT 13
|
||||
#define BNXT_LINK_SPEED_CHNG_SP_EVENT 14
|
||||
#define BNXT_FLOW_STATS_SP_EVENT 15
|
||||
#define BNXT_UPDATE_PHY_SP_EVENT 16
|
||||
|
||||
struct bnxt_hw_resc hw_resc;
|
||||
struct bnxt_pf_info pf;
|
||||
|
@ -1397,6 +1412,7 @@ struct bnxt {
|
|||
struct bnxt_tc_info *tc_info;
|
||||
struct dentry *debugfs_pdev;
|
||||
struct dentry *debugfs_dim;
|
||||
struct device *hwmon_dev;
|
||||
};
|
||||
|
||||
#define BNXT_RX_STATS_OFFSET(counter) \
|
||||
|
|
|
@ -0,0 +1,66 @@
|
|||
/* Broadcom NetXtreme-C/E network driver.
|
||||
*
|
||||
* Copyright (c) 2018 Broadcom Inc
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation.
|
||||
*/
|
||||
|
||||
#ifndef BNXT_COREDUMP_H
|
||||
#define BNXT_COREDUMP_H
|
||||
|
||||
struct bnxt_coredump_segment_hdr {
|
||||
__u8 signature[4];
|
||||
__le32 component_id;
|
||||
__le32 segment_id;
|
||||
__le32 flags;
|
||||
__u8 low_version;
|
||||
__u8 high_version;
|
||||
__le16 function_id;
|
||||
__le32 offset;
|
||||
__le32 length;
|
||||
__le32 status;
|
||||
__le32 duration;
|
||||
__le32 data_offset;
|
||||
__le32 instance;
|
||||
__le32 rsvd[5];
|
||||
};
|
||||
|
||||
struct bnxt_coredump_record {
|
||||
__u8 signature[4];
|
||||
__le32 flags;
|
||||
__u8 low_version;
|
||||
__u8 high_version;
|
||||
__u8 asic_state;
|
||||
__u8 rsvd0[5];
|
||||
char system_name[32];
|
||||
__le16 year;
|
||||
__le16 month;
|
||||
__le16 day;
|
||||
__le16 hour;
|
||||
__le16 minute;
|
||||
__le16 second;
|
||||
__le16 utc_bias;
|
||||
__le16 rsvd1;
|
||||
char commandline[256];
|
||||
__le32 total_segments;
|
||||
__le32 os_ver_major;
|
||||
__le32 os_ver_minor;
|
||||
__le32 rsvd2;
|
||||
char os_name[32];
|
||||
__le16 end_year;
|
||||
__le16 end_month;
|
||||
__le16 end_day;
|
||||
__le16 end_hour;
|
||||
__le16 end_minute;
|
||||
__le16 end_second;
|
||||
__le16 end_utc_bias;
|
||||
__le32 asic_id1;
|
||||
__le32 asic_id2;
|
||||
__le32 coredump_status;
|
||||
__u8 ioctl_low_version;
|
||||
__u8 ioctl_high_version;
|
||||
__le16 rsvd3[313];
|
||||
};
|
||||
#endif
|
|
@ -385,6 +385,61 @@ set_app_exit:
|
|||
return rc;
|
||||
}
|
||||
|
||||
static int bnxt_hwrm_queue_dscp_qcaps(struct bnxt *bp)
|
||||
{
|
||||
struct hwrm_queue_dscp_qcaps_output *resp = bp->hwrm_cmd_resp_addr;
|
||||
struct hwrm_queue_dscp_qcaps_input req = {0};
|
||||
int rc;
|
||||
|
||||
if (bp->hwrm_spec_code < 0x10800 || BNXT_VF(bp))
|
||||
return 0;
|
||||
|
||||
bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_QUEUE_DSCP_QCAPS, -1, -1);
|
||||
mutex_lock(&bp->hwrm_cmd_lock);
|
||||
rc = _hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT);
|
||||
if (!rc) {
|
||||
bp->max_dscp_value = (1 << resp->num_dscp_bits) - 1;
|
||||
if (bp->max_dscp_value < 0x3f)
|
||||
bp->max_dscp_value = 0;
|
||||
}
|
||||
|
||||
mutex_unlock(&bp->hwrm_cmd_lock);
|
||||
return rc;
|
||||
}
|
||||
|
||||
static int bnxt_hwrm_queue_dscp2pri_cfg(struct bnxt *bp, struct dcb_app *app,
|
||||
bool add)
|
||||
{
|
||||
struct hwrm_queue_dscp2pri_cfg_input req = {0};
|
||||
struct bnxt_dscp2pri_entry *dscp2pri;
|
||||
dma_addr_t mapping;
|
||||
int rc;
|
||||
|
||||
if (bp->hwrm_spec_code < 0x10800)
|
||||
return 0;
|
||||
|
||||
bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_QUEUE_DSCP2PRI_CFG, -1, -1);
|
||||
dscp2pri = dma_alloc_coherent(&bp->pdev->dev, sizeof(*dscp2pri),
|
||||
&mapping, GFP_KERNEL);
|
||||
if (!dscp2pri)
|
||||
return -ENOMEM;
|
||||
|
||||
req.src_data_addr = cpu_to_le64(mapping);
|
||||
dscp2pri->dscp = app->protocol;
|
||||
if (add)
|
||||
dscp2pri->mask = 0x3f;
|
||||
else
|
||||
dscp2pri->mask = 0;
|
||||
dscp2pri->pri = app->priority;
|
||||
req.entry_cnt = cpu_to_le16(1);
|
||||
rc = hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT);
|
||||
if (rc)
|
||||
rc = -EIO;
|
||||
dma_free_coherent(&bp->pdev->dev, sizeof(*dscp2pri), dscp2pri,
|
||||
mapping);
|
||||
return rc;
|
||||
}
|
||||
|
||||
static int bnxt_ets_validate(struct bnxt *bp, struct ieee_ets *ets, u8 *tc)
|
||||
{
|
||||
int total_ets_bw = 0;
|
||||
|
@ -551,15 +606,30 @@ static int bnxt_dcbnl_ieee_setpfc(struct net_device *dev, struct ieee_pfc *pfc)
|
|||
return rc;
|
||||
}
|
||||
|
||||
static int bnxt_dcbnl_ieee_dscp_app_prep(struct bnxt *bp, struct dcb_app *app)
|
||||
{
|
||||
if (app->selector == IEEE_8021QAZ_APP_SEL_DSCP) {
|
||||
if (!bp->max_dscp_value)
|
||||
return -ENOTSUPP;
|
||||
if (app->protocol > bp->max_dscp_value)
|
||||
return -EINVAL;
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int bnxt_dcbnl_ieee_setapp(struct net_device *dev, struct dcb_app *app)
|
||||
{
|
||||
struct bnxt *bp = netdev_priv(dev);
|
||||
int rc = -EINVAL;
|
||||
int rc;
|
||||
|
||||
if (!(bp->dcbx_cap & DCB_CAP_DCBX_VER_IEEE) ||
|
||||
!(bp->dcbx_cap & DCB_CAP_DCBX_HOST))
|
||||
return -EINVAL;
|
||||
|
||||
rc = bnxt_dcbnl_ieee_dscp_app_prep(bp, app);
|
||||
if (rc)
|
||||
return rc;
|
||||
|
||||
rc = dcb_ieee_setapp(dev, app);
|
||||
if (rc)
|
||||
return rc;
|
||||
|
@ -570,6 +640,9 @@ static int bnxt_dcbnl_ieee_setapp(struct net_device *dev, struct dcb_app *app)
|
|||
app->protocol == ROCE_V2_UDP_DPORT))
|
||||
rc = bnxt_hwrm_set_dcbx_app(bp, app, true);
|
||||
|
||||
if (app->selector == IEEE_8021QAZ_APP_SEL_DSCP)
|
||||
rc = bnxt_hwrm_queue_dscp2pri_cfg(bp, app, true);
|
||||
|
||||
return rc;
|
||||
}
|
||||
|
||||
|
@ -582,6 +655,10 @@ static int bnxt_dcbnl_ieee_delapp(struct net_device *dev, struct dcb_app *app)
|
|||
!(bp->dcbx_cap & DCB_CAP_DCBX_HOST))
|
||||
return -EINVAL;
|
||||
|
||||
rc = bnxt_dcbnl_ieee_dscp_app_prep(bp, app);
|
||||
if (rc)
|
||||
return rc;
|
||||
|
||||
rc = dcb_ieee_delapp(dev, app);
|
||||
if (rc)
|
||||
return rc;
|
||||
|
@ -591,6 +668,9 @@ static int bnxt_dcbnl_ieee_delapp(struct net_device *dev, struct dcb_app *app)
|
|||
app->protocol == ROCE_V2_UDP_DPORT))
|
||||
rc = bnxt_hwrm_set_dcbx_app(bp, app, false);
|
||||
|
||||
if (app->selector == IEEE_8021QAZ_APP_SEL_DSCP)
|
||||
rc = bnxt_hwrm_queue_dscp2pri_cfg(bp, app, false);
|
||||
|
||||
return rc;
|
||||
}
|
||||
|
||||
|
@ -610,7 +690,7 @@ static u8 bnxt_dcbnl_setdcbx(struct net_device *dev, u8 mode)
|
|||
return 1;
|
||||
|
||||
if (mode & DCB_CAP_DCBX_HOST) {
|
||||
if (BNXT_VF(bp) || (bp->flags & BNXT_FLAG_FW_LLDP_AGENT))
|
||||
if (BNXT_VF(bp) || (bp->fw_cap & BNXT_FW_CAP_LLDP_AGENT))
|
||||
return 1;
|
||||
|
||||
/* only support IEEE */
|
||||
|
@ -642,10 +722,11 @@ void bnxt_dcb_init(struct bnxt *bp)
|
|||
if (bp->hwrm_spec_code < 0x10501)
|
||||
return;
|
||||
|
||||
bnxt_hwrm_queue_dscp_qcaps(bp);
|
||||
bp->dcbx_cap = DCB_CAP_DCBX_VER_IEEE;
|
||||
if (BNXT_PF(bp) && !(bp->flags & BNXT_FLAG_FW_LLDP_AGENT))
|
||||
if (BNXT_PF(bp) && !(bp->fw_cap & BNXT_FW_CAP_LLDP_AGENT))
|
||||
bp->dcbx_cap |= DCB_CAP_DCBX_HOST;
|
||||
else if (bp->flags & BNXT_FLAG_FW_DCBX_AGENT)
|
||||
else if (bp->fw_cap & BNXT_FW_CAP_DCBX_AGENT)
|
||||
bp->dcbx_cap |= DCB_CAP_DCBX_LLD_MANAGED;
|
||||
bp->dev->dcbnl_ops = &dcbnl_ops;
|
||||
}
|
||||
|
|
|
@ -33,10 +33,20 @@ struct bnxt_cos2bw_cfg {
|
|||
u8 unused;
|
||||
};
|
||||
|
||||
struct bnxt_dscp2pri_entry {
|
||||
u8 dscp;
|
||||
u8 mask;
|
||||
u8 pri;
|
||||
};
|
||||
|
||||
#define BNXT_LLQ(q_profile) \
|
||||
((q_profile) == \
|
||||
QUEUE_QPORTCFG_RESP_QUEUE_ID0_SERVICE_PROFILE_LOSSLESS_ROCE)
|
||||
|
||||
#define BNXT_CNPQ(q_profile) \
|
||||
((q_profile) == \
|
||||
QUEUE_QPORTCFG_RESP_QUEUE_ID0_SERVICE_PROFILE_LOSSY_ROCE_CNP)
|
||||
|
||||
#define HWRM_STRUCT_DATA_SUBTYPE_HOST_OPERATIONAL 0x0300
|
||||
|
||||
void bnxt_dcb_init(struct bnxt *bp);
|
||||
|
|
|
@ -29,7 +29,7 @@ static const struct bnxt_dl_nvm_param nvm_params[] = {
|
|||
static int bnxt_hwrm_nvm_req(struct bnxt *bp, u32 param_id, void *msg,
|
||||
int msg_len, union devlink_param_value *val)
|
||||
{
|
||||
struct hwrm_nvm_variable_input *req = msg;
|
||||
struct hwrm_nvm_get_variable_input *req = msg;
|
||||
void *data_addr = NULL, *buf = NULL;
|
||||
struct bnxt_dl_nvm_param nvm_param;
|
||||
int bytesize, idx = 0, rc, i;
|
||||
|
@ -60,18 +60,18 @@ static int bnxt_hwrm_nvm_req(struct bnxt *bp, u32 param_id, void *msg,
|
|||
if (!data_addr)
|
||||
return -ENOMEM;
|
||||
|
||||
req->data_addr = cpu_to_le64(data_dma_addr);
|
||||
req->dest_data_addr = cpu_to_le64(data_dma_addr);
|
||||
req->data_len = cpu_to_le16(nvm_param.num_bits);
|
||||
req->option_num = cpu_to_le16(nvm_param.offset);
|
||||
req->index_0 = cpu_to_le16(idx);
|
||||
if (idx)
|
||||
req->dimensions = cpu_to_le16(1);
|
||||
|
||||
if (req->req_type == HWRM_NVM_SET_VARIABLE)
|
||||
if (req->req_type == cpu_to_le16(HWRM_NVM_SET_VARIABLE))
|
||||
memcpy(data_addr, buf, bytesize);
|
||||
|
||||
rc = hwrm_send_message(bp, msg, msg_len, HWRM_CMD_TIMEOUT);
|
||||
if (!rc && req->req_type == HWRM_NVM_GET_VARIABLE)
|
||||
if (!rc && req->req_type == cpu_to_le16(HWRM_NVM_GET_VARIABLE))
|
||||
memcpy(buf, data_addr, bytesize);
|
||||
|
||||
dma_free_coherent(&bp->pdev->dev, bytesize, data_addr, data_dma_addr);
|
||||
|
|
|
@ -16,12 +16,15 @@
|
|||
#include <linux/etherdevice.h>
|
||||
#include <linux/crc32.h>
|
||||
#include <linux/firmware.h>
|
||||
#include <linux/utsname.h>
|
||||
#include <linux/time.h>
|
||||
#include "bnxt_hsi.h"
|
||||
#include "bnxt.h"
|
||||
#include "bnxt_xdp.h"
|
||||
#include "bnxt_ethtool.h"
|
||||
#include "bnxt_nvm_defs.h" /* NVRAM content constant and structure defs */
|
||||
#include "bnxt_fw_hdr.h" /* Firmware hdr constant and structure defs */
|
||||
#include "bnxt_coredump.h"
|
||||
#define FLASH_NVRAM_TIMEOUT ((HWRM_CMD_TIMEOUT) * 100)
|
||||
#define FLASH_PACKAGE_TIMEOUT ((HWRM_CMD_TIMEOUT) * 200)
|
||||
#define INSTALL_PACKAGE_TIMEOUT ((HWRM_CMD_TIMEOUT) * 200)
|
||||
|
@ -112,6 +115,11 @@ static int bnxt_set_coalesce(struct net_device *dev,
|
|||
BNXT_MAX_STATS_COAL_TICKS);
|
||||
stats_ticks = rounddown(stats_ticks, BNXT_MIN_STATS_COAL_TICKS);
|
||||
bp->stats_coal_ticks = stats_ticks;
|
||||
if (bp->stats_coal_ticks)
|
||||
bp->current_interval =
|
||||
bp->stats_coal_ticks * HZ / 1000000;
|
||||
else
|
||||
bp->current_interval = BNXT_TIMER_INTERVAL;
|
||||
update_stats = true;
|
||||
}
|
||||
|
||||
|
@ -162,7 +170,7 @@ static const struct {
|
|||
BNXT_RX_STATS_ENTRY(rx_128b_255b_frames),
|
||||
BNXT_RX_STATS_ENTRY(rx_256b_511b_frames),
|
||||
BNXT_RX_STATS_ENTRY(rx_512b_1023b_frames),
|
||||
BNXT_RX_STATS_ENTRY(rx_1024b_1518_frames),
|
||||
BNXT_RX_STATS_ENTRY(rx_1024b_1518b_frames),
|
||||
BNXT_RX_STATS_ENTRY(rx_good_vlan_frames),
|
||||
BNXT_RX_STATS_ENTRY(rx_1519b_2047b_frames),
|
||||
BNXT_RX_STATS_ENTRY(rx_2048b_4095b_frames),
|
||||
|
@ -205,9 +213,9 @@ static const struct {
|
|||
BNXT_TX_STATS_ENTRY(tx_128b_255b_frames),
|
||||
BNXT_TX_STATS_ENTRY(tx_256b_511b_frames),
|
||||
BNXT_TX_STATS_ENTRY(tx_512b_1023b_frames),
|
||||
BNXT_TX_STATS_ENTRY(tx_1024b_1518_frames),
|
||||
BNXT_TX_STATS_ENTRY(tx_1024b_1518b_frames),
|
||||
BNXT_TX_STATS_ENTRY(tx_good_vlan_frames),
|
||||
BNXT_TX_STATS_ENTRY(tx_1519b_2047_frames),
|
||||
BNXT_TX_STATS_ENTRY(tx_1519b_2047b_frames),
|
||||
BNXT_TX_STATS_ENTRY(tx_2048b_4095b_frames),
|
||||
BNXT_TX_STATS_ENTRY(tx_4096b_9216b_frames),
|
||||
BNXT_TX_STATS_ENTRY(tx_9217b_16383b_frames),
|
||||
|
@ -463,7 +471,7 @@ static void bnxt_get_channels(struct net_device *dev,
|
|||
int max_tx_sch_inputs;
|
||||
|
||||
/* Get the most up-to-date max_tx_sch_inputs. */
|
||||
if (bp->flags & BNXT_FLAG_NEW_RM)
|
||||
if (BNXT_NEW_RM(bp))
|
||||
bnxt_hwrm_func_resc_qcaps(bp, false);
|
||||
max_tx_sch_inputs = hw_resc->max_tx_sch_inputs;
|
||||
|
||||
|
@ -2392,7 +2400,7 @@ static int bnxt_disable_an_for_lpbk(struct bnxt *bp,
|
|||
return rc;
|
||||
}
|
||||
|
||||
static int bnxt_hwrm_phy_loopback(struct bnxt *bp, bool enable)
|
||||
static int bnxt_hwrm_phy_loopback(struct bnxt *bp, bool enable, bool ext)
|
||||
{
|
||||
struct hwrm_port_phy_cfg_input req = {0};
|
||||
|
||||
|
@ -2400,7 +2408,10 @@ static int bnxt_hwrm_phy_loopback(struct bnxt *bp, bool enable)
|
|||
|
||||
if (enable) {
|
||||
bnxt_disable_an_for_lpbk(bp, &req);
|
||||
req.lpbk = PORT_PHY_CFG_REQ_LPBK_LOCAL;
|
||||
if (ext)
|
||||
req.lpbk = PORT_PHY_CFG_REQ_LPBK_EXTERNAL;
|
||||
else
|
||||
req.lpbk = PORT_PHY_CFG_REQ_LPBK_LOCAL;
|
||||
} else {
|
||||
req.lpbk = PORT_PHY_CFG_REQ_LPBK_NONE;
|
||||
}
|
||||
|
@ -2533,15 +2544,17 @@ static int bnxt_run_fw_tests(struct bnxt *bp, u8 test_mask, u8 *test_results)
|
|||
return rc;
|
||||
}
|
||||
|
||||
#define BNXT_DRV_TESTS 3
|
||||
#define BNXT_DRV_TESTS 4
|
||||
#define BNXT_MACLPBK_TEST_IDX (bp->num_tests - BNXT_DRV_TESTS)
|
||||
#define BNXT_PHYLPBK_TEST_IDX (BNXT_MACLPBK_TEST_IDX + 1)
|
||||
#define BNXT_IRQ_TEST_IDX (BNXT_MACLPBK_TEST_IDX + 2)
|
||||
#define BNXT_EXTLPBK_TEST_IDX (BNXT_MACLPBK_TEST_IDX + 2)
|
||||
#define BNXT_IRQ_TEST_IDX (BNXT_MACLPBK_TEST_IDX + 3)
|
||||
|
||||
static void bnxt_self_test(struct net_device *dev, struct ethtool_test *etest,
|
||||
u64 *buf)
|
||||
{
|
||||
struct bnxt *bp = netdev_priv(dev);
|
||||
bool do_ext_lpbk = false;
|
||||
bool offline = false;
|
||||
u8 test_results = 0;
|
||||
u8 test_mask = 0;
|
||||
|
@ -2555,6 +2568,10 @@ static void bnxt_self_test(struct net_device *dev, struct ethtool_test *etest,
|
|||
return;
|
||||
}
|
||||
|
||||
if ((etest->flags & ETH_TEST_FL_EXTERNAL_LB) &&
|
||||
(bp->test_info->flags & BNXT_TEST_FL_EXT_LPBK))
|
||||
do_ext_lpbk = true;
|
||||
|
||||
if (etest->flags & ETH_TEST_FL_OFFLINE) {
|
||||
if (bp->pf.active_vfs) {
|
||||
etest->flags |= ETH_TEST_FL_FAILED;
|
||||
|
@ -2595,13 +2612,22 @@ static void bnxt_self_test(struct net_device *dev, struct ethtool_test *etest,
|
|||
buf[BNXT_MACLPBK_TEST_IDX] = 0;
|
||||
|
||||
bnxt_hwrm_mac_loopback(bp, false);
|
||||
bnxt_hwrm_phy_loopback(bp, true);
|
||||
bnxt_hwrm_phy_loopback(bp, true, false);
|
||||
msleep(1000);
|
||||
if (bnxt_run_loopback(bp)) {
|
||||
buf[BNXT_PHYLPBK_TEST_IDX] = 1;
|
||||
etest->flags |= ETH_TEST_FL_FAILED;
|
||||
}
|
||||
bnxt_hwrm_phy_loopback(bp, false);
|
||||
if (do_ext_lpbk) {
|
||||
etest->flags |= ETH_TEST_FL_EXTERNAL_LB_DONE;
|
||||
bnxt_hwrm_phy_loopback(bp, true, true);
|
||||
msleep(1000);
|
||||
if (bnxt_run_loopback(bp)) {
|
||||
buf[BNXT_EXTLPBK_TEST_IDX] = 1;
|
||||
etest->flags |= ETH_TEST_FL_FAILED;
|
||||
}
|
||||
}
|
||||
bnxt_hwrm_phy_loopback(bp, false, false);
|
||||
bnxt_half_close_nic(bp);
|
||||
bnxt_open_nic(bp, false, true);
|
||||
}
|
||||
|
@ -2662,6 +2688,334 @@ static int bnxt_reset(struct net_device *dev, u32 *flags)
|
|||
return rc;
|
||||
}
|
||||
|
||||
static int bnxt_hwrm_dbg_dma_data(struct bnxt *bp, void *msg, int msg_len,
|
||||
struct bnxt_hwrm_dbg_dma_info *info)
|
||||
{
|
||||
struct hwrm_dbg_cmn_output *cmn_resp = bp->hwrm_cmd_resp_addr;
|
||||
struct hwrm_dbg_cmn_input *cmn_req = msg;
|
||||
__le16 *seq_ptr = msg + info->seq_off;
|
||||
u16 seq = 0, len, segs_off;
|
||||
void *resp = cmn_resp;
|
||||
dma_addr_t dma_handle;
|
||||
int rc, off = 0;
|
||||
void *dma_buf;
|
||||
|
||||
dma_buf = dma_alloc_coherent(&bp->pdev->dev, info->dma_len, &dma_handle,
|
||||
GFP_KERNEL);
|
||||
if (!dma_buf)
|
||||
return -ENOMEM;
|
||||
|
||||
segs_off = offsetof(struct hwrm_dbg_coredump_list_output,
|
||||
total_segments);
|
||||
cmn_req->host_dest_addr = cpu_to_le64(dma_handle);
|
||||
cmn_req->host_buf_len = cpu_to_le32(info->dma_len);
|
||||
mutex_lock(&bp->hwrm_cmd_lock);
|
||||
while (1) {
|
||||
*seq_ptr = cpu_to_le16(seq);
|
||||
rc = _hwrm_send_message(bp, msg, msg_len, HWRM_CMD_TIMEOUT);
|
||||
if (rc)
|
||||
break;
|
||||
|
||||
len = le16_to_cpu(*((__le16 *)(resp + info->data_len_off)));
|
||||
if (!seq &&
|
||||
cmn_req->req_type == cpu_to_le16(HWRM_DBG_COREDUMP_LIST)) {
|
||||
info->segs = le16_to_cpu(*((__le16 *)(resp +
|
||||
segs_off)));
|
||||
if (!info->segs) {
|
||||
rc = -EIO;
|
||||
break;
|
||||
}
|
||||
|
||||
info->dest_buf_size = info->segs *
|
||||
sizeof(struct coredump_segment_record);
|
||||
info->dest_buf = kmalloc(info->dest_buf_size,
|
||||
GFP_KERNEL);
|
||||
if (!info->dest_buf) {
|
||||
rc = -ENOMEM;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
if (info->dest_buf)
|
||||
memcpy(info->dest_buf + off, dma_buf, len);
|
||||
|
||||
if (cmn_req->req_type ==
|
||||
cpu_to_le16(HWRM_DBG_COREDUMP_RETRIEVE))
|
||||
info->dest_buf_size += len;
|
||||
|
||||
if (!(cmn_resp->flags & HWRM_DBG_CMN_FLAGS_MORE))
|
||||
break;
|
||||
|
||||
seq++;
|
||||
off += len;
|
||||
}
|
||||
mutex_unlock(&bp->hwrm_cmd_lock);
|
||||
dma_free_coherent(&bp->pdev->dev, info->dma_len, dma_buf, dma_handle);
|
||||
return rc;
|
||||
}
|
||||
|
||||
static int bnxt_hwrm_dbg_coredump_list(struct bnxt *bp,
|
||||
struct bnxt_coredump *coredump)
|
||||
{
|
||||
struct hwrm_dbg_coredump_list_input req = {0};
|
||||
struct bnxt_hwrm_dbg_dma_info info = {NULL};
|
||||
int rc;
|
||||
|
||||
bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_DBG_COREDUMP_LIST, -1, -1);
|
||||
|
||||
info.dma_len = COREDUMP_LIST_BUF_LEN;
|
||||
info.seq_off = offsetof(struct hwrm_dbg_coredump_list_input, seq_no);
|
||||
info.data_len_off = offsetof(struct hwrm_dbg_coredump_list_output,
|
||||
data_len);
|
||||
|
||||
rc = bnxt_hwrm_dbg_dma_data(bp, &req, sizeof(req), &info);
|
||||
if (!rc) {
|
||||
coredump->data = info.dest_buf;
|
||||
coredump->data_size = info.dest_buf_size;
|
||||
coredump->total_segs = info.segs;
|
||||
}
|
||||
return rc;
|
||||
}
|
||||
|
||||
static int bnxt_hwrm_dbg_coredump_initiate(struct bnxt *bp, u16 component_id,
|
||||
u16 segment_id)
|
||||
{
|
||||
struct hwrm_dbg_coredump_initiate_input req = {0};
|
||||
|
||||
bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_DBG_COREDUMP_INITIATE, -1, -1);
|
||||
req.component_id = cpu_to_le16(component_id);
|
||||
req.segment_id = cpu_to_le16(segment_id);
|
||||
|
||||
return hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT);
|
||||
}
|
||||
|
||||
static int bnxt_hwrm_dbg_coredump_retrieve(struct bnxt *bp, u16 component_id,
|
||||
u16 segment_id, u32 *seg_len,
|
||||
void *buf, u32 offset)
|
||||
{
|
||||
struct hwrm_dbg_coredump_retrieve_input req = {0};
|
||||
struct bnxt_hwrm_dbg_dma_info info = {NULL};
|
||||
int rc;
|
||||
|
||||
bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_DBG_COREDUMP_RETRIEVE, -1, -1);
|
||||
req.component_id = cpu_to_le16(component_id);
|
||||
req.segment_id = cpu_to_le16(segment_id);
|
||||
|
||||
info.dma_len = COREDUMP_RETRIEVE_BUF_LEN;
|
||||
info.seq_off = offsetof(struct hwrm_dbg_coredump_retrieve_input,
|
||||
seq_no);
|
||||
info.data_len_off = offsetof(struct hwrm_dbg_coredump_retrieve_output,
|
||||
data_len);
|
||||
if (buf)
|
||||
info.dest_buf = buf + offset;
|
||||
|
||||
rc = bnxt_hwrm_dbg_dma_data(bp, &req, sizeof(req), &info);
|
||||
if (!rc)
|
||||
*seg_len = info.dest_buf_size;
|
||||
|
||||
return rc;
|
||||
}
|
||||
|
||||
static void
|
||||
bnxt_fill_coredump_seg_hdr(struct bnxt *bp,
|
||||
struct bnxt_coredump_segment_hdr *seg_hdr,
|
||||
struct coredump_segment_record *seg_rec, u32 seg_len,
|
||||
int status, u32 duration, u32 instance)
|
||||
{
|
||||
memset(seg_hdr, 0, sizeof(*seg_hdr));
|
||||
strcpy(seg_hdr->signature, "sEgM");
|
||||
if (seg_rec) {
|
||||
seg_hdr->component_id = (__force __le32)seg_rec->component_id;
|
||||
seg_hdr->segment_id = (__force __le32)seg_rec->segment_id;
|
||||
seg_hdr->low_version = seg_rec->version_low;
|
||||
seg_hdr->high_version = seg_rec->version_hi;
|
||||
} else {
|
||||
/* For hwrm_ver_get response Component id = 2
|
||||
* and Segment id = 0
|
||||
*/
|
||||
seg_hdr->component_id = cpu_to_le32(2);
|
||||
seg_hdr->segment_id = 0;
|
||||
}
|
||||
seg_hdr->function_id = cpu_to_le16(bp->pdev->devfn);
|
||||
seg_hdr->length = cpu_to_le32(seg_len);
|
||||
seg_hdr->status = cpu_to_le32(status);
|
||||
seg_hdr->duration = cpu_to_le32(duration);
|
||||
seg_hdr->data_offset = cpu_to_le32(sizeof(*seg_hdr));
|
||||
seg_hdr->instance = cpu_to_le32(instance);
|
||||
}
|
||||
|
||||
static void
|
||||
bnxt_fill_coredump_record(struct bnxt *bp, struct bnxt_coredump_record *record,
|
||||
time64_t start, s16 start_utc, u16 total_segs,
|
||||
int status)
|
||||
{
|
||||
time64_t end = ktime_get_real_seconds();
|
||||
u32 os_ver_major = 0, os_ver_minor = 0;
|
||||
struct tm tm;
|
||||
|
||||
time64_to_tm(start, 0, &tm);
|
||||
memset(record, 0, sizeof(*record));
|
||||
strcpy(record->signature, "cOrE");
|
||||
record->flags = 0;
|
||||
record->low_version = 0;
|
||||
record->high_version = 1;
|
||||
record->asic_state = 0;
|
||||
strncpy(record->system_name, utsname()->nodename,
|
||||
strlen(utsname()->nodename));
|
||||
record->year = cpu_to_le16(tm.tm_year);
|
||||
record->month = cpu_to_le16(tm.tm_mon);
|
||||
record->day = cpu_to_le16(tm.tm_mday);
|
||||
record->hour = cpu_to_le16(tm.tm_hour);
|
||||
record->minute = cpu_to_le16(tm.tm_min);
|
||||
record->second = cpu_to_le16(tm.tm_sec);
|
||||
record->utc_bias = cpu_to_le16(start_utc);
|
||||
strcpy(record->commandline, "ethtool -w");
|
||||
record->total_segments = cpu_to_le32(total_segs);
|
||||
|
||||
sscanf(utsname()->release, "%u.%u", &os_ver_major, &os_ver_minor);
|
||||
record->os_ver_major = cpu_to_le32(os_ver_major);
|
||||
record->os_ver_minor = cpu_to_le32(os_ver_minor);
|
||||
|
||||
strcpy(record->os_name, utsname()->sysname);
|
||||
time64_to_tm(end, 0, &tm);
|
||||
record->end_year = cpu_to_le16(tm.tm_year + 1900);
|
||||
record->end_month = cpu_to_le16(tm.tm_mon + 1);
|
||||
record->end_day = cpu_to_le16(tm.tm_mday);
|
||||
record->end_hour = cpu_to_le16(tm.tm_hour);
|
||||
record->end_minute = cpu_to_le16(tm.tm_min);
|
||||
record->end_second = cpu_to_le16(tm.tm_sec);
|
||||
record->end_utc_bias = cpu_to_le16(sys_tz.tz_minuteswest * 60);
|
||||
record->asic_id1 = cpu_to_le32(bp->chip_num << 16 |
|
||||
bp->ver_resp.chip_rev << 8 |
|
||||
bp->ver_resp.chip_metal);
|
||||
record->asic_id2 = 0;
|
||||
record->coredump_status = cpu_to_le32(status);
|
||||
record->ioctl_low_version = 0;
|
||||
record->ioctl_high_version = 0;
|
||||
}
|
||||
|
||||
static int bnxt_get_coredump(struct bnxt *bp, void *buf, u32 *dump_len)
|
||||
{
|
||||
u32 ver_get_resp_len = sizeof(struct hwrm_ver_get_output);
|
||||
struct coredump_segment_record *seg_record = NULL;
|
||||
u32 offset = 0, seg_hdr_len, seg_record_len;
|
||||
struct bnxt_coredump_segment_hdr seg_hdr;
|
||||
struct bnxt_coredump_record coredump_rec;
|
||||
struct bnxt_coredump coredump = {NULL};
|
||||
time64_t start_time;
|
||||
u16 start_utc;
|
||||
int rc = 0, i;
|
||||
|
||||
start_time = ktime_get_real_seconds();
|
||||
start_utc = sys_tz.tz_minuteswest * 60;
|
||||
seg_hdr_len = sizeof(seg_hdr);
|
||||
|
||||
/* First segment should be hwrm_ver_get response */
|
||||
*dump_len = seg_hdr_len + ver_get_resp_len;
|
||||
if (buf) {
|
||||
bnxt_fill_coredump_seg_hdr(bp, &seg_hdr, NULL, ver_get_resp_len,
|
||||
0, 0, 0);
|
||||
memcpy(buf + offset, &seg_hdr, seg_hdr_len);
|
||||
offset += seg_hdr_len;
|
||||
memcpy(buf + offset, &bp->ver_resp, ver_get_resp_len);
|
||||
offset += ver_get_resp_len;
|
||||
}
|
||||
|
||||
rc = bnxt_hwrm_dbg_coredump_list(bp, &coredump);
|
||||
if (rc) {
|
||||
netdev_err(bp->dev, "Failed to get coredump segment list\n");
|
||||
goto err;
|
||||
}
|
||||
|
||||
*dump_len += seg_hdr_len * coredump.total_segs;
|
||||
|
||||
seg_record = (struct coredump_segment_record *)coredump.data;
|
||||
seg_record_len = sizeof(*seg_record);
|
||||
|
||||
for (i = 0; i < coredump.total_segs; i++) {
|
||||
u16 comp_id = le16_to_cpu(seg_record->component_id);
|
||||
u16 seg_id = le16_to_cpu(seg_record->segment_id);
|
||||
u32 duration = 0, seg_len = 0;
|
||||
unsigned long start, end;
|
||||
|
||||
start = jiffies;
|
||||
|
||||
rc = bnxt_hwrm_dbg_coredump_initiate(bp, comp_id, seg_id);
|
||||
if (rc) {
|
||||
netdev_err(bp->dev,
|
||||
"Failed to initiate coredump for seg = %d\n",
|
||||
seg_record->segment_id);
|
||||
goto next_seg;
|
||||
}
|
||||
|
||||
/* Write segment data into the buffer */
|
||||
rc = bnxt_hwrm_dbg_coredump_retrieve(bp, comp_id, seg_id,
|
||||
&seg_len, buf,
|
||||
offset + seg_hdr_len);
|
||||
if (rc)
|
||||
netdev_err(bp->dev,
|
||||
"Failed to retrieve coredump for seg = %d\n",
|
||||
seg_record->segment_id);
|
||||
|
||||
next_seg:
|
||||
end = jiffies;
|
||||
duration = jiffies_to_msecs(end - start);
|
||||
bnxt_fill_coredump_seg_hdr(bp, &seg_hdr, seg_record, seg_len,
|
||||
rc, duration, 0);
|
||||
|
||||
if (buf) {
|
||||
/* Write segment header into the buffer */
|
||||
memcpy(buf + offset, &seg_hdr, seg_hdr_len);
|
||||
offset += seg_hdr_len + seg_len;
|
||||
}
|
||||
|
||||
*dump_len += seg_len;
|
||||
seg_record =
|
||||
(struct coredump_segment_record *)((u8 *)seg_record +
|
||||
seg_record_len);
|
||||
}
|
||||
|
||||
err:
|
||||
if (buf) {
|
||||
bnxt_fill_coredump_record(bp, &coredump_rec, start_time,
|
||||
start_utc, coredump.total_segs + 1,
|
||||
rc);
|
||||
memcpy(buf + offset, &coredump_rec, sizeof(coredump_rec));
|
||||
}
|
||||
kfree(coredump.data);
|
||||
*dump_len += sizeof(coredump_rec);
|
||||
|
||||
return rc;
|
||||
}
|
||||
|
||||
static int bnxt_get_dump_flag(struct net_device *dev, struct ethtool_dump *dump)
|
||||
{
|
||||
struct bnxt *bp = netdev_priv(dev);
|
||||
|
||||
if (bp->hwrm_spec_code < 0x10801)
|
||||
return -EOPNOTSUPP;
|
||||
|
||||
dump->version = bp->ver_resp.hwrm_fw_maj_8b << 24 |
|
||||
bp->ver_resp.hwrm_fw_min_8b << 16 |
|
||||
bp->ver_resp.hwrm_fw_bld_8b << 8 |
|
||||
bp->ver_resp.hwrm_fw_rsvd_8b;
|
||||
|
||||
return bnxt_get_coredump(bp, NULL, &dump->len);
|
||||
}
|
||||
|
||||
static int bnxt_get_dump_data(struct net_device *dev, struct ethtool_dump *dump,
|
||||
void *buf)
|
||||
{
|
||||
struct bnxt *bp = netdev_priv(dev);
|
||||
|
||||
if (bp->hwrm_spec_code < 0x10801)
|
||||
return -EOPNOTSUPP;
|
||||
|
||||
memset(buf, 0, dump->len);
|
||||
|
||||
return bnxt_get_coredump(bp, buf, &dump->len);
|
||||
}
|
||||
|
||||
void bnxt_ethtool_init(struct bnxt *bp)
|
||||
{
|
||||
struct hwrm_selftest_qlist_output *resp = bp->hwrm_cmd_resp_addr;
|
||||
|
@ -2702,6 +3056,8 @@ void bnxt_ethtool_init(struct bnxt *bp)
|
|||
strcpy(str, "Mac loopback test (offline)");
|
||||
} else if (i == BNXT_PHYLPBK_TEST_IDX) {
|
||||
strcpy(str, "Phy loopback test (offline)");
|
||||
} else if (i == BNXT_EXTLPBK_TEST_IDX) {
|
||||
strcpy(str, "Ext loopback test (offline)");
|
||||
} else if (i == BNXT_IRQ_TEST_IDX) {
|
||||
strcpy(str, "Interrupt_test (offline)");
|
||||
} else {
|
||||
|
@ -2763,4 +3119,6 @@ const struct ethtool_ops bnxt_ethtool_ops = {
|
|||
.set_phys_id = bnxt_set_phys_id,
|
||||
.self_test = bnxt_self_test,
|
||||
.reset = bnxt_reset,
|
||||
.get_dump_flag = bnxt_get_dump_flag,
|
||||
.get_dump_data = bnxt_get_dump_data,
|
||||
};
|
||||
|
|
|
@ -22,6 +22,43 @@ struct bnxt_led_cfg {
|
|||
u8 rsvd;
|
||||
};
|
||||
|
||||
#define COREDUMP_LIST_BUF_LEN 2048
|
||||
#define COREDUMP_RETRIEVE_BUF_LEN 4096
|
||||
|
||||
struct bnxt_coredump {
|
||||
void *data;
|
||||
int data_size;
|
||||
u16 total_segs;
|
||||
};
|
||||
|
||||
struct bnxt_hwrm_dbg_dma_info {
|
||||
void *dest_buf;
|
||||
int dest_buf_size;
|
||||
u16 dma_len;
|
||||
u16 seq_off;
|
||||
u16 data_len_off;
|
||||
u16 segs;
|
||||
};
|
||||
|
||||
struct hwrm_dbg_cmn_input {
|
||||
__le16 req_type;
|
||||
__le16 cmpl_ring;
|
||||
__le16 seq_id;
|
||||
__le16 target_id;
|
||||
__le64 resp_addr;
|
||||
__le64 host_dest_addr;
|
||||
__le32 host_buf_len;
|
||||
};
|
||||
|
||||
struct hwrm_dbg_cmn_output {
|
||||
__le16 error_code;
|
||||
__le16 req_type;
|
||||
__le16 seq_id;
|
||||
__le16 resp_len;
|
||||
u8 flags;
|
||||
#define HWRM_DBG_CMN_FLAGS_MORE 1
|
||||
};
|
||||
|
||||
#define BNXT_LED_DFLT_ENA \
|
||||
(PORT_LED_CFG_REQ_ENABLES_LED0_ID | \
|
||||
PORT_LED_CFG_REQ_ENABLES_LED0_STATE | \
|
||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -447,7 +447,7 @@ static int bnxt_hwrm_func_vf_resc_cfg(struct bnxt *bp, int num_vfs)
|
|||
u16 vf_tx_rings, vf_rx_rings, vf_cp_rings;
|
||||
u16 vf_stat_ctx, vf_vnics, vf_ring_grps;
|
||||
struct bnxt_pf_info *pf = &bp->pf;
|
||||
int i, rc = 0;
|
||||
int i, rc = 0, min = 1;
|
||||
|
||||
bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_FUNC_VF_RESOURCE_CFG, -1, -1);
|
||||
|
||||
|
@ -464,14 +464,19 @@ static int bnxt_hwrm_func_vf_resc_cfg(struct bnxt *bp, int num_vfs)
|
|||
|
||||
req.min_rsscos_ctx = cpu_to_le16(BNXT_VF_MIN_RSS_CTX);
|
||||
req.max_rsscos_ctx = cpu_to_le16(BNXT_VF_MAX_RSS_CTX);
|
||||
if (pf->vf_resv_strategy == BNXT_VF_RESV_STRATEGY_MINIMAL) {
|
||||
req.min_cmpl_rings = cpu_to_le16(1);
|
||||
req.min_tx_rings = cpu_to_le16(1);
|
||||
req.min_rx_rings = cpu_to_le16(1);
|
||||
req.min_l2_ctxs = cpu_to_le16(BNXT_VF_MIN_L2_CTX);
|
||||
req.min_vnics = cpu_to_le16(1);
|
||||
req.min_stat_ctx = cpu_to_le16(1);
|
||||
req.min_hw_ring_grps = cpu_to_le16(1);
|
||||
if (pf->vf_resv_strategy == BNXT_VF_RESV_STRATEGY_MINIMAL_STATIC) {
|
||||
min = 0;
|
||||
req.min_rsscos_ctx = cpu_to_le16(min);
|
||||
}
|
||||
if (pf->vf_resv_strategy == BNXT_VF_RESV_STRATEGY_MINIMAL ||
|
||||
pf->vf_resv_strategy == BNXT_VF_RESV_STRATEGY_MINIMAL_STATIC) {
|
||||
req.min_cmpl_rings = cpu_to_le16(min);
|
||||
req.min_tx_rings = cpu_to_le16(min);
|
||||
req.min_rx_rings = cpu_to_le16(min);
|
||||
req.min_l2_ctxs = cpu_to_le16(min);
|
||||
req.min_vnics = cpu_to_le16(min);
|
||||
req.min_stat_ctx = cpu_to_le16(min);
|
||||
req.min_hw_ring_grps = cpu_to_le16(min);
|
||||
} else {
|
||||
vf_cp_rings /= num_vfs;
|
||||
vf_tx_rings /= num_vfs;
|
||||
|
@ -618,7 +623,7 @@ static int bnxt_hwrm_func_cfg(struct bnxt *bp, int num_vfs)
|
|||
|
||||
static int bnxt_func_cfg(struct bnxt *bp, int num_vfs)
|
||||
{
|
||||
if (bp->flags & BNXT_FLAG_NEW_RM)
|
||||
if (BNXT_NEW_RM(bp))
|
||||
return bnxt_hwrm_func_vf_resc_cfg(bp, num_vfs);
|
||||
else
|
||||
return bnxt_hwrm_func_cfg(bp, num_vfs);
|
||||
|
|
|
@ -141,7 +141,7 @@ static int bnxt_req_msix_vecs(struct bnxt_en_dev *edev, int ulp_id,
|
|||
if (avail_msix > num_msix)
|
||||
avail_msix = num_msix;
|
||||
|
||||
if (bp->flags & BNXT_FLAG_NEW_RM) {
|
||||
if (BNXT_NEW_RM(bp)) {
|
||||
idx = bp->cp_nr_rings;
|
||||
} else {
|
||||
max_idx = min_t(int, bp->total_irqs, max_cp_rings);
|
||||
|
@ -162,7 +162,7 @@ static int bnxt_req_msix_vecs(struct bnxt_en_dev *edev, int ulp_id,
|
|||
return -EAGAIN;
|
||||
}
|
||||
|
||||
if (bp->flags & BNXT_FLAG_NEW_RM) {
|
||||
if (BNXT_NEW_RM(bp)) {
|
||||
struct bnxt_hw_resc *hw_resc = &bp->hw_resc;
|
||||
|
||||
avail_msix = hw_resc->resv_cp_rings - bp->cp_nr_rings;
|
||||
|
|
Loading…
Reference in New Issue