brintos

brintos / linux-shallow public Read only

0
0
Text · 979 B · bbd22e9 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/fsl,imx8m-anatop.yaml#5$schema: http://devicetree.org/meta-schemas/core.yaml#6 7title: NXP i.MX8M Family Anatop Module8 9maintainers:10  - Peng Fan <peng.fan@nxp.com>11 12description: |13  NXP i.MX8M Family anatop PLL module which generates PLL to CCM root.14 15properties:16  compatible:17    oneOf:18      - enum:19          - fsl,imx8mm-anatop20          - fsl,imx8mq-anatop21      - items:22          - enum:23              - fsl,imx8mn-anatop24              - fsl,imx8mp-anatop25          - const: fsl,imx8mm-anatop26 27  reg:28    maxItems: 129 30  interrupts:31    maxItems: 132 33  '#clock-cells':34    const: 135 36required:37  - compatible38  - reg39  - '#clock-cells'40 41additionalProperties: false42 43examples:44  - |45    anatop: clock-controller@30360000 {46        compatible = "fsl,imx8mn-anatop", "fsl,imx8mm-anatop";47        reg = <0x30360000 0x10000>;48        #clock-cells = <1>;49    };50 51...52