aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/pci/pcie/aspm.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/pci/pcie/aspm.c')
-rw-r--r--drivers/pci/pcie/aspm.c9
1 files changed, 4 insertions, 5 deletions
diff --git a/drivers/pci/pcie/aspm.c b/drivers/pci/pcie/aspm.c
index 0d0d3e630925..d85f77ff150c 100644
--- a/drivers/pci/pcie/aspm.c
+++ b/drivers/pci/pcie/aspm.c
@@ -292,19 +292,18 @@ static unsigned int calc_L1_latency(unsigned int latency_encoding, int ac)
292} 292}
293 293
294static void pcie_aspm_get_cap_device(struct pci_dev *pdev, u32 *state, 294static void pcie_aspm_get_cap_device(struct pci_dev *pdev, u32 *state,
295 unsigned int *l0s, unsigned int *l1, unsigned int *enabled) 295 u32 *l0s, u32 *l1, u32 *enabled)
296{ 296{
297 int pos; 297 int pos;
298 u16 reg16; 298 u16 reg16;
299 u32 reg32; 299 u32 reg32, latency;
300 unsigned int latency;
301 300
302 *l0s = *l1 = *enabled = 0; 301 *l0s = *l1 = *enabled = 0;
303 pos = pci_find_capability(pdev, PCI_CAP_ID_EXP); 302 pos = pci_find_capability(pdev, PCI_CAP_ID_EXP);
304 pci_read_config_dword(pdev, pos + PCI_EXP_LNKCAP, &reg32); 303 pci_read_config_dword(pdev, pos + PCI_EXP_LNKCAP, &reg32);
305 *state = (reg32 & PCI_EXP_LNKCAP_ASPMS) >> 10; 304 *state = (reg32 & PCI_EXP_LNKCAP_ASPMS) >> 10;
306 if (*state != PCIE_LINK_STATE_L0S && 305 if (*state != PCIE_LINK_STATE_L0S &&
307 *state != (PCIE_LINK_STATE_L1|PCIE_LINK_STATE_L0S)) 306 *state != (PCIE_LINK_STATE_L1 | PCIE_LINK_STATE_L0S))
308 *state = 0; 307 *state = 0;
309 if (*state == 0) 308 if (*state == 0)
310 return; 309 return;
@@ -316,7 +315,7 @@ static void pcie_aspm_get_cap_device(struct pci_dev *pdev, u32 *state,
316 *l1 = calc_L1_latency(latency, 0); 315 *l1 = calc_L1_latency(latency, 0);
317 } 316 }
318 pci_read_config_word(pdev, pos + PCI_EXP_LNKCTL, &reg16); 317 pci_read_config_word(pdev, pos + PCI_EXP_LNKCTL, &reg16);
319 *enabled = reg16 & (PCIE_LINK_STATE_L0S|PCIE_LINK_STATE_L1); 318 *enabled = reg16 & (PCIE_LINK_STATE_L0S | PCIE_LINK_STATE_L1);
320} 319}
321 320
322static void pcie_aspm_cap_init(struct pcie_link_state *link, int blacklist) 321static void pcie_aspm_cap_init(struct pcie_link_state *link, int blacklist)