brintos

brintos / linux-shallow public Read only

0
0
Text · 913 B · a9ad7ab Raw
46 lines · yaml
1# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)2%YAML 1.23---4$id: http://devicetree.org/schemas/clock/mstar,msc313-cpupll.yaml#5$schema: http://devicetree.org/meta-schemas/core.yaml#6 7title: MStar/Sigmastar MSC313 CPU PLL8 9maintainers:10  - Daniel Palmer <daniel@thingy.jp>11 12description: |13  The MStar/SigmaStar MSC313 and later ARMv7 chips have a scalable14  PLL that can be used as the clock source for the CPU(s).15 16properties:17  compatible:18    const: mstar,msc313-cpupll19 20  "#clock-cells":21    const: 122 23  clocks:24    maxItems: 125 26  reg:27    maxItems: 128 29required:30  - compatible31  - "#clock-cells"32  - clocks33  - reg34 35additionalProperties: false36 37examples:38  - |39    #include <dt-bindings/clock/mstar-msc313-mpll.h>40    cpupll: cpupll@206400 {41        compatible = "mstar,msc313-cpupll";42        reg = <0x206400 0x200>;43        #clock-cells = <1>;44        clocks = <&mpll MSTAR_MSC313_MPLL_DIV2>;45    };46