blob: 8a3b2476419ae116b4ceac9550b5b326fcadbb26 [file] [log] [blame]
Tom Rini93743d22024-04-01 09:08:13 -04001# 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...