brintos

brintos / linux-shallow public Read only

0
0
Text · 968 B · 16f7961 Raw
52 lines · yaml
1# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)2%YAML 1.23---4$id: http://devicetree.org/schemas/clock/nxp,lpc3220-clk.yaml#5$schema: http://devicetree.org/meta-schemas/core.yaml#6 7title: NXP LPC32xx Clock Controller8 9maintainers:10  - Animesh Agarwal <animeshagarwal28@gmail.com>11 12properties:13  compatible:14    const: nxp,lpc3220-clk15 16  reg:17    maxItems: 118 19  '#clock-cells':20    const: 121 22  clocks:23    minItems: 124    items:25      - description: External 32768 Hz oscillator.26      - description: Optional high frequency oscillator.27 28  clock-names:29    minItems: 130    items:31      - const: xtal_32k32      - const: xtal33 34required:35  - compatible36  - reg37  - '#clock-cells'38  - clocks39  - clock-names40 41additionalProperties: false42 43examples:44  - |45    clock-controller@0 {46        compatible = "nxp,lpc3220-clk";47        reg = <0x00 0x114>;48        #clock-cells = <1>;49        clocks = <&xtal_32k>, <&xtal>;50        clock-names = "xtal_32k", "xtal";51    };52