43 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,imx93-anatop.yaml#5$schema: http://devicetree.org/meta-schemas/core.yaml#6 7title: NXP i.MX93 ANATOP Clock Module8 9maintainers:10 - Peng Fan <peng.fan@nxp.com>11 12description: |13 NXP i.MX93 ANATOP module which contains PLL and OSC to Clock Controller14 Module.15 16properties:17 compatible:18 items:19 - const: fsl,imx93-anatop20 21 reg:22 maxItems: 123 24 '#clock-cells':25 const: 126 27required:28 - compatible29 - reg30 - '#clock-cells'31 32additionalProperties: false33 34examples:35 - |36 clock-controller@44480000 {37 compatible = "fsl,imx93-anatop";38 reg = <0x44480000 0x2000>;39 #clock-cells = <1>;40 };41 42...43