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/intel,cgu-lgm.yaml#
0005 $schema: http://devicetree.org/meta-schemas/core.yaml#
0006 
0007 title: Intel Lightning Mountain SoC's Clock Controller(CGU) Binding
0008 
0009 maintainers:
0010   - Rahul Tanwar <rahul.tanwar@linux.intel.com>
0011 
0012 description: |
0013   Lightning Mountain(LGM) SoC's Clock Generation Unit(CGU) driver provides
0014   all means to access the CGU hardware module in order to generate a series
0015   of clocks for the whole system and individual peripherals.
0016 
0017   Please refer to include/dt-bindings/clock/intel,lgm-clk.h header file, it
0018   defines all available clocks as macros. These macros can be used in device
0019   tree sources.
0020 
0021 properties:
0022   compatible:
0023     const: intel,cgu-lgm
0024 
0025   reg:
0026     maxItems: 1
0027 
0028   '#clock-cells':
0029     const: 1
0030 
0031 required:
0032   - compatible
0033   - reg
0034   - '#clock-cells'
0035 
0036 additionalProperties: false
0037 
0038 examples:
0039   - |
0040     cgu: clock-controller@e0200000 {
0041         compatible = "intel,cgu-lgm";
0042         reg = <0xe0200000 0x33c>;
0043         #clock-cells = <1>;
0044     };
0045 
0046 ...