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,agilex.yaml#
0005 $schema: http://devicetree.org/meta-schemas/core.yaml#
0006 
0007 title: Intel SoCFPGA Agilex platform clock controller binding
0008 
0009 maintainers:
0010   - Dinh Nguyen <dinguyen@kernel.org>
0011 
0012 description:
0013   The Intel Agilex Clock controller is an integrated clock controller, which
0014   generates and supplies to all modules.
0015 
0016 properties:
0017   compatible:
0018     const: intel,agilex-clkmgr
0019 
0020   '#clock-cells':
0021     const: 1
0022 
0023   reg:
0024     maxItems: 1
0025 
0026   clocks:
0027     maxItems: 1
0028 
0029 required:
0030   - compatible
0031   - reg
0032   - clocks
0033   - '#clock-cells'
0034 
0035 additionalProperties: false
0036 
0037 examples:
0038   # Clock controller node:
0039   - |
0040     clkmgr: clock-controller@ffd10000 {
0041       compatible = "intel,agilex-clkmgr";
0042       reg = <0xffd10000 0x1000>;
0043       clocks = <&osc1>;
0044       #clock-cells = <1>;
0045     };
0046 ...