Back to home page

OSCL-LXR

 
 

    


0001 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
0002 %YAML 1.2
0003 ---
0004 $id: http://devicetree.org/schemas/clock/imx21-clock.yaml#
0005 $schema: http://devicetree.org/meta-schemas/core.yaml#
0006 
0007 title: Clock bindings for Freescale i.MX21
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/imx21-clock.h
0015   for the full list of i.MX21 clock IDs.
0016 
0017 properties:
0018   compatible:
0019     const: fsl,imx21-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/imx21-clock.h>
0037 
0038     clock-controller@10027000 {
0039         compatible = "fsl,imx21-ccm";
0040         reg = <0x10027000 0x800>;
0041         #clock-cells = <1>;
0042     };