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/imx6sl-clock.yaml#
0005 $schema: http://devicetree.org/meta-schemas/core.yaml#
0006 
0007 title: Clock bindings for Freescale i.MX6 SoloLite
0008 
0009 maintainers:
0010   - Anson Huang <Anson.Huang@nxp.com>
0011 
0012 properties:
0013   compatible:
0014     const: fsl,imx6sl-ccm
0015 
0016   reg:
0017     maxItems: 1
0018 
0019   interrupts:
0020     description: CCM provides 2 interrupt requests, request 1 is to generate
0021       interrupt for frequency or mux change, request 2 is to generate
0022       interrupt for oscillator read or PLL lock.
0023     items:
0024       - description: CCM interrupt request 1
0025       - description: CCM interrupt request 2
0026 
0027   '#clock-cells':
0028     const: 1
0029 
0030 required:
0031   - compatible
0032   - reg
0033   - interrupts
0034   - '#clock-cells'
0035 
0036 additionalProperties: false
0037 
0038 examples:
0039   # Clock Control Module node:
0040   - |
0041     #include <dt-bindings/interrupt-controller/arm-gic.h>
0042 
0043     clock-controller@20c4000 {
0044         compatible = "fsl,imx6sl-ccm";
0045         reg = <0x020c4000 0x4000>;
0046         interrupts = <0 87 IRQ_TYPE_LEVEL_HIGH>,
0047                      <0 88 IRQ_TYPE_LEVEL_HIGH>;
0048         #clock-cells = <1>;
0049     };