47 lines · yaml
1# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)2%YAML 1.23---4$id: http://devicetree.org/schemas/clock/intel,agilex.yaml#5$schema: http://devicetree.org/meta-schemas/core.yaml#6 7title: Intel SoCFPGA Agilex platform clock controller8 9maintainers:10 - Dinh Nguyen <dinguyen@kernel.org>11 12description:13 The Intel Agilex Clock controller is an integrated clock controller, which14 generates and supplies to all modules.15 16properties:17 compatible:18 const: intel,agilex-clkmgr19 20 '#clock-cells':21 const: 122 23 reg:24 maxItems: 125 26 clocks:27 maxItems: 128 29required:30 - compatible31 - reg32 - clocks33 - '#clock-cells'34 35additionalProperties: false36 37examples:38 # Clock controller node:39 - |40 clkmgr: clock-controller@ffd10000 {41 compatible = "intel,agilex-clkmgr";42 reg = <0xffd10000 0x1000>;43 clocks = <&osc1>;44 #clock-cells = <1>;45 };46...47