1# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
2%YAML 1.2
3---
4$id: http://devicetree.org/schemas/clock/samsung,exynos-clock.yaml#
5$schema: http://devicetree.org/meta-schemas/core.yaml#
6
7title: Samsung Exynos SoC clock controller
8
9maintainers:
10  - Chanwoo Choi <cw00.choi@samsung.com>
11  - Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
12  - Sylwester Nawrocki <s.nawrocki@samsung.com>
13  - Tomasz Figa <tomasz.figa@gmail.com>
14
15description: |
16  All available clocks are defined as preprocessor macros in
17  dt-bindings/clock/ headers.
18
19properties:
20  compatible:
21    const: samsung,exynos5250-clock
22
23  clocks:
24    maxItems: 4
25
26  "#clock-cells":
27    const: 1
28
29  reg:
30    maxItems: 1
31
32required:
33  - compatible
34  - "#clock-cells"
35  - reg
36
37additionalProperties: false
38
39examples:
40  - |
41    #include <dt-bindings/clock/exynos5250.h>
42    clock: clock-controller@10010000 {
43        compatible = "samsung,exynos5250-clock";
44        reg = <0x10010000 0x30000>;
45        #clock-cells = <1>;
46    };
47