50 lines · yaml
1# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)2# Copyright (C) 2022-2023 Amlogic, Inc. All rights reserved3%YAML 1.24---5$id: http://devicetree.org/schemas/clock/amlogic,s4-pll-clkc.yaml#6$schema: http://devicetree.org/meta-schemas/core.yaml#7 8title: Amlogic S4 PLL Clock Controller9 10maintainers:11 - Yu Tu <yu.tu@amlogic.com>12 13properties:14 compatible:15 const: amlogic,s4-pll-clkc16 17 reg:18 maxItems: 119 20 clocks:21 maxItems: 122 23 clock-names:24 items:25 - const: xtal26 27 "#clock-cells":28 const: 129 30required:31 - compatible32 - reg33 - clocks34 - clock-names35 - "#clock-cells"36 37additionalProperties: false38 39examples:40 - |41 clkc_pll: clock-controller@fe008000 {42 compatible = "amlogic,s4-pll-clkc";43 reg = <0xfe008000 0x1e8>;44 clocks = <&xtal>;45 clock-names = "xtal";46 #clock-cells = <1>;47 };48 49...50