From mboxrd@z Thu Jan 1 00:00:00 1970 From: Sinan Kaya Subject: [PATCH V8 0/5] PCI/ASPM: reconfigure ASPM following hotplug for POLICY_DEFAULT Date: Sat, 8 Apr 2017 00:55:46 -0400 Message-ID: <1491627351-1111-1-git-send-email-okaya@codeaurora.org> Return-path: Sender: linux-pci-owner@vger.kernel.org To: linux-pci@vger.kernel.org, timur@codeaurora.org Cc: mayurkumar.patel@intel.com, linux-arm-msm@vger.kernel.org, linux-arm-kernel@lists.infradead.org, Sinan Kaya List-Id: linux-arm-msm@vger.kernel.org When the operating system is booted with the default ASPM policy (POLICY_DEFAULT), current code is querying the enable/disable states from ASPM registers to determine the policy. For example, a BIOS could set the power saving state to performance and clear all ASPM control registers. A balanced ASPM policy could enable L0s and disable L1. A power conscious BIOS could enable both L0s and L1 to trade off latency and performance vs. power. After hotplug removal, pcie_aspm_exit_link_state() function clears the ASPM registers. An insertion following hotplug removal reads incorrect policy as ASPM disabled even though ASPM was enabled during boot. This is caused by the fact that same function is used for reconfiguring ASPM regardless of the power on state. ------------------------ Changes from v7 (https://www.spinics.net/lists/arm-kernel/msg573034.html) ------------------------ - enable LTSSM as a best effort if the endpoint is not connected during boot Sinan Kaya (5): PCI/ASPM: introduce pci_aspm_init() and add to pci_init_capabilities() PCI/ASPM: split pci_aspm_init() into two PCI/ASPM: add init hook to device_add PCI/ASPM: save power on values during bridge init PCI/ASPM: move link_state cleanup to bridge remove drivers/pci/pcie/aspm.c | 149 +++++++++++++++++++++++++++++++++--------------- drivers/pci/probe.c | 3 + drivers/pci/remove.c | 3 +- include/linux/pci.h | 2 + 4 files changed, 110 insertions(+), 47 deletions(-) -- 1.9.1 From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Return-Path: From: Sinan Kaya To: linux-pci@vger.kernel.org, timur@codeaurora.org Subject: [PATCH V8 0/5] PCI/ASPM: reconfigure ASPM following hotplug for POLICY_DEFAULT Date: Sat, 8 Apr 2017 00:55:46 -0400 Message-Id: <1491627351-1111-1-git-send-email-okaya@codeaurora.org> List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Sinan Kaya , linux-arm-msm@vger.kernel.org, mayurkumar.patel@intel.com, linux-arm-kernel@lists.infradead.org MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+bjorn=helgaas.com@lists.infradead.org List-ID: When the operating system is booted with the default ASPM policy (POLICY_DEFAULT), current code is querying the enable/disable states from ASPM registers to determine the policy. For example, a BIOS could set the power saving state to performance and clear all ASPM control registers. A balanced ASPM policy could enable L0s and disable L1. A power conscious BIOS could enable both L0s and L1 to trade off latency and performance vs. power. After hotplug removal, pcie_aspm_exit_link_state() function clears the ASPM registers. An insertion following hotplug removal reads incorrect policy as ASPM disabled even though ASPM was enabled during boot. This is caused by the fact that same function is used for reconfiguring ASPM regardless of the power on state. ------------------------ Changes from v7 (https://www.spinics.net/lists/arm-kernel/msg573034.html) ------------------------ - enable LTSSM as a best effort if the endpoint is not connected during boot Sinan Kaya (5): PCI/ASPM: introduce pci_aspm_init() and add to pci_init_capabilities() PCI/ASPM: split pci_aspm_init() into two PCI/ASPM: add init hook to device_add PCI/ASPM: save power on values during bridge init PCI/ASPM: move link_state cleanup to bridge remove drivers/pci/pcie/aspm.c | 149 +++++++++++++++++++++++++++++++++--------------- drivers/pci/probe.c | 3 + drivers/pci/remove.c | 3 +- include/linux/pci.h | 2 + 4 files changed, 110 insertions(+), 47 deletions(-) -- 1.9.1 _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel From mboxrd@z Thu Jan 1 00:00:00 1970 From: okaya@codeaurora.org (Sinan Kaya) Date: Sat, 8 Apr 2017 00:55:46 -0400 Subject: [PATCH V8 0/5] PCI/ASPM: reconfigure ASPM following hotplug for POLICY_DEFAULT Message-ID: <1491627351-1111-1-git-send-email-okaya@codeaurora.org> To: linux-arm-kernel@lists.infradead.org List-Id: linux-arm-kernel.lists.infradead.org When the operating system is booted with the default ASPM policy (POLICY_DEFAULT), current code is querying the enable/disable states from ASPM registers to determine the policy. For example, a BIOS could set the power saving state to performance and clear all ASPM control registers. A balanced ASPM policy could enable L0s and disable L1. A power conscious BIOS could enable both L0s and L1 to trade off latency and performance vs. power. After hotplug removal, pcie_aspm_exit_link_state() function clears the ASPM registers. An insertion following hotplug removal reads incorrect policy as ASPM disabled even though ASPM was enabled during boot. This is caused by the fact that same function is used for reconfiguring ASPM regardless of the power on state. ------------------------ Changes from v7 (https://www.spinics.net/lists/arm-kernel/msg573034.html) ------------------------ - enable LTSSM as a best effort if the endpoint is not connected during boot Sinan Kaya (5): PCI/ASPM: introduce pci_aspm_init() and add to pci_init_capabilities() PCI/ASPM: split pci_aspm_init() into two PCI/ASPM: add init hook to device_add PCI/ASPM: save power on values during bridge init PCI/ASPM: move link_state cleanup to bridge remove drivers/pci/pcie/aspm.c | 149 +++++++++++++++++++++++++++++++++--------------- drivers/pci/probe.c | 3 + drivers/pci/remove.c | 3 +- include/linux/pci.h | 2 + 4 files changed, 110 insertions(+), 47 deletions(-) -- 1.9.1