1*b2d2a78aSEmmanuel Vadot# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 2*b2d2a78aSEmmanuel Vadot%YAML 1.2 3*b2d2a78aSEmmanuel Vadot--- 4*b2d2a78aSEmmanuel Vadot$id: http://devicetree.org/schemas/clock/nxp,lpc3220-clk.yaml# 5*b2d2a78aSEmmanuel Vadot$schema: http://devicetree.org/meta-schemas/core.yaml# 6*b2d2a78aSEmmanuel Vadot 7*b2d2a78aSEmmanuel Vadottitle: NXP LPC32xx Clock Controller 8*b2d2a78aSEmmanuel Vadot 9*b2d2a78aSEmmanuel Vadotmaintainers: 10*b2d2a78aSEmmanuel Vadot - Animesh Agarwal <animeshagarwal28@gmail.com> 11*b2d2a78aSEmmanuel Vadot 12*b2d2a78aSEmmanuel Vadotproperties: 13*b2d2a78aSEmmanuel Vadot compatible: 14*b2d2a78aSEmmanuel Vadot const: nxp,lpc3220-clk 15*b2d2a78aSEmmanuel Vadot 16*b2d2a78aSEmmanuel Vadot reg: 17*b2d2a78aSEmmanuel Vadot maxItems: 1 18*b2d2a78aSEmmanuel Vadot 19*b2d2a78aSEmmanuel Vadot '#clock-cells': 20*b2d2a78aSEmmanuel Vadot const: 1 21*b2d2a78aSEmmanuel Vadot 22*b2d2a78aSEmmanuel Vadot clocks: 23*b2d2a78aSEmmanuel Vadot minItems: 1 24*b2d2a78aSEmmanuel Vadot items: 25*b2d2a78aSEmmanuel Vadot - description: External 32768 Hz oscillator. 26*b2d2a78aSEmmanuel Vadot - description: Optional high frequency oscillator. 27*b2d2a78aSEmmanuel Vadot 28*b2d2a78aSEmmanuel Vadot clock-names: 29*b2d2a78aSEmmanuel Vadot minItems: 1 30*b2d2a78aSEmmanuel Vadot items: 31*b2d2a78aSEmmanuel Vadot - const: xtal_32k 32*b2d2a78aSEmmanuel Vadot - const: xtal 33*b2d2a78aSEmmanuel Vadot 34*b2d2a78aSEmmanuel Vadotrequired: 35*b2d2a78aSEmmanuel Vadot - compatible 36*b2d2a78aSEmmanuel Vadot - reg 37*b2d2a78aSEmmanuel Vadot - '#clock-cells' 38*b2d2a78aSEmmanuel Vadot - clocks 39*b2d2a78aSEmmanuel Vadot - clock-names 40*b2d2a78aSEmmanuel Vadot 41*b2d2a78aSEmmanuel VadotadditionalProperties: false 42*b2d2a78aSEmmanuel Vadot 43*b2d2a78aSEmmanuel Vadotexamples: 44*b2d2a78aSEmmanuel Vadot - | 45*b2d2a78aSEmmanuel Vadot clock-controller@0 { 46*b2d2a78aSEmmanuel Vadot compatible = "nxp,lpc3220-clk"; 47*b2d2a78aSEmmanuel Vadot reg = <0x00 0x114>; 48*b2d2a78aSEmmanuel Vadot #clock-cells = <1>; 49*b2d2a78aSEmmanuel Vadot clocks = <&xtal_32k>, <&xtal>; 50*b2d2a78aSEmmanuel Vadot clock-names = "xtal_32k", "xtal"; 51*b2d2a78aSEmmanuel Vadot }; 52