2005-04-17 02:20:36 +04:00
|
|
|
#
|
|
|
|
# PCI Express Port Bus Configuration
|
|
|
|
#
|
|
|
|
config PCIEPORTBUS
|
2013-07-05 00:45:20 +04:00
|
|
|
bool "PCI Express Port Bus support"
|
2005-04-17 02:20:36 +04:00
|
|
|
depends on PCI
|
|
|
|
help
|
|
|
|
This automatically enables PCI Express Port Bus support. Users can
|
|
|
|
choose Native Hot-Plug support, Advanced Error Reporting support,
|
|
|
|
Power Management Event support and Virtual Channel support to run
|
|
|
|
on PCI Express Ports (Root or Switch).
|
|
|
|
|
|
|
|
#
|
|
|
|
# Include service Kconfig here
|
|
|
|
#
|
|
|
|
config HOTPLUG_PCI_PCIE
|
2013-07-23 20:55:56 +04:00
|
|
|
bool "PCI Express Hotplug driver"
|
2005-04-17 02:20:36 +04:00
|
|
|
depends on HOTPLUG_PCI && PCIEPORTBUS
|
|
|
|
help
|
|
|
|
Say Y here if you have a motherboard that supports PCI Express Native
|
|
|
|
Hotplug
|
|
|
|
|
|
|
|
When in doubt, say N.
|
|
|
|
|
2006-07-31 11:21:33 +04:00
|
|
|
source "drivers/pci/pcie/aer/Kconfig"
|
PCI: add PCI Express ASPM support
PCI Express ASPM defines a protocol for PCI Express components in the D0
state to reduce Link power by placing their Links into a low power state
and instructing the other end of the Link to do likewise. This
capability allows hardware-autonomous, dynamic Link power reduction
beyond what is achievable by software-only controlled power management.
However, The device should be configured by software appropriately.
Enabling ASPM will save power, but will introduce device latency.
This patch adds ASPM support in Linux. It introduces a global policy for
ASPM, a sysfs file /sys/module/pcie_aspm/parameters/policy can control
it. The interface can be used as a boot option too. Currently we have
below setting:
-default, BIOS default setting
-powersave, highest power saving mode, enable all available ASPM
state and clock power management
-performance, highest performance, disable ASPM and clock power
management
By default, the 'default' policy is used currently.
In my test, power difference between powersave mode and performance mode
is about 1.3w in a system with 3 PCIE links.
Note: some devices might not work well with aspm, either because chipset
issue or device issue. The patch provide API (pci_disable_link_state),
driver can disable ASPM for specific device.
Signed-off-by: Shaohua Li <shaohua.li@intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
2008-02-25 04:46:41 +03:00
|
|
|
|
|
|
|
#
|
|
|
|
# PCI Express ASPM
|
|
|
|
#
|
|
|
|
config PCIEASPM
|
2011-01-21 01:44:16 +03:00
|
|
|
bool "PCI Express ASPM control" if EXPERT
|
2010-06-23 01:03:03 +04:00
|
|
|
depends on PCI && PCIEPORTBUS
|
|
|
|
default y
|
PCI: add PCI Express ASPM support
PCI Express ASPM defines a protocol for PCI Express components in the D0
state to reduce Link power by placing their Links into a low power state
and instructing the other end of the Link to do likewise. This
capability allows hardware-autonomous, dynamic Link power reduction
beyond what is achievable by software-only controlled power management.
However, The device should be configured by software appropriately.
Enabling ASPM will save power, but will introduce device latency.
This patch adds ASPM support in Linux. It introduces a global policy for
ASPM, a sysfs file /sys/module/pcie_aspm/parameters/policy can control
it. The interface can be used as a boot option too. Currently we have
below setting:
-default, BIOS default setting
-powersave, highest power saving mode, enable all available ASPM
state and clock power management
-performance, highest performance, disable ASPM and clock power
management
By default, the 'default' policy is used currently.
In my test, power difference between powersave mode and performance mode
is about 1.3w in a system with 3 PCIE links.
Note: some devices might not work well with aspm, either because chipset
issue or device issue. The patch provide API (pci_disable_link_state),
driver can disable ASPM for specific device.
Signed-off-by: Shaohua Li <shaohua.li@intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
2008-02-25 04:46:41 +03:00
|
|
|
help
|
2010-06-23 01:03:03 +04:00
|
|
|
This enables OS control over PCI Express ASPM (Active State
|
|
|
|
Power Management) and Clock Power Management. ASPM supports
|
|
|
|
state L0/L0s/L1.
|
PCI: add PCI Express ASPM support
PCI Express ASPM defines a protocol for PCI Express components in the D0
state to reduce Link power by placing their Links into a low power state
and instructing the other end of the Link to do likewise. This
capability allows hardware-autonomous, dynamic Link power reduction
beyond what is achievable by software-only controlled power management.
However, The device should be configured by software appropriately.
Enabling ASPM will save power, but will introduce device latency.
This patch adds ASPM support in Linux. It introduces a global policy for
ASPM, a sysfs file /sys/module/pcie_aspm/parameters/policy can control
it. The interface can be used as a boot option too. Currently we have
below setting:
-default, BIOS default setting
-powersave, highest power saving mode, enable all available ASPM
state and clock power management
-performance, highest performance, disable ASPM and clock power
management
By default, the 'default' policy is used currently.
In my test, power difference between powersave mode and performance mode
is about 1.3w in a system with 3 PCIE links.
Note: some devices might not work well with aspm, either because chipset
issue or device issue. The patch provide API (pci_disable_link_state),
driver can disable ASPM for specific device.
Signed-off-by: Shaohua Li <shaohua.li@intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
2008-02-25 04:46:41 +03:00
|
|
|
|
2011-12-06 22:48:35 +04:00
|
|
|
ASPM is initially set up by the firmware. With this option enabled,
|
2010-06-23 01:03:03 +04:00
|
|
|
Linux can modify this state in order to disable ASPM on known-bad
|
|
|
|
hardware or configurations and enable it when known-safe.
|
|
|
|
|
|
|
|
ASPM can be disabled or enabled at runtime via
|
|
|
|
/sys/module/pcie_aspm/parameters/policy
|
|
|
|
|
|
|
|
When in doubt, say Y.
|
PCI: add PCI Express ASPM support
PCI Express ASPM defines a protocol for PCI Express components in the D0
state to reduce Link power by placing their Links into a low power state
and instructing the other end of the Link to do likewise. This
capability allows hardware-autonomous, dynamic Link power reduction
beyond what is achievable by software-only controlled power management.
However, The device should be configured by software appropriately.
Enabling ASPM will save power, but will introduce device latency.
This patch adds ASPM support in Linux. It introduces a global policy for
ASPM, a sysfs file /sys/module/pcie_aspm/parameters/policy can control
it. The interface can be used as a boot option too. Currently we have
below setting:
-default, BIOS default setting
-powersave, highest power saving mode, enable all available ASPM
state and clock power management
-performance, highest performance, disable ASPM and clock power
management
By default, the 'default' policy is used currently.
In my test, power difference between powersave mode and performance mode
is about 1.3w in a system with 3 PCIE links.
Note: some devices might not work well with aspm, either because chipset
issue or device issue. The patch provide API (pci_disable_link_state),
driver can disable ASPM for specific device.
Signed-off-by: Shaohua Li <shaohua.li@intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
2008-02-25 04:46:41 +03:00
|
|
|
config PCIEASPM_DEBUG
|
|
|
|
bool "Debug PCI Express ASPM"
|
|
|
|
depends on PCIEASPM
|
|
|
|
default n
|
|
|
|
help
|
|
|
|
This enables PCI Express ASPM debug support. It will add per-device
|
|
|
|
interface to control ASPM.
|
2010-02-18 01:39:08 +03:00
|
|
|
|
2012-02-03 19:18:13 +04:00
|
|
|
choice
|
|
|
|
prompt "Default ASPM policy"
|
|
|
|
default PCIEASPM_DEFAULT
|
|
|
|
depends on PCIEASPM
|
|
|
|
|
|
|
|
config PCIEASPM_DEFAULT
|
|
|
|
bool "BIOS default"
|
|
|
|
depends on PCIEASPM
|
|
|
|
help
|
|
|
|
Use the BIOS defaults for PCI Express ASPM.
|
|
|
|
|
|
|
|
config PCIEASPM_POWERSAVE
|
|
|
|
bool "Powersave"
|
|
|
|
depends on PCIEASPM
|
|
|
|
help
|
|
|
|
Enable PCI Express ASPM L0s and L1 where possible, even if the
|
|
|
|
BIOS did not.
|
|
|
|
|
|
|
|
config PCIEASPM_PERFORMANCE
|
|
|
|
bool "Performance"
|
|
|
|
depends on PCIEASPM
|
|
|
|
help
|
|
|
|
Disable PCI Express ASPM L0s and L1, even if the BIOS enabled them.
|
|
|
|
endchoice
|
|
|
|
|
2010-02-18 01:39:08 +03:00
|
|
|
config PCIE_PME
|
|
|
|
def_bool y
|
2013-04-12 03:36:50 +04:00
|
|
|
depends on PCIEPORTBUS && PM_RUNTIME
|