new file mode 100644
@@ -0,0 +1,42 @@
+# SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause
+%YAML 1.2
+---
+$id: http://devicetree.org/schemas/pwm/airoha,en7581-pwm.yaml#
+$schema: http://devicetree.org/meta-schemas/core.yaml#
+
+title: Airoha EN7581 PWM
+
+maintainers:
+ - Christian Marangi <ansuelsmth@gmail.com>
+
+allOf:
+ - $ref: pwm.yaml#
+
+properties:
+ compatible:
+ const: airoha,en7581-pwm
+
+ reg:
+ items:
+ - description: sgpio config address
+ - description: flash config address
+ - description: cycle config address
+
+ "#pwm-cells":
+ const: 3
+
+required:
+ - compatible
+ - reg
+
+additionalProperties: false
+
+examples:
+ - |
+ pwm@1fbf0224 {
+ compatible = "airoha,en7581-pwm";
+ reg = <0x1fbf0224 0x10>,
+ <0x1fbf0238 0x28>,
+ <0x1fbf0298 0x8>;
+ #pwm-cells = <3>;
+ };