From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752359AbdDNQaX (ORCPT ); Fri, 14 Apr 2017 12:30:23 -0400 Received: from mail-pf0-f193.google.com ([209.85.192.193]:34053 "EHLO mail-pf0-f193.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751473AbdDNQaW (ORCPT ); Fri, 14 Apr 2017 12:30:22 -0400 MIME-Version: 1.0 In-Reply-To: <20170414155639.GC1792@b29396-OptiPlex-7040> References: <20170413133242.5068-1-andrew.smirnov@gmail.com> <20170413133242.5068-6-andrew.smirnov@gmail.com> <20170414155639.GC1792@b29396-OptiPlex-7040> From: Andrey Smirnov Date: Fri, 14 Apr 2017 09:30:20 -0700 Message-ID: Subject: Re: [PATCH 5/8] ARM: dts: imx7s: Mark 'gpr' compatible with i.MX6 variant To: Dong Aisheng Cc: Shawn Guo , Andrey Yurovsky , Sascha Hauer , Fabio Estevam , Rob Herring , Mark Rutland , Russell King , devicetree@vger.kernel.org, linux-kernel , linux-arm-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 Fri, Apr 14, 2017 at 8:56 AM, Dong Aisheng wrote: > On Thu, Apr 13, 2017 at 06:32:39AM -0700, Andrey Smirnov wrote: >> List GPR block as compatible "fsl,imx6q-iomuxc-gpr" to support drivers >> requesting it that way (PCIe driver is one example). >> >> Cc: yurovsky@gmail.com >> Cc: Sascha Hauer >> Cc: Fabio Estevam >> Cc: Rob Herring >> Cc: Mark Rutland >> Cc: Russell King >> Cc: devicetree@vger.kernel.org >> Cc: linux-kernel@vger.kernel.org >> Cc: linux-arm-kernel@lists.infradead.org >> Signed-off-by: Andrey Smirnov >> --- >> arch/arm/boot/dts/imx7s.dtsi | 3 ++- >> 1 file changed, 2 insertions(+), 1 deletion(-) >> >> diff --git a/arch/arm/boot/dts/imx7s.dtsi b/arch/arm/boot/dts/imx7s.dtsi >> index 1a7058f..cc23478 100644 >> --- a/arch/arm/boot/dts/imx7s.dtsi >> +++ b/arch/arm/boot/dts/imx7s.dtsi >> @@ -491,7 +491,8 @@ >> }; >> >> gpr: iomuxc-gpr@30340000 { >> - compatible = "fsl,imx7d-iomuxc-gpr", "syscon"; >> + compatible = "fsl,imx7d-iomuxc-gpr", >> + "fsl,imx6q-iomuxc-gpr", "syscon"; > > This looks wrong to me. > mx7d-iomux-gpr gets a big difference from mx6q-iomux-gpr and mostly > not compatible. > AFAICT, there are no upstream drivers that bind to that string directly and all of the "consumers" of this node request it as a syscon device. The only code I could find that does so and that is shared between i.MX7 and i.MX6Q is i.MX PCIe driver which distinguishes between variants based on its own compatibility string. Those two register files are different, true, but I don't think there are any users who try to use them as if they were the same/compatible. Thanks, Andrey Smirnov