1*ae5de77eSEmmanuel Vadot# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 2*ae5de77eSEmmanuel Vadot%YAML 1.2 3*ae5de77eSEmmanuel Vadot--- 4*ae5de77eSEmmanuel Vadot$id: http://devicetree.org/schemas/clock/fsl,vf610-ccm.yaml# 5*ae5de77eSEmmanuel Vadot$schema: http://devicetree.org/meta-schemas/core.yaml# 6*ae5de77eSEmmanuel Vadot 7*ae5de77eSEmmanuel Vadottitle: Clock for Freescale Vybrid VF610 SOC 8*ae5de77eSEmmanuel Vadot 9*ae5de77eSEmmanuel Vadotdescription: 10*ae5de77eSEmmanuel Vadot The clock consumer should specify the desired clock by having the clock 11*ae5de77eSEmmanuel Vadot ID in its "clocks" phandle cell. See include/dt-bindings/clock/vf610-clock.h 12*ae5de77eSEmmanuel Vadot for the full list of VF610 clock IDs 13*ae5de77eSEmmanuel Vadot 14*ae5de77eSEmmanuel Vadotmaintainers: 15*ae5de77eSEmmanuel Vadot - Frank Li <Frank.Li@nxp.com> 16*ae5de77eSEmmanuel Vadot 17*ae5de77eSEmmanuel Vadotproperties: 18*ae5de77eSEmmanuel Vadot compatible: 19*ae5de77eSEmmanuel Vadot const: fsl,vf610-ccm 20*ae5de77eSEmmanuel Vadot 21*ae5de77eSEmmanuel Vadot reg: 22*ae5de77eSEmmanuel Vadot maxItems: 1 23*ae5de77eSEmmanuel Vadot 24*ae5de77eSEmmanuel Vadot '#clock-cells': 25*ae5de77eSEmmanuel Vadot const: 1 26*ae5de77eSEmmanuel Vadot 27*ae5de77eSEmmanuel Vadot clocks: 28*ae5de77eSEmmanuel Vadot items: 29*ae5de77eSEmmanuel Vadot - description: external crystal oscillator 32KHz, recommended 30*ae5de77eSEmmanuel Vadot - description: external crystal oscillator 24MHz, recommended 31*ae5de77eSEmmanuel Vadot - description: audio 32*ae5de77eSEmmanuel Vadot - description: enet 33*ae5de77eSEmmanuel Vadot minItems: 2 34*ae5de77eSEmmanuel Vadot 35*ae5de77eSEmmanuel Vadot clock-names: 36*ae5de77eSEmmanuel Vadot items: 37*ae5de77eSEmmanuel Vadot - const: sxosc 38*ae5de77eSEmmanuel Vadot - const: fxosc 39*ae5de77eSEmmanuel Vadot - const: enet_ext 40*ae5de77eSEmmanuel Vadot - const: audio_ext 41*ae5de77eSEmmanuel Vadot minItems: 2 42*ae5de77eSEmmanuel Vadot 43*ae5de77eSEmmanuel Vadotrequired: 44*ae5de77eSEmmanuel Vadot - compatible 45*ae5de77eSEmmanuel Vadot - reg 46*ae5de77eSEmmanuel Vadot 47*ae5de77eSEmmanuel VadotadditionalProperties: false 48*ae5de77eSEmmanuel Vadot 49*ae5de77eSEmmanuel Vadotexamples: 50*ae5de77eSEmmanuel Vadot - | 51*ae5de77eSEmmanuel Vadot clock-controller@4006b000 { 52*ae5de77eSEmmanuel Vadot compatible = "fsl,vf610-ccm"; 53*ae5de77eSEmmanuel Vadot reg = <0x4006b000 0x1000>; 54*ae5de77eSEmmanuel Vadot #clock-cells = <1>; 55*ae5de77eSEmmanuel Vadot clocks = <&sxosc>, <&fxosc>; 56*ae5de77eSEmmanuel Vadot clock-names = "sxosc", "fxosc"; 57*ae5de77eSEmmanuel Vadot }; 58*ae5de77eSEmmanuel Vadot 59