* [PATCH v2] dt-bindings: arm: st,nomadik: Convert to DT schema
@ 2026-05-07 17:03 Andrew Rembrandt
2026-05-08 13:54 ` Rob Herring (Arm)
0 siblings, 1 reply; 2+ messages in thread
From: Andrew Rembrandt @ 2026-05-07 17:03 UTC (permalink / raw)
To: Linus Walleij, Rob Herring, Krzysztof Kozlowski, Conor Dooley
Cc: linux-arm-kernel, devicetree, linux-kernel, Conor Dooley,
Andrew Rembrandt
Convert the ST Nomadik boards binding from free-form text to DT schema.
The binding documents the Nomadik NHK15/USB-S8815 platform compatibles.
Reviewed-by: Conor Dooley <conor.dooley@microchip.com>
Reviewed-by: Linus Walleij <linusw@kernel.org>
Signed-off-by: Andrew Rembrandt <kernel@rembrandt.dev>
---
Changes since v1:
- Replace 'oneOf'+'const' with 'enum'
- Remove example node (per Conor Dooley's review - it had no corresponding node
in the relevant dts files)
Thanks to Conor Dooley, Rob Herring, & Linus Walleij for the reviews.
---
.../devicetree/bindings/arm/st,nomadik.yaml | 23 +++++++++++++
.../devicetree/bindings/arm/ste-nomadik.txt | 38 ----------------------
MAINTAINERS | 2 +-
3 files changed, 24 insertions(+), 39 deletions(-)
diff --git a/Documentation/devicetree/bindings/arm/st,nomadik.yaml b/Documentation/devicetree/bindings/arm/st,nomadik.yaml
new file mode 100644
index 000000000000..3f65e7a15668
--- /dev/null
+++ b/Documentation/devicetree/bindings/arm/st,nomadik.yaml
@@ -0,0 +1,23 @@
+# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
+%YAML 1.2
+---
+$id: http://devicetree.org/schemas/arm/st,nomadik.yaml#
+$schema: http://devicetree.org/meta-schemas/core.yaml#
+
+title: ST Nomadik SoC based Boards
+
+maintainers:
+ - Linus Walleij <linusw@kernel.org>
+
+description: |
+ Boards using the Nomadik SoC platform
+
+properties:
+ $nodename:
+ const: '/'
+ compatible:
+ enum:
+ - st,nomadik-nhk-15
+ - calaosystems,usb-s8815
+
+additionalProperties: true
diff --git a/Documentation/devicetree/bindings/arm/ste-nomadik.txt b/Documentation/devicetree/bindings/arm/ste-nomadik.txt
deleted file mode 100644
index 2fdff5a806cf..000000000000
--- a/Documentation/devicetree/bindings/arm/ste-nomadik.txt
+++ /dev/null
@@ -1,38 +0,0 @@
-ST-Ericsson Nomadik Device Tree Bindings
-
-For various board the "board" node may contain specific properties
-that pertain to this particular board, such as board-specific GPIOs.
-
-Required root node property: src
-- Nomadik System and reset controller used for basic chip control, clock
- and reset line control.
-- compatible: must be "stericsson,nomadik,src"
-
-Boards with the Nomadik SoC include:
-
-Nomadik NHK-15 board manufactured by ST Microelectronics:
-
-Required root node property:
-
-compatible="st,nomadik-nhk-15";
-
-S8815 "MiniKit" manufactured by Calao Systems:
-
-Required root node property:
-
-compatible="calaosystems,usb-s8815";
-
-Required node: usb-s8815
-
-Example:
-
-usb-s8815 {
- ethernet-gpio {
- gpios = <&gpio3 19 0x1>;
- interrupts = <19 0x1>;
- interrupt-parent = <&gpio3>;
- };
- mmcsd-gpio {
- gpios = <&gpio3 16 0x1>;
- };
-};
diff --git a/MAINTAINERS b/MAINTAINERS
index 2fb1c75afd16..86e7c1dd51ed 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -3155,7 +3155,7 @@ M: Linus Walleij <linusw@kernel.org>
L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
S: Maintained
T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
-F: Documentation/devicetree/bindings/arm/ste-*
+F: Documentation/devicetree/bindings/arm/st,nomadik.yaml
F: Documentation/devicetree/bindings/arm/ux500.yaml
F: Documentation/devicetree/bindings/arm/ux500/
F: Documentation/devicetree/bindings/gpio/st,nomadik-gpio.yaml
---
base-commit: c9a7f7e6b9541450a064854ac965c1a8c8fdcfc4
change-id: 20260507-dt-bindings-arm-st-nomadik-yaml-942499465d3f
Best regards,
--
Andrew Rembrandt <kernel@rembrandt.dev>
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH v2] dt-bindings: arm: st,nomadik: Convert to DT schema
2026-05-07 17:03 [PATCH v2] dt-bindings: arm: st,nomadik: Convert to DT schema Andrew Rembrandt
@ 2026-05-08 13:54 ` Rob Herring (Arm)
0 siblings, 0 replies; 2+ messages in thread
From: Rob Herring (Arm) @ 2026-05-08 13:54 UTC (permalink / raw)
To: Andrew Rembrandt
Cc: devicetree, Conor Dooley, linux-arm-kernel, linux-kernel,
Conor Dooley, Krzysztof Kozlowski, Linus Walleij
On Thu, 07 May 2026 19:03:14 +0200, Andrew Rembrandt wrote:
> Convert the ST Nomadik boards binding from free-form text to DT schema.
>
> The binding documents the Nomadik NHK15/USB-S8815 platform compatibles.
>
> Reviewed-by: Conor Dooley <conor.dooley@microchip.com>
> Reviewed-by: Linus Walleij <linusw@kernel.org>
> Signed-off-by: Andrew Rembrandt <kernel@rembrandt.dev>
> ---
> Changes since v1:
> - Replace 'oneOf'+'const' with 'enum'
> - Remove example node (per Conor Dooley's review - it had no corresponding node
> in the relevant dts files)
>
> Thanks to Conor Dooley, Rob Herring, & Linus Walleij for the reviews.
> ---
> .../devicetree/bindings/arm/st,nomadik.yaml | 23 +++++++++++++
> .../devicetree/bindings/arm/ste-nomadik.txt | 38 ----------------------
> MAINTAINERS | 2 +-
> 3 files changed, 24 insertions(+), 39 deletions(-)
>
Applied, thanks!
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2026-05-08 13:54 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-05-07 17:03 [PATCH v2] dt-bindings: arm: st,nomadik: Convert to DT schema Andrew Rembrandt
2026-05-08 13:54 ` Rob Herring (Arm)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox