xref: /freebsd/sys/contrib/device-tree/Bindings/clock/actions,owl-cmu.yaml (revision 5f62a964e9f8abc6a05d8338273fadd154f0a206)
1*5f62a964SEmmanuel Vadot# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
2*5f62a964SEmmanuel Vadot%YAML 1.2
3*5f62a964SEmmanuel Vadot---
4*5f62a964SEmmanuel Vadot$id: http://devicetree.org/schemas/clock/actions,owl-cmu.yaml#
5*5f62a964SEmmanuel Vadot$schema: http://devicetree.org/meta-schemas/core.yaml#
6*5f62a964SEmmanuel Vadot
7*5f62a964SEmmanuel Vadottitle: Actions Semi Owl Clock Management Unit (CMU)
8*5f62a964SEmmanuel Vadot
9*5f62a964SEmmanuel Vadotmaintainers:
10*5f62a964SEmmanuel Vadot  - Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
11*5f62a964SEmmanuel Vadot
12*5f62a964SEmmanuel Vadotdescription: |
13*5f62a964SEmmanuel Vadot  The Actions Semi Owl Clock Management Unit generates and supplies clock
14*5f62a964SEmmanuel Vadot  to various controllers within the SoC.
15*5f62a964SEmmanuel Vadot
16*5f62a964SEmmanuel Vadot  See also:
17*5f62a964SEmmanuel Vadot    include/dt-bindings/clock/actions,s500-cmu.h
18*5f62a964SEmmanuel Vadot    include/dt-bindings/clock/actions,s700-cmu.h
19*5f62a964SEmmanuel Vadot    include/dt-bindings/clock/actions,s900-cmu.h
20*5f62a964SEmmanuel Vadot
21*5f62a964SEmmanuel Vadotproperties:
22*5f62a964SEmmanuel Vadot  compatible:
23*5f62a964SEmmanuel Vadot    enum:
24*5f62a964SEmmanuel Vadot      - actions,s500-cmu
25*5f62a964SEmmanuel Vadot      - actions,s700-cmu
26*5f62a964SEmmanuel Vadot      - actions,s900-cmu
27*5f62a964SEmmanuel Vadot
28*5f62a964SEmmanuel Vadot  reg:
29*5f62a964SEmmanuel Vadot    maxItems: 1
30*5f62a964SEmmanuel Vadot
31*5f62a964SEmmanuel Vadot  clocks:
32*5f62a964SEmmanuel Vadot    items:
33*5f62a964SEmmanuel Vadot      - description: Host oscillator source
34*5f62a964SEmmanuel Vadot      - description: Internal low frequency oscillator source
35*5f62a964SEmmanuel Vadot
36*5f62a964SEmmanuel Vadot  "#clock-cells":
37*5f62a964SEmmanuel Vadot    const: 1
38*5f62a964SEmmanuel Vadot
39*5f62a964SEmmanuel Vadot  "#reset-cells":
40*5f62a964SEmmanuel Vadot    const: 1
41*5f62a964SEmmanuel Vadot
42*5f62a964SEmmanuel Vadotrequired:
43*5f62a964SEmmanuel Vadot  - compatible
44*5f62a964SEmmanuel Vadot  - reg
45*5f62a964SEmmanuel Vadot  - clocks
46*5f62a964SEmmanuel Vadot  - "#clock-cells"
47*5f62a964SEmmanuel Vadot  - "#reset-cells"
48*5f62a964SEmmanuel Vadot
49*5f62a964SEmmanuel VadotadditionalProperties: false
50*5f62a964SEmmanuel Vadot
51*5f62a964SEmmanuel Vadotexamples:
52*5f62a964SEmmanuel Vadot  - |
53*5f62a964SEmmanuel Vadot    clock-controller@e0160000 {
54*5f62a964SEmmanuel Vadot        compatible = "actions,s900-cmu";
55*5f62a964SEmmanuel Vadot        reg = <0xe0160000 0x1000>;
56*5f62a964SEmmanuel Vadot        clocks = <&hosc>, <&losc>;
57*5f62a964SEmmanuel Vadot        #clock-cells = <1>;
58*5f62a964SEmmanuel Vadot        #reset-cells = <1>;
59*5f62a964SEmmanuel Vadot    };
60*5f62a964SEmmanuel Vadot...
61