From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jiang Liu Subject: Re: [Patch v3 5/7] PCI/ACPI: Consolidate common PCI host bridge code into ACPI core Date: Wed, 20 May 2015 11:16:02 +0800 Message-ID: <555BFC72.3060703@linux.intel.com> References: <1431593803-5213-1-git-send-email-jiang.liu@linux.intel.com> <1431593803-5213-6-git-send-email-jiang.liu@linux.intel.com> <5559E44B.2010702@linaro.org> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: QUOTED-PRINTABLE Return-path: In-Reply-To: <5559E44B.2010702@linaro.org> Sender: linux-pci-owner@vger.kernel.org To: Hanjun Guo , "Rafael J . Wysocki" , Bjorn Helgaas , Marc Zyngier , Yijing Wang , Len Brown Cc: Lv Zheng , LKML , linux-pci@vger.kernel.org, linux-acpi@vger.kernel.org, "x86 @ kernel . org" , linux-arm-kernel@lists.infradead.org List-Id: linux-acpi@vger.kernel.org On 2015/5/18 21:08, Hanjun Guo wrote: > Hi Jiang, >=20 > On 2015=E5=B9=B405=E6=9C=8814=E6=97=A5 16:56, Jiang Liu wrote: >> Introduce common interface acpi_pci_root_create() and related data >> structures to create PCI root bus for ACPI PCI host bridges. It will >> be used to kill duplicated arch specific code for IA64 and x86. It m= ay >> also help ARM64 in future. >=20 > As I commented in previous version, this patch will introduce > compile error on ACPI enabled ARM64 kernel because struct > pci_controller is not defined for ARM64, so how about adding > the following patch before this patch, or squash to this one, > does it make sense? Hi Hanjun, Thanks for fixing this building issue for ARM64. The patch is really what I want:). Will merge it into next version. With this patch applied, are there any other issues from ARM64 side? Thanks! Gerry >=20 > From 11d0e98154e681e75936698208398cb4dcd73632 Mon Sep 17 00:00:00 200= 1 > From: Hanjun Guo > Date: Mon, 18 May 2015 19:41:56 +0800 > Subject: [PATCH] ARM64 / PCI: introduce struct pci_controller for ACP= I >=20 > ARM64 ACPI based PCI host bridge init needs a arch dependent > struct pci_controller to accommodate common PCI host bridge > code which is introduced later, or it will lead to compile > errors on ARM64. >=20 > Signed-off-by: Hanjun Guo > CC: Liviu Dudau > CC: Will Deacon > CC: Catalin Marinas > CC: Lorenzo Pieralisi > CC: Arnd Bergmann > --- > arch/arm64/include/asm/pci.h | 10 ++++++++++ > 1 file changed, 10 insertions(+) >=20 > diff --git a/arch/arm64/include/asm/pci.h b/arch/arm64/include/asm/pc= i.h > index b008a72..7088495 100644 > --- a/arch/arm64/include/asm/pci.h > +++ b/arch/arm64/include/asm/pci.h > @@ -10,6 +10,16 @@ > #include > #include >=20 > +struct acpi_device; > + > +struct pci_controller { > +#ifdef CONFIG_ACPI > + struct acpi_device *companion; /* ACPI companion device */ > +#endif > + int segment; /* PCI domain */ > + int node; /* NUMA node */ > +}; > + > #define PCIBIOS_MIN_IO 0x1000 > #define PCIBIOS_MIN_MEM 0 >=20 >=20 > Thanks > Hanjun