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=-14.0 required=3.0 tests=BAYES_00,INCLUDES_CR_TRAILER, INCLUDES_PATCH,MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED autolearn=ham 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 6F3BAC47083 for ; Wed, 2 Jun 2021 19:45:23 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 52661610A1 for ; Wed, 2 Jun 2021 19:45:23 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229606AbhFBTrF (ORCPT ); Wed, 2 Jun 2021 15:47:05 -0400 Received: from mail-oo1-f52.google.com ([209.85.161.52]:42592 "EHLO mail-oo1-f52.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229489AbhFBTrE (ORCPT ); Wed, 2 Jun 2021 15:47:04 -0400 Received: by mail-oo1-f52.google.com with SMTP id v13-20020a4ac00d0000b029020b43b918eeso833130oop.9; Wed, 02 Jun 2021 12:45:21 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:date:from:to:cc:subject:message-id:references :mime-version:content-disposition:in-reply-to; bh=KXhvW2MuYBFxKDCb7L8NYpnjcodQhGqzQhLsB3uqzvc=; b=nEOibw8giRFxKJMaoU9uh9ZiMUVYsKP2Em//DrAgOk/YpN20HIfN5M2dHnUH1LVYpX BQIIfFw74GMvqmEg35+bQ+Imtn2UewE6795+cgaXOhnBvnPImq3APx72WRvEf/gLebEz hk6VOlzM621o0n92iwOLhOPf4Y7H5edgtoNFfxIUmLZieu7ZmyzaLQbQg8zXpYb3jn4q wWuayDN6M8DDIdCasICB7Ubep3fPBxvbyNz2oOryedmEJ7q+nxJZwAJbhcLBf4LBTrE6 TVH31b+ZRgW+hq6nRMAKBZ+Q3BNrlpT+47vfY9dest6lRS1wn6ssLSYx6YZs8NTcov2y 8aLA== X-Gm-Message-State: AOAM532Qhxkh2j2m2DjyzdjCI0Hh3yHKFR0mf3wicOWHOY/EZv1y2gXP iFiuDdFOfC/CdfTck8jcVg== X-Google-Smtp-Source: ABdhPJxvXI61LKj+3eYWuEZSdx6fsYRZ6BOLxSMVdHlanDLigdEbGt4aH2CuDIuFty6ShutIyPlzgA== X-Received: by 2002:a4a:8241:: with SMTP id t1mr25453785oog.17.1622663121095; Wed, 02 Jun 2021 12:45:21 -0700 (PDT) Received: from robh.at.kernel.org (24-155-109-49.dyn.grandenetworks.net. [24.155.109.49]) by smtp.gmail.com with ESMTPSA id m28sm174905otr.81.2021.06.02.12.45.19 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Wed, 02 Jun 2021 12:45:20 -0700 (PDT) Received: (nullmailer pid 3863012 invoked by uid 1000); Wed, 02 Jun 2021 19:45:19 -0000 Date: Wed, 2 Jun 2021 14:45:19 -0500 From: Rob Herring To: Suman Anna Cc: devicetree@vger.kernel.org, Rob Herring , Jan Kiszka , linux-arm-kernel@lists.infradead.org, Jassi Brar , Tony Lindgren , Nishanth Menon , linux-omap@vger.kernel.org Subject: Re: [PATCH v2] dt-bindings: mailbox: Convert omap-mailbox.txt binding to YAML Message-ID: <20210602194519.GA3862952@robh.at.kernel.org> References: <20210520234348.4479-1-s-anna@ti.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20210520234348.4479-1-s-anna@ti.com> Precedence: bulk List-ID: X-Mailing-List: devicetree@vger.kernel.org On Thu, 20 May 2021 18:43:48 -0500, Suman Anna wrote: > Convert the current OMAP Mailbox binding from text format to YAML > format/DT schema, and delete the legacy text binding file. > > The new YAML binding conversion is an updated version compared to > the original. The descriptions for certain properties have been > improved to provide more clarity. Constraints are added to the > properties 'ti,mbox-num-users', 'ti,mbox-num-fifos' and 'interrupts'. > The 'ti,hwmods' is a legacy property and is retained only to reflect > the existing usage on some older OMAP2 and OMAP3 platforms. > > All the existing examples have also been updated to reflect the > latest dts nodes (ti,hwmods removed from OMAP4 and AM33xx examples, > and interrupts value updated for AM65x SoCs). > > Signed-off-by: Suman Anna > --- > v2: Address Rob's comments > - Replace definitions with $defs > - Dropping the trailing | character after all description keywords > - Marked ti,hwmods as deprecated > - Updated #mbox-cells description > v1: > http://patchwork.ozlabs.org/project/devicetree-bindings/patch/20210518172022.10562-1-s-anna@ti.com/ > > Note that this would continue to generate the checkpatch warning > "DT binding docs and includes should be a separate patch" for the > deleted text file. The fixes for dtbs_check warnings on mailbox nodes > with this yaml file are posted as well, please see v1 patch for links. > > regards > Suman > > .../bindings/mailbox/omap-mailbox.txt | 184 ----------- > .../bindings/mailbox/ti,omap-mailbox.yaml | 308 ++++++++++++++++++ > 2 files changed, 308 insertions(+), 184 deletions(-) > delete mode 100644 Documentation/devicetree/bindings/mailbox/omap-mailbox.txt > create mode 100644 Documentation/devicetree/bindings/mailbox/ti,omap-mailbox.yaml > Applied, thanks! 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=-14.4 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,INCLUDES_CR_TRAILER,INCLUDES_PATCH,MAILING_LIST_MULTI, SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED autolearn=ham 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 13D69C47093 for ; Wed, 2 Jun 2021 19:47:02 +0000 (UTC) Received: from bombadil.infradead.org (bombadil.infradead.org [198.137.202.133]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id D1815613F5 for ; Wed, 2 Jun 2021 19:47:01 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org D1815613F5 Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=kernel.org Authentication-Results: mail.kernel.org; spf=none smtp.mailfrom=linux-arm-kernel-bounces+linux-arm-kernel=archiver.kernel.org@lists.infradead.org DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=bombadil.20210309; h=Sender: Content-Transfer-Encoding:Content-Type:List-Subscribe:List-Help:List-Post: List-Archive:List-Unsubscribe:List-Id:In-Reply-To:MIME-Version:References: Message-ID:Subject:Cc:To:From:Date:Reply-To:Content-ID:Content-Description: Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID: List-Owner; bh=25P99WMlOoNi4C224uh4ce3MyleTqPxxoNtnmYDYFkg=; b=goaBF/slq71c+N DQGQHptQc2ej2mNO2WbDuLIkrOJFVvfUZOdjkecMiV8Li66JytTvoay/AfBLz9ZQj0R0+6s4ydT/Q 2mtkAm9hLw1wUetsEyfXiSt6eCRqc6SkvWD8CvkP9YtpPB6MMYhNoqhok6EydEZ39ToT3hia+6Vej pUO7qaHWypSlwBBIDlUOiQhyU8PgI5M5h9EsI0hL8cSZb3LRE9xRANzrJouPemCizQAEHvtp2zWIa YQonNtgSwjm3m3uWo8ROliC7UU0tdwvz7fQD/p+mYwEECOSUnPI104Qnf+wFxDLlTxU0P/6eUERGU uvHAhuO8RseZ0YQYy23Q==; Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.94.2 #2 (Red Hat Linux)) id 1loWnu-0060kH-Gz; Wed, 02 Jun 2021 19:45:26 +0000 Received: from mail-oo1-f44.google.com ([209.85.161.44]) by bombadil.infradead.org with esmtps (Exim 4.94.2 #2 (Red Hat Linux)) id 1loWnq-0060jB-Bp for linux-arm-kernel@lists.infradead.org; Wed, 02 Jun 2021 19:45:23 +0000 Received: by mail-oo1-f44.google.com with SMTP id p67-20020a4a2f460000b0290245cdf2d1a4so833589oop.8 for ; Wed, 02 Jun 2021 12:45:21 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:date:from:to:cc:subject:message-id:references :mime-version:content-disposition:in-reply-to; bh=KXhvW2MuYBFxKDCb7L8NYpnjcodQhGqzQhLsB3uqzvc=; b=KyhUDzJK8Nfqy4TLbUnI+zbjJ/GeWe8rAlwg9D7QYoM28yIeu5WVsyBZeTemIBmmaF soe0BbGDhDrkMtbr3lekuEGXLi4eadqoDIIAZorRlXnt6Zhl5LoN5egi/LV1HfBtDpMC 7hCPIcrq2UadvsMNGxhOJ07xHKAUEWk51hnVIR3PmqsN9Y8NfdG6Ncjr4xxjGJv0ZGZ7 OxcCz+ON/jgAvMKEcnzY/QTnOmurd0n3gPR/5hss+P4NWcCsnbTVoQfjaOUHReBZ+7Eo xoTn6tx8LvfTMuHOeisrgi1dom9lQQGvRvd0TconbANgipGrvfWAjUESfRt0OY9LcpwR IxlQ== X-Gm-Message-State: AOAM531JqF4g2aJlGaEDtjHrRaDu3PrMMlDJfnfssjLX0Ud+ZL8z6f2y NtJA2UI/Szo5Q3lgWUJz3Q== X-Google-Smtp-Source: ABdhPJxvXI61LKj+3eYWuEZSdx6fsYRZ6BOLxSMVdHlanDLigdEbGt4aH2CuDIuFty6ShutIyPlzgA== X-Received: by 2002:a4a:8241:: with SMTP id t1mr25453785oog.17.1622663121095; Wed, 02 Jun 2021 12:45:21 -0700 (PDT) Received: from robh.at.kernel.org (24-155-109-49.dyn.grandenetworks.net. [24.155.109.49]) by smtp.gmail.com with ESMTPSA id m28sm174905otr.81.2021.06.02.12.45.19 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Wed, 02 Jun 2021 12:45:20 -0700 (PDT) Received: (nullmailer pid 3863012 invoked by uid 1000); Wed, 02 Jun 2021 19:45:19 -0000 Date: Wed, 2 Jun 2021 14:45:19 -0500 From: Rob Herring To: Suman Anna Cc: devicetree@vger.kernel.org, Rob Herring , Jan Kiszka , linux-arm-kernel@lists.infradead.org, Jassi Brar , Tony Lindgren , Nishanth Menon , linux-omap@vger.kernel.org Subject: Re: [PATCH v2] dt-bindings: mailbox: Convert omap-mailbox.txt binding to YAML Message-ID: <20210602194519.GA3862952@robh.at.kernel.org> References: <20210520234348.4479-1-s-anna@ti.com> MIME-Version: 1.0 Content-Disposition: inline In-Reply-To: <20210520234348.4479-1-s-anna@ti.com> X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20210602_124522_427964_C4F1C1EB X-CRM114-Status: GOOD ( 19.35 ) X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+linux-arm-kernel=archiver.kernel.org@lists.infradead.org On Thu, 20 May 2021 18:43:48 -0500, Suman Anna wrote: > Convert the current OMAP Mailbox binding from text format to YAML > format/DT schema, and delete the legacy text binding file. > > The new YAML binding conversion is an updated version compared to > the original. The descriptions for certain properties have been > improved to provide more clarity. Constraints are added to the > properties 'ti,mbox-num-users', 'ti,mbox-num-fifos' and 'interrupts'. > The 'ti,hwmods' is a legacy property and is retained only to reflect > the existing usage on some older OMAP2 and OMAP3 platforms. > > All the existing examples have also been updated to reflect the > latest dts nodes (ti,hwmods removed from OMAP4 and AM33xx examples, > and interrupts value updated for AM65x SoCs). > > Signed-off-by: Suman Anna > --- > v2: Address Rob's comments > - Replace definitions with $defs > - Dropping the trailing | character after all description keywords > - Marked ti,hwmods as deprecated > - Updated #mbox-cells description > v1: > http://patchwork.ozlabs.org/project/devicetree-bindings/patch/20210518172022.10562-1-s-anna@ti.com/ > > Note that this would continue to generate the checkpatch warning > "DT binding docs and includes should be a separate patch" for the > deleted text file. The fixes for dtbs_check warnings on mailbox nodes > with this yaml file are posted as well, please see v1 patch for links. > > regards > Suman > > .../bindings/mailbox/omap-mailbox.txt | 184 ----------- > .../bindings/mailbox/ti,omap-mailbox.yaml | 308 ++++++++++++++++++ > 2 files changed, 308 insertions(+), 184 deletions(-) > delete mode 100644 Documentation/devicetree/bindings/mailbox/omap-mailbox.txt > create mode 100644 Documentation/devicetree/bindings/mailbox/ti,omap-mailbox.yaml > Applied, thanks! _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel