1# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 2%YAML 1.2 3--- 4$id: http://devicetree.org/schemas/pwm/airoha,en7581-pwm.yaml# 5$schema: http://devicetree.org/meta-schemas/core.yaml# 6 7title: Airoha EN7581 PWM Controller 8 9maintainers: 10 - Lorenzo Bianconi <lorenzo@kernel.org> 11 12allOf: 13 - $ref: pwm.yaml# 14 15properties: 16 compatible: 17 const: airoha,en7581-pwm 18 19 "#pwm-cells": 20 const: 3 21 22required: 23 - compatible 24 - "#pwm-cells" 25 26additionalProperties: false 27 28examples: 29 - | 30 pwm { 31 compatible = "airoha,en7581-pwm"; 32 33 #pwm-cells = <3>; 34 }; 35