summaryrefslogtreecommitdiff
path: root/Documentation/devicetree/bindings/clock/ti/ti,clockdomain.yaml
blob: 95746bfdced4f1854289d581cdd97ce6cafc76e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
%YAML 1.2
---
$id: http://devicetree.org/schemas/clock/ti/ti,clockdomain.yaml#
$schema: http://devicetree.org/meta-schemas/core.yaml#

title: Texas Instruments clockdomain

maintainers:
  - Tero Kristo <kristo@kernel.org>

description:
  This binding uses the common clock binding in consumer role. Every clock on TI
  SoC belongs to one clockdomain, but software only needs this information for
  specific clocks which require their parent clockdomain to be controlled when
  the clock is enabled/disabled. This binding doesn't define a new clock binding
  type, it is used to group existing clock nodes under hardware hierarchy.

properties:
  compatible:
    const: ti,clockdomain

  "#clock-cells":
    const: 0

  clocks:
    minItems: 1
    maxItems: 64

  clock-output-names:
    maxItems: 1

required:
  - compatible
  - clocks

additionalProperties: false

examples:
  - |
    dss_clkdm {
        compatible = "ti,clockdomain";
        clocks = <&dss1_alwon_fck_3430es2>, <&dss_ick_3430es2>;
    };