mmc: sdhci-of-arasan: Add the support for sdhci-5.1
[linux/fpc-iii.git] / Documentation / devicetree / bindings / rtc / rtc-cmos.txt
blob7382989b30524611c56c1bae3f80d59a22e3f7cc
1  Motorola mc146818 compatible RTC
2 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
4 Required properties:
5   - compatible : "motorola,mc146818"
6   - reg : should contain registers location and length.
8 Optional properties:
9   - interrupts : should contain interrupt.
10   - interrupt-parent : interrupt source phandle.
11   - ctrl-reg : Contains the initial value of the control register also
12     called "Register B".
13   - freq-reg : Contains the initial value of the frequency register also
14     called "Regsiter A".
16 "Register A" and "B" are usually initialized by the firmware (BIOS for
17 instance). If this is not done, it can be performed by the driver.
19 ISA Example:
21         rtc@70 {
22                  compatible = "motorola,mc146818";
23                  interrupts = <8 3>;
24                  interrupt-parent = <&ioapic1>;
25                  ctrl-reg = <2>;
26                  freq-reg = <0x26>;
27                  reg = <1 0x70 2>;
28          };