Path: blob/master/Documentation/devicetree/bindings/clock/amlogic,c3-pll-clkc.yaml
26308 views
# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)1# Copyright (C) 2022-2023 Amlogic, Inc. All rights reserved2%YAML 1.23---4$id: http://devicetree.org/schemas/clock/amlogic,c3-pll-clkc.yaml#5$schema: http://devicetree.org/meta-schemas/core.yaml#67title: Amlogic C3 series PLL Clock Controller89maintainers:10- Neil Armstrong <neil.armstrong@linaro.org>11- Jerome Brunet <jbrunet@baylibre.com>12- Chuan Liu <chuan.liu@amlogic.com>13- Xianwei Zhao <xianwei.zhao@amlogic.com>1415properties:16compatible:17const: amlogic,c3-pll-clkc1819reg:20maxItems: 12122clocks:23items:24- description: input top pll25- description: input mclk pll26- description: input fix pll2728clock-names:29items:30- const: top31- const: mclk32- const: fix3334"#clock-cells":35const: 13637required:38- compatible39- reg40- clocks41- clock-names42- "#clock-cells"4344additionalProperties: false4546examples:47- |48apb {49#address-cells = <2>;50#size-cells = <2>;5152clock-controller@8000 {53compatible = "amlogic,c3-pll-clkc";54reg = <0x0 0x8000 0x0 0x1a4>;55clocks = <&scmi_clk 2>,56<&scmi_clk 5>,57<&scmi_clk 12>;58clock-names = "top", "mclk", "fix";59#clock-cells = <1>;60};61};626364