pci-aspm.h 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  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. #ifndef LINUX_ASPM_H
  16. #define LINUX_ASPM_H
  17. #include <linux/pci.h>
  18. #define PCIE_LINK_STATE_L0S 1
  19. #define PCIE_LINK_STATE_L1 2
  20. #define PCIE_LINK_STATE_CLKPM 4
  21. #ifdef CONFIG_PCIEASPM
  22. extern void pcie_aspm_init_link_state(struct pci_dev *pdev);
  23. extern void pcie_aspm_exit_link_state(struct pci_dev *pdev);
  24. extern void pcie_aspm_pm_state_change(struct pci_dev *pdev);
  25. extern void pcie_aspm_powersave_config_link(struct pci_dev *pdev);
  26. extern void pci_disable_link_state(struct pci_dev *pdev, int state);
  27. extern void pci_disable_link_state_locked(struct pci_dev *pdev, int state);
  28. extern void pcie_clear_aspm(struct pci_bus *bus);
  29. extern void pcie_no_aspm(void);
  30. #else
  31. static inline void pcie_aspm_init_link_state(struct pci_dev *pdev)
  32. {
  33. }
  34. static inline void pcie_aspm_exit_link_state(struct pci_dev *pdev)
  35. {
  36. }
  37. static inline void pcie_aspm_pm_state_change(struct pci_dev *pdev)
  38. {
  39. }
  40. static inline void pcie_aspm_powersave_config_link(struct pci_dev *pdev)
  41. {
  42. }
  43. static inline void pci_disable_link_state(struct pci_dev *pdev, int state)
  44. {
  45. }
  46. static inline void pcie_clear_aspm(struct pci_bus *bus)
  47. {
  48. }
  49. static inline void pcie_no_aspm(void)
  50. {
  51. }
  52. #endif
  53. #ifdef CONFIG_PCIEASPM_DEBUG /* this depends on CONFIG_PCIEASPM */
  54. extern void pcie_aspm_create_sysfs_dev_files(struct pci_dev *pdev);
  55. extern void pcie_aspm_remove_sysfs_dev_files(struct pci_dev *pdev);
  56. #else
  57. static inline void pcie_aspm_create_sysfs_dev_files(struct pci_dev *pdev)
  58. {
  59. }
  60. static inline void pcie_aspm_remove_sysfs_dev_files(struct pci_dev *pdev)
  61. {
  62. }
  63. #endif
  64. #endif /* LINUX_ASPM_H */