From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-3.8 required=3.0 tests=BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS, URIBL_BLOCKED autolearn=no autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 7A2E9C4727F for ; Wed, 30 Sep 2020 05:15:29 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 3F95A20706 for ; Wed, 30 Sep 2020 05:15:29 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1725799AbgI3FP2 (ORCPT ); Wed, 30 Sep 2020 01:15:28 -0400 Received: from muru.com ([72.249.23.125]:45674 "EHLO muru.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1725320AbgI3FP1 (ORCPT ); Wed, 30 Sep 2020 01:15:27 -0400 Received: from atomide.com (localhost [127.0.0.1]) by muru.com (Postfix) with ESMTPS id D6B1580BF; Wed, 30 Sep 2020 05:15:27 +0000 (UTC) Date: Wed, 30 Sep 2020 08:15:21 +0300 From: Tony Lindgren To: Trent Piepho Cc: Drew Fustini , Rob Herring , Linus Walleij , Jason Kridner , Robert Nelson , linux-omap@vger.kernel.org, linux-kernel@vger.kernel.org, devicetree@vger.kernel.org, linux-gpio , Christina Quast Subject: Re: [PATCH] ARM: dts: document pinctrl-single,pins when #pinctrl-cells = 2 Message-ID: <20200930051521.GN9471@atomide.com> References: <20200917103942.GA2477958@x1> <20200923065755.GR7101@atomide.com> <20200924054324.GB9471@atomide.com> <20200924060645.GD9471@atomide.com> <20200924070443.GF9471@atomide.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org * Trent Piepho [200929 20:16]: > On Thu, Sep 24, 2020 at 12:04 AM Tony Lindgren wrote: > > Certainly different compatible strings can be used as needed. > > But pinctrl-single is not going to be am335x specific though :) > > We have quite a few SoCs using it: > > So what doesn't make sense to me, is to put something am335x specific > like two cells for conf and mux, into a generic driver like pinctrl > single. Treating conf and mux separately is not am335x specific. Linux treats them separately because the conf options typically can be described in a generic way while the mux is just signal routing. Sure the conf values are currently not generic, but that could be done if wanted to and added some property to specify that the controller uses generic conf values. > This series adds two cells ORed into one. Ok, that's generic, other > platforms could use it. But it also accomplishes nothing, so what's > the point? You've hinted there is more to come, which will accomplish > something, but what is it? That can be: > Used by platforms other than am335x > Can't already be done with the pinctrl single pinconf features > Needs more than one data cell per pin For SoCs using #pinctrl-cells = <2> we now have conf and mux values separated in the dtb. Certainly that's a better place to be compared to earlier for any further pinconf changes. > Interrupt controllers have different numbers of cells, but they are > all platform specific, and the cells have defined platform specific > meanings. pci-host-cam-generic is a somewhat generic interrupt > controller and it uses 1 cell, since it lacks device specific fields > to put into additional cells. With interrupts the IRQ_TYPE flags are generic and separate from the hardware specific cells. If we wanted to, we could have something similar for pinctrl framework. > Consider also that any future changes to the pinctrl-single bindings > would need to be backward compatible with a device tree binary where > two cells get combined. So if the bindings being added here aren't > done, then adding them now creates an unnecessary additional version > to deal with for backward compatibility. I don't see issues with backward compabilty. If we specify that the controller uses #pinctrl-cells = <2>, and some additional property for specifying generic conf flags, we'd have a similar generic binding to the interrupt binding. Regards, Tony