Commit b2612722 authored by Hariprasad Shenai's avatar Hariprasad Shenai Committed by David S. Miller

cxgb4/cxgb4vf: function and argument name cleanup

This patch changes variable name 'fn' to 'pf' of structure adapter.
A 'fn' usually stands for PCI function which could be a PF or a VF.
However, the use of this particular variable is explicitly limited to PF
only. So, be specific about it in the variable name.

Also corrects arguments passed for fn t4_ofld_eq_free, t4_ctrl_eq_free,
t4_eth_eq_free, t4_iq_free, t4_alloc_vi, t4_fw_hello, t4_wr_mbox and
t4_cfg_pfvf function.

Also renames cxgb4_t4_bar2_sge_qregs to t4_bar2_sge_qregs and renames
the latter function name in cxgb4vf driver to t4vf_bar2_sge_qregs to
avoid conflicts. Also fixes alignment for these function.
Signed-off-by: default avatarHariprasad Shenai <hariprasad@chelsio.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 5b377d11
...@@ -679,7 +679,7 @@ struct adapter { ...@@ -679,7 +679,7 @@ struct adapter {
struct pci_dev *pdev; struct pci_dev *pdev;
struct device *pdev_dev; struct device *pdev_dev;
unsigned int mbox; unsigned int mbox;
unsigned int fn; unsigned int pf;
unsigned int flags; unsigned int flags;
enum chip_type chip; enum chip_type chip;
...@@ -1221,7 +1221,7 @@ int t4_prep_fw(struct adapter *adap, struct fw_info *fw_info, ...@@ -1221,7 +1221,7 @@ int t4_prep_fw(struct adapter *adap, struct fw_info *fw_info,
int t4_prep_adapter(struct adapter *adapter); int t4_prep_adapter(struct adapter *adapter);
enum t4_bar2_qtype { T4_BAR2_QTYPE_EGRESS, T4_BAR2_QTYPE_INGRESS }; enum t4_bar2_qtype { T4_BAR2_QTYPE_EGRESS, T4_BAR2_QTYPE_INGRESS };
int cxgb4_t4_bar2_sge_qregs(struct adapter *adapter, int t4_bar2_sge_qregs(struct adapter *adapter,
unsigned int qid, unsigned int qid,
enum t4_bar2_qtype qtype, enum t4_bar2_qtype qtype,
u64 *pbar2_qoffset, u64 *pbar2_qoffset,
......
...@@ -1222,7 +1222,7 @@ static int sensors_show(struct seq_file *seq, void *v) ...@@ -1222,7 +1222,7 @@ static int sensors_show(struct seq_file *seq, void *v)
param[1] = (FW_PARAMS_MNEM_V(FW_PARAMS_MNEM_DEV) | param[1] = (FW_PARAMS_MNEM_V(FW_PARAMS_MNEM_DEV) |
FW_PARAMS_PARAM_X_V(FW_PARAMS_PARAM_DEV_DIAG) | FW_PARAMS_PARAM_X_V(FW_PARAMS_PARAM_DEV_DIAG) |
FW_PARAMS_PARAM_Y_V(FW_PARAM_DEV_DIAG_VDD)); FW_PARAMS_PARAM_Y_V(FW_PARAM_DEV_DIAG_VDD));
ret = t4_query_params(adap, adap->mbox, adap->fn, 0, 2, ret = t4_query_params(adap, adap->mbox, adap->pf, 0, 2,
param, val); param, val);
if (ret < 0 || val[0] == 0) if (ret < 0 || val[0] == 0)
......
...@@ -250,7 +250,7 @@ static int restart_autoneg(struct net_device *dev) ...@@ -250,7 +250,7 @@ static int restart_autoneg(struct net_device *dev)
return -EAGAIN; return -EAGAIN;
if (p->link_cfg.autoneg != AUTONEG_ENABLE) if (p->link_cfg.autoneg != AUTONEG_ENABLE)
return -EINVAL; return -EINVAL;
t4_restart_aneg(p->adapter, p->adapter->fn, p->tx_chan); t4_restart_aneg(p->adapter, p->adapter->pf, p->tx_chan);
return 0; return 0;
} }
...@@ -267,7 +267,7 @@ static int identify_port(struct net_device *dev, ...@@ -267,7 +267,7 @@ static int identify_port(struct net_device *dev,
else else
return -EINVAL; return -EINVAL;
return t4_identify_port(adap, adap->fn, netdev2pinfo(dev)->viid, val); return t4_identify_port(adap, adap->pf, netdev2pinfo(dev)->viid, val);
} }
static unsigned int from_fw_linkcaps(enum fw_port_type type, unsigned int caps) static unsigned int from_fw_linkcaps(enum fw_port_type type, unsigned int caps)
...@@ -439,7 +439,7 @@ static int set_settings(struct net_device *dev, struct ethtool_cmd *cmd) ...@@ -439,7 +439,7 @@ static int set_settings(struct net_device *dev, struct ethtool_cmd *cmd)
lc->autoneg = cmd->autoneg; lc->autoneg = cmd->autoneg;
if (netif_running(dev)) if (netif_running(dev))
return t4_link_start(p->adapter, p->adapter->fn, p->tx_chan, return t4_link_start(p->adapter, p->adapter->pf, p->tx_chan,
lc); lc);
return 0; return 0;
} }
...@@ -472,7 +472,7 @@ static int set_pauseparam(struct net_device *dev, ...@@ -472,7 +472,7 @@ static int set_pauseparam(struct net_device *dev,
if (epause->tx_pause) if (epause->tx_pause)
lc->requested_fc |= PAUSE_TX; lc->requested_fc |= PAUSE_TX;
if (netif_running(dev)) if (netif_running(dev))
return t4_link_start(p->adapter, p->adapter->fn, p->tx_chan, return t4_link_start(p->adapter, p->adapter->pf, p->tx_chan,
lc); lc);
return 0; return 0;
} }
...@@ -617,7 +617,7 @@ static int eeprom_ptov(unsigned int phys_addr, unsigned int fn, unsigned int sz) ...@@ -617,7 +617,7 @@ static int eeprom_ptov(unsigned int phys_addr, unsigned int fn, unsigned int sz)
*/ */
static int eeprom_rd_phys(struct adapter *adap, unsigned int phys_addr, u32 *v) static int eeprom_rd_phys(struct adapter *adap, unsigned int phys_addr, u32 *v)
{ {
int vaddr = eeprom_ptov(phys_addr, adap->fn, EEPROMPFSIZE); int vaddr = eeprom_ptov(phys_addr, adap->pf, EEPROMPFSIZE);
if (vaddr >= 0) if (vaddr >= 0)
vaddr = pci_read_vpd(adap->pdev, vaddr, sizeof(u32), v); vaddr = pci_read_vpd(adap->pdev, vaddr, sizeof(u32), v);
...@@ -626,7 +626,7 @@ static int eeprom_rd_phys(struct adapter *adap, unsigned int phys_addr, u32 *v) ...@@ -626,7 +626,7 @@ static int eeprom_rd_phys(struct adapter *adap, unsigned int phys_addr, u32 *v)
static int eeprom_wr_phys(struct adapter *adap, unsigned int phys_addr, u32 v) static int eeprom_wr_phys(struct adapter *adap, unsigned int phys_addr, u32 v)
{ {
int vaddr = eeprom_ptov(phys_addr, adap->fn, EEPROMPFSIZE); int vaddr = eeprom_ptov(phys_addr, adap->pf, EEPROMPFSIZE);
if (vaddr >= 0) if (vaddr >= 0)
vaddr = pci_write_vpd(adap->pdev, vaddr, sizeof(u32), &v); vaddr = pci_write_vpd(adap->pdev, vaddr, sizeof(u32), &v);
...@@ -669,8 +669,8 @@ static int set_eeprom(struct net_device *dev, struct ethtool_eeprom *eeprom, ...@@ -669,8 +669,8 @@ static int set_eeprom(struct net_device *dev, struct ethtool_eeprom *eeprom,
aligned_offset = eeprom->offset & ~3; aligned_offset = eeprom->offset & ~3;
aligned_len = (eeprom->len + (eeprom->offset & 3) + 3) & ~3; aligned_len = (eeprom->len + (eeprom->offset & 3) + 3) & ~3;
if (adapter->fn > 0) { if (adapter->pf > 0) {
u32 start = 1024 + adapter->fn * EEPROMPFSIZE; u32 start = 1024 + adapter->pf * EEPROMPFSIZE;
if (aligned_offset < start || if (aligned_offset < start ||
aligned_offset + aligned_len > start + EEPROMPFSIZE) aligned_offset + aligned_len > start + EEPROMPFSIZE)
......
...@@ -322,7 +322,7 @@ static void dcb_tx_queue_prio_enable(struct net_device *dev, int enable) ...@@ -322,7 +322,7 @@ static void dcb_tx_queue_prio_enable(struct net_device *dev, int enable)
* level") we need to issue the Set Parameters Commannd * level") we need to issue the Set Parameters Commannd
* without sleeping (timeout < 0). * without sleeping (timeout < 0).
*/ */
err = t4_set_params_timeout(adap, adap->mbox, adap->fn, 0, 1, err = t4_set_params_timeout(adap, adap->mbox, adap->pf, 0, 1,
&name, &value, &name, &value,
-FW_CMD_MAX_TIMEOUT); -FW_CMD_MAX_TIMEOUT);
...@@ -387,7 +387,7 @@ static int set_addr_filters(const struct net_device *dev, bool sleep) ...@@ -387,7 +387,7 @@ static int set_addr_filters(const struct net_device *dev, bool sleep)
int uc_cnt = netdev_uc_count(dev); int uc_cnt = netdev_uc_count(dev);
int mc_cnt = netdev_mc_count(dev); int mc_cnt = netdev_mc_count(dev);
const struct port_info *pi = netdev_priv(dev); const struct port_info *pi = netdev_priv(dev);
unsigned int mb = pi->adapter->fn; unsigned int mb = pi->adapter->pf;
/* first do the secondary unicast addresses */ /* first do the secondary unicast addresses */
netdev_for_each_uc_addr(ha, dev) { netdev_for_each_uc_addr(ha, dev) {
...@@ -444,7 +444,7 @@ static int set_rxmode(struct net_device *dev, int mtu, bool sleep_ok) ...@@ -444,7 +444,7 @@ static int set_rxmode(struct net_device *dev, int mtu, bool sleep_ok)
ret = set_addr_filters(dev, sleep_ok); ret = set_addr_filters(dev, sleep_ok);
if (ret == 0) if (ret == 0)
ret = t4_set_rxmode(pi->adapter, pi->adapter->fn, pi->viid, mtu, ret = t4_set_rxmode(pi->adapter, pi->adapter->pf, pi->viid, mtu,
(dev->flags & IFF_PROMISC) ? 1 : 0, (dev->flags & IFF_PROMISC) ? 1 : 0,
(dev->flags & IFF_ALLMULTI) ? 1 : 0, 1, -1, (dev->flags & IFF_ALLMULTI) ? 1 : 0, 1, -1,
sleep_ok); sleep_ok);
...@@ -461,7 +461,7 @@ static int link_start(struct net_device *dev) ...@@ -461,7 +461,7 @@ static int link_start(struct net_device *dev)
{ {
int ret; int ret;
struct port_info *pi = netdev_priv(dev); struct port_info *pi = netdev_priv(dev);
unsigned int mb = pi->adapter->fn; unsigned int mb = pi->adapter->pf;
/* /*
* We do not set address filters and promiscuity here, the stack does * We do not set address filters and promiscuity here, the stack does
...@@ -879,7 +879,7 @@ int cxgb4_write_rss(const struct port_info *pi, const u16 *queues) ...@@ -879,7 +879,7 @@ int cxgb4_write_rss(const struct port_info *pi, const u16 *queues)
for (i = 0; i < pi->rss_size; i++, queues++) for (i = 0; i < pi->rss_size; i++, queues++)
rss[i] = rxq[*queues].rspq.abs_id; rss[i] = rxq[*queues].rspq.abs_id;
err = t4_config_rss_range(adapter, adapter->fn, pi->viid, 0, err = t4_config_rss_range(adapter, adapter->pf, pi->viid, 0,
pi->rss_size, rss, pi->rss_size); pi->rss_size, rss, pi->rss_size);
/* If Tunnel All Lookup isn't specified in the global RSS /* If Tunnel All Lookup isn't specified in the global RSS
* Configuration, then we need to specify a default Ingress * Configuration, then we need to specify a default Ingress
...@@ -1416,8 +1416,8 @@ int cxgb4_set_rspq_intr_params(struct sge_rspq *q, ...@@ -1416,8 +1416,8 @@ int cxgb4_set_rspq_intr_params(struct sge_rspq *q,
FW_PARAMS_PARAM_X_V( FW_PARAMS_PARAM_X_V(
FW_PARAMS_PARAM_DMAQ_IQ_INTCNTTHRESH) | FW_PARAMS_PARAM_DMAQ_IQ_INTCNTTHRESH) |
FW_PARAMS_PARAM_YZ_V(q->cntxt_id); FW_PARAMS_PARAM_YZ_V(q->cntxt_id);
err = t4_set_params(adap, adap->fn, adap->fn, 0, 1, &v, err = t4_set_params(adap, adap->mbox, adap->pf, 0, 1,
&new_idx); &v, &new_idx);
if (err) if (err)
return err; return err;
} }
...@@ -1438,7 +1438,7 @@ static int cxgb_set_features(struct net_device *dev, netdev_features_t features) ...@@ -1438,7 +1438,7 @@ static int cxgb_set_features(struct net_device *dev, netdev_features_t features)
if (!(changed & NETIF_F_HW_VLAN_CTAG_RX)) if (!(changed & NETIF_F_HW_VLAN_CTAG_RX))
return 0; return 0;
err = t4_set_rxmode(pi->adapter, pi->adapter->fn, pi->viid, -1, err = t4_set_rxmode(pi->adapter, pi->adapter->pf, pi->viid, -1,
-1, -1, -1, -1, -1, -1,
!!(features & NETIF_F_HW_VLAN_CTAG_RX), true); !!(features & NETIF_F_HW_VLAN_CTAG_RX), true);
if (unlikely(err)) if (unlikely(err))
...@@ -2175,7 +2175,7 @@ int cxgb4_bar2_sge_qregs(struct net_device *dev, ...@@ -2175,7 +2175,7 @@ int cxgb4_bar2_sge_qregs(struct net_device *dev,
u64 *pbar2_qoffset, u64 *pbar2_qoffset,
unsigned int *pbar2_qid) unsigned int *pbar2_qid)
{ {
return cxgb4_t4_bar2_sge_qregs(netdev2adap(dev), return t4_bar2_sge_qregs(netdev2adap(dev),
qid, qid,
(qtype == CXGB4_BAR2_QTYPE_EGRESS (qtype == CXGB4_BAR2_QTYPE_EGRESS
? T4_BAR2_QTYPE_EGRESS ? T4_BAR2_QTYPE_EGRESS
...@@ -2377,7 +2377,7 @@ static void process_db_drop(struct work_struct *work) ...@@ -2377,7 +2377,7 @@ static void process_db_drop(struct work_struct *work)
unsigned int bar2_qid; unsigned int bar2_qid;
int ret; int ret;
ret = cxgb4_t4_bar2_sge_qregs(adap, qid, T4_BAR2_QTYPE_EGRESS, ret = t4_bar2_sge_qregs(adap, qid, T4_BAR2_QTYPE_EGRESS,
&bar2_qoffset, &bar2_qid); &bar2_qoffset, &bar2_qid);
if (ret) if (ret)
dev_err(adap->pdev_dev, "doorbell drop recovery: " dev_err(adap->pdev_dev, "doorbell drop recovery: "
...@@ -2420,7 +2420,7 @@ static void uld_attach(struct adapter *adap, unsigned int uld) ...@@ -2420,7 +2420,7 @@ static void uld_attach(struct adapter *adap, unsigned int uld)
unsigned short i; unsigned short i;
lli.pdev = adap->pdev; lli.pdev = adap->pdev;
lli.pf = adap->fn; lli.pf = adap->pf;
lli.l2t = adap->l2t; lli.l2t = adap->l2t;
lli.tids = &adap->tids; lli.tids = &adap->tids;
lli.ports = adap->port; lli.ports = adap->port;
...@@ -2757,7 +2757,7 @@ static int cxgb_close(struct net_device *dev) ...@@ -2757,7 +2757,7 @@ static int cxgb_close(struct net_device *dev)
netif_tx_stop_all_queues(dev); netif_tx_stop_all_queues(dev);
netif_carrier_off(dev); netif_carrier_off(dev);
return t4_enable_vi(adapter, adapter->fn, pi->viid, false, false); return t4_enable_vi(adapter, adapter->pf, pi->viid, false, false);
} }
/* Return an error number if the indicated filter isn't writable ... /* Return an error number if the indicated filter isn't writable ...
...@@ -2960,7 +2960,7 @@ static int cxgb_ioctl(struct net_device *dev, struct ifreq *req, int cmd) ...@@ -2960,7 +2960,7 @@ static int cxgb_ioctl(struct net_device *dev, struct ifreq *req, int cmd)
} else } else
return -EINVAL; return -EINVAL;
mbox = pi->adapter->fn; mbox = pi->adapter->pf;
if (cmd == SIOCGMIIREG) if (cmd == SIOCGMIIREG)
ret = t4_mdio_rd(pi->adapter, mbox, prtad, devad, ret = t4_mdio_rd(pi->adapter, mbox, prtad, devad,
data->reg_num, &data->val_out); data->reg_num, &data->val_out);
...@@ -2987,7 +2987,7 @@ static int cxgb_change_mtu(struct net_device *dev, int new_mtu) ...@@ -2987,7 +2987,7 @@ static int cxgb_change_mtu(struct net_device *dev, int new_mtu)
if (new_mtu < 81 || new_mtu > MAX_MTU) /* accommodate SACK */ if (new_mtu < 81 || new_mtu > MAX_MTU) /* accommodate SACK */
return -EINVAL; return -EINVAL;
ret = t4_set_rxmode(pi->adapter, pi->adapter->fn, pi->viid, new_mtu, -1, ret = t4_set_rxmode(pi->adapter, pi->adapter->pf, pi->viid, new_mtu, -1,
-1, -1, -1, true); -1, -1, -1, true);
if (!ret) if (!ret)
dev->mtu = new_mtu; dev->mtu = new_mtu;
...@@ -3003,7 +3003,7 @@ static int cxgb_set_mac_addr(struct net_device *dev, void *p) ...@@ -3003,7 +3003,7 @@ static int cxgb_set_mac_addr(struct net_device *dev, void *p)
if (!is_valid_ether_addr(addr->sa_data)) if (!is_valid_ether_addr(addr->sa_data))
return -EADDRNOTAVAIL; return -EADDRNOTAVAIL;
ret = t4_change_mac(pi->adapter, pi->adapter->fn, pi->viid, ret = t4_change_mac(pi->adapter, pi->adapter->pf, pi->viid,
pi->xact_addr_filt, addr->sa_data, true, true); pi->xact_addr_filt, addr->sa_data, true, true);
if (ret < 0) if (ret < 0)
return ret; return ret;
...@@ -3100,7 +3100,7 @@ static int adap_init1(struct adapter *adap, struct fw_caps_config_cmd *c) ...@@ -3100,7 +3100,7 @@ static int adap_init1(struct adapter *adap, struct fw_caps_config_cmd *c)
c->op_to_write = htonl(FW_CMD_OP_V(FW_CAPS_CONFIG_CMD) | c->op_to_write = htonl(FW_CMD_OP_V(FW_CAPS_CONFIG_CMD) |
FW_CMD_REQUEST_F | FW_CMD_READ_F); FW_CMD_REQUEST_F | FW_CMD_READ_F);
c->cfvalid_to_len16 = htonl(FW_LEN16(*c)); c->cfvalid_to_len16 = htonl(FW_LEN16(*c));
ret = t4_wr_mbox(adap, adap->fn, c, sizeof(*c), c); ret = t4_wr_mbox(adap, adap->mbox, c, sizeof(*c), c);
if (ret < 0) if (ret < 0)
return ret; return ret;
...@@ -3116,18 +3116,18 @@ static int adap_init1(struct adapter *adap, struct fw_caps_config_cmd *c) ...@@ -3116,18 +3116,18 @@ static int adap_init1(struct adapter *adap, struct fw_caps_config_cmd *c)
} }
c->op_to_write = htonl(FW_CMD_OP_V(FW_CAPS_CONFIG_CMD) | c->op_to_write = htonl(FW_CMD_OP_V(FW_CAPS_CONFIG_CMD) |
FW_CMD_REQUEST_F | FW_CMD_WRITE_F); FW_CMD_REQUEST_F | FW_CMD_WRITE_F);
ret = t4_wr_mbox(adap, adap->fn, c, sizeof(*c), NULL); ret = t4_wr_mbox(adap, adap->mbox, c, sizeof(*c), NULL);
if (ret < 0) if (ret < 0)
return ret; return ret;
ret = t4_config_glbl_rss(adap, adap->fn, ret = t4_config_glbl_rss(adap, adap->pf,
FW_RSS_GLB_CONFIG_CMD_MODE_BASICVIRTUAL, FW_RSS_GLB_CONFIG_CMD_MODE_BASICVIRTUAL,
FW_RSS_GLB_CONFIG_CMD_TNLMAPEN_F | FW_RSS_GLB_CONFIG_CMD_TNLMAPEN_F |
FW_RSS_GLB_CONFIG_CMD_TNLALLLKP_F); FW_RSS_GLB_CONFIG_CMD_TNLALLLKP_F);
if (ret < 0) if (ret < 0)
return ret; return ret;
ret = t4_cfg_pfvf(adap, adap->fn, adap->fn, 0, adap->sge.egr_sz, 64, ret = t4_cfg_pfvf(adap, adap->mbox, adap->pf, 0, adap->sge.egr_sz, 64,
MAX_INGQ, 0, 0, 4, 0xf, 0xf, 16, FW_CMD_CAP_PF, MAX_INGQ, 0, 0, 4, 0xf, 0xf, 16, FW_CMD_CAP_PF,
FW_CMD_CAP_PF); FW_CMD_CAP_PF);
if (ret < 0) if (ret < 0)
...@@ -3171,7 +3171,7 @@ static int adap_init1(struct adapter *adap, struct fw_caps_config_cmd *c) ...@@ -3171,7 +3171,7 @@ static int adap_init1(struct adapter *adap, struct fw_caps_config_cmd *c)
} }
/* get basic stuff going */ /* get basic stuff going */
return t4_early_init(adap, adap->fn); return t4_early_init(adap, adap->pf);
} }
/* /*
...@@ -3434,7 +3434,7 @@ static int adap_init0_config(struct adapter *adapter, int reset) ...@@ -3434,7 +3434,7 @@ static int adap_init0_config(struct adapter *adapter, int reset)
params[0] = (FW_PARAMS_MNEM_V(FW_PARAMS_MNEM_DEV) | params[0] = (FW_PARAMS_MNEM_V(FW_PARAMS_MNEM_DEV) |
FW_PARAMS_PARAM_X_V(FW_PARAMS_PARAM_DEV_CF)); FW_PARAMS_PARAM_X_V(FW_PARAMS_PARAM_DEV_CF));
ret = t4_query_params(adapter, adapter->mbox, ret = t4_query_params(adapter, adapter->mbox,
adapter->fn, 0, 1, params, val); adapter->pf, 0, 1, params, val);
if (ret == 0) { if (ret == 0) {
/* /*
* For t4_memory_rw() below addresses and * For t4_memory_rw() below addresses and
...@@ -3723,7 +3723,7 @@ static int adap_init0(struct adapter *adap) ...@@ -3723,7 +3723,7 @@ static int adap_init0(struct adapter *adap)
v = v =
FW_PARAMS_MNEM_V(FW_PARAMS_MNEM_DEV) | FW_PARAMS_MNEM_V(FW_PARAMS_MNEM_DEV) |
FW_PARAMS_PARAM_X_V(FW_PARAMS_PARAM_DEV_PORTVEC); FW_PARAMS_PARAM_X_V(FW_PARAMS_PARAM_DEV_PORTVEC);
ret = t4_query_params(adap, adap->mbox, adap->fn, 0, 1, &v, &port_vec); ret = t4_query_params(adap, adap->mbox, adap->pf, 0, 1, &v, &port_vec);
if (ret < 0) if (ret < 0)
goto bye; goto bye;
...@@ -3746,7 +3746,7 @@ static int adap_init0(struct adapter *adap) ...@@ -3746,7 +3746,7 @@ static int adap_init0(struct adapter *adap)
*/ */
params[0] = (FW_PARAMS_MNEM_V(FW_PARAMS_MNEM_DEV) | params[0] = (FW_PARAMS_MNEM_V(FW_PARAMS_MNEM_DEV) |
FW_PARAMS_PARAM_X_V(FW_PARAMS_PARAM_DEV_CF)); FW_PARAMS_PARAM_X_V(FW_PARAMS_PARAM_DEV_CF));
ret = t4_query_params(adap, adap->mbox, adap->fn, 0, 1, ret = t4_query_params(adap, adap->mbox, adap->pf, 0, 1,
params, val); params, val);
/* If the firmware doesn't support Configuration Files, /* If the firmware doesn't support Configuration Files,
...@@ -3805,7 +3805,7 @@ static int adap_init0(struct adapter *adap) ...@@ -3805,7 +3805,7 @@ static int adap_init0(struct adapter *adap)
params[3] = FW_PARAM_PFVF(FILTER_START); params[3] = FW_PARAM_PFVF(FILTER_START);
params[4] = FW_PARAM_PFVF(FILTER_END); params[4] = FW_PARAM_PFVF(FILTER_END);
params[5] = FW_PARAM_PFVF(IQFLINT_START); params[5] = FW_PARAM_PFVF(IQFLINT_START);
ret = t4_query_params(adap, adap->mbox, adap->fn, 0, 6, params, val); ret = t4_query_params(adap, adap->mbox, adap->pf, 0, 6, params, val);
if (ret < 0) if (ret < 0)
goto bye; goto bye;
adap->sge.egr_start = val[0]; adap->sge.egr_start = val[0];
...@@ -3823,7 +3823,7 @@ static int adap_init0(struct adapter *adap) ...@@ -3823,7 +3823,7 @@ static int adap_init0(struct adapter *adap)
*/ */
params[0] = FW_PARAM_PFVF(EQ_END); params[0] = FW_PARAM_PFVF(EQ_END);
params[1] = FW_PARAM_PFVF(IQFLINT_END); params[1] = FW_PARAM_PFVF(IQFLINT_END);
ret = t4_query_params(adap, adap->mbox, adap->fn, 0, 2, params, val); ret = t4_query_params(adap, adap->mbox, adap->pf, 0, 2, params, val);
if (ret < 0) if (ret < 0)
goto bye; goto bye;
adap->sge.egr_sz = val[0] - adap->sge.egr_start + 1; adap->sge.egr_sz = val[0] - adap->sge.egr_start + 1;
...@@ -3871,7 +3871,7 @@ static int adap_init0(struct adapter *adap) ...@@ -3871,7 +3871,7 @@ static int adap_init0(struct adapter *adap)
params[0] = FW_PARAM_PFVF(CLIP_START); params[0] = FW_PARAM_PFVF(CLIP_START);
params[1] = FW_PARAM_PFVF(CLIP_END); params[1] = FW_PARAM_PFVF(CLIP_END);
ret = t4_query_params(adap, adap->mbox, adap->fn, 0, 2, params, val); ret = t4_query_params(adap, adap->mbox, adap->pf, 0, 2, params, val);
if (ret < 0) if (ret < 0)
goto bye; goto bye;
adap->clipt_start = val[0]; adap->clipt_start = val[0];
...@@ -3880,7 +3880,7 @@ static int adap_init0(struct adapter *adap) ...@@ -3880,7 +3880,7 @@ static int adap_init0(struct adapter *adap)
/* query params related to active filter region */ /* query params related to active filter region */
params[0] = FW_PARAM_PFVF(ACTIVE_FILTER_START); params[0] = FW_PARAM_PFVF(ACTIVE_FILTER_START);
params[1] = FW_PARAM_PFVF(ACTIVE_FILTER_END); params[1] = FW_PARAM_PFVF(ACTIVE_FILTER_END);
ret = t4_query_params(adap, adap->mbox, adap->fn, 0, 2, params, val); ret = t4_query_params(adap, adap->mbox, adap->pf, 0, 2, params, val);
/* If Active filter size is set we enable establishing /* If Active filter size is set we enable establishing
* offload connection through firmware work request * offload connection through firmware work request
*/ */
...@@ -3897,7 +3897,7 @@ static int adap_init0(struct adapter *adap) ...@@ -3897,7 +3897,7 @@ static int adap_init0(struct adapter *adap)
*/ */
params[0] = FW_PARAM_PFVF(CPLFW4MSG_ENCAP); params[0] = FW_PARAM_PFVF(CPLFW4MSG_ENCAP);
val[0] = 1; val[0] = 1;
(void) t4_set_params(adap, adap->mbox, adap->fn, 0, 1, params, val); (void)t4_set_params(adap, adap->mbox, adap->pf, 0, 1, params, val);
/* /*
* Find out whether we're allowed to use the T5+ ULPTX MEMWRITE DSGL * Find out whether we're allowed to use the T5+ ULPTX MEMWRITE DSGL
...@@ -3909,7 +3909,7 @@ static int adap_init0(struct adapter *adap) ...@@ -3909,7 +3909,7 @@ static int adap_init0(struct adapter *adap)
adap->params.ulptx_memwrite_dsgl = false; adap->params.ulptx_memwrite_dsgl = false;
} else { } else {
params[0] = FW_PARAM_DEV(ULPTX_MEMWRITE_DSGL); params[0] = FW_PARAM_DEV(ULPTX_MEMWRITE_DSGL);
ret = t4_query_params(adap, adap->mbox, adap->fn, 0, ret = t4_query_params(adap, adap->mbox, adap->pf, 0,
1, params, val); 1, params, val);
adap->params.ulptx_memwrite_dsgl = (ret == 0 && val[0] != 0); adap->params.ulptx_memwrite_dsgl = (ret == 0 && val[0] != 0);
} }
...@@ -3935,7 +3935,7 @@ static int adap_init0(struct adapter *adap) ...@@ -3935,7 +3935,7 @@ static int adap_init0(struct adapter *adap)
params[3] = FW_PARAM_PFVF(TDDP_START); params[3] = FW_PARAM_PFVF(TDDP_START);
params[4] = FW_PARAM_PFVF(TDDP_END); params[4] = FW_PARAM_PFVF(TDDP_END);
params[5] = FW_PARAM_DEV(FLOWC_BUFFIFO_SZ); params[5] = FW_PARAM_DEV(FLOWC_BUFFIFO_SZ);
ret = t4_query_params(adap, adap->mbox, adap->fn, 0, 6, ret = t4_query_params(adap, adap->mbox, adap->pf, 0, 6,
params, val); params, val);
if (ret < 0) if (ret < 0)
goto bye; goto bye;
...@@ -3973,7 +3973,7 @@ static int adap_init0(struct adapter *adap) ...@@ -3973,7 +3973,7 @@ static int adap_init0(struct adapter *adap)
params[3] = FW_PARAM_PFVF(RQ_END); params[3] = FW_PARAM_PFVF(RQ_END);
params[4] = FW_PARAM_PFVF(PBL_START); params[4] = FW_PARAM_PFVF(PBL_START);
params[5] = FW_PARAM_PFVF(PBL_END); params[5] = FW_PARAM_PFVF(PBL_END);
ret = t4_query_params(adap, adap->mbox, adap->fn, 0, 6, ret = t4_query_params(adap, adap->mbox, adap->pf, 0, 6,
params, val); params, val);
if (ret < 0) if (ret < 0)
goto bye; goto bye;
...@@ -3990,7 +3990,7 @@ static int adap_init0(struct adapter *adap) ...@@ -3990,7 +3990,7 @@ static int adap_init0(struct adapter *adap)
params[3] = FW_PARAM_PFVF(CQ_END); params[3] = FW_PARAM_PFVF(CQ_END);
params[4] = FW_PARAM_PFVF(OCQ_START); params[4] = FW_PARAM_PFVF(OCQ_START);
params[5] = FW_PARAM_PFVF(OCQ_END); params[5] = FW_PARAM_PFVF(OCQ_END);
ret = t4_query_params(adap, adap->mbox, adap->fn, 0, 6, params, ret = t4_query_params(adap, adap->mbox, adap->pf, 0, 6, params,
val); val);
if (ret < 0) if (ret < 0)
goto bye; goto bye;
...@@ -4003,7 +4003,7 @@ static int adap_init0(struct adapter *adap) ...@@ -4003,7 +4003,7 @@ static int adap_init0(struct adapter *adap)
params[0] = FW_PARAM_DEV(MAXORDIRD_QP); params[0] = FW_PARAM_DEV(MAXORDIRD_QP);
params[1] = FW_PARAM_DEV(MAXIRD_ADAPTER); params[1] = FW_PARAM_DEV(MAXIRD_ADAPTER);
ret = t4_query_params(adap, adap->mbox, adap->fn, 0, 2, params, ret = t4_query_params(adap, adap->mbox, adap->pf, 0, 2, params,
val); val);
if (ret < 0) { if (ret < 0) {
adap->params.max_ordird_qp = 8; adap->params.max_ordird_qp = 8;
...@@ -4021,7 +4021,7 @@ static int adap_init0(struct adapter *adap) ...@@ -4021,7 +4021,7 @@ static int adap_init0(struct adapter *adap)
if (caps_cmd.iscsicaps) { if (caps_cmd.iscsicaps) {
params[0] = FW_PARAM_PFVF(ISCSI_START); params[0] = FW_PARAM_PFVF(ISCSI_START);
params[1] = FW_PARAM_PFVF(ISCSI_END); params[1] = FW_PARAM_PFVF(ISCSI_END);
ret = t4_query_params(adap, adap->mbox, adap->fn, 0, 2, ret = t4_query_params(adap, adap->mbox, adap->pf, 0, 2,
params, val); params, val);
if (ret < 0) if (ret < 0)
goto bye; goto bye;
...@@ -4151,7 +4151,7 @@ static pci_ers_result_t eeh_slot_reset(struct pci_dev *pdev) ...@@ -4151,7 +4151,7 @@ static pci_ers_result_t eeh_slot_reset(struct pci_dev *pdev)
if (t4_wait_dev_ready(adap->regs) < 0) if (t4_wait_dev_ready(adap->regs) < 0)
return PCI_ERS_RESULT_DISCONNECT; return PCI_ERS_RESULT_DISCONNECT;
if (t4_fw_hello(adap, adap->fn, adap->fn, MASTER_MUST, NULL) < 0) if (t4_fw_hello(adap, adap->mbox, adap->pf, MASTER_MUST, NULL) < 0)
return PCI_ERS_RESULT_DISCONNECT; return PCI_ERS_RESULT_DISCONNECT;
adap->flags |= FW_OK; adap->flags |= FW_OK;
if (adap_init1(adap, &c)) if (adap_init1(adap, &c))
...@@ -4160,7 +4160,7 @@ static pci_ers_result_t eeh_slot_reset(struct pci_dev *pdev) ...@@ -4160,7 +4160,7 @@ static pci_ers_result_t eeh_slot_reset(struct pci_dev *pdev)
for_each_port(adap, i) { for_each_port(adap, i) {
struct port_info *p = adap2pinfo(adap, i); struct port_info *p = adap2pinfo(adap, i);
ret = t4_alloc_vi(adap, adap->fn, p->tx_chan, adap->fn, 0, 1, ret = t4_alloc_vi(adap, adap->mbox, p->tx_chan, adap->pf, 0, 1,
NULL, NULL); NULL, NULL);
if (ret < 0) if (ret < 0)
return PCI_ERS_RESULT_DISCONNECT; return PCI_ERS_RESULT_DISCONNECT;
...@@ -4538,7 +4538,7 @@ static void free_some_resources(struct adapter *adapter) ...@@ -4538,7 +4538,7 @@ static void free_some_resources(struct adapter *adapter)
free_netdev(adapter->port[i]); free_netdev(adapter->port[i]);
} }
if (adapter->flags & FW_OK) if (adapter->flags & FW_OK)
t4_fw_bye(adapter, adapter->fn); t4_fw_bye(adapter, adapter->pf);
} }
#define TSO_FLAGS (NETIF_F_TSO | NETIF_F_TSO6 | NETIF_F_TSO_ECN) #define TSO_FLAGS (NETIF_F_TSO | NETIF_F_TSO6 | NETIF_F_TSO_ECN)
...@@ -4629,7 +4629,7 @@ static int init_one(struct pci_dev *pdev, const struct pci_device_id *ent) ...@@ -4629,7 +4629,7 @@ static int init_one(struct pci_dev *pdev, const struct pci_device_id *ent)
adapter->pdev = pdev; adapter->pdev = pdev;
adapter->pdev_dev = &pdev->dev; adapter->pdev_dev = &pdev->dev;
adapter->mbox = func; adapter->mbox = func;
adapter->fn = func; adapter->pf = func;
adapter->msg_enable = dflt_msg_enable; adapter->msg_enable = dflt_msg_enable;
memset(adapter->chan_map, 0xff, sizeof(adapter->chan_map)); memset(adapter->chan_map, 0xff, sizeof(adapter->chan_map));
...@@ -4649,7 +4649,7 @@ static int init_one(struct pci_dev *pdev, const struct pci_device_id *ent) ...@@ -4649,7 +4649,7 @@ static int init_one(struct pci_dev *pdev, const struct pci_device_id *ent)
if (!is_t4(adapter->params.chip)) { if (!is_t4(adapter->params.chip)) {
s_qpp = (QUEUESPERPAGEPF0_S + s_qpp = (QUEUESPERPAGEPF0_S +
(QUEUESPERPAGEPF1_S - QUEUESPERPAGEPF0_S) * (QUEUESPERPAGEPF1_S - QUEUESPERPAGEPF0_S) *
adapter->fn); adapter->pf);
qpp = 1 << QUEUESPERPAGEPF0_G(t4_read_reg(adapter, qpp = 1 << QUEUESPERPAGEPF0_G(t4_read_reg(adapter,
SGE_EGRESS_QUEUES_PER_PAGE_PF_A) >> s_qpp); SGE_EGRESS_QUEUES_PER_PAGE_PF_A) >> s_qpp);
num_seg = PAGE_SIZE / SEGMENT_SIZE; num_seg = PAGE_SIZE / SEGMENT_SIZE;
......
...@@ -1265,7 +1265,7 @@ out_free: dev_kfree_skb_any(skb); ...@@ -1265,7 +1265,7 @@ out_free: dev_kfree_skb_any(skb);
cpl->ctrl0 = htonl(TXPKT_OPCODE_V(CPL_TX_PKT_XT) | cpl->ctrl0 = htonl(TXPKT_OPCODE_V(CPL_TX_PKT_XT) |
TXPKT_INTF_V(pi->tx_chan) | TXPKT_INTF_V(pi->tx_chan) |
TXPKT_PF_V(adap->fn)); TXPKT_PF_V(adap->pf));
cpl->pack = htons(0); cpl->pack = htons(0);
cpl->len = htons(skb->len); cpl->len = htons(skb->len);
cpl->ctrl1 = cpu_to_be64(cntrl); cpl->ctrl1 = cpu_to_be64(cntrl);
...@@ -2390,7 +2390,7 @@ static void __iomem *bar2_address(struct adapter *adapter, ...@@ -2390,7 +2390,7 @@ static void __iomem *bar2_address(struct adapter *adapter,
u64 bar2_qoffset; u64 bar2_qoffset;
int ret; int ret;
ret = cxgb4_t4_bar2_sge_qregs(adapter, qid, qtype, ret = t4_bar2_sge_qregs(adapter, qid, qtype,
&bar2_qoffset, pbar2_qid); &bar2_qoffset, pbar2_qid);
if (ret) if (ret)
return NULL; return NULL;
...@@ -2421,7 +2421,7 @@ int t4_sge_alloc_rxq(struct adapter *adap, struct sge_rspq *iq, bool fwevtq, ...@@ -2421,7 +2421,7 @@ int t4_sge_alloc_rxq(struct adapter *adap, struct sge_rspq *iq, bool fwevtq,
memset(&c, 0, sizeof(c)); memset(&c, 0, sizeof(c));
c.op_to_vfn = htonl(FW_CMD_OP_V(FW_IQ_CMD) | FW_CMD_REQUEST_F | c.op_to_vfn = htonl(FW_CMD_OP_V(FW_IQ_CMD) | FW_CMD_REQUEST_F |
FW_CMD_WRITE_F | FW_CMD_EXEC_F | FW_CMD_WRITE_F | FW_CMD_EXEC_F |
FW_IQ_CMD_PFN_V(adap->fn) | FW_IQ_CMD_VFN_V(0)); FW_IQ_CMD_PFN_V(adap->pf) | FW_IQ_CMD_VFN_V(0));
c.alloc_to_len16 = htonl(FW_IQ_CMD_ALLOC_F | FW_IQ_CMD_IQSTART_F | c.alloc_to_len16 = htonl(FW_IQ_CMD_ALLOC_F | FW_IQ_CMD_IQSTART_F |
FW_LEN16(c)); FW_LEN16(c));
c.type_to_iqandstindex = htonl(FW_IQ_CMD_TYPE_V(FW_IQ_TYPE_FL_INT_CAP) | c.type_to_iqandstindex = htonl(FW_IQ_CMD_TYPE_V(FW_IQ_TYPE_FL_INT_CAP) |
...@@ -2473,7 +2473,7 @@ int t4_sge_alloc_rxq(struct adapter *adap, struct sge_rspq *iq, bool fwevtq, ...@@ -2473,7 +2473,7 @@ int t4_sge_alloc_rxq(struct adapter *adap, struct sge_rspq *iq, bool fwevtq,
c.fl0addr = cpu_to_be64(fl->addr); c.fl0addr = cpu_to_be64(fl->addr);
} }
ret = t4_wr_mbox(adap, adap->fn, &c, sizeof(c), &c); ret = t4_wr_mbox(adap, adap->mbox, &c, sizeof(c), &c);
if (ret) if (ret)
goto err; goto err;
...@@ -2541,7 +2541,7 @@ int t4_sge_alloc_rxq(struct adapter *adap, struct sge_rspq *iq, bool fwevtq, ...@@ -2541,7 +2541,7 @@ int t4_sge_alloc_rxq(struct adapter *adap, struct sge_rspq *iq, bool fwevtq,
CONMCTXT_CNGCHMAP_V(1 << (i << 2)); CONMCTXT_CNGCHMAP_V(1 << (i << 2));
} }
} }
ret = t4_set_params(adap, adap->mbox, adap->fn, 0, 1, ret = t4_set_params(adap, adap->mbox, adap->pf, 0, 1,
&param, &val); &param, &val);
if (ret) if (ret)
dev_warn(adap->pdev_dev, "Failed to set Congestion" dev_warn(adap->pdev_dev, "Failed to set Congestion"
...@@ -2606,7 +2606,7 @@ int t4_sge_alloc_eth_txq(struct adapter *adap, struct sge_eth_txq *txq, ...@@ -2606,7 +2606,7 @@ int t4_sge_alloc_eth_txq(struct adapter *adap, struct sge_eth_txq *txq,
memset(&c, 0, sizeof(c)); memset(&c, 0, sizeof(c));
c.op_to_vfn = htonl(FW_CMD_OP_V(FW_EQ_ETH_CMD) | FW_CMD_REQUEST_F | c.op_to_vfn = htonl(FW_CMD_OP_V(FW_EQ_ETH_CMD) | FW_CMD_REQUEST_F |
FW_CMD_WRITE_F | FW_CMD_EXEC_F | FW_CMD_WRITE_F | FW_CMD_EXEC_F |
FW_EQ_ETH_CMD_PFN_V(adap->fn) | FW_EQ_ETH_CMD_PFN_V(adap->pf) |
FW_EQ_ETH_CMD_VFN_V(0)); FW_EQ_ETH_CMD_VFN_V(0));
c.alloc_to_len16 = htonl(FW_EQ_ETH_CMD_ALLOC_F | c.alloc_to_len16 = htonl(FW_EQ_ETH_CMD_ALLOC_F |
FW_EQ_ETH_CMD_EQSTART_F | FW_LEN16(c)); FW_EQ_ETH_CMD_EQSTART_F | FW_LEN16(c));
...@@ -2623,7 +2623,7 @@ int t4_sge_alloc_eth_txq(struct adapter *adap, struct sge_eth_txq *txq, ...@@ -2623,7 +2623,7 @@ int t4_sge_alloc_eth_txq(struct adapter *adap, struct sge_eth_txq *txq,
FW_EQ_ETH_CMD_EQSIZE_V(nentries)); FW_EQ_ETH_CMD_EQSIZE_V(nentries));
c.eqaddr = cpu_to_be64(txq->q.phys_addr); c.eqaddr = cpu_to_be64(txq->q.phys_addr);
ret = t4_wr_mbox(adap, adap->fn, &c, sizeof(c), &c); ret = t4_wr_mbox(adap, adap->mbox, &c, sizeof(c), &c);
if (ret) { if (ret) {
kfree(txq->q.sdesc); kfree(txq->q.sdesc);
txq->q.sdesc = NULL; txq->q.sdesc = NULL;
...@@ -2661,7 +2661,7 @@ int t4_sge_alloc_ctrl_txq(struct adapter *adap, struct sge_ctrl_txq *txq, ...@@ -2661,7 +2661,7 @@ int t4_sge_alloc_ctrl_txq(struct adapter *adap, struct sge_ctrl_txq *txq,
c.op_to_vfn = htonl(FW_CMD_OP_V(FW_EQ_CTRL_CMD) | FW_CMD_REQUEST_F | c.op_to_vfn = htonl(FW_CMD_OP_V(FW_EQ_CTRL_CMD) | FW_CMD_REQUEST_F |
FW_CMD_WRITE_F | FW_CMD_EXEC_F | FW_CMD_WRITE_F | FW_CMD_EXEC_F |
FW_EQ_CTRL_CMD_PFN_V(adap->fn) | FW_EQ_CTRL_CMD_PFN_V(adap->pf) |
FW_EQ_CTRL_CMD_VFN_V(0)); FW_EQ_CTRL_CMD_VFN_V(0));
c.alloc_to_len16 = htonl(FW_EQ_CTRL_CMD_ALLOC_F | c.alloc_to_len16 = htonl(FW_EQ_CTRL_CMD_ALLOC_F |
FW_EQ_CTRL_CMD_EQSTART_F | FW_LEN16(c)); FW_EQ_CTRL_CMD_EQSTART_F | FW_LEN16(c));
...@@ -2678,7 +2678,7 @@ int t4_sge_alloc_ctrl_txq(struct adapter *adap, struct sge_ctrl_txq *txq, ...@@ -2678,7 +2678,7 @@ int t4_sge_alloc_ctrl_txq(struct adapter *adap, struct sge_ctrl_txq *txq,
FW_EQ_CTRL_CMD_EQSIZE_V(nentries)); FW_EQ_CTRL_CMD_EQSIZE_V(nentries));
c.eqaddr = cpu_to_be64(txq->q.phys_addr); c.eqaddr = cpu_to_be64(txq->q.phys_addr);
ret = t4_wr_mbox(adap, adap->fn, &c, sizeof(c), &c); ret = t4_wr_mbox(adap, adap->mbox, &c, sizeof(c), &c);
if (ret) { if (ret) {
dma_free_coherent(adap->pdev_dev, dma_free_coherent(adap->pdev_dev,
nentries * sizeof(struct tx_desc), nentries * sizeof(struct tx_desc),
...@@ -2716,7 +2716,7 @@ int t4_sge_alloc_ofld_txq(struct adapter *adap, struct sge_ofld_txq *txq, ...@@ -2716,7 +2716,7 @@ int t4_sge_alloc_ofld_txq(struct adapter *adap, struct sge_ofld_txq *txq,
memset(&c, 0, sizeof(c)); memset(&c, 0, sizeof(c));
c.op_to_vfn = htonl(FW_CMD_OP_V(FW_EQ_OFLD_CMD) | FW_CMD_REQUEST_F | c.op_to_vfn = htonl(FW_CMD_OP_V(FW_EQ_OFLD_CMD) | FW_CMD_REQUEST_F |
FW_CMD_WRITE_F | FW_CMD_EXEC_F | FW_CMD_WRITE_F | FW_CMD_EXEC_F |
FW_EQ_OFLD_CMD_PFN_V(adap->fn) | FW_EQ_OFLD_CMD_PFN_V(adap->pf) |
FW_EQ_OFLD_CMD_VFN_V(0)); FW_EQ_OFLD_CMD_VFN_V(0));
c.alloc_to_len16 = htonl(FW_EQ_OFLD_CMD_ALLOC_F | c.alloc_to_len16 = htonl(FW_EQ_OFLD_CMD_ALLOC_F |
FW_EQ_OFLD_CMD_EQSTART_F | FW_LEN16(c)); FW_EQ_OFLD_CMD_EQSTART_F | FW_LEN16(c));
...@@ -2731,7 +2731,7 @@ int t4_sge_alloc_ofld_txq(struct adapter *adap, struct sge_ofld_txq *txq, ...@@ -2731,7 +2731,7 @@ int t4_sge_alloc_ofld_txq(struct adapter *adap, struct sge_ofld_txq *txq,
FW_EQ_OFLD_CMD_EQSIZE_V(nentries)); FW_EQ_OFLD_CMD_EQSIZE_V(nentries));
c.eqaddr = cpu_to_be64(txq->q.phys_addr); c.eqaddr = cpu_to_be64(txq->q.phys_addr);
ret = t4_wr_mbox(adap, adap->fn, &c, sizeof(c), &c); ret = t4_wr_mbox(adap, adap->mbox, &c, sizeof(c), &c);
if (ret) { if (ret) {
kfree(txq->q.sdesc); kfree(txq->q.sdesc);
txq->q.sdesc = NULL; txq->q.sdesc = NULL;
...@@ -2770,7 +2770,7 @@ static void free_rspq_fl(struct adapter *adap, struct sge_rspq *rq, ...@@ -2770,7 +2770,7 @@ static void free_rspq_fl(struct adapter *adap, struct sge_rspq *rq,
unsigned int fl_id = fl ? fl->cntxt_id : 0xffff; unsigned int fl_id = fl ? fl->cntxt_id : 0xffff;
adap->sge.ingr_map[rq->cntxt_id - adap->sge.ingr_start] = NULL; adap->sge.ingr_map[rq->cntxt_id - adap->sge.ingr_start] = NULL;
t4_iq_free(adap, adap->fn, adap->fn, 0, FW_IQ_TYPE_FL_INT_CAP, t4_iq_free(adap, adap->mbox, adap->pf, 0, FW_IQ_TYPE_FL_INT_CAP,
rq->cntxt_id, fl_id, 0xffff); rq->cntxt_id, fl_id, 0xffff);
dma_free_coherent(adap->pdev_dev, (rq->size + 1) * rq->iqe_len, dma_free_coherent(adap->pdev_dev, (rq->size + 1) * rq->iqe_len,
rq->desc, rq->phys_addr); rq->desc, rq->phys_addr);
...@@ -2825,7 +2825,7 @@ void t4_free_sge_resources(struct adapter *adap) ...@@ -2825,7 +2825,7 @@ void t4_free_sge_resources(struct adapter *adap)
free_rspq_fl(adap, &eq->rspq, free_rspq_fl(adap, &eq->rspq,
eq->fl.size ? &eq->fl : NULL); eq->fl.size ? &eq->fl : NULL);
if (etq->q.desc) { if (etq->q.desc) {
t4_eth_eq_free(adap, adap->fn, adap->fn, 0, t4_eth_eq_free(adap, adap->mbox, adap->pf, 0,
etq->q.cntxt_id); etq->q.cntxt_id);
free_tx_desc(adap, &etq->q, etq->q.in_use, true); free_tx_desc(adap, &etq->q, etq->q.in_use, true);
kfree(etq->q.sdesc); kfree(etq->q.sdesc);
...@@ -2844,7 +2844,7 @@ void t4_free_sge_resources(struct adapter *adap) ...@@ -2844,7 +2844,7 @@ void t4_free_sge_resources(struct adapter *adap)
if (q->q.desc) { if (q->q.desc) {
tasklet_kill(&q->qresume_tsk); tasklet_kill(&q->qresume_tsk);
t4_ofld_eq_free(adap, adap->fn, adap->fn, 0, t4_ofld_eq_free(adap, adap->mbox, adap->pf, 0,
q->q.cntxt_id); q->q.cntxt_id);
free_tx_desc(adap, &q->q, q->q.in_use, false); free_tx_desc(adap, &q->q, q->q.in_use, false);
kfree(q->q.sdesc); kfree(q->q.sdesc);
...@@ -2859,7 +2859,7 @@ void t4_free_sge_resources(struct adapter *adap) ...@@ -2859,7 +2859,7 @@ void t4_free_sge_resources(struct adapter *adap)
if (cq->q.desc) { if (cq->q.desc) {
tasklet_kill(&cq->qresume_tsk); tasklet_kill(&cq->qresume_tsk);
t4_ctrl_eq_free(adap, adap->fn, adap->fn, 0, t4_ctrl_eq_free(adap, adap->mbox, adap->pf, 0,
cq->q.cntxt_id); cq->q.cntxt_id);
__skb_queue_purge(&cq->sendq); __skb_queue_purge(&cq->sendq);
free_txq(adap, &cq->q); free_txq(adap, &cq->q);
......
...@@ -150,7 +150,7 @@ void t4_write_indirect(struct adapter *adap, unsigned int addr_reg, ...@@ -150,7 +150,7 @@ void t4_write_indirect(struct adapter *adap, unsigned int addr_reg,
*/ */
void t4_hw_pci_read_cfg4(struct adapter *adap, int reg, u32 *val) void t4_hw_pci_read_cfg4(struct adapter *adap, int reg, u32 *val)
{ {
u32 req = ENABLE_F | FUNCTION_V(adap->fn) | REGISTER_V(reg); u32 req = ENABLE_F | FUNCTION_V(adap->pf) | REGISTER_V(reg);
if (is_t4(adap->params.chip)) if (is_t4(adap->params.chip))
req |= LOCALCFG_F; req |= LOCALCFG_F;
...@@ -412,7 +412,7 @@ int t4_memory_rw(struct adapter *adap, int win, int mtype, u32 addr, ...@@ -412,7 +412,7 @@ int t4_memory_rw(struct adapter *adap, int win, int mtype, u32 addr,
mem_base = PCIEOFST_G(mem_reg) << PCIEOFST_SHIFT_X; mem_base = PCIEOFST_G(mem_reg) << PCIEOFST_SHIFT_X;
if (is_t4(adap->params.chip)) if (is_t4(adap->params.chip))
mem_base -= adap->t4_bar0; mem_base -= adap->t4_bar0;
win_pf = is_t4(adap->params.chip) ? 0 : PFNUM_V(adap->fn); win_pf = is_t4(adap->params.chip) ? 0 : PFNUM_V(adap->pf);
/* Calculate our initial PCI-E Memory Window Position and Offset into /* Calculate our initial PCI-E Memory Window Position and Offset into
* that Window. * that Window.
...@@ -547,7 +547,7 @@ u32 t4_read_pcie_cfg4(struct adapter *adap, int reg) ...@@ -547,7 +547,7 @@ u32 t4_read_pcie_cfg4(struct adapter *adap, int reg)
ldst_cmd.cycles_to_len16 = cpu_to_be32(FW_LEN16(ldst_cmd)); ldst_cmd.cycles_to_len16 = cpu_to_be32(FW_LEN16(ldst_cmd));
ldst_cmd.u.pcie.select_naccess = FW_LDST_CMD_NACCESS_V(1); ldst_cmd.u.pcie.select_naccess = FW_LDST_CMD_NACCESS_V(1);
ldst_cmd.u.pcie.ctrl_to_fn = ldst_cmd.u.pcie.ctrl_to_fn =
(FW_LDST_CMD_LC_F | FW_LDST_CMD_FN_V(adap->fn)); (FW_LDST_CMD_LC_F | FW_LDST_CMD_FN_V(adap->pf));
ldst_cmd.u.pcie.r = reg; ldst_cmd.u.pcie.r = reg;
/* If the LDST Command succeeds, return the result, otherwise /* If the LDST Command succeeds, return the result, otherwise
...@@ -2062,7 +2062,7 @@ int t4_phy_fw_ver(struct adapter *adap, int *phy_fw_ver) ...@@ -2062,7 +2062,7 @@ int t4_phy_fw_ver(struct adapter *adap, int *phy_fw_ver)
FW_PARAMS_PARAM_X_V(FW_PARAMS_PARAM_DEV_PHYFW) | FW_PARAMS_PARAM_X_V(FW_PARAMS_PARAM_DEV_PHYFW) |
FW_PARAMS_PARAM_Y_V(adap->params.portvec) | FW_PARAMS_PARAM_Y_V(adap->params.portvec) |
FW_PARAMS_PARAM_Z_V(FW_PARAMS_PARAM_DEV_PHYFW_VERSION)); FW_PARAMS_PARAM_Z_V(FW_PARAMS_PARAM_DEV_PHYFW_VERSION));
ret = t4_query_params(adap, adap->mbox, adap->fn, 0, 1, ret = t4_query_params(adap, adap->mbox, adap->pf, 0, 1,
&param, &val); &param, &val);
if (ret < 0) if (ret < 0)
return ret; return ret;
...@@ -2134,7 +2134,7 @@ int t4_load_phy_fw(struct adapter *adap, ...@@ -2134,7 +2134,7 @@ int t4_load_phy_fw(struct adapter *adap,
FW_PARAMS_PARAM_Y_V(adap->params.portvec) | FW_PARAMS_PARAM_Y_V(adap->params.portvec) |
FW_PARAMS_PARAM_Z_V(FW_PARAMS_PARAM_DEV_PHYFW_DOWNLOAD)); FW_PARAMS_PARAM_Z_V(FW_PARAMS_PARAM_DEV_PHYFW_DOWNLOAD));
val = phy_fw_size; val = phy_fw_size;
ret = t4_query_params_rw(adap, adap->mbox, adap->fn, 0, 1, ret = t4_query_params_rw(adap, adap->mbox, adap->pf, 0, 1,
&param, &val, 1); &param, &val, 1);
if (ret < 0) if (ret < 0)
return ret; return ret;
...@@ -2163,7 +2163,7 @@ int t4_load_phy_fw(struct adapter *adap, ...@@ -2163,7 +2163,7 @@ int t4_load_phy_fw(struct adapter *adap,
FW_PARAMS_PARAM_X_V(FW_PARAMS_PARAM_DEV_PHYFW) | FW_PARAMS_PARAM_X_V(FW_PARAMS_PARAM_DEV_PHYFW) |
FW_PARAMS_PARAM_Y_V(adap->params.portvec) | FW_PARAMS_PARAM_Y_V(adap->params.portvec) |
FW_PARAMS_PARAM_Z_V(FW_PARAMS_PARAM_DEV_PHYFW_DOWNLOAD)); FW_PARAMS_PARAM_Z_V(FW_PARAMS_PARAM_DEV_PHYFW_DOWNLOAD));
ret = t4_set_params_timeout(adap, adap->mbox, adap->fn, 0, 1, ret = t4_set_params_timeout(adap, adap->mbox, adap->pf, 0, 1,
&param, &val, 30000); &param, &val, 30000);
/* If we have version number support, then check to see that the new /* If we have version number support, then check to see that the new
...@@ -2199,7 +2199,7 @@ int t4_fwcache(struct adapter *adap, enum fw_params_param_dev_fwcache op) ...@@ -2199,7 +2199,7 @@ int t4_fwcache(struct adapter *adap, enum fw_params_param_dev_fwcache op)
c.op_to_vfn = c.op_to_vfn =
cpu_to_be32(FW_CMD_OP_V(FW_PARAMS_CMD) | cpu_to_be32(FW_CMD_OP_V(FW_PARAMS_CMD) |
FW_CMD_REQUEST_F | FW_CMD_WRITE_F | FW_CMD_REQUEST_F | FW_CMD_WRITE_F |
FW_PARAMS_CMD_PFN_V(adap->fn) | FW_PARAMS_CMD_PFN_V(adap->pf) |
FW_PARAMS_CMD_VFN_V(0)); FW_PARAMS_CMD_VFN_V(0));
c.retval_len16 = cpu_to_be32(FW_LEN16(c)); c.retval_len16 = cpu_to_be32(FW_LEN16(c));
c.param[0].mnem = c.param[0].mnem =
...@@ -5299,7 +5299,7 @@ int t4_prep_adapter(struct adapter *adapter) ...@@ -5299,7 +5299,7 @@ int t4_prep_adapter(struct adapter *adapter)
} }
/** /**
* cxgb4_t4_bar2_sge_qregs - return BAR2 SGE Queue register information * t4_bar2_sge_qregs - return BAR2 SGE Queue register information
* @adapter: the adapter * @adapter: the adapter
* @qid: the Queue ID * @qid: the Queue ID
* @qtype: the Ingress or Egress type for @qid * @qtype: the Ingress or Egress type for @qid
...@@ -5323,7 +5323,7 @@ int t4_prep_adapter(struct adapter *adapter) ...@@ -5323,7 +5323,7 @@ int t4_prep_adapter(struct adapter *adapter)
* Write Combining Doorbell Buffer. If the BAR2 Queue ID is not 0, * Write Combining Doorbell Buffer. If the BAR2 Queue ID is not 0,
* then these "Inferred Queue ID" register may not be used. * then these "Inferred Queue ID" register may not be used.
*/ */
int cxgb4_t4_bar2_sge_qregs(struct adapter *adapter, int t4_bar2_sge_qregs(struct adapter *adapter,
unsigned int qid, unsigned int qid,
enum t4_bar2_qtype qtype, enum t4_bar2_qtype qtype,
u64 *pbar2_qoffset, u64 *pbar2_qoffset,
...@@ -5457,13 +5457,13 @@ int t4_init_sge_params(struct adapter *adapter) ...@@ -5457,13 +5457,13 @@ int t4_init_sge_params(struct adapter *adapter)
*/ */
hps = t4_read_reg(adapter, SGE_HOST_PAGE_SIZE_A); hps = t4_read_reg(adapter, SGE_HOST_PAGE_SIZE_A);
s_hps = (HOSTPAGESIZEPF0_S + s_hps = (HOSTPAGESIZEPF0_S +
(HOSTPAGESIZEPF1_S - HOSTPAGESIZEPF0_S) * adapter->fn); (HOSTPAGESIZEPF1_S - HOSTPAGESIZEPF0_S) * adapter->pf);
sge_params->hps = ((hps >> s_hps) & HOSTPAGESIZEPF0_M); sge_params->hps = ((hps >> s_hps) & HOSTPAGESIZEPF0_M);
/* Extract the SGE Egress and Ingess Queues Per Page for our PF. /* Extract the SGE Egress and Ingess Queues Per Page for our PF.
*/ */
s_qpp = (QUEUESPERPAGEPF0_S + s_qpp = (QUEUESPERPAGEPF0_S +
(QUEUESPERPAGEPF1_S - QUEUESPERPAGEPF0_S) * adapter->fn); (QUEUESPERPAGEPF1_S - QUEUESPERPAGEPF0_S) * adapter->pf);
qpp = t4_read_reg(adapter, SGE_EGRESS_QUEUES_PER_PAGE_PF_A); qpp = t4_read_reg(adapter, SGE_EGRESS_QUEUES_PER_PAGE_PF_A);
sge_params->eq_qpp = ((qpp >> s_qpp) & QUEUESPERPAGEPF0_M); sge_params->eq_qpp = ((qpp >> s_qpp) & QUEUESPERPAGEPF0_M);
qpp = t4_read_reg(adapter, SGE_INGRESS_QUEUES_PER_PAGE_PF_A); qpp = t4_read_reg(adapter, SGE_INGRESS_QUEUES_PER_PAGE_PF_A);
......
...@@ -2162,8 +2162,8 @@ static void __iomem *bar2_address(struct adapter *adapter, ...@@ -2162,8 +2162,8 @@ static void __iomem *bar2_address(struct adapter *adapter,
u64 bar2_qoffset; u64 bar2_qoffset;
int ret; int ret;
ret = t4_bar2_sge_qregs(adapter, qid, qtype, ret = t4vf_bar2_sge_qregs(adapter, qid, qtype,
&bar2_qoffset, pbar2_qid); &bar2_qoffset, pbar2_qid);
if (ret) if (ret)
return NULL; return NULL;
......
...@@ -284,11 +284,11 @@ int t4vf_fw_reset(struct adapter *); ...@@ -284,11 +284,11 @@ int t4vf_fw_reset(struct adapter *);
int t4vf_set_params(struct adapter *, unsigned int, const u32 *, const u32 *); int t4vf_set_params(struct adapter *, unsigned int, const u32 *, const u32 *);
enum t4_bar2_qtype { T4_BAR2_QTYPE_EGRESS, T4_BAR2_QTYPE_INGRESS }; enum t4_bar2_qtype { T4_BAR2_QTYPE_EGRESS, T4_BAR2_QTYPE_INGRESS };
int t4_bar2_sge_qregs(struct adapter *adapter, int t4vf_bar2_sge_qregs(struct adapter *adapter,
unsigned int qid, unsigned int qid,
enum t4_bar2_qtype qtype, enum t4_bar2_qtype qtype,
u64 *pbar2_qoffset, u64 *pbar2_qoffset,
unsigned int *pbar2_qid); unsigned int *pbar2_qid);
int t4vf_get_sge_params(struct adapter *); int t4vf_get_sge_params(struct adapter *);
int t4vf_get_vpd_params(struct adapter *); int t4vf_get_vpd_params(struct adapter *);
......
...@@ -428,7 +428,7 @@ int t4vf_set_params(struct adapter *adapter, unsigned int nparams, ...@@ -428,7 +428,7 @@ int t4vf_set_params(struct adapter *adapter, unsigned int nparams,
} }
/** /**
* t4_bar2_sge_qregs - return BAR2 SGE Queue register information * t4vf_bar2_sge_qregs - return BAR2 SGE Queue register information
* @adapter: the adapter * @adapter: the adapter
* @qid: the Queue ID * @qid: the Queue ID
* @qtype: the Ingress or Egress type for @qid * @qtype: the Ingress or Egress type for @qid
...@@ -452,11 +452,11 @@ int t4vf_set_params(struct adapter *adapter, unsigned int nparams, ...@@ -452,11 +452,11 @@ int t4vf_set_params(struct adapter *adapter, unsigned int nparams,
* Write Combining Doorbell Buffer. If the BAR2 Queue ID is not 0, * Write Combining Doorbell Buffer. If the BAR2 Queue ID is not 0,
* then these "Inferred Queue ID" register may not be used. * then these "Inferred Queue ID" register may not be used.
*/ */
int t4_bar2_sge_qregs(struct adapter *adapter, int t4vf_bar2_sge_qregs(struct adapter *adapter,
unsigned int qid, unsigned int qid,
enum t4_bar2_qtype qtype, enum t4_bar2_qtype qtype,
u64 *pbar2_qoffset, u64 *pbar2_qoffset,
unsigned int *pbar2_qid) unsigned int *pbar2_qid)
{ {
unsigned int page_shift, page_size, qpp_shift, qpp_mask; unsigned int page_shift, page_size, qpp_shift, qpp_mask;
u64 bar2_page_offset, bar2_qoffset; u64 bar2_page_offset, bar2_qoffset;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment