Commit 6532e9cb authored by Jon Mason's avatar Jon Mason Committed by David S. Miller

cxgb3: remove unnecessary read of PCI_CAP_ID_EXP

The PCIE capability offset is saved during PCI bus walking.  It will
remove an unnecessary search in the PCI configuration space if this
value is referenced instead of reacquiring it.
Signed-off-by: default avatarJon Mason <jdmason@kudzu.us>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent a875a4c7
...@@ -367,7 +367,6 @@ struct vpd_params { ...@@ -367,7 +367,6 @@ struct vpd_params {
struct pci_params { struct pci_params {
unsigned int vpd_cap_addr; unsigned int vpd_cap_addr;
unsigned int pcie_cap_addr;
unsigned short speed; unsigned short speed;
unsigned char width; unsigned char width;
unsigned char variant; unsigned char variant;
......
...@@ -3290,22 +3290,20 @@ static void config_pcie(struct adapter *adap) ...@@ -3290,22 +3290,20 @@ static void config_pcie(struct adapter *adap)
unsigned int fst_trn_rx, fst_trn_tx, acklat, rpllmt; unsigned int fst_trn_rx, fst_trn_tx, acklat, rpllmt;
pci_read_config_word(adap->pdev, pci_read_config_word(adap->pdev,
adap->params.pci.pcie_cap_addr + PCI_EXP_DEVCTL, adap->pdev->pcie_cap + PCI_EXP_DEVCTL,
&val); &val);
pldsize = (val & PCI_EXP_DEVCTL_PAYLOAD) >> 5; pldsize = (val & PCI_EXP_DEVCTL_PAYLOAD) >> 5;
pci_read_config_word(adap->pdev, 0x2, &devid); pci_read_config_word(adap->pdev, 0x2, &devid);
if (devid == 0x37) { if (devid == 0x37) {
pci_write_config_word(adap->pdev, pci_write_config_word(adap->pdev,
adap->params.pci.pcie_cap_addr + adap->pdev->pcie_cap + PCI_EXP_DEVCTL,
PCI_EXP_DEVCTL,
val & ~PCI_EXP_DEVCTL_READRQ & val & ~PCI_EXP_DEVCTL_READRQ &
~PCI_EXP_DEVCTL_PAYLOAD); ~PCI_EXP_DEVCTL_PAYLOAD);
pldsize = 0; pldsize = 0;
} }
pci_read_config_word(adap->pdev, pci_read_config_word(adap->pdev, adap->pdev->pcie_cap + PCI_EXP_LNKCTL,
adap->params.pci.pcie_cap_addr + PCI_EXP_LNKCTL,
&val); &val);
fst_trn_tx = G_NUMFSTTRNSEQ(t3_read_reg(adap, A_PCIE_PEX_CTRL0)); fst_trn_tx = G_NUMFSTTRNSEQ(t3_read_reg(adap, A_PCIE_PEX_CTRL0));
...@@ -3429,12 +3427,11 @@ static void get_pci_mode(struct adapter *adapter, struct pci_params *p) ...@@ -3429,12 +3427,11 @@ static void get_pci_mode(struct adapter *adapter, struct pci_params *p)
static unsigned short speed_map[] = { 33, 66, 100, 133 }; static unsigned short speed_map[] = { 33, 66, 100, 133 };
u32 pci_mode, pcie_cap; u32 pci_mode, pcie_cap;
pcie_cap = pci_find_capability(adapter->pdev, PCI_CAP_ID_EXP); pcie_cap = pci_pcie_cap(adapter->pdev);
if (pcie_cap) { if (pcie_cap) {
u16 val; u16 val;
p->variant = PCI_VARIANT_PCIE; p->variant = PCI_VARIANT_PCIE;
p->pcie_cap_addr = pcie_cap;
pci_read_config_word(adapter->pdev, pcie_cap + PCI_EXP_LNKSTA, pci_read_config_word(adapter->pdev, pcie_cap + PCI_EXP_LNKSTA,
&val); &val);
p->width = (val >> 4) & 0x3f; p->width = (val >> 4) & 0x3f;
......
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