17ef62cebSEmmanuel Vadot# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 27ef62cebSEmmanuel Vadot%YAML 1.2 37ef62cebSEmmanuel Vadot--- 47ef62cebSEmmanuel Vadot$id: http://devicetree.org/schemas/clock/renesas,versaclock7.yaml# 57ef62cebSEmmanuel Vadot$schema: http://devicetree.org/meta-schemas/core.yaml# 67ef62cebSEmmanuel Vadot 7*8bab661aSEmmanuel Vadottitle: Renesas Versaclock7 Programmable Clock 87ef62cebSEmmanuel Vadot 97ef62cebSEmmanuel Vadotmaintainers: 107ef62cebSEmmanuel Vadot - Alex Helms <alexander.helms.jy@renesas.com> 117ef62cebSEmmanuel Vadot 127ef62cebSEmmanuel Vadotdescription: | 137ef62cebSEmmanuel Vadot Renesas Versaclock7 is a family of configurable clock generator and 147ef62cebSEmmanuel Vadot jitter attenuator ICs with fractional and integer dividers. 157ef62cebSEmmanuel Vadot 167ef62cebSEmmanuel Vadotproperties: 177ef62cebSEmmanuel Vadot '#clock-cells': 187ef62cebSEmmanuel Vadot const: 1 197ef62cebSEmmanuel Vadot 207ef62cebSEmmanuel Vadot compatible: 217ef62cebSEmmanuel Vadot enum: 227ef62cebSEmmanuel Vadot - renesas,rc21008a 237ef62cebSEmmanuel Vadot 247ef62cebSEmmanuel Vadot reg: 257ef62cebSEmmanuel Vadot maxItems: 1 267ef62cebSEmmanuel Vadot 277ef62cebSEmmanuel Vadot clocks: 287ef62cebSEmmanuel Vadot items: 297ef62cebSEmmanuel Vadot - description: External crystal or oscillator 307ef62cebSEmmanuel Vadot 317ef62cebSEmmanuel Vadot clock-names: 327ef62cebSEmmanuel Vadot items: 337ef62cebSEmmanuel Vadot - const: xin 347ef62cebSEmmanuel Vadot 357ef62cebSEmmanuel Vadotrequired: 367ef62cebSEmmanuel Vadot - '#clock-cells' 377ef62cebSEmmanuel Vadot - compatible 387ef62cebSEmmanuel Vadot - reg 397ef62cebSEmmanuel Vadot - clocks 407ef62cebSEmmanuel Vadot - clock-names 417ef62cebSEmmanuel Vadot 427ef62cebSEmmanuel VadotadditionalProperties: false 437ef62cebSEmmanuel Vadot 447ef62cebSEmmanuel Vadotexamples: 457ef62cebSEmmanuel Vadot - | 467ef62cebSEmmanuel Vadot vc7_xin: clock { 477ef62cebSEmmanuel Vadot compatible = "fixed-clock"; 487ef62cebSEmmanuel Vadot #clock-cells = <0>; 497ef62cebSEmmanuel Vadot clock-frequency = <49152000>; 507ef62cebSEmmanuel Vadot }; 517ef62cebSEmmanuel Vadot 527ef62cebSEmmanuel Vadot i2c@0 { 537ef62cebSEmmanuel Vadot reg = <0x0 0x100>; 547ef62cebSEmmanuel Vadot #address-cells = <1>; 557ef62cebSEmmanuel Vadot #size-cells = <0>; 567ef62cebSEmmanuel Vadot 577ef62cebSEmmanuel Vadot vc7: clock-controller@9 { 587ef62cebSEmmanuel Vadot compatible = "renesas,rc21008a"; 597ef62cebSEmmanuel Vadot reg = <0x9>; 607ef62cebSEmmanuel Vadot #clock-cells = <1>; 617ef62cebSEmmanuel Vadot clocks = <&vc7_xin>; 627ef62cebSEmmanuel Vadot clock-names = "xin"; 637ef62cebSEmmanuel Vadot }; 647ef62cebSEmmanuel Vadot }; 65