Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752534AbbEPOCh (ORCPT ); Sat, 16 May 2015 10:02:37 -0400 Received: from mail-ie0-f171.google.com ([209.85.223.171]:36150 "EHLO mail-ie0-f171.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751958AbbEPOCd (ORCPT ); Sat, 16 May 2015 10:02:33 -0400 Date: Sat, 16 May 2015 09:02:30 -0500 From: Bjorn Helgaas To: Murali Karicheri Cc: linux-pci@vger.kernel.org, linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org, Russell King , Arnd Bergmann , Jason Gunthorpe , Santosh Shilimkar Subject: Re: [PATCH v1] ARM: pci: add call to pcie_bus_configure_settings() Message-ID: <20150516140230.GF31666@google.com> References: <1401297293-3950-1-git-send-email-m-karicheri2@ti.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1401297293-3950-1-git-send-email-m-karicheri2@ti.com> User-Agent: Mutt/1.5.21 (2010-09-15) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2644 Lines: 76 On Wed, May 28, 2014 at 01:14:53PM -0400, Murali Karicheri wrote: > Call pcie_bus_configure_settings on ARM, like for other platforms. > pcie_bus_configure_settings makes sure the MPS across the bus is > uniform and provides the ability to tune the MRSS and MPS to higher > performance values. This is particularly important for embedded where > there is no firmware to program these PCI-E settings for the OS. > > Signed-off-by: Murali Karicheri > > CC: Russell King > CC: Bjorn Helgaas > CC: Arnd Bergmann > CC: Jason Gunthorpe > CC: Santosh Shilimkar > --- > - Fixed comments against initial version > arch/arm/kernel/bios32.c | 12 ++++++++++++ > 1 file changed, 12 insertions(+) > > diff --git a/arch/arm/kernel/bios32.c b/arch/arm/kernel/bios32.c > index 16d43cd..17a26c1 100644 > --- a/arch/arm/kernel/bios32.c > +++ b/arch/arm/kernel/bios32.c > @@ -545,6 +545,18 @@ void pci_common_init_dev(struct device *parent, struct hw_pci *hw) > */ > pci_bus_add_devices(bus); > } > + > + list_for_each_entry(sys, &head, node) { > + struct pci_bus *bus = sys->bus; > + > + /* Configure PCI Express settings */ > + if (bus && !pci_has_flag(PCI_PROBE_ONLY)) { > + struct pci_bus *child; > + > + list_for_each_entry(child, &bus->children, node) > + pcie_bus_configure_settings(child); This patch (8b5742ad156d ("ARM/PCI: Call pcie_bus_configure_settings() to set MPS")) has been upstream since v3.16-rc1, but I think we goofed. The MPS configuration should be done *before* pci_bus_add_devices(). After pci_bus_add_devices(), drivers may be bound to devices, and the PCI core shouldn't touch device configuration while a driver owns the device. Looking at the code, it seems like it would have been simpler to do this in the existing loop: list_for_each_entry(sys, &head, node) { struct pci_bus *bus = sys->bus; if (bus && !pci_has_flag(PCI_PROBE_ONLY)) { pci_bus_size_bridges(bus); pci_bus_assign_resources(bus); list_for_each_entry(child, &bus->children, node) pcie_bus_configure_settings(child); } pci_bus_add_devices(bus); } so maybe there's some reason I'm not aware of for not doing it that way? > + } > + } > } > > #ifndef CONFIG_PCI_HOST_ITE8152 > -- > 1.7.9.5 > -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/