xref: /freebsd/sys/contrib/device-tree/Bindings/clock/sophgo,sg2042-clkgen.yaml (revision 0e8011faf58b743cc652e3b2ad0f7671227610df)
1*0e8011faSEmmanuel Vadot# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
2*0e8011faSEmmanuel Vadot%YAML 1.2
3*0e8011faSEmmanuel Vadot---
4*0e8011faSEmmanuel Vadot$id: http://devicetree.org/schemas/clock/sophgo,sg2042-clkgen.yaml#
5*0e8011faSEmmanuel Vadot$schema: http://devicetree.org/meta-schemas/core.yaml#
6*0e8011faSEmmanuel Vadot
7*0e8011faSEmmanuel Vadottitle: Sophgo SG2042 Clock Generator for divider/mux/gate
8*0e8011faSEmmanuel Vadot
9*0e8011faSEmmanuel Vadotmaintainers:
10*0e8011faSEmmanuel Vadot  - Chen Wang <unicorn_wang@outlook.com>
11*0e8011faSEmmanuel Vadot
12*0e8011faSEmmanuel Vadotproperties:
13*0e8011faSEmmanuel Vadot  compatible:
14*0e8011faSEmmanuel Vadot    const: sophgo,sg2042-clkgen
15*0e8011faSEmmanuel Vadot
16*0e8011faSEmmanuel Vadot  reg:
17*0e8011faSEmmanuel Vadot    maxItems: 1
18*0e8011faSEmmanuel Vadot
19*0e8011faSEmmanuel Vadot  clocks:
20*0e8011faSEmmanuel Vadot    items:
21*0e8011faSEmmanuel Vadot      - description: Main PLL
22*0e8011faSEmmanuel Vadot      - description: Fixed PLL
23*0e8011faSEmmanuel Vadot      - description: DDR PLL 0
24*0e8011faSEmmanuel Vadot      - description: DDR PLL 1
25*0e8011faSEmmanuel Vadot
26*0e8011faSEmmanuel Vadot  clock-names:
27*0e8011faSEmmanuel Vadot    items:
28*0e8011faSEmmanuel Vadot      - const: mpll
29*0e8011faSEmmanuel Vadot      - const: fpll
30*0e8011faSEmmanuel Vadot      - const: dpll0
31*0e8011faSEmmanuel Vadot      - const: dpll1
32*0e8011faSEmmanuel Vadot
33*0e8011faSEmmanuel Vadot  '#clock-cells':
34*0e8011faSEmmanuel Vadot    const: 1
35*0e8011faSEmmanuel Vadot    description:
36*0e8011faSEmmanuel Vadot      See <dt-bindings/clock/sophgo,sg2042-clkgen.h> for valid indices.
37*0e8011faSEmmanuel Vadot
38*0e8011faSEmmanuel Vadotrequired:
39*0e8011faSEmmanuel Vadot  - compatible
40*0e8011faSEmmanuel Vadot  - reg
41*0e8011faSEmmanuel Vadot  - clocks
42*0e8011faSEmmanuel Vadot  - clock-names
43*0e8011faSEmmanuel Vadot  - '#clock-cells'
44*0e8011faSEmmanuel Vadot
45*0e8011faSEmmanuel VadotadditionalProperties: false
46*0e8011faSEmmanuel Vadot
47*0e8011faSEmmanuel Vadotexamples:
48*0e8011faSEmmanuel Vadot  - |
49*0e8011faSEmmanuel Vadot    clock-controller@30012000 {
50*0e8011faSEmmanuel Vadot      compatible = "sophgo,sg2042-clkgen";
51*0e8011faSEmmanuel Vadot      reg = <0x30012000 0x1000>;
52*0e8011faSEmmanuel Vadot      clocks = <&pllclk 0>,
53*0e8011faSEmmanuel Vadot               <&pllclk 1>,
54*0e8011faSEmmanuel Vadot               <&pllclk 2>,
55*0e8011faSEmmanuel Vadot               <&pllclk 3>;
56*0e8011faSEmmanuel Vadot      clock-names = "mpll",
57*0e8011faSEmmanuel Vadot                    "fpll",
58*0e8011faSEmmanuel Vadot                    "dpll0",
59*0e8011faSEmmanuel Vadot                    "dpll1";
60*0e8011faSEmmanuel Vadot      #clock-cells = <1>;
61*0e8011faSEmmanuel Vadot    };
62