xref: /linux/Documentation/devicetree/bindings/rtc/s3c-rtc.yaml (revision 06ed6aa56ffac9241e03a24649e8d048f8f1b10c)
1# SPDX-License-Identifier: GPL-2.0
2%YAML 1.2
3---
4$id: http://devicetree.org/schemas/rtc/s3c-rtc.yaml#
5$schema: http://devicetree.org/meta-schemas/core.yaml#
6
7title: Samsung S3C, S5P and Exynos Real Time Clock controller
8
9maintainers:
10  - Krzysztof Kozlowski <krzk@kernel.org>
11
12properties:
13  compatible:
14    oneOf:
15      - enum:
16          - samsung,s3c2410-rtc
17          - samsung,s3c2416-rtc
18          - samsung,s3c2443-rtc
19          - samsung,s3c6410-rtc
20      - const: samsung,exynos3250-rtc
21        deprecated: true
22
23  reg:
24    maxItems: 1
25
26  clocks:
27    description:
28      Must contain a list of phandle and clock specifier for the rtc
29      clock and in the case of a s3c6410 compatible controller, also
30      a source clock.
31    minItems: 1
32    maxItems: 2
33
34  clock-names:
35    description:
36      Must contain "rtc" and for a s3c6410 compatible controller
37      also "rtc_src".
38    minItems: 1
39    maxItems: 2
40
41  interrupts:
42    description:
43      Two interrupt numbers to the cpu should be specified. First
44      interrupt number is the rtc alarm interrupt and second interrupt number
45      is the rtc tick interrupt. The number of cells representing a interrupt
46      depends on the parent interrupt controller.
47    minItems: 2
48    maxItems: 2
49
50allOf:
51  - $ref: rtc.yaml#
52  - if:
53      properties:
54        compatible:
55          contains:
56            enum:
57              - samsung,s3c6410-rtc
58              - samsung,exynos3250-rtc
59    then:
60      properties:
61        clocks:
62          minItems: 2
63          maxItems: 2
64        clock-names:
65          items:
66            - const: rtc
67            - const: rtc_src
68    else:
69      properties:
70        clocks:
71          minItems: 1
72          maxItems: 1
73        clock-names:
74          items:
75            - const: rtc
76
77examples:
78  - |
79    #include <dt-bindings/clock/exynos5420.h>
80    #include <dt-bindings/clock/samsung,s2mps11.h>
81
82    rtc@10070000 {
83        compatible = "samsung,s3c6410-rtc";
84        reg = <0x10070000 0x100>;
85        interrupts = <0 44 4>, <0 45 4>;
86        clocks = <&clock CLK_RTC>,
87                 <&s2mps11_osc S2MPS11_CLK_AP>;
88        clock-names = "rtc", "rtc_src";
89    };
90