1# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
2%YAML 1.2
3---
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 Module
8
9maintainers:
10  - Peng Fan <peng.fan@nxp.com>
11
12description: |
13  NXP i.MX93 ANATOP module which contains PLL and OSC to Clock Controller
14  Module.
15
16properties:
17  compatible:
18    items:
19      - const: fsl,imx93-anatop
20
21  reg:
22    maxItems: 1
23
24  '#clock-cells':
25    const: 1
26
27required:
28  - compatible
29  - reg
30  - '#clock-cells'
31
32additionalProperties: false
33
34examples:
35  - |
36    clock-controller@44480000 {
37        compatible = "fsl,imx93-anatop";
38        reg = <0x44480000 0x2000>;
39        #clock-cells = <1>;
40    };
41
42...
43