From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751400AbdAWPC4 (ORCPT ); Mon, 23 Jan 2017 10:02:56 -0500 Received: from mail-yw0-f196.google.com ([209.85.161.196]:33852 "EHLO mail-yw0-f196.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751152AbdAWPCy (ORCPT ); Mon, 23 Jan 2017 10:02:54 -0500 MIME-Version: 1.0 In-Reply-To: <20170123145204.5lablvhf7m2hf3na@rob-hp-laptop> References: <20170119163631.10668-1-andrew.smirnov@gmail.com> <20170119163631.10668-4-andrew.smirnov@gmail.com> <20170123145204.5lablvhf7m2hf3na@rob-hp-laptop> From: Andrey Smirnov Date: Mon, 23 Jan 2017 07:02:52 -0800 Message-ID: Subject: Re: [PATCH 3/3] PCI: imx6: Add code to support i.MX7D To: Rob Herring Cc: linux-pci@vger.kernel.org, Andrey Yurovsky , Richard Zhu , Lucas Stach , Bjorn Helgaas , Fabio Estevam , Shawn Guo , Mark Rutland , Lee Jones , linux-arm-kernel@lists.infradead.org, devicetree@vger.kernel.org, linux-kernel Content-Type: text/plain; charset=UTF-8 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Mon, Jan 23, 2017 at 6:52 AM, Rob Herring wrote: > On Thu, Jan 19, 2017 at 08:36:31AM -0800, Andrey Smirnov wrote: >> Add various bits of code needed to support i.MX7D variant of the IP. >> >> Cc: yurovsky@gmail.com >> Cc: Richard Zhu >> Cc: Lucas Stach >> Cc: Bjorn Helgaas >> Cc: Fabio Estevam >> Cc: Shawn Guo >> Cc: Rob Herring >> Cc: Mark Rutland >> Cc: Lee Jones >> Cc: linux-arm-kernel@lists.infradead.org >> Cc: devicetree@vger.kernel.org >> Cc: linux-kernel@vger.kernel.org >> Signed-off-by: Andrey Smirnov >> --- >> .../devicetree/bindings/pci/fsl,imx6q-pcie.txt | 6 +- >> drivers/pci/host/pci-imx6.c | 188 ++++++++++++++++++--- >> include/linux/mfd/syscon/imx7-gpc.h | 18 ++ >> include/linux/mfd/syscon/imx7-iomuxc-gpr.h | 4 + >> include/linux/mfd/syscon/imx7-src.h | 18 ++ >> 5 files changed, 208 insertions(+), 26 deletions(-) >> create mode 100644 include/linux/mfd/syscon/imx7-gpc.h >> create mode 100644 include/linux/mfd/syscon/imx7-src.h >> >> diff --git a/Documentation/devicetree/bindings/pci/fsl,imx6q-pcie.txt b/Documentation/devicetree/bindings/pci/fsl,imx6q-pcie.txt >> index 83aeb1f..20b9382 100644 >> --- a/Documentation/devicetree/bindings/pci/fsl,imx6q-pcie.txt >> +++ b/Documentation/devicetree/bindings/pci/fsl,imx6q-pcie.txt >> @@ -4,7 +4,8 @@ This PCIe host controller is based on the Synopsis Designware PCIe IP >> and thus inherits all the common properties defined in designware-pcie.txt. >> >> Required properties: >> -- compatible: "fsl,imx6q-pcie", "fsl,imx6sx-pcie", "fsl,imx6qp-pcie" >> +- compatible: "fsl,imx6q-pcie", "fsl,imx6sx-pcie", >> + "fsl,imx6qp-pcie", "fsl,imx7d-pcie" > > Please reformat to one valid combination per line. Noted for v2, thanks.