linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH V4 0/2] dt-bindings: remoteproc: k3-r5f|dsp: Remove
@ 2021-09-27 10:38 Sinthu Raja
  2021-09-27 10:38 ` [PATCH V4 1/2] dt-bindings: remoteproc: k3-r5f: Cleanup SoC compatible from DT example Sinthu Raja
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: Sinthu Raja @ 2021-09-27 10:38 UTC (permalink / raw)
  To: Suman Anna, Rob Herring, Mathieu Poirier, Bjorn Andersson,
	Ohad Ben-Cohen
  Cc: linux-kernel, devicetree, linux-arm-kernel, linux-remoteproc,
	Nishanth Menon, Sinthu Raja

From: Sinthu Raja <sinthu.raja@ti.com>

Hi All,
The series of patches are meant to help make the rproc bindings for K3
r5f and dsp support independent of board/platform involved.

Changes in V4:
Addressed review comments:
- Removed Fixes tags from the commit descriptions.
- Updated subject and commit description to emphasis on cleaning up of the 
  example to address the dt_binding_check warnings.


V3: https://lore.kernel.org/all/20210917095426.19277-1-sinthu.raja@ti.com/
V2: https://lore.kernel.org/all/20210818074030.1877-1-sinthu.raja@ti.com/
V1: https://lore.kernel.org/all/20210817152005.21575-1-sinthu.raja@ti.com/

Sinthu Raja (2):
  dt-bindings: remoteproc: k3-r5f: Cleanup SoC compatible from DT
    example
  dt-bindings: remoteproc: k3-dsp: Cleanup SoC compatible from DT
    example

 .../devicetree/bindings/remoteproc/ti,k3-dsp-rproc.yaml       | 4 +---
 .../devicetree/bindings/remoteproc/ti,k3-r5f-rproc.yaml       | 4 +---
 2 files changed, 2 insertions(+), 6 deletions(-)

-- 
2.31.1


^ permalink raw reply	[flat|nested] 5+ messages in thread

* [PATCH V4 1/2] dt-bindings: remoteproc: k3-r5f: Cleanup SoC compatible from DT example
  2021-09-27 10:38 [PATCH V4 0/2] dt-bindings: remoteproc: k3-r5f|dsp: Remove Sinthu Raja
@ 2021-09-27 10:38 ` Sinthu Raja
  2021-09-27 10:38 ` [PATCH V4 2/2] dt-bindings: remoteproc: k3-dsp: " Sinthu Raja
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: Sinthu Raja @ 2021-09-27 10:38 UTC (permalink / raw)
  To: Suman Anna, Rob Herring, Mathieu Poirier, Bjorn Andersson,
	Ohad Ben-Cohen
  Cc: linux-kernel, devicetree, linux-arm-kernel, linux-remoteproc,
	Nishanth Menon, Sinthu Raja, Rob Herring

From: Sinthu Raja <sinthu.raja@ti.com>

The K3 R5F binding example used the root-node with a SoC compatible
property originally to address the dt_binding_check warnings resulting
from using a value of 2 for #address-cells and #size-cells as per most
common usage on K3 SoCs. Clean this up and replace it with a generic soc
node to keep it agnostic of the SoC or board compatibles that are outside
the scope of this binding.

Signed-off-by: Sinthu Raja <sinthu.raja@ti.com>
Acked-by: Rob Herring <robh@kernel.org>
Acked-by: Suman Anna <s-anna@ti.com>
---

Changes in V4: new patch in the series.
* review comment updates, including, commit message and $subject updates
   & dropped Fixes tag.

V3: https://lore.kernel.org/all/20210917095426.19277-2-sinthu.raja@ti.com/

 .../devicetree/bindings/remoteproc/ti,k3-r5f-rproc.yaml       | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/Documentation/devicetree/bindings/remoteproc/ti,k3-r5f-rproc.yaml b/Documentation/devicetree/bindings/remoteproc/ti,k3-r5f-rproc.yaml
index 130fbaacc4b1..eeef255c4045 100644
--- a/Documentation/devicetree/bindings/remoteproc/ti,k3-r5f-rproc.yaml
+++ b/Documentation/devicetree/bindings/remoteproc/ti,k3-r5f-rproc.yaml
@@ -230,9 +230,7 @@ additionalProperties: false
 
 examples:
   - |
-    / {
-        model = "Texas Instruments K3 AM654 SoC";
-        compatible = "ti,am654-evm", "ti,am654";
+    soc {
         #address-cells = <2>;
         #size-cells = <2>;
 
-- 
2.31.1


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [PATCH V4 2/2] dt-bindings: remoteproc: k3-dsp: Cleanup SoC compatible from DT example
  2021-09-27 10:38 [PATCH V4 0/2] dt-bindings: remoteproc: k3-r5f|dsp: Remove Sinthu Raja
  2021-09-27 10:38 ` [PATCH V4 1/2] dt-bindings: remoteproc: k3-r5f: Cleanup SoC compatible from DT example Sinthu Raja
@ 2021-09-27 10:38 ` Sinthu Raja
  2021-09-27 15:08 ` [PATCH V4 0/2] dt-bindings: remoteproc: k3-r5f|dsp: Remove Nishanth Menon
  2021-09-27 17:23 ` Mathieu Poirier
  3 siblings, 0 replies; 5+ messages in thread
From: Sinthu Raja @ 2021-09-27 10:38 UTC (permalink / raw)
  To: Suman Anna, Rob Herring, Mathieu Poirier, Bjorn Andersson,
	Ohad Ben-Cohen
  Cc: linux-kernel, devicetree, linux-arm-kernel, linux-remoteproc,
	Nishanth Menon, Sinthu Raja, Rob Herring

From: Sinthu Raja <sinthu.raja@ti.com>

The K3 DSP binding example used the root-node with a SoC compatible
property originally to address the dt_binding_check warnings resulting
from using a value of 2 for #address-cells and #size-cells as per most
common usage on K3 SoCs. Clean this up and replace it with a generic soc
node to keep it agnostic of the SoC or board compatibles that are outside
the scope of this binding.

Signed-off-by: Sinthu Raja <sinthu.raja@ti.com>
Acked-by: Rob Herring <robh@kernel.org>
Acked-by: Suman Anna <s-anna@ti.com>
---

Changes since V4:
* review comment updates, including, commit message and $subject updates
  & dropped Fixes tag.

V3: https://lore.kernel.org/all/20210917095426.19277-3-sinthu.raja@ti.com/
V2: https://lore.kernel.org/all/20210818074030.1877-1-sinthu.raja@ti.com/
V1: https://lore.kernel.org/all/20210817152005.21575-1-sinthu.raja@ti.com/

 .../devicetree/bindings/remoteproc/ti,k3-dsp-rproc.yaml       | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/Documentation/devicetree/bindings/remoteproc/ti,k3-dsp-rproc.yaml b/Documentation/devicetree/bindings/remoteproc/ti,k3-dsp-rproc.yaml
index 6070456a7b67..5ec6505ac408 100644
--- a/Documentation/devicetree/bindings/remoteproc/ti,k3-dsp-rproc.yaml
+++ b/Documentation/devicetree/bindings/remoteproc/ti,k3-dsp-rproc.yaml
@@ -133,9 +133,7 @@ unevaluatedProperties: false
 
 examples:
   - |
-    / {
-        model = "Texas Instruments K3 J721E SoC";
-        compatible = "ti,j721e";
+    soc {
         #address-cells = <2>;
         #size-cells = <2>;
 
-- 
2.31.1


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [PATCH V4 0/2] dt-bindings: remoteproc: k3-r5f|dsp: Remove
  2021-09-27 10:38 [PATCH V4 0/2] dt-bindings: remoteproc: k3-r5f|dsp: Remove Sinthu Raja
  2021-09-27 10:38 ` [PATCH V4 1/2] dt-bindings: remoteproc: k3-r5f: Cleanup SoC compatible from DT example Sinthu Raja
  2021-09-27 10:38 ` [PATCH V4 2/2] dt-bindings: remoteproc: k3-dsp: " Sinthu Raja
@ 2021-09-27 15:08 ` Nishanth Menon
  2021-09-27 17:23 ` Mathieu Poirier
  3 siblings, 0 replies; 5+ messages in thread
From: Nishanth Menon @ 2021-09-27 15:08 UTC (permalink / raw)
  To: Sinthu Raja
  Cc: Suman Anna, Rob Herring, Mathieu Poirier, Bjorn Andersson,
	Ohad Ben-Cohen, linux-kernel, devicetree, linux-arm-kernel,
	linux-remoteproc, Sinthu Raja

On 16:08-20210927, Sinthu Raja wrote:
> From: Sinthu Raja <sinthu.raja@ti.com>
> 
> Hi All,
> The series of patches are meant to help make the rproc bindings for K3
> r5f and dsp support independent of board/platform involved.
> 
> Changes in V4:
> Addressed review comments:
> - Removed Fixes tags from the commit descriptions.
> - Updated subject and commit description to emphasis on cleaning up of the 
>   example to address the dt_binding_check warnings.
> 
> 
> V3: https://lore.kernel.org/all/20210917095426.19277-1-sinthu.raja@ti.com/
> V2: https://lore.kernel.org/all/20210818074030.1877-1-sinthu.raja@ti.com/
> V1: https://lore.kernel.org/all/20210817152005.21575-1-sinthu.raja@ti.com/
> 
> Sinthu Raja (2):
>   dt-bindings: remoteproc: k3-r5f: Cleanup SoC compatible from DT
>     example
>   dt-bindings: remoteproc: k3-dsp: Cleanup SoC compatible from DT
>     example
> 


Reviewed-by: Nishanth Menon <nm@ti.com>

-- 
Regards,
Nishanth Menon
Key (0xDDB5849D1736249D) / Fingerprint: F8A2 8693 54EB 8232 17A3  1A34 DDB5 849D 1736 249D

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH V4 0/2] dt-bindings: remoteproc: k3-r5f|dsp: Remove
  2021-09-27 10:38 [PATCH V4 0/2] dt-bindings: remoteproc: k3-r5f|dsp: Remove Sinthu Raja
                   ` (2 preceding siblings ...)
  2021-09-27 15:08 ` [PATCH V4 0/2] dt-bindings: remoteproc: k3-r5f|dsp: Remove Nishanth Menon
@ 2021-09-27 17:23 ` Mathieu Poirier
  3 siblings, 0 replies; 5+ messages in thread
From: Mathieu Poirier @ 2021-09-27 17:23 UTC (permalink / raw)
  To: Sinthu Raja
  Cc: Suman Anna, Rob Herring, Bjorn Andersson, Ohad Ben-Cohen,
	linux-kernel, devicetree, linux-arm-kernel, linux-remoteproc,
	Nishanth Menon, Sinthu Raja

On Mon, Sep 27, 2021 at 04:08:09PM +0530, Sinthu Raja wrote:
> From: Sinthu Raja <sinthu.raja@ti.com>
> 
> Hi All,
> The series of patches are meant to help make the rproc bindings for K3
> r5f and dsp support independent of board/platform involved.
> 
> Changes in V4:
> Addressed review comments:
> - Removed Fixes tags from the commit descriptions.
> - Updated subject and commit description to emphasis on cleaning up of the 
>   example to address the dt_binding_check warnings.
> 
> 
> V3: https://lore.kernel.org/all/20210917095426.19277-1-sinthu.raja@ti.com/
> V2: https://lore.kernel.org/all/20210818074030.1877-1-sinthu.raja@ti.com/
> V1: https://lore.kernel.org/all/20210817152005.21575-1-sinthu.raja@ti.com/
> 
> Sinthu Raja (2):
>   dt-bindings: remoteproc: k3-r5f: Cleanup SoC compatible from DT
>     example
>   dt-bindings: remoteproc: k3-dsp: Cleanup SoC compatible from DT
>     example
> 
>  .../devicetree/bindings/remoteproc/ti,k3-dsp-rproc.yaml       | 4 +---
>  .../devicetree/bindings/remoteproc/ti,k3-r5f-rproc.yaml       | 4 +---
>  2 files changed, 2 insertions(+), 6 deletions(-)

I have applied this set.

Thanks,
Mathieu

> 
> -- 
> 2.31.1
> 

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2021-09-27 17:43 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-09-27 10:38 [PATCH V4 0/2] dt-bindings: remoteproc: k3-r5f|dsp: Remove Sinthu Raja
2021-09-27 10:38 ` [PATCH V4 1/2] dt-bindings: remoteproc: k3-r5f: Cleanup SoC compatible from DT example Sinthu Raja
2021-09-27 10:38 ` [PATCH V4 2/2] dt-bindings: remoteproc: k3-dsp: " Sinthu Raja
2021-09-27 15:08 ` [PATCH V4 0/2] dt-bindings: remoteproc: k3-r5f|dsp: Remove Nishanth Menon
2021-09-27 17:23 ` Mathieu Poirier

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).