From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mout.kundenserver.de ([212.227.126.131]:61499 "EHLO mout.kundenserver.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751932AbbIWThR (ORCPT ); Wed, 23 Sep 2015 15:37:17 -0400 From: Arnd Bergmann To: linux-arm-kernel@lists.infradead.org Cc: David Daney , David Daney , Marc Zyngier , Catalin Marinas , Will Deacon , linux-kernel@vger.kernel.org, David Daney , linux-pci@vger.kernel.org, Bjorn Helgaas Subject: Re: [PATCH] arm64/pci: Add quirks for Cavium Thunder PCI bridges. Date: Wed, 23 Sep 2015 21:36:42 +0200 Message-ID: <29453556.BCB7AZ5P6c@wuerfel> In-Reply-To: <5602CCA4.8070606@caviumnetworks.com> References: <1442966996-13419-1-git-send-email-ddaney.cavm@gmail.com> <1675889.xYIhzenZEC@wuerfel> <5602CCA4.8070606@caviumnetworks.com> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Sender: linux-pci-owner@vger.kernel.org List-ID: On Wednesday 23 September 2015 09:00:36 David Daney wrote: > On 09/23/2015 12:51 AM, Arnd Bergmann wrote: > > On Tuesday 22 September 2015 17:09:56 David Daney wrote: > >> From: David Daney > >> > >> The Cavium ThunderX SoC needs a PCI quirk for its on-chip bridges. > >> Since it is arm64, create a new quirks.c file there to contain arm64 > >> related quirks. Add the ThunderX bridge quirk, gated by a new config > >> variable, so that it can be disabled for kernels that aren't expected > >> to be used on ThunderX. > >> > >> Signed-off-by: David Daney > >> --- > >> arch/arm64/Kconfig | 11 +++++++++++ > >> arch/arm64/kernel/Makefile | 2 +- > >> arch/arm64/kernel/quirks.c | 36 ++++++++++++++++++++++++++++++++++++ > >> 3 files changed, 48 insertions(+), 1 deletion(-) > >> create mode 100644 arch/arm64/kernel/quirks.c > >> > > > > Looks reasonable to me. Just one question: Is the same bridge used > > on MIPS machines? > > No. The MIPS64 based OCTEON family of SoCs does not contain > PCI-buses/config-space/bridges for on-chip hardware blocks. The on-chip > blocks in OCTEON are all platform devices. So, ... > > > If so, maybe it should be moved to drivers/pci/quirks.c > > instead for better reuse. > > The quirk is specific to some arm64 based SoCs, thus my idea to have > arch specific quirks. Ok. Arnd