xref: /freebsd-src/sys/contrib/device-tree/Bindings/rtc/imxdi-rtc.txt (revision c66ec88fed842fbaad62c30d510644ceb7bd2d71)
1*c66ec88fSEmmanuel Vadot* i.MX25 Real Time Clock controller
2*c66ec88fSEmmanuel Vadot
3*c66ec88fSEmmanuel VadotRequired properties:
4*c66ec88fSEmmanuel Vadot- compatible: should be: "fsl,imx25-rtc"
5*c66ec88fSEmmanuel Vadot- reg: physical base address of the controller and length of memory mapped
6*c66ec88fSEmmanuel Vadot  region.
7*c66ec88fSEmmanuel Vadot- clocks: should contain the phandle for the rtc clock
8*c66ec88fSEmmanuel Vadot- interrupts: rtc alarm interrupt
9*c66ec88fSEmmanuel Vadot
10*c66ec88fSEmmanuel VadotOptional properties:
11*c66ec88fSEmmanuel Vadot- interrupts: dryice security violation interrupt (second entry)
12*c66ec88fSEmmanuel Vadot
13*c66ec88fSEmmanuel VadotExample:
14*c66ec88fSEmmanuel Vadot
15*c66ec88fSEmmanuel Vadotrtc@53ffc000 {
16*c66ec88fSEmmanuel Vadot	compatible = "fsl,imx25-rtc";
17*c66ec88fSEmmanuel Vadot	reg = <0x53ffc000 0x4000>;
18*c66ec88fSEmmanuel Vadot	clocks = <&clks 81>;
19*c66ec88fSEmmanuel Vadot	interrupts = <25 56>;
20*c66ec88fSEmmanuel Vadot};
21