0001 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
0002 %YAML 1.2
0003 ---
0004 $id: http://devicetree.org/schemas/clock/imx1-clock.yaml#
0005 $schema: http://devicetree.org/meta-schemas/core.yaml#
0006
0007 title: Clock bindings for Freescale i.MX1 CPUs
0008
0009 maintainers:
0010 - Alexander Shiyan <shc_work@mail.ru>
0011
0012 description: |
0013 The clock consumer should specify the desired clock by having the clock
0014 ID in its "clocks" phandle cell. See include/dt-bindings/clock/imx1-clock.h
0015 for the full list of i.MX1 clock IDs.
0016
0017 properties:
0018 compatible:
0019 const: fsl,imx1-ccm
0020
0021 reg:
0022 maxItems: 1
0023
0024 '#clock-cells':
0025 const: 1
0026
0027 required:
0028 - compatible
0029 - reg
0030 - '#clock-cells'
0031
0032 additionalProperties: false
0033
0034 examples:
0035 - |
0036 #include <dt-bindings/clock/imx1-clock.h>
0037
0038 clock-controller@21b000 {
0039 #clock-cells = <1>;
0040 compatible = "fsl,imx1-ccm";
0041 reg = <0x0021b000 0x1000>;
0042 };