Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id DD245C61DA3 for ; Tue, 21 Feb 2023 14:00:15 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S234167AbjBUOAO (ORCPT ); Tue, 21 Feb 2023 09:00:14 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:51078 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S234219AbjBUOAK (ORCPT ); Tue, 21 Feb 2023 09:00:10 -0500 Received: from lelv0143.ext.ti.com (lelv0143.ext.ti.com [198.47.23.248]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id A61F34EE7; Tue, 21 Feb 2023 06:00:08 -0800 (PST) Received: from fllv0035.itg.ti.com ([10.64.41.0]) by lelv0143.ext.ti.com (8.15.2/8.15.2) with ESMTP id 31LDxwZ4044219; Tue, 21 Feb 2023 07:59:58 -0600 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ti.com; s=ti-com-17Q1; t=1676987998; bh=sZ/MFER/WB82On3KeD8apeXmzEBkAVVrdYu2emu3KHQ=; h=Date:To:CC:References:From:Subject:In-Reply-To; b=TCmiJwTmAssGH0lL2aXCRuUP4nr+rxBEwr/iRX7gopZyPpd8yggaFBQfvDezQ5iFD WVPeX1RA9U8P+WCVOgaz7DBqWU57Iztr5uxUWcUwt7D+eVHuN3eKOap8Yaklskw+5a zp+uPKvv3RN9saw6ZXui+XmlUSa+QRA1UEPjUjIw= Received: from DLEE101.ent.ti.com (dlee101.ent.ti.com [157.170.170.31]) by fllv0035.itg.ti.com (8.15.2/8.15.2) with ESMTPS id 31LDxwpu074718 (version=TLSv1.2 cipher=AES256-GCM-SHA384 bits=256 verify=FAIL); Tue, 21 Feb 2023 07:59:58 -0600 Received: from DLEE114.ent.ti.com (157.170.170.25) by DLEE101.ent.ti.com (157.170.170.31) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256_P256) id 15.1.2507.16; Tue, 21 Feb 2023 07:59:57 -0600 Received: from lelv0327.itg.ti.com (10.180.67.183) by DLEE114.ent.ti.com (157.170.170.25) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256_P256) id 15.1.2507.16 via Frontend Transport; Tue, 21 Feb 2023 07:59:57 -0600 Received: from [10.250.233.1] (ileaxei01-snat2.itg.ti.com [10.180.69.6]) by lelv0327.itg.ti.com (8.15.2/8.15.2) with ESMTP id 31LDxr1G006411; Tue, 21 Feb 2023 07:59:54 -0600 Message-ID: Date: Tue, 21 Feb 2023 19:29:52 +0530 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:102.0) Gecko/20100101 Thunderbird/102.8.0 Content-Language: en-US To: Ravi Gunasekaran , , , , , , CC: , , References: <20230221120612.27366-1-r-gunasekaran@ti.com> <20230221120612.27366-2-r-gunasekaran@ti.com> From: Vignesh Raghavendra Subject: Re: [PATCH v10 1/9] dt-bindings: mfd: ti,j721e-system-controller: Fix mux node regex In-Reply-To: <20230221120612.27366-2-r-gunasekaran@ti.com> Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-EXCLAIMER-MD-CONFIG: e1e8a2fd-e40a-4ac6-ac9b-f7e9cc9ee180 Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 21/02/23 5:36 pm, Ravi Gunasekaran wrote: > mux-controller nodes may not have "reg" property. Update the regex > for such nodes to resolve the dtbs warnings > > Signed-off-by: Ravi Gunasekaran > --- > .../bindings/mfd/ti,j721e-system-controller.yaml | 8 +++++++- > 1 file changed, 7 insertions(+), 1 deletion(-) > > diff --git a/Documentation/devicetree/bindings/mfd/ti,j721e-system-controller.yaml b/Documentation/devicetree/bindings/mfd/ti,j721e-system-controller.yaml > index 76ef4352e13c..532bfa45e6a0 100644 > --- a/Documentation/devicetree/bindings/mfd/ti,j721e-system-controller.yaml > +++ b/Documentation/devicetree/bindings/mfd/ti,j721e-system-controller.yaml > @@ -45,7 +45,7 @@ properties: > > patternProperties: > # Optional children > - "^mux-controller@[0-9a-f]+$": > + "^mux-controller(@|-)[0-9a-f]+$": Hmm. mmio-mux bindings allow reg property. Why can't we add the same to mux-controller node in 2/9 ? > type: object > description: > This is the SERDES lane control mux. > @@ -94,6 +94,12 @@ examples: > /* SERDES4 lane0/1/2/3 select */ > }; > > + usb_serdes_mux: mux-controller-80 { > + compatible = "mmio-mux"; > + #mux-control-cells = <1>; > + mux-reg-masks = <0x0 0x8000000>; > + }; > + > clock-controller@4140 { > compatible = "ti,am654-ehrpwm-tbclk", "syscon"; > reg = <0x4140 0x18>;