Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
Shaohua Li | 7d715a6 | 2008-02-25 09:46:41 +0800 | [diff] [blame] | 2 | /* |
| 3 | * aspm.h |
| 4 | * |
| 5 | * PCI Express ASPM defines and function prototypes |
| 6 | * |
| 7 | * Copyright (C) 2007 Intel Corp. |
| 8 | * Zhang Yanmin (yanmin.zhang@intel.com) |
| 9 | * Shaohua Li (shaohua.li@intel.com) |
| 10 | * |
| 11 | * For more information, please consult the following manuals (look at |
| 12 | * http://www.pcisig.com/ for how to get them): |
| 13 | * |
| 14 | * PCI Express Specification |
| 15 | */ |
| 16 | |
| 17 | #ifndef LINUX_ASPM_H |
| 18 | #define LINUX_ASPM_H |
| 19 | |
| 20 | #include <linux/pci.h> |
| 21 | |
| 22 | #define PCIE_LINK_STATE_L0S 1 |
| 23 | #define PCIE_LINK_STATE_L1 2 |
| 24 | #define PCIE_LINK_STATE_CLKPM 4 |
| 25 | |
| 26 | #ifdef CONFIG_PCIEASPM |
Bjorn Helgaas | f39d5b7 | 2013-04-12 12:02:59 -0600 | [diff] [blame] | 27 | void pci_disable_link_state(struct pci_dev *pdev, int state); |
| 28 | void pci_disable_link_state_locked(struct pci_dev *pdev, int state); |
Bjorn Helgaas | f39d5b7 | 2013-04-12 12:02:59 -0600 | [diff] [blame] | 29 | void pcie_no_aspm(void); |
Shaohua Li | 7d715a6 | 2008-02-25 09:46:41 +0800 | [diff] [blame] | 30 | #else |
Bjorn Helgaas | 7d8e7d1 | 2017-12-15 08:57:28 -0600 | [diff] [blame] | 31 | static inline void pci_disable_link_state(struct pci_dev *pdev, int state) { } |
| 32 | static inline void pcie_no_aspm(void) { } |
Shaohua Li | 7d715a6 | 2008-02-25 09:46:41 +0800 | [diff] [blame] | 33 | #endif |
| 34 | |
Shaohua Li | 7d715a6 | 2008-02-25 09:46:41 +0800 | [diff] [blame] | 35 | #endif /* LINUX_ASPM_H */ |