summaryrefslogtreecommitdiff
path: root/Documentation/devicetree/bindings/rtc/atmel,at91sam9-rtc.txt
diff options
context:
space:
mode:
authorSergiu Moga <sergiu.moga@microchip.com>2022-03-04 19:11:58 +0300
committerAlexandre Belloni <alexandre.belloni@bootlin.com>2022-03-08 18:53:43 +0300
commit5b05198b3108d5d287da8c457183855fb91ae4cc (patch)
tree321cb9ad506ff538f4deb8e7e3e0a40e47e8d799 /Documentation/devicetree/bindings/rtc/atmel,at91sam9-rtc.txt
parent73ce05302007eece23a6acb7dc124c92a2209087 (diff)
downloadlinux-5b05198b3108d5d287da8c457183855fb91ae4cc.tar.xz
dt-bindings: rtc: convert at91sam9 bindings to json-schema
Convert RTC binding for Atmel/Microchip SoCs to Device Tree Schema format. Signed-off-by: Sergiu Moga <sergiu.moga@microchip.com> Reviewed-by: Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com> Reviewed-by: Rob Herring <robh@kernel.org> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Link: https://lore.kernel.org/r/20220304161159.147784-4-sergiu.moga@microchip.com
Diffstat (limited to 'Documentation/devicetree/bindings/rtc/atmel,at91sam9-rtc.txt')
-rw-r--r--Documentation/devicetree/bindings/rtc/atmel,at91sam9-rtc.txt25
1 files changed, 0 insertions, 25 deletions
diff --git a/Documentation/devicetree/bindings/rtc/atmel,at91sam9-rtc.txt b/Documentation/devicetree/bindings/rtc/atmel,at91sam9-rtc.txt
deleted file mode 100644
index 3f0e2a5950eb..000000000000
--- a/Documentation/devicetree/bindings/rtc/atmel,at91sam9-rtc.txt
+++ /dev/null
@@ -1,25 +0,0 @@
-Atmel AT91SAM9260 Real Time Timer
-
-Required properties:
-- compatible: should be one of the following:
- - "atmel,at91sam9260-rtt"
- - "microchip,sam9x60-rtt", "atmel,at91sam9260-rtt"
-- reg: should encode the memory region of the RTT controller
-- interrupts: rtt alarm/event interrupt
-- clocks: should contain the 32 KHz slow clk that will drive the RTT block.
-- atmel,rtt-rtc-time-reg: should encode the GPBR register used to store
- the time base when the RTT is used as an RTC.
- The first cell should point to the GPBR node and the second one
- encode the offset within the GPBR block (or in other words, the
- GPBR register used to store the time base).
-
-
-Example:
-
-rtt@fffffd20 {
- compatible = "atmel,at91sam9260-rtt";
- reg = <0xfffffd20 0x10>;
- interrupts = <1 4 7>;
- clocks = <&clk32k>;
- atmel,rtt-rtc-time-reg = <&gpbr 0x0>;
-};