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 7AE33C433F5 for ; Fri, 3 Sep 2021 18:08:53 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 59D1C610CE for ; Fri, 3 Sep 2021 18:08:53 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S233659AbhICSJw (ORCPT ); Fri, 3 Sep 2021 14:09:52 -0400 Received: from mail-oi1-f176.google.com ([209.85.167.176]:45003 "EHLO mail-oi1-f176.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S231747AbhICSJw (ORCPT ); Fri, 3 Sep 2021 14:09:52 -0400 Received: by mail-oi1-f176.google.com with SMTP id c79so179934oib.11; Fri, 03 Sep 2021 11:08:52 -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=srO9UaaeJEIBVm76BO48MHy8X7hxZhuBH0la7EXFH5c=; b=SFrbS9vX1D2vpLD6sauei5D6J8pRmtsTkqeY1HDA0oS+z2hZu2nNpOvdz9B32whRzP YGWKfNXeZ8Zakb+zbpij9sLjdXVdiG/lJ5gIbdf2jGUjX3IuPJ8JjzWrei1U0DKl1JHA lDHL+FXDBuj6+TiYbI2/Gb4s63Tc0f2vPdpqE7Mg3e6YEGHj3WtEjhiOA9tz6MguYNhT WC1k4It+wHP9ZTngIb/oDGkdkADcQNLQwcfI+DDymJzHg/sH97HA9l0mAeMoCbZqIWBi hiSraFi3LB1uDOUWHE9d0hvtdiV1U3FK3c8wuTdLPVTMsJ/72oeq987CWGqcNBti8eJr KjMQ== X-Gm-Message-State: AOAM533HghGd5Lt5unpSfac0k3S8lI3TeTSEofx0oJuY6A1r1UU0d2Od RT3UwpnpQyQ98xBYh1HlYQ== X-Google-Smtp-Source: ABdhPJwhO+JPq7lEV8o68mpYUYKiRsDQl/O4kspL4I6C+YPKdK8KJO0ZSt2X5mKrGti7KZ79aWE0oA== X-Received: by 2002:aca:eb0f:: with SMTP id j15mr81990oih.7.1630692531947; Fri, 03 Sep 2021 11:08:51 -0700 (PDT) Received: from robh.at.kernel.org (66-90-148-213.dyn.grandenetworks.net. [66.90.148.213]) by smtp.gmail.com with ESMTPSA id v77sm16933oie.5.2021.09.03.11.08.50 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Fri, 03 Sep 2021 11:08:51 -0700 (PDT) Received: (nullmailer pid 3196194 invoked by uid 1000); Fri, 03 Sep 2021 18:08:50 -0000 Date: Fri, 3 Sep 2021 13:08:50 -0500 From: Rob Herring To: Maxime Ripard Cc: Mailing List , Jernej =?utf-8?Q?=C5=A0krabec?= , Frank Rowand , Chen-Yu Tsai , devicetree@vger.kernel.org, linux-arm-kernel@lists.infradead.org, linux-sunxi@googlegroups.com, Rob Herring Subject: Re: [PATCH v2 05/52] dt-bindings: Convert Reserved Memory binding to a schema Message-ID: References: <20210901091852.479202-1-maxime@cerno.tech> <20210901091852.479202-6-maxime@cerno.tech> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20210901091852.479202-6-maxime@cerno.tech> Precedence: bulk List-ID: X-Mailing-List: devicetree@vger.kernel.org On Wed, 01 Sep 2021 11:18:05 +0200, Maxime Ripard wrote: > The Reserved Memory mechanism is supported by Linux thanks to its device > tree binding. > > Now that we have the DT validation in place, let's convert the device > tree bindings for that driver over to a YAML schema. > > Cc: Mailing List > Signed-off-by: Maxime Ripard > > --- > > Changes from v1: > - Fixed the license > - Added a mention that the file has moved > - Added a documentation for memory-region > - Split the reserved-memory binding in two: one for the generic part > and one for shared-dma-pool > --- > .../reserved-memory/memory-region.yaml | 40 ++++ > .../reserved-memory/reserved-memory.txt | 172 +----------------- > .../reserved-memory/reserved-memory.yaml | 96 ++++++++++ > .../reserved-memory/shared-dma-pool.yaml | 87 +++++++++ > 4 files changed, 224 insertions(+), 171 deletions(-) > create mode 100644 Documentation/devicetree/bindings/reserved-memory/memory-region.yaml > create mode 100644 Documentation/devicetree/bindings/reserved-memory/reserved-memory.yaml > create mode 100644 Documentation/devicetree/bindings/reserved-memory/shared-dma-pool.yaml > I reworked the commit msg and a couple of nits, and 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 73156C433EF for ; Fri, 3 Sep 2021 18:10:34 +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 3E04B610E9 for ; Fri, 3 Sep 2021 18:10:34 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.4.1 mail.kernel.org 3E04B610E9 Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=kernel.org Authentication-Results: mail.kernel.org; spf=none smtp.mailfrom=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=QrpqTkTa4wn8e1pPcDe847okwPREcJZOLKE1Gusrfec=; b=rAo7+YY/zWyxJV fD/ZDoFTrYXxWKRnA+Jfw3LhY7HYXANsMEglHFb5lkRsDMNCrfHVSD0PorleZQrlcCGkYdJRD4aZ3 zzVXOqSAq+tqujgMYNVSREWTwMuySd5HpD1apUsJUvXdBHoEvq79qofcaZQDK9VRJpMvY8YtEpCD8 AVfxMoaN+9nKJU3CSnZBh9oSzeXaD8jtQ0Pkm7nSAb2ORIou7GXldAlLQ+PdW155yKwiCl94s/qd2 k3JoxUPkMB3yAqU+SoBjYVcvD7nEf7RizXhkz5MkpnUz67iSPM7rLG7RwY5z2YEQ7OHOgkR/fpmYr +n0o5W8xJ+A9DU5tbwOQ==; Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.94.2 #2 (Red Hat Linux)) id 1mMDcW-00CY6j-B2; Fri, 03 Sep 2021 18:08:56 +0000 Received: from mail-oi1-f173.google.com ([209.85.167.173]) by bombadil.infradead.org with esmtps (Exim 4.94.2 #2 (Red Hat Linux)) id 1mMDcS-00CY5w-Pu for linux-arm-kernel@lists.infradead.org; Fri, 03 Sep 2021 18:08:54 +0000 Received: by mail-oi1-f173.google.com with SMTP id s20so220075oiw.3 for ; Fri, 03 Sep 2021 11:08:52 -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=srO9UaaeJEIBVm76BO48MHy8X7hxZhuBH0la7EXFH5c=; b=oAdoHE7cf8cvJkEH4X6JfBicev6/bOSb88q0pTHKI7fFqgmtygybrZA+vGv5Z8l1DP DdOeV/R4bxhALxI8N6/ilmM9q36QOC5R5ojs5oWxQeLyG7x/GVTqEj6QQJEbm+v5Qt2K FPIJaEwqucFg1OQ4jNSGc/AoiotesrpWWiK4sm1LSYnJj84iXE7ONSSQz4C5ZGs0yids Z9y27tzI5q7ROJ/xrdotVEvDhpiWGp2qZmUiDdOhQQFZeex8kT1tYJqSIpYF0XLD2/gO 6UlzsM/AcTvfigMMKAFYNWqzrlk7YwFKZepUmf+JhHrKhjNULOScRWj96u8ANZHS5Vg8 a/tA== X-Gm-Message-State: AOAM532MY5M4fR7mbanYkcpztzv33YrzO+BZ8byOr1F3QbSE6QfLdzwT kiWOsfs7IS9FgEL7CLep73DiTxNcsw== X-Google-Smtp-Source: ABdhPJwhO+JPq7lEV8o68mpYUYKiRsDQl/O4kspL4I6C+YPKdK8KJO0ZSt2X5mKrGti7KZ79aWE0oA== X-Received: by 2002:aca:eb0f:: with SMTP id j15mr81990oih.7.1630692531947; Fri, 03 Sep 2021 11:08:51 -0700 (PDT) Received: from robh.at.kernel.org (66-90-148-213.dyn.grandenetworks.net. [66.90.148.213]) by smtp.gmail.com with ESMTPSA id v77sm16933oie.5.2021.09.03.11.08.50 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Fri, 03 Sep 2021 11:08:51 -0700 (PDT) Received: (nullmailer pid 3196194 invoked by uid 1000); Fri, 03 Sep 2021 18:08:50 -0000 Date: Fri, 3 Sep 2021 13:08:50 -0500 From: Rob Herring To: Maxime Ripard Cc: Mailing List , Jernej =?utf-8?Q?=C5=A0krabec?= , Frank Rowand , Chen-Yu Tsai , devicetree@vger.kernel.org, linux-arm-kernel@lists.infradead.org, linux-sunxi@googlegroups.com, Rob Herring Subject: Re: [PATCH v2 05/52] dt-bindings: Convert Reserved Memory binding to a schema Message-ID: References: <20210901091852.479202-1-maxime@cerno.tech> <20210901091852.479202-6-maxime@cerno.tech> MIME-Version: 1.0 Content-Disposition: inline In-Reply-To: <20210901091852.479202-6-maxime@cerno.tech> X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20210903_110852_888324_AA765159 X-CRM114-Status: GOOD ( 17.93 ) 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 Wed, 01 Sep 2021 11:18:05 +0200, Maxime Ripard wrote: > The Reserved Memory mechanism is supported by Linux thanks to its device > tree binding. > > Now that we have the DT validation in place, let's convert the device > tree bindings for that driver over to a YAML schema. > > Cc: Mailing List > Signed-off-by: Maxime Ripard > > --- > > Changes from v1: > - Fixed the license > - Added a mention that the file has moved > - Added a documentation for memory-region > - Split the reserved-memory binding in two: one for the generic part > and one for shared-dma-pool > --- > .../reserved-memory/memory-region.yaml | 40 ++++ > .../reserved-memory/reserved-memory.txt | 172 +----------------- > .../reserved-memory/reserved-memory.yaml | 96 ++++++++++ > .../reserved-memory/shared-dma-pool.yaml | 87 +++++++++ > 4 files changed, 224 insertions(+), 171 deletions(-) > create mode 100644 Documentation/devicetree/bindings/reserved-memory/memory-region.yaml > create mode 100644 Documentation/devicetree/bindings/reserved-memory/reserved-memory.yaml > create mode 100644 Documentation/devicetree/bindings/reserved-memory/shared-dma-pool.yaml > I reworked the commit msg and a couple of nits, and applied, thanks! _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel From mboxrd@z Thu Jan 1 00:00:00 1970 From: Rob Herring Subject: Re: [PATCH v2 05/52] dt-bindings: Convert Reserved Memory binding to a schema Date: Fri, 3 Sep 2021 13:08:50 -0500 Message-ID: References: <20210901091852.479202-1-maxime@cerno.tech> <20210901091852.479202-6-maxime@cerno.tech> Mime-Version: 1.0 Return-path: Content-Disposition: inline In-Reply-To: <20210901091852.479202-6-maxime-R63rPqgGiG5yDzI6CaY1VQ@public.gmane.org> List-ID: Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: Maxime Ripard Cc: Mailing List , Jernej =?utf-8?Q?=C5=A0krabec?= , Frank Rowand , Chen-Yu Tsai , devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org, linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org, linux-sunxi-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org, Rob Herring On Wed, 01 Sep 2021 11:18:05 +0200, Maxime Ripard wrote: > The Reserved Memory mechanism is supported by Linux thanks to its device > tree binding. > > Now that we have the DT validation in place, let's convert the device > tree bindings for that driver over to a YAML schema. > > Cc: Mailing List > Signed-off-by: Maxime Ripard > > --- > > Changes from v1: > - Fixed the license > - Added a mention that the file has moved > - Added a documentation for memory-region > - Split the reserved-memory binding in two: one for the generic part > and one for shared-dma-pool > --- > .../reserved-memory/memory-region.yaml | 40 ++++ > .../reserved-memory/reserved-memory.txt | 172 +----------------- > .../reserved-memory/reserved-memory.yaml | 96 ++++++++++ > .../reserved-memory/shared-dma-pool.yaml | 87 +++++++++ > 4 files changed, 224 insertions(+), 171 deletions(-) > create mode 100644 Documentation/devicetree/bindings/reserved-memory/memory-region.yaml > create mode 100644 Documentation/devicetree/bindings/reserved-memory/reserved-memory.yaml > create mode 100644 Documentation/devicetree/bindings/reserved-memory/shared-dma-pool.yaml > I reworked the commit msg and a couple of nits, and applied, thanks!