linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2 0/2] dt-bindings: sti: updates for STi platform
@ 2023-02-12 20:51 Alain Volmat
  2023-02-12 20:51 ` [PATCH v2 1/2] dt-bindings: arm: sti: add STi platform syscon Alain Volmat
  2023-02-12 20:51 ` [PATCH v2 2/2] dt-bindings: arm: sti: add sti boards and remove stih415/stih416 Alain Volmat
  0 siblings, 2 replies; 5+ messages in thread
From: Alain Volmat @ 2023-02-12 20:51 UTC (permalink / raw)
  To: Rob Herring, Krzysztof Kozlowski, Patrice Chotard
  Cc: Alain Volmat, devicetree, linux-kernel

Update the sti.yaml file with addition of board information and move it
into soc/sti folder.
Add the st,sti-syscon.yaml binding file for STi platform syscon

Alain Volmat (2):
  dt-bindings: arm: sti: add STi platform syscon
  dt-bindings: arm: sti: add sti boards and remove stih415/stih416

 .../devicetree/bindings/arm/sti.yaml          | 26 -----------
 .../bindings/soc/sti/st,sti-syscon.yaml       | 46 +++++++++++++++++++
 .../devicetree/bindings/soc/sti/sti.yaml      | 33 +++++++++++++
 3 files changed, 79 insertions(+), 26 deletions(-)
 delete mode 100644 Documentation/devicetree/bindings/arm/sti.yaml
 create mode 100644 Documentation/devicetree/bindings/soc/sti/st,sti-syscon.yaml
 create mode 100644 Documentation/devicetree/bindings/soc/sti/sti.yaml

-- 
2.34.1


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

* [PATCH v2 1/2] dt-bindings: arm: sti: add STi platform syscon
  2023-02-12 20:51 [PATCH v2 0/2] dt-bindings: sti: updates for STi platform Alain Volmat
@ 2023-02-12 20:51 ` Alain Volmat
  2023-02-13 10:47   ` Krzysztof Kozlowski
  2023-02-12 20:51 ` [PATCH v2 2/2] dt-bindings: arm: sti: add sti boards and remove stih415/stih416 Alain Volmat
  1 sibling, 1 reply; 5+ messages in thread
From: Alain Volmat @ 2023-02-12 20:51 UTC (permalink / raw)
  To: Rob Herring, Krzysztof Kozlowski, Patrice Chotard
  Cc: Alain Volmat, devicetree, linux-kernel

Add DT schema of STi platform syscon

Signed-off-by: Alain Volmat <avolmat@me.com>
---
v2: update wording of commit log
    reorder compatible enum
    update example within the binding file

 .../bindings/soc/sti/st,sti-syscon.yaml       | 46 +++++++++++++++++++
 1 file changed, 46 insertions(+)
 create mode 100644 Documentation/devicetree/bindings/soc/sti/st,sti-syscon.yaml

diff --git a/Documentation/devicetree/bindings/soc/sti/st,sti-syscon.yaml b/Documentation/devicetree/bindings/soc/sti/st,sti-syscon.yaml
new file mode 100644
index 000000000000..5f97d9ff17fb
--- /dev/null
+++ b/Documentation/devicetree/bindings/soc/sti/st,sti-syscon.yaml
@@ -0,0 +1,46 @@
+# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
+%YAML 1.2
+---
+$id: http://devicetree.org/schemas/soc/sti/st,sti-syscon.yaml#
+$schema: http://devicetree.org/meta-schemas/core.yaml#
+
+title: STMicroelectronics STi platform sysconfig
+
+maintainers:
+  - Patrice Chotard <patrice.chotard@foss.st.com>
+
+description: |
+  Binding for the various sysconfig nodes used within the STi
+  platform device-tree to point to some common configuration
+  registers used by other nodes.
+
+properties:
+  compatible:
+    items:
+      - enum:
+          - st,stih407-core-syscfg
+          - st,stih407-flash-syscfg
+          - st,stih407-front-syscfg
+          - st,stih407-lpm-syscfg
+          - st,stih407-rear-syscfg
+          - st,stih407-sbc-reg-syscfg
+          - st,stih407-sbc-syscfg
+      - const: syscon
+
+  reg:
+    maxItems: 1
+
+required:
+  - compatible
+  - reg
+
+additionalProperties: false
+
+examples:
+  - |
+    syscfg_sbc: syscon@9620000 {
+        compatible = "st,stih407-sbc-syscfg", "syscon";
+        reg = <0x9620000 0x1000>;
+    };
+
+...
-- 
2.34.1


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

* [PATCH v2 2/2] dt-bindings: arm: sti: add sti boards and remove stih415/stih416
  2023-02-12 20:51 [PATCH v2 0/2] dt-bindings: sti: updates for STi platform Alain Volmat
  2023-02-12 20:51 ` [PATCH v2 1/2] dt-bindings: arm: sti: add STi platform syscon Alain Volmat
@ 2023-02-12 20:51 ` Alain Volmat
  2023-02-13 10:47   ` Krzysztof Kozlowski
  1 sibling, 1 reply; 5+ messages in thread
From: Alain Volmat @ 2023-02-12 20:51 UTC (permalink / raw)
  To: Rob Herring, Krzysztof Kozlowski, Patrice Chotard
  Cc: Alain Volmat, devicetree, linux-kernel

Add bindings for STi platform boards and remove stih415/stih416 items.
This commit also moves the sti.yaml binding file into soc/sti folder

Signed-off-by: Alain Volmat <avolmat@me.com>
---
v2: update licensing
    move file into soc/sti folder

 .../devicetree/bindings/arm/sti.yaml          | 26 ---------------
 .../devicetree/bindings/soc/sti/sti.yaml      | 33 +++++++++++++++++++
 2 files changed, 33 insertions(+), 26 deletions(-)
 delete mode 100644 Documentation/devicetree/bindings/arm/sti.yaml
 create mode 100644 Documentation/devicetree/bindings/soc/sti/sti.yaml

diff --git a/Documentation/devicetree/bindings/arm/sti.yaml b/Documentation/devicetree/bindings/arm/sti.yaml
deleted file mode 100644
index 3ca054c64377..000000000000
--- a/Documentation/devicetree/bindings/arm/sti.yaml
+++ /dev/null
@@ -1,26 +0,0 @@
-# SPDX-License-Identifier: GPL-2.0
-%YAML 1.2
----
-$id: http://devicetree.org/schemas/arm/sti.yaml#
-$schema: http://devicetree.org/meta-schemas/core.yaml#
-
-title: ST STi Platforms
-
-maintainers:
-  - Patrice Chotard <patrice.chotard@foss.st.com>
-
-properties:
-  $nodename:
-    const: '/'
-  compatible:
-    items:
-      - enum:
-          - st,stih415
-          - st,stih416
-          - st,stih407
-          - st,stih410
-          - st,stih418
-
-additionalProperties: true
-
-...
diff --git a/Documentation/devicetree/bindings/soc/sti/sti.yaml b/Documentation/devicetree/bindings/soc/sti/sti.yaml
new file mode 100644
index 000000000000..f32770867142
--- /dev/null
+++ b/Documentation/devicetree/bindings/soc/sti/sti.yaml
@@ -0,0 +1,33 @@
+# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
+%YAML 1.2
+---
+$id: http://devicetree.org/schemas/soc/sti/sti.yaml#
+$schema: http://devicetree.org/meta-schemas/core.yaml#
+
+title: ST STi Platforms
+
+maintainers:
+  - Patrice Chotard <patrice.chotard@foss.st.com>
+
+properties:
+  $nodename:
+    const: '/'
+  compatible:
+    oneOf:
+      - items:
+          - const: st,stih407-b2120
+          - const: st,stih407
+      - items:
+          - enum:
+              - st,stih410-b2120
+              - st,stih410-b2260
+          - const: st,stih410
+      - items:
+          - enum:
+              - st,stih418-b2199
+              - st,stih418-b2264
+          - const: st,stih418
+
+additionalProperties: true
+
+...
-- 
2.34.1


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

* Re: [PATCH v2 1/2] dt-bindings: arm: sti: add STi platform syscon
  2023-02-12 20:51 ` [PATCH v2 1/2] dt-bindings: arm: sti: add STi platform syscon Alain Volmat
@ 2023-02-13 10:47   ` Krzysztof Kozlowski
  0 siblings, 0 replies; 5+ messages in thread
From: Krzysztof Kozlowski @ 2023-02-13 10:47 UTC (permalink / raw)
  To: Alain Volmat, Rob Herring, Krzysztof Kozlowski, Patrice Chotard
  Cc: devicetree, linux-kernel

On 12/02/2023 21:51, Alain Volmat wrote:
> Add DT schema of STi platform syscon

Full stop.

Subject: dt-bindings: soc: sti: ......

> 
> Signed-off-by: Alain Volmat <avolmat@me.com>
> ---
> v2: update wording of commit log
>     reorder compatible enum
>     update example within the binding file
> 


Reviewed-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>

Best regards,
Krzysztof


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

* Re: [PATCH v2 2/2] dt-bindings: arm: sti: add sti boards and remove stih415/stih416
  2023-02-12 20:51 ` [PATCH v2 2/2] dt-bindings: arm: sti: add sti boards and remove stih415/stih416 Alain Volmat
@ 2023-02-13 10:47   ` Krzysztof Kozlowski
  0 siblings, 0 replies; 5+ messages in thread
From: Krzysztof Kozlowski @ 2023-02-13 10:47 UTC (permalink / raw)
  To: Alain Volmat, Rob Herring, Krzysztof Kozlowski, Patrice Chotard
  Cc: devicetree, linux-kernel

On 12/02/2023 21:51, Alain Volmat wrote:
> Add bindings for STi platform boards and remove stih415/stih416 items.
> This commit also moves the sti.yaml binding file into soc/sti folder
> 
> Signed-off-by: Alain Volmat <avolmat@me.com>
> ---
> v2: update licensing
>     move file into soc/sti folder
> 
>  .../devicetree/bindings/arm/sti.yaml          | 26 ---------------
>  .../devicetree/bindings/soc/sti/sti.yaml      | 33 +++++++++++++++++++

Wait, I did not ask to move this. This is a top-level binding, so it's
place is in arm.

>  2 files changed, 33 insertions(+), 26 deletions(-)
>  delete mode 100644 Documentation/devicetree/bindings/arm/sti.yaml
>  create mode 100644 Documentation/devicetree/bindings/soc/sti/sti.yaml
> 


Best regards,
Krzysztof


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

end of thread, other threads:[~2023-02-13 10:48 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-02-12 20:51 [PATCH v2 0/2] dt-bindings: sti: updates for STi platform Alain Volmat
2023-02-12 20:51 ` [PATCH v2 1/2] dt-bindings: arm: sti: add STi platform syscon Alain Volmat
2023-02-13 10:47   ` Krzysztof Kozlowski
2023-02-12 20:51 ` [PATCH v2 2/2] dt-bindings: arm: sti: add sti boards and remove stih415/stih416 Alain Volmat
2023-02-13 10:47   ` Krzysztof Kozlowski

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).