Merge tag 'linux-kselftest-kunit-fixes-5.11-rc3' of git://git.kernel.org/pub/scm...
[linux/fpc-iii.git] / Documentation / devicetree / bindings / rtc / st,stm32-rtc.yaml
blob5456604b1c14fa1673cd6865516d3356c4e60620
1 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
2 %YAML 1.2
3 ---
4 $id: http://devicetree.org/schemas/rtc/st,stm32-rtc.yaml#
5 $schema: http://devicetree.org/meta-schemas/core.yaml#
7 title: STMicroelectronics STM32 Real Time Clock Bindings
9 maintainers:
10   - Gabriel Fernandez <gabriel.fernandez@st.com>
12 properties:
13   compatible:
14     enum:
15       - st,stm32-rtc
16       - st,stm32h7-rtc
17       - st,stm32mp1-rtc
19   reg:
20     maxItems: 1
22   clocks:
23     minItems: 1
24     maxItems: 2
26   clock-names:
27     items:
28       - const: pclk
29       - const: rtc_ck
31   interrupts:
32     maxItems: 1
34   st,syscfg:
35     $ref: "/schemas/types.yaml#/definitions/phandle-array"
36     items:
37       minItems: 3
38       maxItems: 3
39     description: |
40       Phandle/offset/mask triplet. The phandle to pwrcfg used to
41       access control register at offset, and change the dbp (Disable Backup
42       Protection) bit represented by the mask, mandatory to disable/enable backup
43       domain (RTC registers) write protection.
45   assigned-clocks:
46     description: |
47       override default rtc_ck parent clock reference to the rtc_ck clock entry
48     maxItems: 1
50   assigned-clock-parents:
51     description: |
52       override default rtc_ck parent clock phandle of the new parent clock of rtc_ck
53     maxItems: 1
55 allOf:
56   - if:
57       properties:
58         compatible:
59           contains:
60             const: st,stm32-rtc
62     then:
63       properties:
64         clocks:
65           minItems: 1
66           maxItems: 1
68         clock-names: false
70       required:
71         - st,syscfg
73   - if:
74       properties:
75         compatible:
76           contains:
77             const: st,stm32h7-rtc
79     then:
80       properties:
81         clocks:
82           minItems: 2
83           maxItems: 2
85       required:
86         - clock-names
87         - st,syscfg
89   - if:
90       properties:
91         compatible:
92           contains:
93             const: st,stm32mp1-rtc
95     then:
96       properties:
97         clocks:
98           minItems: 2
99           maxItems: 2
101         assigned-clocks: false
102         assigned-clock-parents: false
104       required:
105         - clock-names
107 required:
108   - compatible
109   - reg
110   - clocks
111   - interrupts
113 additionalProperties: false
115 examples:
116   - |
117     #include <dt-bindings/mfd/stm32f4-rcc.h>
118     #include <dt-bindings/clock/stm32fx-clock.h>
119     rtc@40002800 {
120       compatible = "st,stm32-rtc";
121       reg = <0x40002800 0x400>;
122       clocks = <&rcc 1 CLK_RTC>;
123       assigned-clocks = <&rcc 1 CLK_RTC>;
124       assigned-clock-parents = <&rcc 1 CLK_LSE>;
125       interrupt-parent = <&exti>;
126       interrupts = <17 1>;
127       st,syscfg = <&pwrcfg 0x00 0x100>;
128     };
130     #include <dt-bindings/interrupt-controller/arm-gic.h>
131     #include <dt-bindings/clock/stm32mp1-clks.h>
132     rtc@5c004000 {
133       compatible = "st,stm32mp1-rtc";
134       reg = <0x5c004000 0x400>;
135       clocks = <&rcc RTCAPB>, <&rcc RTC>;
136       clock-names = "pclk", "rtc_ck";
137       interrupts = <GIC_SPI 3 IRQ_TYPE_LEVEL_HIGH>;
138     };