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 Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 2401AC43334 for ; Sun, 5 Jun 2022 22:49:05 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1348374AbiFEWtE (ORCPT ); Sun, 5 Jun 2022 18:49:04 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:39050 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S240474AbiFEWtD (ORCPT ); Sun, 5 Jun 2022 18:49:03 -0400 Received: from mail-qk1-f182.google.com (mail-qk1-f182.google.com [209.85.222.182]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 1FC422FFCE; Sun, 5 Jun 2022 15:49:03 -0700 (PDT) Received: by mail-qk1-f182.google.com with SMTP id n197so2752053qke.1; Sun, 05 Jun 2022 15:49:03 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:date:from:to:cc:subject:message-id:references :mime-version:content-disposition:in-reply-to; bh=cFQv2TrAmUdwhDKidl65ILu68jId00HPH3oLSQ72B5o=; b=2H1hgGqearhmwqlyKzscm/iTpnjGO9ixXdXzknomE0VpGF9nY3AGhc4Ci7/C6ZQCV9 KjLB2B0FVx2cmIoTXv2SLYbWax97uo9hgwlSRbZ8zoEaeTF4GUOIWZT+Y0S1+sP2vUkv A8yaUWqbRO3JP4rBeD1VPx2Ej8O0mwhaK1X7FZLfl69oKZ/q+0cbGbyc+z2eyxK6S3o5 RheYqtdyjiR4EGQVXRA7VHRkZ93tE/Qo5HhO93C3iPGdplD80OkYuESR95IytwnGRknD O/vlnRtrt894X7c8jvJEEMQakJozOJ4OSQNU7cx8UcN1zWjWDIO7OS2gW1oXVP7RW5Bj CFwg== X-Gm-Message-State: AOAM5320gCSSMXPHYel8WEe/0nB5Q9JI3tW63sm+ITiIHu0A6hrJDUIL xb7HfsnReGHseZV2ycWv5A== X-Google-Smtp-Source: ABdhPJxJPLZPo26sTSCa9JYf+TTBlOyo7cPD042GPk7h8wYbwewlEFr2v0vnS1Xb/N/q+TJ0KnMy4w== X-Received: by 2002:a05:620a:404d:b0:6a4:f5b0:d8ca with SMTP id i13-20020a05620a404d00b006a4f5b0d8camr13825512qko.506.1654469342227; Sun, 05 Jun 2022 15:49:02 -0700 (PDT) Received: from robh.at.kernel.org ([2607:fb90:1bdb:2e61:f12:452:5315:9c7e]) by smtp.gmail.com with ESMTPSA id x23-20020ac86b57000000b002f93760e4cfsm8714685qts.26.2022.06.05.15.48.59 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Sun, 05 Jun 2022 15:49:01 -0700 (PDT) Received: (nullmailer pid 3673195 invoked by uid 1000); Sun, 05 Jun 2022 22:48:58 -0000 Date: Sun, 5 Jun 2022 17:48:58 -0500 From: Rob Herring To: Puranjay Mohan Cc: rogerq@kernel.org, krzysztof.kozlowski+dt@linaro.org, s-anna@ti.com, kishon@ti.com, bjorn.andersson@linaro.org, mathieu.poirier@linaro.org, linux-remoteproc@vger.kernel.org, devicetree@vger.kernel.org, linux-arm-kernel@lists.infradead.org, nm@ti.com, ssantosh@kernel.org, linux-kernel@vger.kernel.org, vigneshr@ti.com, grygorii.strashko@ti.com Subject: Re: [PATCH v4 1/6] dt-bindings: remoteproc: Add PRU consumer bindings Message-ID: <20220605224858.GA3673137-robh@kernel.org> References: <20220603121520.13730-1-p-mohan@ti.com> <20220603121520.13730-2-p-mohan@ti.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20220603121520.13730-2-p-mohan@ti.com> Precedence: bulk List-ID: X-Mailing-List: linux-remoteproc@vger.kernel.org On Fri, 03 Jun 2022 17:45:15 +0530, Puranjay Mohan wrote: > From: Suman Anna > > Add a YAML binding document for PRU consumers. The binding includes > all the common properties that can be used by different PRU consumer > or application nodes and supported by the PRU remoteproc driver. > These are used to configure the PRU hardware for specific user > applications. > > The application nodes themselves should define their own bindings. > > Co-developed-by: Tero Kristo > Signed-off-by: Tero Kristo > Signed-off-by: Suman Anna > Co-developed-by: Grzegorz Jaszczyk > Signed-off-by: Grzegorz Jaszczyk > Signed-off-by: Puranjay Mohan > --- > V3->V4: > * Addressed Rob's comments regarding max and min Items. > * removed the dependencies tag as it was redundant. > --- > .../bindings/remoteproc/ti,pru-consumer.yaml | 69 +++++++++++++++++++ > 1 file changed, 69 insertions(+) > create mode 100644 Documentation/devicetree/bindings/remoteproc/ti,pru-consumer.yaml > Reviewed-by: Rob Herring 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 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 smtp.lore.kernel.org (Postfix) with ESMTPS id D71FBC43334 for ; Sun, 5 Jun 2022 22:50:07 +0000 (UTC) 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:Cc:List-Subscribe:List-Help:List-Post: List-Archive:List-Unsubscribe:List-Id:In-Reply-To:MIME-Version:References: Message-ID:Subject: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=nu5f3qmvQINp/nhbAxKzPIB+7g0aa63gVGkH+STT6w4=; b=JGTHZgeg/6linT hJ0rJKJ/W8sdspegB1WMDiiXcolgMHaHbnmCb4w3jhGAzD7XyoQye7hISgCPC2OYO2KxsT5KbE895 s3opKfQ8FEhm0A6O709l9H7upx00lDM271f1hgMNvsWx7XWa3ZZpyvZA53SUB/40OkWZazh8YfyKZ C+uORdHGw1KDoQTlCDyrwZzFJcsEZZhmrpcKGlbmD4XNw9zMT/BrFkP5TLGcpe8q2DV6wDoZuOwrH qvOJiCn+FgldY3nKut21sljAibJXXOZEpuF3K0hvU8iD0RY+vkDAAE0M/OGr3TDt/vAmCAIIU28y2 R2hY6Rz5VdhNJxej4+WA==; Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.94.2 #2 (Red Hat Linux)) id 1nxz3S-00FcGy-Qi; Sun, 05 Jun 2022 22:49:06 +0000 Received: from mail-qk1-f177.google.com ([209.85.222.177]) by bombadil.infradead.org with esmtps (Exim 4.94.2 #2 (Red Hat Linux)) id 1nxz3P-00FcFY-JB for linux-arm-kernel@lists.infradead.org; Sun, 05 Jun 2022 22:49:04 +0000 Received: by mail-qk1-f177.google.com with SMTP id o73so4864874qke.7 for ; Sun, 05 Jun 2022 15:49:02 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:date:from:to:cc:subject:message-id:references :mime-version:content-disposition:in-reply-to; bh=cFQv2TrAmUdwhDKidl65ILu68jId00HPH3oLSQ72B5o=; b=lLmA27TMXI2xfartN/x2GjD9WmEUApMCkRtzJCRQ+0gZsJ37V3yz4GMRb3srG7taYC +2LHUN/2j8Sbing9mNyKtutz/UllL+3E4SqAgU4jTGhNhhdxdQ6VEx4FBgqOL9bUNhSn F8BiTi+QFdcVkafj2m1gEdC4sxNy79K2PaLUJa+biTiJx6aqe6ihPHvQuHCscmwjnPyZ Siu8LE8EeMdWvN38Wsvqb1ZeVrcYUe9vpXY/Z2rIKe5LU6SmPUd46+m5VCYzRlpJORDT yBWnrybG3u5WwJ5e/cIGtZGF/YEw1/WHt04c/YWMP7TzghLmrbymg5Q6SIfBrQEb0HxP 78RA== X-Gm-Message-State: AOAM533e45kGPw13hB+xyVe7BBB93EMCGzD9f/IsQ1NWIEof9J/pp0FD MH2B0uCTyoZgbF65wGYgas7MvukrRQ== X-Google-Smtp-Source: ABdhPJxJPLZPo26sTSCa9JYf+TTBlOyo7cPD042GPk7h8wYbwewlEFr2v0vnS1Xb/N/q+TJ0KnMy4w== X-Received: by 2002:a05:620a:404d:b0:6a4:f5b0:d8ca with SMTP id i13-20020a05620a404d00b006a4f5b0d8camr13825512qko.506.1654469342227; Sun, 05 Jun 2022 15:49:02 -0700 (PDT) Received: from robh.at.kernel.org ([2607:fb90:1bdb:2e61:f12:452:5315:9c7e]) by smtp.gmail.com with ESMTPSA id x23-20020ac86b57000000b002f93760e4cfsm8714685qts.26.2022.06.05.15.48.59 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Sun, 05 Jun 2022 15:49:01 -0700 (PDT) Received: (nullmailer pid 3673195 invoked by uid 1000); Sun, 05 Jun 2022 22:48:58 -0000 Date: Sun, 5 Jun 2022 17:48:58 -0500 From: Rob Herring To: Puranjay Mohan Subject: Re: [PATCH v4 1/6] dt-bindings: remoteproc: Add PRU consumer bindings Message-ID: <20220605224858.GA3673137-robh@kernel.org> References: <20220603121520.13730-1-p-mohan@ti.com> <20220603121520.13730-2-p-mohan@ti.com> MIME-Version: 1.0 Content-Disposition: inline In-Reply-To: <20220603121520.13730-2-p-mohan@ti.com> X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20220605_154903_672287_A104682F X-CRM114-Status: GOOD ( 13.24 ) 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: , Cc: nm@ti.com, kishon@ti.com, grygorii.strashko@ti.com, vigneshr@ti.com, mathieu.poirier@linaro.org, devicetree@vger.kernel.org, linux-remoteproc@vger.kernel.org, linux-kernel@vger.kernel.org, bjorn.andersson@linaro.org, rogerq@kernel.org, krzysztof.kozlowski+dt@linaro.org, ssantosh@kernel.org, linux-arm-kernel@lists.infradead.org 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 Fri, 03 Jun 2022 17:45:15 +0530, Puranjay Mohan wrote: > From: Suman Anna > > Add a YAML binding document for PRU consumers. The binding includes > all the common properties that can be used by different PRU consumer > or application nodes and supported by the PRU remoteproc driver. > These are used to configure the PRU hardware for specific user > applications. > > The application nodes themselves should define their own bindings. > > Co-developed-by: Tero Kristo > Signed-off-by: Tero Kristo > Signed-off-by: Suman Anna > Co-developed-by: Grzegorz Jaszczyk > Signed-off-by: Grzegorz Jaszczyk > Signed-off-by: Puranjay Mohan > --- > V3->V4: > * Addressed Rob's comments regarding max and min Items. > * removed the dependencies tag as it was redundant. > --- > .../bindings/remoteproc/ti,pru-consumer.yaml | 69 +++++++++++++++++++ > 1 file changed, 69 insertions(+) > create mode 100644 Documentation/devicetree/bindings/remoteproc/ti,pru-consumer.yaml > Reviewed-by: Rob Herring _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel