124583099SPeng Fan# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
224583099SPeng Fan%YAML 1.2
324583099SPeng Fan---
424583099SPeng Fan$id: http://devicetree.org/schemas/clock/imx93-clock.yaml#
524583099SPeng Fan$schema: http://devicetree.org/meta-schemas/core.yaml#
624583099SPeng Fan
7*84e85359SKrzysztof Kozlowskititle: NXP i.MX93 Clock Control Module
824583099SPeng Fan
924583099SPeng Fanmaintainers:
1024583099SPeng Fan  - Peng Fan <peng.fan@nxp.com>
1124583099SPeng Fan
1224583099SPeng Fandescription: |
1324583099SPeng Fan  i.MX93 clock control module is an integrated clock controller, which
1424583099SPeng Fan  includes clock generator, clock gate and supplies to all modules.
1524583099SPeng Fan
1624583099SPeng Fanproperties:
1724583099SPeng Fan  compatible:
1824583099SPeng Fan    enum:
1924583099SPeng Fan      - fsl,imx93-ccm
2024583099SPeng Fan
2124583099SPeng Fan  reg:
2224583099SPeng Fan    maxItems: 1
2324583099SPeng Fan
2424583099SPeng Fan  clocks:
2524583099SPeng Fan    description:
2624583099SPeng Fan      specify the external clocks used by the CCM module.
2724583099SPeng Fan    items:
2824583099SPeng Fan      - description: 32k osc
2924583099SPeng Fan      - description: 24m osc
3024583099SPeng Fan      - description: ext1 clock input
3124583099SPeng Fan
3224583099SPeng Fan  clock-names:
3324583099SPeng Fan    description:
3424583099SPeng Fan      specify the external clocks names used by the CCM module.
3524583099SPeng Fan    items:
3624583099SPeng Fan      - const: osc_32k
3724583099SPeng Fan      - const: osc_24m
3824583099SPeng Fan      - const: clk_ext1
3924583099SPeng Fan
4024583099SPeng Fan  '#clock-cells':
4124583099SPeng Fan    const: 1
4224583099SPeng Fan    description:
4324583099SPeng Fan      See include/dt-bindings/clock/imx93-clock.h for the full list of
4424583099SPeng Fan      i.MX93 clock IDs.
4524583099SPeng Fan
4624583099SPeng Fanrequired:
4724583099SPeng Fan  - compatible
4824583099SPeng Fan  - reg
4924583099SPeng Fan  - '#clock-cells'
5024583099SPeng Fan
5124583099SPeng FanadditionalProperties: false
5224583099SPeng Fan
5324583099SPeng Fanexamples:
5424583099SPeng Fan  # Clock Control Module node:
5524583099SPeng Fan  - |
5624583099SPeng Fan    clock-controller@44450000 {
5724583099SPeng Fan        compatible = "fsl,imx93-ccm";
5824583099SPeng Fan        reg = <0x44450000 0x10000>;
5924583099SPeng Fan        #clock-cells = <1>;
6024583099SPeng Fan    };
6124583099SPeng Fan
6224583099SPeng Fan...
63