[PATCH] dt-bindings: media: hisilicon,hix5hd2-ir: convert to YAML

Andrea Poldi posted 1 patch 17 hours ago
.../bindings/media/hisilicon,hix5hd2-ir.yaml  | 53 +++++++++++++++++++
.../devicetree/bindings/media/hix5hd2-ir.txt  | 26 ---------
2 files changed, 53 insertions(+), 26 deletions(-)
create mode 100644 Documentation/devicetree/bindings/media/hisilicon,hix5hd2-ir.yaml
delete mode 100644 Documentation/devicetree/bindings/media/hix5hd2-ir.txt
[PATCH] dt-bindings: media: hisilicon,hix5hd2-ir: convert to YAML
Posted by Andrea Poldi 17 hours ago
Convert the HiSilicon Hix5hd2 IR bindings to DT schema.

Signed-off-by: Andrea Poldi <andrea@riposetti.com>
---
 .../bindings/media/hisilicon,hix5hd2-ir.yaml  | 53 +++++++++++++++++++
 .../devicetree/bindings/media/hix5hd2-ir.txt  | 26 ---------
 2 files changed, 53 insertions(+), 26 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/media/hisilicon,hix5hd2-ir.yaml
 delete mode 100644 Documentation/devicetree/bindings/media/hix5hd2-ir.txt

diff --git a/Documentation/devicetree/bindings/media/hisilicon,hix5hd2-ir.yaml b/Documentation/devicetree/bindings/media/hisilicon,hix5hd2-ir.yaml
new file mode 100644
index 000000000000..f5c28603ed0a
--- /dev/null
+++ b/Documentation/devicetree/bindings/media/hisilicon,hix5hd2-ir.yaml
@@ -0,0 +1,53 @@
+# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
+%YAML 1.2
+---
+$id: http://devicetree.org/schemas/media/hisilicon,hix5hd2-ir.yaml#
+$schema: http://devicetree.org/meta-schemas/core.yaml#
+
+title: HiSilicon Hix5hd2 Infrared Receiver
+
+maintainers:
+  - Shawn Guo <shawn.guo@linaro.org>
+
+allOf:
+  - $ref: rc.yaml#
+
+properties:
+  compatible:
+    enum:
+      - hisilicon,hix5hd2-ir
+      - hisilicon,hi3796cv300-ir
+
+  reg:
+    maxItems: 1
+
+  interrupts:
+    maxItems: 1
+
+  clocks:
+    maxItems: 1
+
+  hisilicon,power-syscon:
+    $ref: /schemas/types.yaml#/definitions/phandle
+    description: phandle of syscon used to control power.
+    deprecated: true
+
+required:
+  - compatible
+  - reg
+  - interrupts
+  - clocks
+
+unevaluatedProperties: false
+
+examples:
+  - |
+    #include <dt-bindings/interrupt-controller/arm-gic.h>
+
+    ir@f8001000 {
+        compatible = "hisilicon,hix5hd2-ir";
+        reg = <0xf8001000 0x1000>;
+        interrupts = <0 47 4>;
+        clocks = <&clock 0>;
+        linux,rc-map-name = "rc-tivo";
+    };
diff --git a/Documentation/devicetree/bindings/media/hix5hd2-ir.txt b/Documentation/devicetree/bindings/media/hix5hd2-ir.txt
deleted file mode 100644
index ca4cf774662e..000000000000
--- a/Documentation/devicetree/bindings/media/hix5hd2-ir.txt
+++ /dev/null
@@ -1,26 +0,0 @@
-Device-Tree bindings for hix5hd2 ir IP
-
-Required properties:
-	- compatible: Should contain "hisilicon,hix5hd2-ir", or:
-		- "hisilicon,hi3796cv300-ir" for Hi3796CV300 IR device.
-	- reg: Base physical address of the controller and length of memory
-	  mapped region.
-	- interrupts: interrupt-specifier for the sole interrupt generated by
-	  the device. The interrupt specifier format depends on the interrupt
-	  controller parent.
-	- clocks: clock phandle and specifier pair.
-
-Optional properties:
-	- linux,rc-map-name: see rc.txt file in the same directory.
-	- hisilicon,power-syscon: DEPRECATED. Don't use this in new dts files.
-		Provide correct clocks instead.
-
-Example node:
-
-	ir: ir@f8001000 {
-		compatible = "hisilicon,hix5hd2-ir";
-		reg = <0xf8001000 0x1000>;
-		interrupts = <0 47 4>;
-		clocks = <&clock HIX5HD2_IR_CLOCK>;
-		linux,rc-map-name = "rc-tivo";
-	};
-- 
2.50.1 (Apple Git-155)
Re: [PATCH] dt-bindings: media: hisilicon,hix5hd2-ir: convert to YAML
Posted by Krzysztof Kozlowski 22 minutes ago
On Tue, Mar 31, 2026 at 02:58:35PM +0000, Andrea Poldi wrote:
> Convert the HiSilicon Hix5hd2 IR bindings to DT schema.
> 
> Signed-off-by: Andrea Poldi <andrea@riposetti.com>
> ---
>  .../bindings/media/hisilicon,hix5hd2-ir.yaml  | 53 +++++++++++++++++++
>  .../devicetree/bindings/media/hix5hd2-ir.txt  | 26 ---------

Use dfn: on lore. It's your prerequisite for doing conversion.

Binding was already done for three days.

Best regards,
Krzysztof