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=-1.0 required=3.0 tests=HEADER_FROM_DIFFERENT_DOMAINS, MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS 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 08106C433E0 for ; Mon, 22 Jun 2020 16:11:38 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id E3A9020716 for ; Mon, 22 Jun 2020 16:11:37 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1729278AbgFVQLh (ORCPT ); Mon, 22 Jun 2020 12:11:37 -0400 Received: from muru.com ([72.249.23.125]:58636 "EHLO muru.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1729250AbgFVQLh (ORCPT ); Mon, 22 Jun 2020 12:11:37 -0400 Received: from atomide.com (localhost [127.0.0.1]) by muru.com (Postfix) with ESMTPS id 15F748140; Mon, 22 Jun 2020 16:12:28 +0000 (UTC) Date: Mon, 22 Jun 2020 09:11:32 -0700 From: Tony Lindgren To: Drew Fustini Cc: Rob Herring , linux-omap@vger.kernel.org, linux-kernel@vger.kernel.org, linux-gpio@vger.kernel.org, linux-arm-kernel@lists.infradead.org, Linus Walleij , Haojian Zhuang , devicetree@vger.kernel.org, =?utf-8?Q?Beno=C3=AEt?= Cousson , Jason Kridner , Robert Nelson Subject: Re: [PATCH 0/3] pinctrl: single: support #pinctrl-cells = 2 Message-ID: <20200622161132.GM37466@atomide.com> References: <20200618125057.41252-1-drew@beagleboard.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20200618125057.41252-1-drew@beagleboard.org> Sender: linux-gpio-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-gpio@vger.kernel.org * Drew Fustini [200618 05:52]: > Currently, pinctrl-single only allows #pinctrl-cells = 1. > > This series will allow pinctrl-single to also support #pinctrl-cells = 2 > > If "pinctrl-single,pins" has 3 arguments (offset, conf, mux) then > pcs_parse_one_pinctrl_entry() does an OR operation on to get the > value to store in the register. > > To take advantage of #pinctrl-cells = 2, the AM33XX_PADCONF macro in > omap.h is modified to keep pin conf and pin mux values separate. Hmm to me it looks like the order of the patches is the wrong way around here. Don't we need to first change pinctrl-single.c, and then only after that update the dts? And make sure the pinctrl-single.c change does not break anything without changing the dts :) Regards, Tony