1*d5b0e70fSEmmanuel Vadot# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 2*d5b0e70fSEmmanuel Vadot# Copyright (C) 2022 Microchip Technology, Inc. and its subsidiaries 3*d5b0e70fSEmmanuel Vadot%YAML 1.2 4*d5b0e70fSEmmanuel Vadot--- 5*d5b0e70fSEmmanuel Vadot$id: http://devicetree.org/schemas/pwm/atmel,at91sam-pwm.yaml# 6*d5b0e70fSEmmanuel Vadot$schema: http://devicetree.org/meta-schemas/core.yaml# 7*d5b0e70fSEmmanuel Vadot 8*d5b0e70fSEmmanuel Vadottitle: Atmel/Microchip PWM controller 9*d5b0e70fSEmmanuel Vadot 10*d5b0e70fSEmmanuel Vadotmaintainers: 11*d5b0e70fSEmmanuel Vadot - Claudiu Beznea <claudiu.beznea@microchip.com> 12*d5b0e70fSEmmanuel Vadot 13*d5b0e70fSEmmanuel VadotallOf: 14*d5b0e70fSEmmanuel Vadot - $ref: "pwm.yaml#" 15*d5b0e70fSEmmanuel Vadot 16*d5b0e70fSEmmanuel Vadotproperties: 17*d5b0e70fSEmmanuel Vadot compatible: 18*d5b0e70fSEmmanuel Vadot oneOf: 19*d5b0e70fSEmmanuel Vadot - items: 20*d5b0e70fSEmmanuel Vadot - enum: 21*d5b0e70fSEmmanuel Vadot - atmel,at91sam9rl-pwm 22*d5b0e70fSEmmanuel Vadot - atmel,sama5d3-pwm 23*d5b0e70fSEmmanuel Vadot - atmel,sama5d2-pwm 24*d5b0e70fSEmmanuel Vadot - microchip,sam9x60-pwm 25*d5b0e70fSEmmanuel Vadot - items: 26*d5b0e70fSEmmanuel Vadot - const: microchip,sama7g5-pwm 27*d5b0e70fSEmmanuel Vadot - const: atmel,sama5d2-pwm 28*d5b0e70fSEmmanuel Vadot 29*d5b0e70fSEmmanuel Vadot reg: 30*d5b0e70fSEmmanuel Vadot maxItems: 1 31*d5b0e70fSEmmanuel Vadot 32*d5b0e70fSEmmanuel Vadot "#pwm-cells": 33*d5b0e70fSEmmanuel Vadot const: 3 34*d5b0e70fSEmmanuel Vadot 35*d5b0e70fSEmmanuel Vadotrequired: 36*d5b0e70fSEmmanuel Vadot - compatible 37*d5b0e70fSEmmanuel Vadot - reg 38*d5b0e70fSEmmanuel Vadot 39*d5b0e70fSEmmanuel VadotunevaluatedProperties: false 40*d5b0e70fSEmmanuel Vadot 41*d5b0e70fSEmmanuel Vadotexamples: 42*d5b0e70fSEmmanuel Vadot - | 43*d5b0e70fSEmmanuel Vadot pwm0: pwm@f8034000 { 44*d5b0e70fSEmmanuel Vadot compatible = "atmel,at91sam9rl-pwm"; 45*d5b0e70fSEmmanuel Vadot reg = <0xf8034000 0x400>; 46*d5b0e70fSEmmanuel Vadot #pwm-cells = <3>; 47*d5b0e70fSEmmanuel Vadot }; 48