0001 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
0002 %YAML 1.2
0003 ---
0004 $id: http://devicetree.org/schemas/clock/ti,am654-ehrpwm-tbclk.yaml#
0005 $schema: http://devicetree.org/meta-schemas/core.yaml#
0006
0007 title: TI EHRPWM Time Base Clock
0008
0009 maintainers:
0010 - Vignesh Raghavendra <vigneshr@ti.com>
0011
0012 properties:
0013 compatible:
0014 items:
0015 - enum:
0016 - ti,am654-ehrpwm-tbclk
0017 - ti,am64-epwm-tbclk
0018 - ti,am62-epwm-tbclk
0019 - const: syscon
0020
0021 "#clock-cells":
0022 const: 1
0023
0024 reg:
0025 maxItems: 1
0026
0027 required:
0028 - compatible
0029 - "#clock-cells"
0030 - reg
0031
0032 additionalProperties: false
0033
0034 examples:
0035 - |
0036 ehrpwm_tbclk: syscon@4140 {
0037 compatible = "ti,am654-ehrpwm-tbclk", "syscon";
0038 reg = <0x4140 0x18>;
0039 #clock-cells = <1>;
0040 };