Shaohua Li | 7d715a6 | 2008-02-25 09:46:41 +0800 | [diff] [blame] | 1 | /* |
| 2 | * aspm.h |
| 3 | * |
| 4 | * PCI Express ASPM defines and function prototypes |
| 5 | * |
| 6 | * Copyright (C) 2007 Intel Corp. |
| 7 | * Zhang Yanmin (yanmin.zhang@intel.com) |
| 8 | * Shaohua Li (shaohua.li@intel.com) |
| 9 | * |
| 10 | * For more information, please consult the following manuals (look at |
| 11 | * http://www.pcisig.com/ for how to get them): |
| 12 | * |
| 13 | * PCI Express Specification |
| 14 | */ |
| 15 | |
| 16 | #ifndef LINUX_ASPM_H |
| 17 | #define LINUX_ASPM_H |
| 18 | |
| 19 | #include <linux/pci.h> |
| 20 | |
| 21 | #define PCIE_LINK_STATE_L0S 1 |
| 22 | #define PCIE_LINK_STATE_L1 2 |
| 23 | #define PCIE_LINK_STATE_CLKPM 4 |
| 24 | |
| 25 | #ifdef CONFIG_PCIEASPM |
| 26 | extern void pcie_aspm_init_link_state(struct pci_dev *pdev); |
| 27 | extern void pcie_aspm_exit_link_state(struct pci_dev *pdev); |
| 28 | extern void pcie_aspm_pm_state_change(struct pci_dev *pdev); |
Naga Chumbalkar | 1a680b7 | 2011-03-21 03:29:08 +0000 | [diff] [blame] | 29 | extern void pcie_aspm_powersave_config_link(struct pci_dev *pdev); |
Shaohua Li | 7d715a6 | 2008-02-25 09:46:41 +0800 | [diff] [blame] | 30 | extern void pci_disable_link_state(struct pci_dev *pdev, int state); |
Yinghai Lu | 9f728f5 | 2011-05-12 17:11:47 -0700 | [diff] [blame] | 31 | extern void pci_disable_link_state_locked(struct pci_dev *pdev, int state); |
Matthew Garrett | 3c07635 | 2011-11-10 16:38:33 -0500 | [diff] [blame] | 32 | extern void pcie_clear_aspm(struct pci_bus *bus); |
Shaohua Li | 5fde244 | 2008-07-23 10:32:24 +0800 | [diff] [blame] | 33 | extern void pcie_no_aspm(void); |
Shaohua Li | 7d715a6 | 2008-02-25 09:46:41 +0800 | [diff] [blame] | 34 | #else |
| 35 | static inline void pcie_aspm_init_link_state(struct pci_dev *pdev) |
| 36 | { |
| 37 | } |
| 38 | static inline void pcie_aspm_exit_link_state(struct pci_dev *pdev) |
| 39 | { |
| 40 | } |
| 41 | static inline void pcie_aspm_pm_state_change(struct pci_dev *pdev) |
| 42 | { |
| 43 | } |
Naga Chumbalkar | 1a680b7 | 2011-03-21 03:29:08 +0000 | [diff] [blame] | 44 | static inline void pcie_aspm_powersave_config_link(struct pci_dev *pdev) |
| 45 | { |
| 46 | } |
Shaohua Li | 7d715a6 | 2008-02-25 09:46:41 +0800 | [diff] [blame] | 47 | static inline void pci_disable_link_state(struct pci_dev *pdev, int state) |
| 48 | { |
| 49 | } |
Matthew Garrett | 3c07635 | 2011-11-10 16:38:33 -0500 | [diff] [blame] | 50 | static inline void pcie_clear_aspm(struct pci_bus *bus) |
Matthew Garrett | 2f671e2 | 2010-12-06 14:00:56 -0500 | [diff] [blame] | 51 | { |
| 52 | } |
Shaohua Li | 5fde244 | 2008-07-23 10:32:24 +0800 | [diff] [blame] | 53 | static inline void pcie_no_aspm(void) |
| 54 | { |
| 55 | } |
Shaohua Li | 7d715a6 | 2008-02-25 09:46:41 +0800 | [diff] [blame] | 56 | #endif |
| 57 | |
| 58 | #ifdef CONFIG_PCIEASPM_DEBUG /* this depends on CONFIG_PCIEASPM */ |
| 59 | extern void pcie_aspm_create_sysfs_dev_files(struct pci_dev *pdev); |
| 60 | extern void pcie_aspm_remove_sysfs_dev_files(struct pci_dev *pdev); |
| 61 | #else |
| 62 | static inline void pcie_aspm_create_sysfs_dev_files(struct pci_dev *pdev) |
| 63 | { |
| 64 | } |
| 65 | static inline void pcie_aspm_remove_sysfs_dev_files(struct pci_dev *pdev) |
| 66 | { |
| 67 | } |
| 68 | #endif |
| 69 | #endif /* LINUX_ASPM_H */ |